Repository: shinrax2/PS3GameUpdateDownloader Branch: master Commit: 34adbbf5218c Files: 30 Total size: 1.5 MB Directory structure: gitextract_ua6xxo6r/ ├── .gitattributes ├── .github/ │ └── dependabot.yml ├── .gitignore ├── CHANGELOG ├── LICENSE ├── PS3GUD.py ├── README.md ├── build.py ├── buildrequirements.txt ├── gui.py ├── images/ │ └── icon.xcf ├── loc/ │ ├── de.json │ ├── en.json │ ├── es_ES.json │ ├── it.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ └── zh_CN.json ├── main_ps3gud.py ├── missingstrings.py ├── ps3gud_jdownloader_renamepkgs.packagizer ├── release.debug.json ├── release.json ├── requirements.txt ├── sony.pem ├── titledb.debug.json ├── titledb.json ├── updater.py └── utils.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ * text=auto *.sh text eol=lf ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: "pip" directory: "/" schedule: interval: "monthly" allow: - dependency-type: "direct" ================================================ FILE: .gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ #project specific stuff downloadedPKGs/ logs/ config.json build_config.json TODO.txt titledb.json.bak missingstrings.txt test.py docker_output/ ================================================ FILE: CHANGELOG ================================================ ! important change + new feature or minor change - bugfix future release (aka current master branch): v013: + added simplified chinese translation thanks to https://github.com/nini22P & https://github.com/FR0Z3 + make updater actually wait for main application to exit instead of using a timeout + add dockerfile for linux-amd64, linux-win32, linux-win64 + Improved download speeds (thanks to https://github.com/rursache) + Improved robustness of TitleID parsing (thanks to https://github.com/rursache) + Added option to bypass ssl checks to help with connection issues (thanks to https://github.com/rursache) + Added option to import TitleIDs from RPCS3's games.yml - Added code to handle TitleIDs like BLES00710 which return server errors v012: + added european spanish translation thanks to https://github.com/IlDucci + improved sha1 verification of downloaded PKGs - remove github formatting characters from changelog + various build improvements including: +validate & minify json files for slightly smaller releases -disabled UPX for non windows platforms since that sometimes leads to corrupted binaries +name release archives for python version they were built on e.g. "PS3GameUpdateDownloader-v011-CPython3.11.1final-win64.zip" +(Linux Only)name release archives for the c libary & version they were built on e.g. "PS3GameUpdateDownloader-v011-CPython3.11.1final-glibc2.31-linux64.zip" + save git commit id at buildtime and show it in the main window ! proper handling of sonys weak certificate + faster search for new titledb versions ! add GPL3 license to this project - fix update searching for games with no ps3_system_ver set like BCUS98132 v011: - fix crash when proxy is enabled but no proper proxy settings are set - fix typo in download speed display + moved proxy user to keyring - fixed proxy support not being installed from requirements.txt - added two japanese psn titleid to titledb + added updater for titledb + added download verification to auto updater - prevent crashes with corrupted config files + changed storage treshold from percentage to absolute v010: - fix a crash when checking updates + add info about the ps3 store shutdown v009: + update turkish translation + use UPX for builds to produce smaller binaries and hopefully slightly less antivirus false positives + added an icon to the executable and the windows - fix cut off header in build.log - removed hotfix for issues between keyring and PyInstaller - fix crash when downloading updates - fix finding updates on modern linux v008: ! refactored gui code ! more secure handling of sonys self signed certificate + open configuration window when no configuration file is found + generate "build.log" when building releases + include pysimplegui version in logs for easier debugging + include python version in logs for easier debugging + proxy support (only SOCKS5) + improve configuration window layout + add CHANGELOG to builds + add thai translation thanks to https://github.com/CENSOR1337 + add russian translation thanks to https://github.com/andoleal + add turkish translation thanks to https://steamcommunity.com/profiles/76561198045705212/ + add italian translation thanks to https://github.com/Strappazzon - fix changelog being cutoff in update notification window - fix updater on linux - fix handling unicode languages - minor typos in english translation - fix cutoff strings - fix crash when available disc space is below threshold - hotfix for issues between keyring and PyInstaller - inform user when no viable keyring backend could be found v007: - fixed main window becoming malfunctional when pressing download in the queue window with an empty queue - retranslate main window when changing language + load english string as fallback when the current localization doesnt contain the wanted string + added sorting and removal of entrys to the queue management + improved select window + every run now has its own logfile - prevent the same update being added to queue multiple times - fix crashes in queue management + check if download directory is writeable + added percentage and download speed to main window when downloading + log crashes for easier debugging - fix crash when downloading on python 3.8 + use enter key to search for updates in main window v006: +! automatic download and installation of updates + progress bar for downloads + added simple download queue - improved responsiveness of the window while downloading - fix downloading of game updates for certain games with " or ' in their names v005: + add notification for new releases + add translation support (english & german sofar) v004: - improved file size formatting + added check for free space before download - improved naming of outputted directories - fixed a crash when selecting no update in the download window + added configuration via gui v003: + added logging +! added GUI via pysimplegui v002: - fixed sha1 verification of downloads + sort downloads into folders by gameid + added check if file was already downloaded v001: initial release ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: PS3GUD.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # # PS3GameUpdateDownloader downloads PS3 game updates from official Sony servers # Copyright (C) 2023 shinrax2 # # This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with this program. If not, see . # built-in import urllib.parse import ssl import xml.etree.ElementTree as ET import os import hashlib import sys import shutil import json import time import platform from urllib3.exceptions import InsecureRequestWarning # local files import utils # pip packages import requests import requests.adapters import keyring requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning) class PS3GUD: def __init__(self, window=None): if window != None: self.logger = utils.Logger(window) else: self.logger = utils.Logger() self.configFile = "./config.json" self.titledbFile = "./titledb.json" self.config = {} self.Updates = {} self.DlList = Queue(self) self.titleid = "" self.proxies = {} self.useDefaultConfig = True self.configDefaults = {} self.configDefaults["dldir"] = "./downloadedPKGs" self.configDefaults["verify"] = True self.configDefaults["checkIfAlreadyDownloaded"] = True self.configDefaults["storageThresholdNew"] = 5 self.configDefaults["currentLoc"] = "en" self.configDefaults["checkForNewRelease"] = True self.configDefaults["bypass_ssl"] = True self.configDefaults["add_all_updates_to_queue_automatically"] = False self.configDefaults["use_proxy"] = False self.configDefaults["proxy_ip"] = "" self.configDefaults["proxy_port"] = "" self.configDefaults["proxy_user"] = None self.configDefaults["proxy_pass"] = None self.configDefaults["dont_show_again_keyring_support"] = False self.configDefaults["rename_pkgs"] = True self.configDefaults["update_titledb"] = True def setupRequests(self): self.https_session = requests.Session() self.https_session.mount( "https://a0.ww.np.dl.playstation.net", SonySSLContextAdapter(bypassSSL=self.getConfig("bypass_ssl")), ) self.pemfile = "./sony.pem" def setWindow(self, window): self.logger.window = window def setLoc(self, loc): self.loc = loc def logHeader(self, version, psgversion, commit): self.logger.log(f"PS3GameUpdateDownloader {version}") self.logger.log(f"Git Commit: {commit}") self.logger.log(f"Config File: {self.configFile}") self.logger.log(f"Language: {self.loc.getLoc()}") self.logger.log(f"Current working directory: {os.getcwd()}") self.logger.log(f"Compiled: {str(utils.isAppFrozen())}") self.logger.log(f"FreeSimpleGUI version: {psgversion}") self.logger.log( f"Python version: {sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}{sys.version_info.releaselevel} ({platform.python_implementation()})\n" ) def loadConfig(self): if os.path.exists(self.configFile) and os.path.isfile(self.configFile): self.logger.log(self.loc.getKey("msg_configFileLoaded")) with open(self.configFile, "r", encoding="utf8") as f: data = f.read() try: self.config = json.loads(data) except json.decoder.JSONDecodeError: self.logger.log(self.loc.getKey("msg_ConfigFileCorrupt"), "e") os.remove("./config.json") self.config = self.configDefaults return self.useDefaultConfig = False if self.getConfig("use_proxy") == True: self.config["proxy_pass"], self.config["proxy_user"] = ( self.getProxyCredentials() ) else: self.config["proxy_pass"], self.config["proxy_user"] = (None, None) self.setupProxy() else: self.logger.log(self.loc.getKey("msg_noConfigFile")) self.config = self.configDefaults self.setupRequests() def setConfig(self, config): self.config = config self.saveConfig() def saveConfig(self): with open(self.configFile, "w", encoding="utf8") as f: f.write( json.dumps(self.config, sort_keys=True, indent=4, ensure_ascii=False) ) self.logger.log(self.loc.getKey("msg_configFileSaved")) self.useDefaultConfig = False self.setupRequests() def setProxyCredentials(self, pwd, user): keyring.set_password("ps3gud", "proxy_pass", pwd) self.config["proxy_pass"] = pwd keyring.set_password("ps3gud", "proxy_user", user) self.config["proxy_user"] = user def getProxyCredentials(self): return ( keyring.get_password("ps3gud", "proxy_pass"), keyring.get_password("ps3gud", "proxy_user"), ) def setupProxy(self): if ( self.getConfig("use_proxy") and self.getConfig("proxy_ip") != "" and self.getConfig("proxy_port") != "" ): self.proxies["http"] = "socks5://" self.proxies["https"] = "socks5://" if self.getConfig("proxy_user") != None: self.proxies["http"] += self.getConfig("proxy_user") + ":" self.proxies["https"] += self.getConfig("proxy_user") + ":" if self.getConfig("proxy_pass") != None: self.proxies["http"] += self.getConfig("proxy_pass") + "@" self.proxies["https"] += self.getConfig("proxy_pass") + "@" self.proxies["http"] += ( self.getConfig("proxy_ip") + ":" + self.getConfig("proxy_port") ) self.proxies["https"] += ( self.getConfig("proxy_ip") + ":" + self.getConfig("proxy_port") ) else: self.proxies = {} def getConfig(self, key): try: return self.config[key] except KeyError: return self.configDefaults[key] def checkTitleDbVersion(self): if self.getConfig("update_titledb") == True: file = "https://raw.githubusercontent.com/shinrax2/PS3GameUpdateDownloader/master/titledb.json" meta = "https://raw.githubusercontent.com/shinrax2/PS3GameUpdateDownloader/master/release.json" try: data = json.loads(requests.get(meta, proxies=self.proxies).content) except requests.exceptions.ConnectionError: if self.getConfig("use_proxy"): self.logger.log(self.loc.getKey("msg_checkProxySettings")) return if self.titledbver < data["tdb_version"]: self.logger.log(self.loc.getKey("msg_newTitleDbVersion")) if os.path.exists(self.titledbFile + ".bak"): os.remove(self.titledbFile + ".bak") os.rename(self.titledbFile, self.titledbFile + ".bak") try: newtdb = json.loads( requests.get(file, proxies=self.proxies).content ) except requests.exceptions.ConnectionError: if self.getConfig("use_proxy"): self.logger.log(self.loc.getKey("msg_checkProxySettings")) return with open(self.titledbFile, "w", encoding="utf8") as f: f.write(json.dumps(newtdb, ensure_ascii=False)) f.flush() self.loadTitleDb() def loadTitleDb(self): with open(self.titledbFile, "r", encoding="utf8") as f: data = json.loads(f.read()) self.titledb = data["db"] self.titledbver = data["version"] self.logger.log(self.loc.getKey("msg_loadedTitledb", [self.titledbFile])) def getTitleNameFromId(self, titleid=None): if titleid == None: titleid = self.titleid for item in self.titledb: if titleid == item["id"]: return item["name"] def getUpdates(self): return self.Updates[self.titleid] def checkForUpdates(self, titleid): # check given id check = False titleid = titleid.upper().replace("-", "") for item in self.titledb: if titleid == item["id"]: check = True self.titleid = titleid self.logger.log( self.loc.getKey("msg_titleIDIs", [item["name"], item["id"]]) ) break if check == False: self.logger.log(self.loc.getKey("msg_titleIDNotValid"), "e") self.titleid = "" return # check for updates updates = [] url = urllib.parse.urljoin( urllib.parse.urljoin( "https://a0.ww.np.dl.playstation.net/tpl/np/", self.titleid + "/" ), self.titleid + "-ver.xml", ) try: if self.getConfig("bypass_ssl"): verify_value = False else: verify_value = self.pemfile resp = self.https_session.get( url, verify=verify_value, proxies=self.proxies ) except requests.exceptions.ConnectionError as error: self.logger.log(f"{self.loc.getKey('msg_metaNotAvailable')} ({url})", "e") self.logger.log(f"{error}", "e") if self.getConfig("use_proxy"): self.logger.log(self.loc.getKey("msg_checkProxySettings")) self.titleid = "" return info = resp.content # check file length for titles like BCAS20074 if len(info) == 0: self.logger.log(self.loc.getKey("msg_metaFileEmpty"), "e") self.titleid = "" return try: root = ET.fromstring(info) except ET.ParseError: self.logger.log( self.loc.getKey("msg_metaFileBrokenSyntax", [self.titleid]), "e" ) self.titleid = "" return try: tid = root.attrib["titleid"] except KeyError: tid = "" if tid == self.titleid: for tag in root: for package in tag: pack = {} attr = package.attrib pack["gameid"] = self.titleid pack["version"] = attr["version"] pack["size"] = attr["size"] pack["sha1"] = attr["sha1sum"] pack["url"] = attr["url"] try: pack["sysver"] = attr["ps3_system_ver"] except KeyError: # some games like BCUS98132 dont have ps3_system_ver set for their packages, using 1.1000 as replacement pack["sysver"] = "1.1000" updates.append(pack) self.Updates[titleid] = updates def downloadFiles(self, window): self.logger.log(self.loc.getKey("msg_startingDownloads")) i = 1 ql = len(self.DlList.queue) for dl in self.DlList.queue: skip = False url = dl["url"] sha1 = dl["sha1"] size = dl["size"] id = dl["gameid"] fdir = os.path.join( self.getConfig("dldir") + "/", utils.filterIllegalCharsFilename(self.getTitleNameFromId(id)) + "_[" + id + "]/", ) if self.getConfig("rename_pkgs") == True: fname = os.path.join( fdir, utils.filterIllegalCharsFilename( self.getTitleNameFromId(id) + "_[" + id + "]_" + dl["version"] + ".pkg" ), ) else: fname = os.path.join( fdir, utils.filterIllegalCharsFilename(os.path.basename(url)) ) if ( os.path.exists(self.getConfig("dldir")) == False and os.path.isfile(self.getConfig("dldir")) == False ): try: os.mkdir(self.getConfig("dldir")) except (PermissionError, FileNotFoundError): self.logger.log( self.loc.getKey( "msg_dldirNotWriteable", [self.getConfig("dldir")] ) ) skip = True if os.path.exists(fdir) == False and os.path.isfile(fdir) == False: try: os.mkdir(fdir) except (PermissionError, FileNotFoundError): self.logger.log( self.loc.getKey( "msg_dldirNotWriteable", [self.getConfig("dldir")] ) ) skip = True total, used, free = shutil.disk_usage(fdir) if self.getConfig("checkIfAlreadyDownloaded") == True: # check if file already exists if os.path.exists(fname) and os.path.isfile(fname): if int(os.path.getsize(fname)) == int(size): if self.getConfig("verify") == False: self.logger.log( self.loc.getKey( "msg_alreadyDownloadedNoVerify", [os.path.basename(url)], ) ) skip = True else: if sha1 == self._sha1File(fname): self.logger.log( self.loc.getKey( "msg_alreadyDownloadedVerify", [os.path.basename(url)], ) ) skip = True if skip == False: if ( free >= int(self.getConfig("storageThresholdNew")) * 1024 * 1024 * 1024 ): if free > int(size): self.logger.log( self.loc.getKey("msg_startSingleDownload", [i, ql]) ) self._download_file(url, fname, size, window, i) self.DlList.removeEntry(dl["gameid"] + "-" + dl["version"]) else: self.logger.log(self.loc.getKey("msg_notEnoughDiskSpace"), "e") skip = True else: self.logger.log( self.loc.getKey( "msg_spaceBelowThreshold", [str(self.getConfig("storageThresholdNew")) + "GiB"], ), "e", ) skip = True if self.getConfig("verify") == True and skip == False: if sha1 == self._sha1File(fname): self.logger.log(self.loc.getKey("msg_verifySuccess", [fname])) else: self.logger.log(self.loc.getKey("msg_verifyFailure", [fname])) os.remove(fname) if self.getConfig("verify") == False and skip == False: self.logger.log(self.loc.getKey("msg_noVerify", [fname])) if skip == True: self.DlList.removeEntry(dl["gameid"] + "-" + dl["version"]) i += 1 self.logger.log(self.loc.getKey("msg_finishedDownload", [ql])) def _download_file(self, url, local_filename, size, window, num): text = window["window_main_progress_label"] bar = window["window_main_progress_bar"] size = int(size) chunk_size = 98304 count = 0 already_loaded = 0 with requests.get(url, stream=True, proxies=self.proxies) as r: r.raise_for_status() start = time.perf_counter() with open(local_filename, "wb") as f: for chunk in r.iter_content(chunk_size=chunk_size): if chunk: f.write(chunk) count += 1 already_loaded = count * chunk_size if already_loaded / size > 1: already_loaded = size percentage = already_loaded / size * 100 text.Update( self.loc.getKey( "window_main_progress_label", [ num, utils.formatSize(already_loaded), utils.formatSize(size), format(float(percentage), ".1f"), utils.formatSize( already_loaded // (time.perf_counter() - start) ) + "/s", ], ) ) bar.UpdateBar(percentage) window.Refresh() def _sha1File(self, fname): # get hash from EOF with open(fname, "rb") as f: fhash = f.read()[-32:].hex()[:40] # copy file f2 = fname + "~" shutil.copy(fname, f2) # remove last 32 bytes because the PKG hash is at EOF and not part of the PKG data with open(f2, "ab") as f: f.seek(-32, os.SEEK_END) f.truncate() # calculate hash from file - last 32 bytes fsha = hashlib.sha1() with open(f2, "rb") as f: for line in iter(lambda: f.read(fsha.block_size), b""): fsha.update(line) os.remove(f2) # check calculated hash against EOF hash if fhash == fsha.hexdigest(): # return correct hash return fsha.hexdigest() else: # return fake hash return "DEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEF" def __del__(self): del self.logger class Queue: def __init__(self, ps3): self.queue = [] self.ps3 = ps3 def addEntry(self, entry): if self.isAlreadInQueue(entry["gameid"] + "-" + entry["version"]) != True: self.queue.append( { "num": (len(self.queue) + 1), "code": entry["gameid"] + "-" + entry["version"], "gameid": entry["gameid"], "version": entry["version"], "size": entry["size"], "url": entry["url"], "sha1": entry["sha1"], } ) def removeEntry(self, code): newQueue = [] for item in self.queue: if item["code"] != code: newQueue.append(item) self.queue = newQueue self._sortQueue() def _sortQueue(self): newQueue = [] sort = {} for item in self.queue: sort[item["num"]] = item sort = dict(sorted(sort.items())) for key, value in sort.items(): pack = value pack["num"] = key newQueue.append(pack) self.queue = newQueue def moveUp(self, code): before = False for item in self.queue: if item["code"] == code: currentNum = item["num"] before = True if before == False: newNum = item["num"] newCode = item["code"] if currentNum != 1: sort = {} for item in self.queue: sort[item["code"]] = item sort[code]["num"] = newNum sort[newCode]["num"] = currentNum newQueue = [] for key, value in sort.items(): newQueue.append(value) self.queue = newQueue self._sortQueue() def moveDown(self, code): after = False for item in self.queue: if after == True: newNum = item["num"] newCode = item["code"] after = False if item["code"] == code: currentNum = item["num"] after = True if currentNum != len(self.queue): sort = {} for item in self.queue: sort[item["code"]] = item sort[code]["num"] = newNum sort[newCode]["num"] = currentNum newQueue = [] for key, value in sort.items(): newQueue.append(value) self.queue = newQueue self._sortQueue() def getTotalDownloadSize(self): size = 0 for item in self.queue: size += int(item["size"]) return int(size) def isAlreadInQueue(self, code): ret = False for item in self.queue: if code == item["code"]: ret = True return ret def exportQueue(self, exportFile): s = "" games = {} for entry in self.queue: try: games[entry["gameid"]] except KeyError: games[entry["gameid"]] = [] games[entry["gameid"]].append((entry["url"], entry["version"])) for id, data in games.items(): s += f"{self.ps3.getTitleNameFromId(id)} [{id}]:\n\n" for url, version in data: filename = urllib.parse.quote( utils.filterIllegalCharsFilename( self.ps3.getTitleNameFromId(id) + "_[" + id + "]_" + version + ".pkg" ) ) folder = urllib.parse.quote( utils.filterIllegalCharsFilename( self.ps3.getTitleNameFromId(id) + "_[" + id + "]" ) ) s += f"\t{url+'#folder='+folder+'#name='+filename}\n" s += "\n" with open(exportFile, "w", encoding="utf8") as f: f.write(s) class SonySSLContextAdapter(requests.adapters.HTTPAdapter): def __init__(self, bypassSSL=False, **kwargs): self.bypassSSL = bypassSSL super(SonySSLContextAdapter, self).__init__(**kwargs) def init_poolmanager(self, *args, **kwargs): context = ssl.create_default_context() if self.bypassSSL: context.check_hostname = False context.verify_mode = ssl.CERT_NONE else: context.set_ciphers("DEFAULT:@SECLEVEL=1") kwargs["ssl_context"] = context return super(SonySSLContextAdapter, self).init_poolmanager(*args, **kwargs) ================================================ FILE: README.md ================================================ # PS3GameUpdateDownloader This program downloads updates for PS3 games from the official PS3 servers. Features: - Windows & Linux support - A clean and simple GUI - Queue support - SHA-1 verification of downloads - Localized GUI - Automatic updates Grab the latest release [here](https://github.com/shinrax2/PS3GameUpdateDownloader/releases/latest) and check the ["Getting Started"](https://github.com/shinrax2/PS3GameUpdateDownloader/wiki/Getting-Started) page on the wiki! # Attention Sony has announced that they will be closing the PS3 store on 02.07.21 and later reversed that decision. It seems that some game updates got deleted in the time between the announcement and its reversal. I recommend you backup your downloaded game updates. # JDownloader PKG Renaming If you want to use the queue export feature and download the updates with [JDownloader](https://jdownloader.org/download/index) import `ps3gud_jdownloader_renamepkgs.packagizer` into your packagizer settings and make sure to set the following rule order: ![Main window](https://github.com/shinrax2/PS3GameUpdateDownloader/raw/master/screenshots/jdownloader_order.png) # Contributions Contributions in form of translations and bug fixes are welcome. # Disclaimer: This program isnt supported by or affiliated with Sony. # Screenshots: ![Main window](https://github.com/shinrax2/PS3GameUpdateDownloader/raw/master/screenshots/main.PNG) ![Config window](https://github.com/shinrax2/PS3GameUpdateDownloader/raw/master/screenshots/config.PNG) ![Queue window](https://github.com/shinrax2/PS3GameUpdateDownloader/raw/master/screenshots/queue.PNG) ![Update select window](https://github.com/shinrax2/PS3GameUpdateDownloader/raw/master/screenshots/select.PNG) ================================================ FILE: build.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # #PS3GameUpdateDownloader downloads PS3 game updates from official Sony servers #Copyright (C) 2023 shinrax2 # #This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. # #This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # #You should have received a copy of the GNU General Public License along with this program. If not, see . #built-in import argparse import sys import shutil import os import platform import json import logging import subprocess import datetime import shlex import stat #local files import utils def buildheader(release, filepath , pyiver="None", winever=None): lines = [ "Building PS3GameUpdateDownloader", "Build script arguments: "+str(sys.argv[1:]), "Version: "+release["version"], "Git Commit: "+str(release["commitid"]), "Date/Time: "+str(NOW) ] if pyiver != "None": lines.append(f"Python version: Python {sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}{sys.version_info.releaselevel} ({platform.python_implementation()})") lines.append(f"Platform: {platform.system()} {platform.architecture()[0]}") if platform.system() == "Windows" and winever is not None: lines.append(f"Built on Wine Version: {winever}") elif platform.system() == "Linux": lines.append(f"LibC: {platform.libc_ver()[0]} {platform.libc_ver()[1]}") lines.append(f"PyInstaller version: {pyiver}") lines.append("PyInstaller Output:") with Prepender(filepath) as filehandle: filehandle.write_lines(lines) def createDigest(file): with open(file+".sha256", "w") as f: digest = utils.sha256File(file) f.write(digest) return digest def validateJSON(filename): try: with open(filename, "r", encoding="utf8") as f: data = json.loads(f.read()) except ValueError as err: print("\n\nJSON syntax error in \""+os.path.basename(filename)+"\"") print(err) input("Press enter to exit.") sys.exit(0) return data def minifyJSON(jsonfiles): for file in jsonfiles: if file.endswith(".json") == True: data = validateJSON(file) with open(file, "w", encoding="utf8") as f: if os.path.basename(os.path.dirname(file)) == locdirname: #if json file is a loc file remove comments new_data = {} for k, v in data.items(): new_data[k] = {"string": v["string"]} data = new_data f.write(json.dumps(data, sort_keys=True, ensure_ascii=False)) def getJSONFiles(): #list json files #loc files jsonfiles = [] for root, dirs, files in os.walk(locdirbuildpath): for file in files: if os.path.isfile(os.path.join(root, file)) and os.path.join(root, file).lower().endswith(".json"): jsonfiles.append(os.path.join(root, file)) #other files jsonfiles.append(os.path.join(builddir, "release.json")) jsonfiles.append(os.path.join(builddir, "titledb.json")) return jsonfiles def copyData(builddir, locdirname, imagedirname, debug=False, source=False): if debug == True: #debug specific files shutil.copy2("titledb.debug.json", os.path.join(builddir, "titledb.json")) shutil.copy2("release.debug.json", os.path.join(builddir, "release.json")) else: #release specific files shutil.copy2("LICENSE", os.path.join(builddir, "LICENSE")) shutil.copy2("CHANGELOG", os.path.join(builddir, "CHANGELOG")) shutil.copy2("release.json", os.path.join(builddir, "release.json")) shutil.copy2("titledb.json", os.path.join(builddir, "titledb.json")) copySource(builddir) if source == True: # source specific files shutil.copy2("requirements.txt", os.path.join(builddir, "requirements.txt")) # general files shutil.copy2("sony.pem", os.path.join(builddir, "sony.pem")) shutil.copytree(locdirname, os.path.join(builddir, locdirname)) shutil.copytree(imagedirname, os.path.join(builddir, imagedirname), ignore=shutil.ignore_patterns("*.xcf")) def copySource(builddir): sourcedir = os.path.join(builddir, "src") files = ["build.py", "buildrequirements.txt", "CHANGELOG", "gui.py", "LICENSE", "main_ps3gud.py", "missingstrings.py", "PS3GUD.py", "README.md", "release.debug.json", "release.debug.json", "release.json", "requirements.txt", "sony.pem", "titledb.json", "titledb.debug.json", "updater.py", "utils.py", ".gitignore", ".gitattributes"] dirs = { "images": { "ignore": [] }, "loc": { "ignore": [] }, ".git": { "ignore": [] }, ".github": { "ignore": [] }, } #copy files os.mkdir(sourcedir) for file in files: shutil.copy2(file, os.path.join(sourcedir, file)) for dir, options in dirs.items(): shutil.copytree(dir, os.path.join(sourcedir, dir), ignore=shutil.ignore_patterns(*options["ignore"])) def saveCommitId(release, builddir): if release["commitid"] is not None: with open(os.path.join(builddir, "release.json"), "r", encoding="utf8") as f: data = json.loads(f.read()) data["commitid"] = release["commitid"] with open(os.path.join(builddir, "release.json"), "w", encoding="utf8") as f: f.write(json.dumps(data, sort_keys=True, ensure_ascii=False, indent=4)) def remove_readonly(func, path, _): os.chmod(path, stat.S_IWRITE) func(path) # START from https://stackoverflow.com/questions/2677617/write-at-beginning-of-file/20805898#20805898 START class Prepender(object): def __init__(self, file_path, ): # Read in the existing file, so we can write it back later with open(file_path, mode='r') as f: self.__write_queue = f.readlines() self.__open_file = open(file_path, mode='w') def write_line(self, line): # line order is reversed self.__write_queue.insert(0, "%s\n" % line, ) def write_lines(self, lines): # line order is maintained lines.reverse() for line in lines: self.write_line(line) def close(self): self.__exit__(None, None, None) def __enter__(self): return self def __exit__(self, type, value, traceback): if self.__write_queue: self.__open_file.writelines(self.__write_queue) self.__open_file.close() # END from https://stackoverflow.com/questions/2677617/write-at-beginning-of-file/20805898#20805898 END #argparse parser = argparse.ArgumentParser(description="build script for PS3GameUpdateDownloader") parser.add_argument("-s", "--source", action="store_true", help="building a source version, mutually exclusive with '--compiled'") parser.add_argument("-c", "--compiled", action="store_true", help="building a compiled version, mutually exclusive with '--source'") parser.add_argument("-r", "--release", action="store_true", help="building a release version, mutually exclusive with '--debug'") parser.add_argument("-d", "--debug",action="store_true", help="building a debug version, mutually exclusive with '--release'") parser.add_argument("-z", "--zip", action="store_true", help="pack the build to a .zip file") parser.add_argument("--docker", action="store_true", help='copy build zip to "./docker_output", requires --zip') parser.add_argument("--githash", action="store", help="gives git commit hash to build script(mostly useful for docker builds)") parser.add_argument("--winever", action="store", help="gives wine version to build script(mostly useful for docker builds)") args = parser.parse_args() #constants builddir = "./dist/PS3GameUpdateDownloader" buildlog = os.path.join(builddir, "build.log") locdirname = "loc" locdirbuildpath = os.path.join(builddir, locdirname) imagedirname = "images" iconpath = os.path.abspath(os.path.join(imagedirname, "icon.ico")) NOW = datetime.datetime.now() ARCHIVEFORMAT = "zip" dockerdir = os.path.abspath("./docker_output") mainpyifile = "main_ps3gud.py" updaterpyifile = "updater.py" winever = None #get data from release.json with open("release.json", "r", encoding="utf8") as f: release = json.loads(f.read()) release["commitid"] = None #check parameters action = "" zip_check = False docker = False if args.compiled == True and args.source == True: print("You cant pass \"-c\" and \"-s\" to the buildscript.") sys.exit() if args.debug == True and args.release == True: print("You cant pass \"-d\" and \"-r\" to the buildscript.") sys.exit() if args.source == True and args.release == True: action = "sourcerelease" if args.source == True and args.debug == True: action = "sourcedebug" if args.compiled == True and args.release == True: action = "compilerelease" if args.compiled == True and args.debug == True: action = "compiledebug" if args.zip == True: zip_check = True zipname = "dist/PS3GameUpdateDownloader-"+release["version"] if args.docker == True: docker = True if os.path.exists(dockerdir) == False: os.makedirs(dockerdir) if args.winever is not None: winever = args.winever #auto config for build suffix = "" libc = "" py = "" if platform.system() == "Windows": suffix = ".exe" ostype = "win" if platform.system() == "Linux": ostype = "linux" libc = f"{platform.libc_ver()[0]}{platform.libc_ver()[1]}-" if platform.architecture()[0] == "32bit": bits = "32" if platform.architecture()[0] == "64bit": bits = "64" if args.compiled == True and args.zip == True: py = f"{platform.python_implementation()}{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}{sys.version_info.releaselevel}-" arch = py + libc + ostype + bits #get git commit id if git is found on path if args.githash is not None: release["commitid"] = args.githash elif (shutil.which("git") is not None) == True: call = shutil.which("git") + " rev-parse --short HEAD" call = call if platform.system() == "Windows" else shlex.split(call) release["commitid"] = subprocess.Popen(call, stdout=subprocess.PIPE).communicate()[0].decode("ascii").replace("\n", "") print("build script for PS3GameUpdateDownloader") if action == "": print("use '-h' for help") else: print(f"build options:\nmode: {action}\narch: {arch}\ngit commit: {release['commitid']}\nzip: {zip_check}\ndocker: {docker}") if action == "sourcerelease": #release running from source if os.path.exists(builddir): #delete old build shutil.rmtree(builddir, onexc=remove_readonly) os.makedirs(builddir) else: os.makedirs(builddir) with open(buildlog, "w") as f: #write header to buildlog buildheader(release, buildlog) #copy scripts print(f"copying scripts to '{builddir}'") shutil.copy2("main_ps3gud.py", os.path.join(builddir, "main_ps3gud.py")) shutil.copy2("utils.py", os.path.join(builddir, "utils.py")) shutil.copy2("updater.py", os.path.join(builddir, "updater.py")) shutil.copy2("PS3GUD.py", os.path.join(builddir, "PS3GUD.py")) shutil.copy2("gui.py", os.path.join(builddir, "gui.py")) #copy data print(f"copying data to '{builddir}'") copyData(builddir, locdirname, imagedirname, source=True) #save commitid saveCommitId(release, builddir) #validate & minify json files print("minifying & validating JSON files") minifyJSON(getJSONFiles()) #build zip if zip_check == True: zipname += "-source" print(f"creating archive '{zipname}.{ARCHIVEFORMAT}'") shutil.make_archive(zipname, ARCHIVEFORMAT, "dist", os.path.relpath(builddir, "dist")) print(f"calculating checksum for archive '{zipname}.{ARCHIVEFORMAT}'") digest = createDigest(zipname+"."+ARCHIVEFORMAT) print(f"checksum written to '{zipname}.{ARCHIVEFORMAT}.sha256'\nchecksum: '{digest}'") if docker == True: print(f'copied build zip to "{dockerdir}"') shutil.copy2(zipname+"."+ARCHIVEFORMAT, os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT)) shutil.copy2(zipname+"."+ARCHIVEFORMAT+".sha256", os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT+".sha256")) if action == "sourcedebug": #debug running from source builddir += "Debug" buildlog = os.path.join(builddir, "build.log") if os.path.exists(builddir): #delete old build shutil.rmtree(builddir, onexc=remove_readonly) os.makedirs(builddir) else: os.makedirs(builddir) with open(buildlog, "w") as f: #write header to buildlog buildheader(release, buildlog) #copy scripts print(f"copying scripts to '{builddir}'") shutil.copy2("main_ps3gud.py", os.path.join(builddir, "main_ps3gud.py")) shutil.copy2("utils.py", os.path.join(builddir, "utils.py")) shutil.copy2("updater.py", os.path.join(builddir, "updater.py")) shutil.copy2("PS3GUD.py", os.path.join(builddir, "PS3GUD.py")) shutil.copy2("gui.py", os.path.join(builddir, "gui.py")) #copy data print(f"copying data to '{builddir}'") copyData(builddir, locdirname, imagedirname, source=True, debug=True) #save commitid saveCommitId(release, builddir) #validate json files print("validating JSON files") for file in getJSONFiles(): validateJSON(file) #build zip if zip_check == True: zipname += "-source-debug" print(f"creating archive '{zipname}.{ARCHIVEFORMAT}'") shutil.make_archive(zipname, ARCHIVEFORMAT, "dist", os.path.relpath(builddir, "dist")) print(f"calculating checksum for archive '{zipname}.{ARCHIVEFORMAT}'") digest = createDigest(zipname+"."+ARCHIVEFORMAT) print(f"checksum written to '{zipname}.{ARCHIVEFORMAT}.sha256'\nchecksum: '{digest}'") if docker == True: print(f'copied build zip to "{dockerdir}"') shutil.copy2(zipname+"."+ARCHIVEFORMAT, os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT)) shutil.copy2(zipname+"."+ARCHIVEFORMAT+".sha256", os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT+".sha256")) if action == "compilerelease": #compiled release #delete old build if os.path.exists(builddir): shutil.rmtree(builddir, onexc=remove_readonly) os.makedirs(builddir) else: os.makedirs(builddir) #build main executable print("building main executable") import PyInstaller.__main__ import PyInstaller.__init__ fh = logging.FileHandler(buildlog) fh.setLevel(logging.DEBUG) fh.setFormatter(logging.Formatter('%(relativeCreated)d %(levelname)s: %(message)s')) log = logging.getLogger("PyInstaller") log.addHandler(fh) arg_main = [ "--name=ps3gud", "--clean", "--onefile", "--windowed", "--icon="+iconpath, "--noupx" ] arg_main.append(mainpyifile) PyInstaller.__main__.run(arg_main) #build updater executable print("building updater executable") arg_updater = [ "--name=PS3GUDup", "--clean", "--onefile", "--windowed", "--noupx" ] arg_updater.append(updaterpyifile) PyInstaller.__main__.run(arg_updater) #move executables to buildir print(f"copying executables to '{builddir}'") shutil.move("dist/ps3gud"+suffix, os.path.join(builddir, "ps3gud"+suffix)) shutil.move("dist/PS3GUDup"+suffix, os.path.join(builddir, "PS3GUDup"+suffix)) #copy data print(f"copying data to '{builddir}'") copyData(builddir, locdirname, imagedirname) #write header to buildlog buildheader(release, buildlog, pyiver=PyInstaller.__init__.__version__, winever=winever) #save commitid saveCommitId(release, builddir) #validate & minify json files print("minifying & validating JSON files") minifyJSON(getJSONFiles()) #build zip if zip_check == True: zipname += "-"+arch print(f"creating archive '{zipname}.{ARCHIVEFORMAT}'") shutil.make_archive(zipname, ARCHIVEFORMAT, "dist", os.path.relpath(builddir, "dist")) print(f"calculating checksum for archive '{zipname}.{ARCHIVEFORMAT}'") digest = createDigest(zipname+"."+ARCHIVEFORMAT) print(f"checksum written to '{zipname}.{ARCHIVEFORMAT}.sha256'\nchecksum: '{digest}'") if docker == True: print(f'copied build zip to "{dockerdir}"') shutil.copy2(zipname+"."+ARCHIVEFORMAT, os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT)) shutil.copy2(zipname+"."+ARCHIVEFORMAT+".sha256", os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT+".sha256")) if action == "compiledebug": #compiled debug builddir += "Debug" buildlog = os.path.join(builddir, "build.log") #delete old build if os.path.exists(builddir): shutil.rmtree(builddir, onexc=remove_readonly) os.makedirs(builddir) else: os.makedirs(builddir) with open(buildlog, "w") as f: import PyInstaller.__main__ import PyInstaller.__init__ fh = logging.FileHandler(os.path.join(builddir, "build.log")) fh.setLevel(logging.DEBUG) fh.setFormatter(logging.Formatter('%(relativeCreated)d %(levelname)s: %(message)s')) log = logging.getLogger("PyInstaller") log.addHandler(fh) #build main executable print("building main executable") arg_main = [ "--name=ps3gud", "--clean", "--onefile", "--icon="+iconpath, "--noupx", "--console" ] arg_main.append(mainpyifile) PyInstaller.__main__.run(arg_main) #build updater executable print("building updater executable") arg_updater = [ "--name=PS3GUDup", "--clean", "--onefile", "--noupx", "--console" ] PyInstaller.__main__.run(arg_updater) #move executables to buildir print(f"copying executables to '{builddir}'") shutil.move("dist/ps3gud"+suffix, os.path.join(builddir, "ps3gud"+suffix)) shutil.move("dist/PS3GUDup"+suffix, os.path.join(builddir, "PS3GUDup"+suffix)) #copy data print(f"copying data to '{builddir}'") copyData(builddir, locdirname, imagedirname, debug=True) #write header to buildlog buildheader(release, buildlog, pyiver=PyInstaller.__init__.__version__, winever=winever) #save commitid saveCommitId(release, builddir) #validate json files print("validating JSON files") for file in getJSONFiles(): validateJSON(file) #build zip if zip_check == True: zipname += "-"+arch+"-debug" print(f"creating archive '{zipname}.{ARCHIVEFORMAT}'") shutil.make_archive(zipname, ARCHIVEFORMAT, "dist", os.path.relpath(builddir, "dist")) print(f"calculating checksum for archive '{zipname}.{ARCHIVEFORMAT}'") digest = createDigest(zipname+"."+ARCHIVEFORMAT) print(f"checksum written to '{zipname}.{ARCHIVEFORMAT}.sha256'\nchecksum: '{digest}'") if docker == True: print(f'copied build zip to "{dockerdir}"') shutil.copy2(zipname+"."+ARCHIVEFORMAT, os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT)) shutil.copy2(zipname+"."+ARCHIVEFORMAT+".sha256", os.path.join(dockerdir, os.path.basename(zipname)+"."+ARCHIVEFORMAT+".sha256")) ================================================ FILE: buildrequirements.txt ================================================ pyinstaller==6.19.0 pyinstaller-hooks-contrib==2026.1 ================================================ FILE: gui.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # # PS3GameUpdateDownloader downloads PS3 game updates from official Sony servers # Copyright (C) 2023 shinrax2 # # This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with this program. If not, see . # builtin import webbrowser import tempfile import platform import os import sys # local files import PS3GUD import utils # pip packages import FreeSimpleGUI as sg import keyring import yaml class Gui: def __init__(self): # setup uncaught exception logging sys.excepthook = utils.logUncaughtException # remove leftover files from updating utils.cleanupAfterUpdate() # setup main classes self.loc = utils.Loc() self.ps3 = PS3GUD.PS3GUD() self.ps3.setLoc(self.loc) self.ps3.loadConfig() self.rel = utils.UpdaterGithubRelease("release.json") self.loc.setLoc(self.ps3.getConfig("currentLoc")) self.ps3.loadTitleDb() # setup data self.TranslationItems = {} self.updateChecked = False self.proxydisabled = False self.noKeyrings = False self.keyring_support_shown = False if platform.system() == "Windows": self.iconpath = os.path.abspath(os.path.join("images", "icon.ico")) else: self.iconpath = os.path.abspath(os.path.join("images", "icon_16x16.png")) # check for avaiable keyring backends and disable proxy support if none is found rings = keyring.backend.get_all_keyring() if ( len(rings) == 1 and isinstance(rings[0], keyring.backends.fail.Keyring) == True ): self.proxydisabled = True self.ps3.config["use_proxy"] = False self.noKeyrings = True # setup window style sg.change_look_and_feel("DarkAmber") def updatePackToTable(self, update): data = [] for pack in update: row = [pack["version"], utils.formatSize(pack["size"]), pack["sysver"]] data.append(row) return data def queueToTable(self, queue, ps3): i = 1 data = [] if len(queue) > 0: for pack in queue: row = [ i, ps3.getTitleNameFromId(pack["gameid"]), pack["gameid"], pack["version"], utils.formatSize(pack["size"]), ] i += 1 data.append(row) else: data.append(["", "", "", "", ""]) return data def retranslateWindow(self, window, loc, items): for key, value in items.items(): window[key].Update(loc.getKey(value)) def getCodeFromQueueData(self, queueData, resp): return queueData[resp][2] + "-" + queueData[resp][3] def mainWin(self): layout = [ # layout for main window [ sg.Text( self.loc.getKey("window_main_titleid_label"), key="window_main_titleid_label", size=(50, 1), ) ], [ sg.Input(key="titleid"), sg.Button( self.loc.getKey("window_main_enter_btn"), key="Enter", bind_return_key=True, ), sg.Button(self.loc.getKey("window_main_queue_btn"), key="Queue"), sg.Button( self.loc.getKey("window_main_rpcs3import_btn"), key="rpcs3import_btn", ), sg.Button(self.loc.getKey("window_main_config_btn"), key="Config"), ], [sg.Text("", size=(30, 3), key="window_main_progress_label")], [ sg.ProgressBar( 0, orientation="h", size=(52.85, 20), key="window_main_progress_bar" ) ], [sg.Output(size=(80, 20), key="Out")], [sg.Button(self.loc.getKey("window_main_exit_btn"), key="Exit")], ] translateMainItems = {} translateMainItems["window_main_titleid_label"] = "window_main_titleid_label" translateMainItems["Enter"] = "window_main_enter_btn" translateMainItems["Config"] = "window_main_config_btn" translateMainItems["Queue"] = "window_main_queue_btn" translateMainItems["Exit"] = "window_main_exit_btn" translateMainItems["rpcs3import_btn"] = "window_main_rpcs3import_btn" self.TranslationItems["mainWindow"] = translateMainItems self.mainWindow = sg.Window( f"{self.loc.getKey('window_main_title')} {self.rel.getVersion()} (Git: {self.rel.getCommitID()})", layout, finalize=True, icon=self.iconpath, ) self.tryDl = False self.titledb_updated = False self.ps3.setWindow(self.mainWindow) self.ps3.logHeader(self.rel.getVersion(), sg.version, self.rel.getCommitID()) self.ps3.logger.log(self.loc.getKey("msg_sonyPS3StoreShutdownNotice")) # main loop while True: if self.noKeyrings == True: if self.keyring_support_shown == False: if self.ps3.getConfig("dont_show_again_keyring_support") == False: self.keyring_supportWin() if self.ps3.useDefaultConfig == True: self.configWin(nocancel=True) if self.titledb_updated == False: self.ps3.checkTitleDbVersion() self.titledb_updated = True if self.ps3.getConfig("checkForNewRelease"): if self.updateChecked == False: self.newReleaseWin() event, value = self.mainWindow.read() if event == "Exit": break if event in (None, "Exit"): break if event == "Config" and self.tryDl == False: self.configWin() if event == "Queue" and self.tryDl == False: self.queueWin() if event == "Enter" and self.tryDl == False: self.ps3.checkForUpdates(value["titleid"]) self.selectWin() if event == "rpcs3import_btn" and self.tryDl == False: self.mainWindow.hide() self.RPCS3ImportWin() self.mainWindow.UnHide() if self.tryDl == True and len(self.ps3.DlList.queue) > 0: self.ps3.downloadFiles(self.mainWindow) self.mainWindow["window_main_progress_label"].Update("") self.mainWindow["window_main_progress_bar"].UpdateBar(0) self.tryDl = False if self.tryDl == True and len(self.ps3.DlList.queue) == 0: self.tryDl = False def newReleaseWin(self): data = self.rel.checkForNewRelease() if data == False: self.ps3.logger.log(self.loc.getKey("msg_relCheckError")) self.updateChecked = True elif data == 1: self.ps3.logger.log(self.loc.getKey("msg_alreadyUpToDate")) self.updateChecked = True elif data == 2: self.ps3.logger.log( self.loc.getKey( "msg_NoReleaseArchiveForPlatformOrArch", [ platform.system(), platform.architecture()[0], utils.isAppFrozen(), ], ) ) self.updateChecked = True else: self.ps3.logger.log( self.loc.getKey("msg_foundNewRelease", [data["version"]]) ) self.updateChecked = True layoutRelNotify = [ [ sg.Text( self.loc.getKey( "window_relNotify_version_label", [self.rel.getVersion(), data["version"]], ) ) ], [sg.Text(self.loc.getKey("window_relNotify_changelog_label"))], [ sg.Column( [ [ sg.Text( self.rel.getChangelog(), size=( 300, len(self.rel.getChangelog().split("\n")) * 2, ), ) ] ], size=(700, 300), scrollable=True, ) ], [ sg.Button(self.loc.getKey("window_relNotify_dl_btn"), key="dl"), sg.Button(self.loc.getKey("window_relNotify_web_btn"), key="web"), sg.Button( self.loc.getKey("window_relNotify_close_btn"), key="close" ), ], ] self.newReleaseWindow = sg.Window( self.loc.getKey("window_relNotify_title"), layoutRelNotify, icon=self.iconpath, ) while True: evRel, valRel = self.newReleaseWindow.read() if evRel == "close": self.newReleaseWindow.close() break if evRel in (None, "Exit"): self.newReleaseWindow.close() break if evRel == "web": webbrowser.open_new(data["releaseUrlWeb"]) self.newReleaseWindow.close() break if evRel == "dl": self.rel.startUpdater() self.newReleaseWindow.close() break def configWin(self, nocancel=False): self.mainWindow.hide() ll = self.loc.getLocs() locChoices = [] for l in ll: locChoices.append(l["language_name"]) layoutConfig = [ [ sg.Text(self.loc.getKey("window_config_dldir_label"), size=(40, 1)), sg.In(self.ps3.getConfig("dldir"), key="dldir"), sg.FolderBrowse(target="dldir"), ], [ sg.Text(self.loc.getKey("window_config_verify_label"), size=(40, 1)), sg.Checkbox("", default=self.ps3.getConfig("verify"), key="verify"), ], [ sg.Text( self.loc.getKey("window_config_checkIfAlreadyDownloaded_label"), size=(40, 1), ), sg.Checkbox( "", default=self.ps3.getConfig("checkIfAlreadyDownloaded"), key="checkIfAlreadyDownloaded", ), ], [ sg.Text( self.loc.getKey("window_config_checkForNewRelease_label"), size=(40, 1), ), sg.Checkbox( "", default=self.ps3.getConfig("checkForNewRelease"), key="checkForNewRelease", ), ], [ sg.Text( self.loc.getKey("window_config_storageThreshold_label"), size=(40, 1), ), sg.In( self.ps3.getConfig("storageThresholdNew"), key="storageThreshold" ), ], [ sg.Text( self.loc.getKey("window_config_currentLoc_label"), size=(40, 1) ), sg.OptionMenu( locChoices, size=(8, 15), key="currentLoc", default_value=self.loc.getKey("language_name"), ), ], [ sg.Text( self.loc.getKey("window_config_renamepkgs_label"), size=(40, 1), tooltip=self.loc.getKey("window_config_renamepkgs_tooltip"), ), sg.Checkbox( "", default=self.ps3.getConfig("rename_pkgs"), key="rename_pkgs", tooltip=self.loc.getKey("window_config_renamepkgs_tooltip"), ), ], [ sg.Text( self.loc.getKey( "window_config_add_all_updates_to_queue_automatically_label" ), size=(40, 1), tooltip=self.loc.getKey( "window_config_add_all_updates_to_queue_automatically_tooltip" ), ), sg.Checkbox( "", default=self.ps3.getConfig( "add_all_updates_to_queue_automatically" ), key="add_all_updates_to_queue_automatically", tooltip=self.loc.getKey( "window_config_add_all_updates_to_queue_automatically_tooltip" ), ), ], [ sg.Text( self.loc.getKey("window_config_bypass_ssl_label"), size=(40, 1), tooltip=self.loc.getKey("window_config_bypass_ssl_tooltip"), ), sg.Checkbox( "", default=self.ps3.getConfig("bypass_ssl"), key="bypass_ssl", tooltip=self.loc.getKey("window_config_bypass_ssl_tooltip"), ), ], [ sg.Text( self.loc.getKey("window_config_updatetitledb_label"), size=(40, 1) ), sg.Checkbox( "", default=self.ps3.getConfig("update_titledb"), key="update_titledb", ), ], [ sg.Text(self.loc.getKey("window_config_useproxy_label"), size=(40, 1)), sg.Checkbox( "", default=self.ps3.getConfig("use_proxy"), key="use_proxy", enable_events=True, ), ], [ sg.Text(self.loc.getKey("window_config_proxyip_label"), size=(40, 1)), sg.In(self.ps3.getConfig("proxy_ip"), key="proxy_ip"), ], [ sg.Text(self.loc.getKey("window_config_proxyport_label"), size=(40, 1)), sg.In(self.ps3.getConfig("proxy_port"), key="proxy_port"), ], [ sg.Text(self.loc.getKey("window_config_proxyuser_laber"), size=(40, 1)), sg.In(self.ps3.getConfig("proxy_user"), key="proxy_user"), ], [ sg.Text(self.loc.getKey("window_config_proxypass_label"), size=(40, 1)), sg.In( self.ps3.getConfig("proxy_pass"), key="proxy_pass", password_char="*", ), ], [ sg.Button(self.loc.getKey("window_config_cancel_btn"), key="Cancel"), sg.Button( self.loc.getKey("window_config_save_btn"), key="Save", bind_return_key=True, ), ], ] self.configWindow = sg.Window( self.loc.getKey("window_config_title"), layoutConfig, finalize=True, icon=self.iconpath, ) if nocancel == True: self.configWindow["Cancel"].Update(disabled=True) if self.proxydisabled == True: self.configWindow["use_proxy"].Update(disabled=True) if self.ps3.getConfig("use_proxy") == False: self.configWindow["proxy_ip"].Update(disabled=True) self.configWindow["proxy_port"].Update(disabled=True) self.configWindow["proxy_user"].Update(disabled=True) self.configWindow["proxy_pass"].Update(disabled=True) while True: evConfig, valConfig = self.configWindow.Read() if evConfig == "Cancel": self.configWindow.Close() self.mainWindow.UnHide() break if evConfig in (None, "Exit"): self.configWindow.Close() self.mainWindow.UnHide() break if evConfig == "use_proxy": if valConfig["use_proxy"] == True: self.configWindow["proxy_ip"].Update(disabled=False) self.configWindow["proxy_port"].Update(disabled=False) self.configWindow["proxy_user"].Update(disabled=False) self.configWindow["proxy_pass"].Update(disabled=False) else: self.configWindow["proxy_ip"].Update(disabled=True) self.configWindow["proxy_port"].Update(disabled=True) self.configWindow["proxy_user"].Update(disabled=True) self.configWindow["proxy_pass"].Update(disabled=True) if evConfig == "Save" and valConfig["currentLoc"] != "": cL = valConfig["currentLoc"] for l in ll: if cL == l["language_name"]: cL = l["language_short"] config = { "dldir": valConfig["dldir"], "verify": valConfig["verify"], "checkIfAlreadyDownloaded": valConfig["checkIfAlreadyDownloaded"], "storageThresholdNew": valConfig["storageThreshold"], "currentLoc": cL, "proxy_ip": valConfig["proxy_ip"], "proxy_port": valConfig["proxy_port"], "use_proxy": valConfig["use_proxy"], "rename_pkgs": valConfig["rename_pkgs"], "update_titledb": valConfig["update_titledb"], "bypass_ssl": valConfig["bypass_ssl"], "add_all_updates_to_queue_automatically": valConfig[ "add_all_updates_to_queue_automatically" ], } self.ps3.setConfig(config) if self.ps3.getConfig("use_proxy") == True: self.ps3.setProxyCredentials( valConfig["proxy_pass"], valConfig["proxy_user"] ) self.loc.setLoc(cL) self.ps3.setupProxy() self.retranslateWindow( self.mainWindow, self.loc, self.TranslationItems["mainWindow"] ) self.configWindow.Close() self.mainWindow.UnHide() break def selectWin(self, only_queue=False): try: updlen = len(self.ps3.Updates[self.ps3.titleid]) except KeyError: updlen = 0 self.tryDl = False if updlen > 0: updates = self.ps3.getUpdates() if self.ps3.getConfig("add_all_updates_to_queue_automatically"): for update in updates: self.ps3.DlList.addEntry(update) self.ps3.logger.log(f"Added {updlen} updates to queue") else: self.mainWindow.hide() data = self.updatePackToTable(updates) lay2 = [ [ sg.Text( self.loc.getKey( "window_select_text_label", [self.ps3.getTitleNameFromId(), self.ps3.titleid], ) ) ], [ sg.Table( values=data, headings=[ self.loc.getKey("window_select_table_ver"), self.loc.getKey("window_select_table_size"), self.loc.getKey("window_select_table_sysver"), ], key="Table", enable_events=True, ) ], [ sg.Text( self.loc.getKey("window_select_help_label"), size=(45, 2) ) ], [ sg.Button( self.loc.getKey("window_select_download_btn"), key="OK", disabled=True, ), sg.Button( self.loc.getKey("window_select_queue_btn"), key="Queue", disabled=True, ), sg.Button( self.loc.getKey("window_select_cancel_btn"), key="Cancel" ), ], ] self.selectWindow = sg.Window( self.loc.getKey("window_select_title"), lay2, icon=self.iconpath ) while True: ev2, val2 = self.selectWindow.Read() if len(val2["Table"]) > 0: if only_queue == False: self.selectWindow["OK"].Update(disabled=False) self.selectWindow["Queue"].Update(disabled=False) if len(val2["Table"]) == 0: self.selectWindow["OK"].Update(disabled=True) self.selectWindow["Queue"].Update(disabled=True) if ev2 in (None, "Exit"): self.selectWindow.Close() self.mainWindow.UnHide() self.tryDl = False break if ev2 == "Cancel": self.selectWindow.Close() self.mainWindow.UnHide() self.tryDl = False break if ev2 == "OK" and len(val2["Table"]) > 0: if len(val2["Table"]) == 1: self.ps3.DlList.addEntry( self.ps3.getUpdates()[val2["Table"][0]] ) self.selectWindow.Close() self.mainWindow.UnHide() self.tryDl = True break if len(val2["Table"]) > 1: for row in val2["Table"]: self.ps3.DlList.addEntry(self.ps3.getUpdates()[row]) self.selectWindow.Close() self.mainWindow.UnHide() self.tryDl = True break if ev2 == "Queue" and len(val2["Table"]) > 0: if len(val2["Table"]) == 1: self.ps3.DlList.addEntry( self.ps3.getUpdates()[val2["Table"][0]] ) self.selectWindow.Close() self.mainWindow.UnHide() self.tryDl = False break if len(val2["Table"]) > 1: for row in val2["Table"]: self.ps3.DlList.addEntry(self.ps3.getUpdates()[row]) self.selectWindow.Close() self.mainWindow.UnHide() self.tryDl = False break def queueWin(self): self.mainWindow.hide() queueData = self.queueToTable(self.ps3.DlList.queue, self.ps3) layQueue = [ [ sg.Table( values=queueData, headings=[ self.loc.getKey("window_queue_table_num"), self.loc.getKey("window_queue_table_game"), self.loc.getKey("window_queue_table_titleid"), self.loc.getKey("window_queue_table_ver"), self.loc.getKey("window_queue_table_size"), ], key="Table", enable_events=True, ) ], [ sg.Text( self.loc.getKey( "window_queue_totalsize_label", [utils.formatSize(self.ps3.DlList.getTotalDownloadSize())], ), key="TotalSize", size=(20, 1), ) ], [ sg.Text(self.loc.getKey("window_queue_export_label")), sg.Input("", key="exportFile"), sg.FileSaveAs(target="exportFile"), sg.Button(self.loc.getKey("window_queue_export_btn"), key="export"), ], [ sg.Button( self.loc.getKey("window_queue_moveup_btn"), key="Move Up", disabled=True, ), sg.Button( self.loc.getKey("window_queue_movedown_btn"), key="Move Down", disabled=True, ), sg.Button( self.loc.getKey("window_queue_remove_btn"), key="Remove", disabled=True, ), ], [ sg.Button(self.loc.getKey("window_queue_download_btn"), key="Download"), sg.Button(self.loc.getKey("window_queue_close_btn"), key="Close"), ], ] self.queueWindow = sg.Window( self.loc.getKey("window_queue_title"), layQueue, icon=self.iconpath ) while True: evQueue, valQueue = self.queueWindow.read() if len(valQueue["Table"]) == 0: self.queueWindow["Move Up"].Update(disabled=True) self.queueWindow["Move Down"].Update(disabled=True) self.queueWindow["Remove"].Update(disabled=True) if len(valQueue["Table"]) == 1: self.queueWindow["Move Up"].Update(disabled=False) self.queueWindow["Move Down"].Update(disabled=False) self.queueWindow["Remove"].Update(disabled=False) if len(valQueue["Table"]) > 1: self.queueWindow["Move Up"].Update(disabled=True) self.queueWindow["Move Down"].Update(disabled=True) self.queueWindow["Remove"].Update(disabled=False) if evQueue == "Move Up": if len(valQueue["Table"]) == 1: if len(self.ps3.DlList.queue) > 1: self.ps3.DlList.moveUp( self.getCodeFromQueueData(queueData, valQueue["Table"][0]) ) queueData = self.queueToTable(self.ps3.DlList.queue, self.ps3) self.queueWindow["Table"].Update(values=queueData) if evQueue == "Move Down": if len(valQueue["Table"]) == 1: if len(self.ps3.DlList.queue) > 1: self.ps3.DlList.moveDown( self.getCodeFromQueueData(queueData, valQueue["Table"][0]) ) queueData = self.queueToTable(ps3.DlList.queue, ps3) self.queueWindow["Table"].Update(values=queueData) if evQueue == "Remove": for row in valQueue["Table"]: code = self.getCodeFromQueueData(queueData, row) self.ps3.DlList.removeEntry(code) queueData = self.queueToTable(self.ps3.DlList.queue, self.ps3) self.queueWindow["Table"].Update(values=queueData) self.queueWindow["TotalSize"].Update( self.loc.getKey( "window_queue_totalsize_label", [utils.formatSize(self.ps3.DlList.getTotalDownloadSize())], ) ) if evQueue == "Download": self.tryDl = True self.queueWindow.Close() self.mainWindow.UnHide() break if evQueue == "export" and valQueue["exportFile"] != "": self.ps3.DlList.exportQueue(valQueue["exportFile"]) self.msgBox( self.loc.getKey( "window_msgBox_queueExported_label", [valQueue["exportFile"]] ), self.loc.getKey("window_msgBox_queueExported_title"), self.queueWindow, ) if evQueue in (None, "Exit"): self.queueWindow.Close() self.mainWindow.UnHide() break if evQueue == "Close": self.queueWindow.Close() self.mainWindow.UnHide() break def keyring_supportWin(self): self.keyring_support_shown = True keyring_url = "https://github.com/jaraco/keyring" layout = [ [ sg.Text( self.loc.getKey("window_keyring_support_info_label", [keyring_url]) ) ], [ sg.Checkbox( self.loc.getKey("window_keyring_support_dont_show_again_label"), default=False, key="dont_show_again", ), sg.Button(self.loc.getKey("window_keyring_support_ok_btn"), key="ok"), sg.Button( self.loc.getKey("window_keyring_support_browser_btn"), key="browser" ), ], ] self.mainWindow.hide() self.keyring_supportWindow = sg.Window( self.loc.getKey("window_keyring_support_title"), layout, size=(600, 100), icon=self.iconpath, ) while True: ev, val = self.keyring_supportWindow.read() if ev == "ok": if val["dont_show_again"] == True: self.ps3.config["dont_show_again_keyring_support"] = True self.ps3.saveConfig() self.keyring_supportWindow.Close() self.mainWindow.UnHide() break if ev == "browser": webbrowser.open_new(keyring_url) if ev in (None, "Exit"): self.keyring_supportWindow.Close() self.mainWindow.UnHide() break def msgBox(self, text, title, parent): layout = [ [sg.Text(text)], [sg.Button(self.loc.getKey("window_msgBox_ok_btn"), key="ok")], ] parent.hide() win = sg.Window(title, layout, icon=self.iconpath) while True: ev, val = win.read() if ev == "ok": win.Close() break if ev in (None, "Exit"): win.Close() break parent.UnHide() def RPCS3ImportWin(self): layout = [ [sg.Text(self.loc.getKey("window_rpcs3import_label"))], [ sg.In("", key="rpcs3dir"), sg.FileBrowse( target="rpcs3dir", file_types=(("games.yml", "games.yml"),) ), ], [sg.Button(self.loc.getKey("window_rpcs3import_ok_btn"), key="OK")], ] win = sg.Window( self.loc.getKey("window_rpcs3import_title"), layout, icon=self.iconpath ) while True: ev, val = win.read() if ev == "OK": if os.path.isfile(val["rpcs3dir"]) == True: with open(val["rpcs3dir"], "r") as f: data = yaml.safe_load(f) for gameid in data: self.ps3.checkForUpdates(gameid) self.selectWin(only_queue=True) win.Close() break if ev in (None, "Exit"): win.Close() break ================================================ FILE: loc/de.json ================================================ { "language_name": { "string": "Deutsch", "comment": "Name of the language" }, "language_short": { "string": "de", "comment": "Name of the language file" }, "window_main_title": { "string": "PS3 Game Update Downloader", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "TitleID Eingeben", "comment": "" }, "window_main_enter_btn": { "string": "Suchen", "comment": "" }, "window_main_progress_label": { "string": "Lade Datei {0} herunter:\n{1}/{2}({3}%)\nGeschwindigkeit: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "Konfiguration", "comment": "" }, "window_main_exit_btn": { "string": "Verlassen", "comment": "" }, "window_main_queue_btn": { "string": "Warteschlange", "comment": "" }, "window_config_title": { "string": "Konfiguration", "comment": "" }, "window_config_dldir_label": { "string": "Downloadverzeichnis:", "comment": "" }, "window_config_verify_label": { "string": "Dateien überprüfen:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "Prüfen, ob Dateien bereits heruntergeladen wurden:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "Neue Version beim Starten suchen:", "comment": "" }, "window_config_storageThreshold_label": { "string": "Speichergrenze (in GiB):", "comment": "" }, "window_config_currentLoc_label": { "string": "Sprache:", "comment": "" }, "window_config_renamepkgs_label": { "string": "PKGs umbenennen:", "comment": "" }, "window_config_renamepkgs_tooltip": { "string": "Benenne PKGs in $GAMENAME_[$GAMEID]_$GAMEVERSION um", "comment": "" }, "window_config_updatetitledb_label": { "string": "Beim Start TitleDB aktualisieren:", "comment": "" }, "window_config_useproxy_label": { "string": "Proxy benutzen? (NUR SOCKS5!)", "comment": "" }, "window_config_proxyip_label": { "string": "Proxy-IP:", "comment": "" }, "window_config_proxyport_label": { "string": "Proxy-Port:", "comment": "" }, "window_config_proxyuser_laber": { "string": "Proxy-Benutzer:", "comment": "" }, "window_config_proxypass_label": { "string": "Proxy-Passwort", "comment": "" }, "window_config_cancel_btn": { "string": "Abbrechen", "comment": "" }, "window_config_save_btn": { "string": "Speichern", "comment": "" }, "window_select_title": { "string": "Updates auswählen", "comment": "" }, "window_select_text_label": { "string": "Spiel: {0}\tTitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "Version", "comment": "" }, "window_select_table_size": { "string": "Dateigröße", "comment": "" }, "window_select_table_sysver": { "string": "PS3 FW Version", "comment": "" }, "window_select_download_btn": { "string": "Herunterladen", "comment": "" }, "window_select_cancel_btn": { "string": "Abbrechen", "comment": "" }, "window_select_queue_btn": { "string": "Zur Downloadwarteschlange hinzufügen", "comment": "" }, "window_select_help_label": { "string": "Halten Sie Strg gedrückt und klicken auf die Updates, die Sie auswählen möchten.", "comment": "" }, "window_relNotify_title": { "string": "Neue Version gefunden!", "comment": "" }, "window_relNotify_version_label": { "string": "Aktuelle Version: {0}\nNeue Version: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "Neuerungen:", "comment": "" }, "window_relNotify_web_btn": { "string": "Öffne Website im Browser", "comment": "" }, "window_relNotify_dl_btn": { "string": "Update herunterladen und installieren", "comment": "" }, "window_relNotify_close_btn": { "string": "Schließen", "comment": "" }, "window_queue_title": { "string": "Downloadwarteschlange", "comment": "" }, "window_queue_table_num": { "string": "Num", "comment": "" }, "window_queue_table_game": { "string": "Spiel", "comment": "" }, "window_queue_table_titleid": { "string": "TitleID", "comment": "" }, "window_queue_table_ver": { "string": "Version", "comment": "" }, "window_queue_table_size": { "string": "Dateigröße", "comment": "" }, "window_queue_download_btn": { "string": "Herunterladen", "comment": "" }, "window_queue_close_btn": { "string": "Schließen", "comment": "" }, "window_queue_moveup_btn": { "string": "Nach Oben", "comment": "" }, "window_queue_movedown_btn": { "string": "Nach Unten", "comment": "" }, "window_queue_remove_btn": { "string": "Löschen", "comment": "" }, "window_queue_totalsize_label": { "string": "Gesamtgröße: {0}", "comment": "0: Total download size of queue" }, "window_queue_export_label": { "string": "Exportiere Warteschlange nach:", "comment": "" }, "window_queue_export_btn": { "string": "Exportieren", "comment": "" }, "window_keyring_support_info_label": { "string": "Kein brauchbares keyring backend gefunden.\nBesuche bitte die Website von keyring für eine Installationsanleitung.\n{0}", "comment": "0: Url of keyring homepage" }, "window_keyring_support_dont_show_again_label": { "string": "Nicht nochmal anzeigen", "comment": "" }, "window_keyring_support_ok_btn": { "string": "Ok", "comment": "" }, "window_keyring_support_browser_btn": { "string": "Im Browser öffnen", "comment": "" }, "window_keyring_support_title": { "string": "Achtung! Proxy Unterstützung deaktiviert!", "comment": "" }, "window_msgBox_ok_btn": { "string": "Ok", "comment": "" }, "window_msgBox_queueExported_title": { "string": "Warteschlange exportiert", "comment": "" }, "window_msgBox_queueExported_label": { "string": "Warteschlange nach \"{0}\" exportiert.", "comment": "0: File name" }, "msg_configFileLoaded": { "string": "Konfigurationsdatei geladen!", "comment": "" }, "msg_noConfigFile": { "string": "Keine Konfigurationsdatei gefunden! Benutze Vorgaben!", "comment": "" }, "msg_configFileSaved": { "string": "Konfigurationsdatei gespeichert!", "comment": "" }, "msg_loadedTitledb": { "string": "TitleDB \"{0}\" geladen", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "Spiel: {0}\t TitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "TitleID ist falsch!", "comment": "" }, "msg_metaNotAvailable": { "string": "Die Metadatei für diese TitleID ist nicht verfügbar!", "comment": "" }, "msg_metaFileEmpty": { "string": "Die Metadatei für diese TitleID enthält keine Informationen!", "comment": "" }, "msg_startingDownloads": { "string": "Starte Download der Updates", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "Datei \"{0}\" wurde bereits heruntergeladen! Überspringen! Nicht überprüft!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "Datei \"{0}\" wurde bereits heruntergeladen! Überspringen! SHA-1 überprüft!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "Starte Download {0} von {1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "Überprüfung von \"{0}\" war erfolgreich!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "Überprüfung von \"{0}\" ist gescheitert!\tDatei wird gelöscht!", "comment": "0: File name" }, "msg_noVerify": { "string": "Datei \"{0}\" wurde nicht überprüft!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "{0} Dateien wurden heruntergeladen!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "Nicht genügend Speicherplatz!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "Freier Speicherplatz unter {0}", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "Konnte nicht nach neuer Version suchen!", "comment": "" }, "msg_alreadyUpToDate": { "string": "Bereits neuste Version!", "comment": "" }, "msg_foundNewRelease": { "string": "Neue Version \"{0}\" gefunden", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "Konnte kein Release für ihre Plattform oder Architektur finden. Plattform: \"{0}\" Architektur: \"{1}\" Kompiliert: \"{2}\"", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "Ihr ausgewählter Download-Ordner \"{0}\" ist nicht schreibbar!", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "Bitte stellen Sie sicher, dass die Proxy-Einstellungen korrekt sind!", "comment": "" }, "msg_sonyPS3StoreShutdownNotice": { "string": "!!! IMPORTANT !!! Sony hat angekündigt, den PS3-Store am 02.07.21 zu schließen und diese Entscheidung später rückgängig gemacht. Es scheint, dass in der Zeit zwischen der Ankündigung und der Rücknahme wurden einige Spielupdates gelöscht wurden. Ich empfehle Ihnen, Ihre heruntergeladenen Spielupdates zu sichern.", "comment": "" }, "msg_newTitleDbVersion": { "string": "Neue Version der TitleDB heruntergeladen.", "comment": "" } } ================================================ FILE: loc/en.json ================================================ { "language_name": { "string": "English", "comment": "Name of the language" }, "language_short": { "string": "en", "comment": "Name of the language file" }, "window_main_title": { "string": "PS3 Game Update Downloader", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "Enter TitleID", "comment": "" }, "window_main_enter_btn": { "string": "Search", "comment": "" }, "window_main_progress_label": { "string": "Downloading file {0}:\n{1}/{2}({3}%)\nSpeed: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "Configuration", "comment": "" }, "window_main_exit_btn": { "string": "Exit", "comment": "" }, "window_main_queue_btn": { "string": "Queue", "comment": "" }, "window_config_title": { "string": "Configuration", "comment": "" }, "window_config_dldir_label": { "string": "Download directory:", "comment": "" }, "window_config_verify_label": { "string": "Verify files:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "Check if file was already downloaded:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "Check for a new release at startup:", "comment": "" }, "window_config_storageThreshold_label": { "string": "Storage threshold (in GiB):", "comment": "" }, "window_config_currentLoc_label": { "string": "Language:", "comment": "" }, "window_config_renamepkgs_label": { "string": "Rename PKGs:", "comment": "" }, "window_config_renamepkgs_tooltip": { "string": "Renames PKGs to $GAMENAME_[$GAMEID]_$GAMEVERSION", "comment": "" }, "window_config_add_all_updates_to_queue_automatically_label": { "string": "Add all updates to queue automatically:", "comment": "" }, "window_config_add_all_updates_to_queue_automatically_tooltip": { "string": "Automatically add all game updates to queue without displaying the confirmation and selection window", "comment": "" }, "window_config_bypass_ssl_label": { "string": "Bypass SSL(Insecure):", "comment": "" }, "window_config_bypass_ssl_tooltip": { "string": "Only try this if you have problems finding updates.\nDo not attempt to resolve and validate SSL when downloading.", "comment": "" }, "window_config_updatetitledb_label": { "string": "Update TitleDB on startup:", "comment": "" }, "window_config_useproxy_label": { "string": "Use Proxy? (ONLY SOCKS5!)", "comment": "" }, "window_config_proxyip_label": { "string": "Proxy IP:", "comment": "" }, "window_config_proxyport_label": { "string": "Proxy Port:", "comment": "" }, "window_config_proxyuser_laber": { "string": "Proxy User:", "comment": "" }, "window_config_proxypass_label": { "string": "Proxy Password", "comment": "" }, "window_config_cancel_btn": { "string": "Cancel", "comment": "" }, "window_config_save_btn": { "string": "Save", "comment": "" }, "window_select_title": { "string": "Select Updates", "comment": "" }, "window_select_text_label": { "string": "Game: {0}\tTitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "Version", "comment": "" }, "window_select_table_size": { "string": "Filesize", "comment": "" }, "window_select_table_sysver": { "string": "PS3 FW Version", "comment": "" }, "window_select_download_btn": { "string": "Download", "comment": "" }, "window_select_cancel_btn": { "string": "Cancel", "comment": "" }, "window_select_queue_btn": { "string": "Add to download queue", "comment": "" }, "window_select_help_label": { "string": "Hold Ctrl and click on the updates you want to select.", "comment": "" }, "window_relNotify_title": { "string": "New release found!", "comment": "" }, "window_relNotify_version_label": { "string": "Current version: {0}\nNew version: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "Changelog:", "comment": "" }, "window_relNotify_web_btn": { "string": "Open website in browser", "comment": "" }, "window_relNotify_dl_btn": { "string": "Download and install update", "comment": "" }, "window_relNotify_close_btn": { "string": "Close", "comment": "" }, "window_queue_title": { "string": "Download queue", "comment": "" }, "window_queue_table_num": { "string": "Num", "comment": "" }, "window_queue_table_game": { "string": "Game", "comment": "" }, "window_queue_table_titleid": { "string": "TitleID", "comment": "" }, "window_queue_table_ver": { "string": "Version", "comment": "" }, "window_queue_table_size": { "string": "Filesize", "comment": "" }, "window_queue_download_btn": { "string": "Start Download", "comment": "" }, "window_queue_close_btn": { "string": "Close", "comment": "" }, "window_queue_moveup_btn": { "string": "Move Up", "comment": "" }, "window_queue_movedown_btn": { "string": "Move Down", "comment": "" }, "window_queue_remove_btn": { "string": "Remove", "comment": "" }, "window_queue_totalsize_label": { "string": "Total Size: {0}", "comment": "0: Total download size of queue" }, "window_queue_export_label": { "string": "Export queue to:", "comment": "" }, "window_queue_export_btn": { "string": "Export", "comment": "" }, "window_keyring_support_info_label": { "string": "No viable keyring backends were found.\nPlease check the homepage of keyring for an installation guide.\n{0}", "comment": "0: Url of keyring homepage" }, "window_keyring_support_dont_show_again_label": { "string": "Don't show again", "comment": "" }, "window_keyring_support_ok_btn": { "string": "Ok", "comment": "" }, "window_keyring_support_browser_btn": { "string": "Open in browser", "comment": "" }, "window_keyring_support_title": { "string": "Warning! Proxy support disabled!", "comment": "" }, "window_msgBox_ok_btn": { "string": "Ok", "comment": "" }, "window_msgBox_queueExported_title": { "string": "Queue exported", "comment": "" }, "window_msgBox_queueExported_label": { "string": "Queue exported to \"{0}\".", "comment": "0: File name" }, "msg_configFileLoaded": { "string": "Loaded configuration file!", "comment": "" }, "msg_noConfigFile": { "string": "No configuration file found! Using defaults!", "comment": "" }, "msg_configFileSaved": { "string": "Saved configuration file!", "comment": "" }, "msg_loadedTitledb": { "string": "Loaded TitleDB \"{0}\"", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "Game is: {0}\t TitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "TitleID is invalid!", "comment": "" }, "msg_metaNotAvailable": { "string": "Meta file for this TitleID is not available!", "comment": "" }, "msg_metaFileEmpty": { "string": "Meta file for this TitleID contains no info!", "comment": "" }, "msg_startingDownloads": { "string": "Starting download of updates", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "File \"{0}\" was already downloaded! Skipping it! Not verified!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "File \"{0}\" was already downloaded! Skipping it! SHA-1 Verified!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "Starting download {0} of {1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "Verification of \"{0}\" was successful!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "Verification of \"{0}\" has failed!\tDeleting file!", "comment": "0: File name" }, "msg_noVerify": { "string": "File \"{0}\" was not verified!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "Finished downloading {0} files!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "Not enough free disc space!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "Free disc space is below {0}", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "Couldn't check for new release!", "comment": "" }, "msg_alreadyUpToDate": { "string": "Already on the newest release!", "comment": "" }, "msg_foundNewRelease": { "string": "Found new Release \"{0}\"", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "Couldn't find a release archive for you architecture or platform. Platform: \"{0}\" Architecture: \"{1}\" Compiled: \"{2}\"", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "Your select directory for downloads \"{0}\" is not writeable!", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "Please verify your proxy settings are correct!", "comment": "" }, "msg_metaFileBrokenSyntax": { "string": "The requested meta file for \"{0}\" contains broken syntax. This is most likely due to Sony prepairing to shutdown the update servers.", "comment": "0: TitleID" }, "msg_sonyPS3StoreShutdownNotice": { "string": "!!! IMPORTANT !!! Sony has announced that they will be closing the PS3 store on 02.07.21 and later reversed that decision. It seems that some game updates got deleted in the time between the announcement and its reversal. I recommend you backup your downloaded game updates.", "comment": "" }, "msg_newTitleDbVersion": { "string": "Downloaded new version of TitleDB", "comment": "" }, "window_main_rpcs3import_btn": { "string": "Import from RPCS3", "comment": "" }, "window_rpcs3import_label": { "string": "Please point to \"games.yml\" of your RPCS3 installation.", "comment": "" }, "window_rpcs3import_ok_btn": { "string": "OK", "comment": "" }, "window_rpcs3import_title": { "string": "Import from RPCS3", "comment": "" } } ================================================ FILE: loc/es_ES.json ================================================ { "language_name": { "string": "Castellano", "comment": "Name of the language" }, "language_short": { "string": "es_ES", "comment": "Name of the language file" }, "window_main_title": { "string": "PS3 Game Update Downloader", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "Introduce un TitleID", "comment": "" }, "window_main_enter_btn": { "string": "Buscar", "comment": "" }, "window_main_progress_label": { "string": "Descargando archivo {0}:\n{1}/{2}({3}%)\nVelocidad: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "Configuración", "comment": "" }, "window_main_exit_btn": { "string": "Salir", "comment": "" }, "window_main_queue_btn": { "string": "Cola", "comment": "" }, "window_config_title": { "string": "Configuración", "comment": "" }, "window_config_dldir_label": { "string": "Directorio de descargas:", "comment": "" }, "window_config_verify_label": { "string": "Verificar archivos:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "Comprobar si los archivos ya han sido descargados:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "Buscar nuevas versiones del programa al iniciar:", "comment": "" }, "window_config_storageThreshold_label": { "string": "Límite de almacenamiento (en GB):", "comment": "" }, "window_config_currentLoc_label": { "string": "Idioma/Language:", "comment": "" }, "window_config_renamepkgs_label": { "string": "Renombrar archivos PKG:", "comment": "" }, "window_config_renamepkgs_tooltip": { "string": "Renombra los archivos PKGs a $NOMBRDEJUEGO_[$IDDEJUEGO]_$VERSIONDEJUEGO", "comment": "" }, "window_config_updatetitledb_label": { "string": "Actualizar TitleDB al iniciar:", "comment": "" }, "window_config_useproxy_label": { "string": "¿Utilizar un servidor proxy? (¡SOLO SOCKS5!)", "comment": "" }, "window_config_proxyip_label": { "string": "IP del servidor proxy:", "comment": "" }, "window_config_proxyport_label": { "string": "Puerto del servidor proxy:", "comment": "" }, "window_config_proxyuser_laber": { "string": "Nombre de usuario del servidor proxy:", "comment": "" }, "window_config_proxypass_label": { "string": "Contraseña del servidor proxy:", "comment": "" }, "window_config_cancel_btn": { "string": "Cancelar", "comment": "" }, "window_config_save_btn": { "string": "Guardar", "comment": "" }, "window_select_title": { "string": "Selección de actualizaciones", "comment": "" }, "window_select_text_label": { "string": "Juego: {0}\tTitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "Versión", "comment": "" }, "window_select_table_size": { "string": "Tamaño del archivo", "comment": "" }, "window_select_table_sysver": { "string": "Versión de firmware de PS3", "comment": "" }, "window_select_download_btn": { "string": "Descargar", "comment": "" }, "window_select_cancel_btn": { "string": "Cancelar", "comment": "" }, "window_select_queue_btn": { "string": "Añadir a la cola de descargas", "comment": "" }, "window_select_help_label": { "string": "Mantén pulsada la tecla Ctrl y haz clic en las actualizaciones que quieras seleccionar.", "comment": "" }, "window_relNotify_title": { "string": "¡Nueva versión encontrada!", "comment": "" }, "window_relNotify_version_label": { "string": "Versión actual: {0}\nVersión más reciente: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "Historial de cambios:", "comment": "" }, "window_relNotify_web_btn": { "string": "Abrir web en navegador", "comment": "" }, "window_relNotify_dl_btn": { "string": "Descargar e instalar actualización", "comment": "" }, "window_relNotify_close_btn": { "string": "Cerrar", "comment": "" }, "window_queue_title": { "string": "Cola de descargas", "comment": "" }, "window_queue_table_num": { "string": "N.º", "comment": "" }, "window_queue_table_game": { "string": "Juego", "comment": "" }, "window_queue_table_titleid": { "string": "TitleID", "comment": "" }, "window_queue_table_ver": { "string": "Versión", "comment": "" }, "window_queue_table_size": { "string": "Tamaño", "comment": "" }, "window_queue_download_btn": { "string": "Iniciar descarga", "comment": "" }, "window_queue_close_btn": { "string": "Cerrar", "comment": "" }, "window_queue_moveup_btn": { "string": "Subir", "comment": "" }, "window_queue_movedown_btn": { "string": "Bajar", "comment": "" }, "window_queue_remove_btn": { "string": "Quitar", "comment": "" }, "window_queue_totalsize_label": { "string": "Tamaño total: {0}", "comment": "0: Total download size of queue" }, "window_queue_export_label": { "string": "Exportar cola a:", "comment": "" }, "window_queue_export_btn": { "string": "Exportar", "comment": "" }, "window_keyring_support_info_label": { "string": "No se han encontrado backends de keyrings viables.\nBusca una guía de instalación en la página web del keyring.\n{0}", "comment": "0: Url of keyring homepage" }, "window_keyring_support_dont_show_again_label": { "string": "No volver a mostrar", "comment": "" }, "window_keyring_support_ok_btn": { "string": "Aceptar", "comment": "" }, "window_keyring_support_browser_btn": { "string": "Abrir en navegador", "comment": "" }, "window_keyring_support_title": { "string": "¡Aviso! ¡El soporte de servidores proxy está desactivado!", "comment": "" }, "window_msgBox_ok_btn": { "string": "Aceptar", "comment": "" }, "window_msgBox_queueExported_title": { "string": "Cola exportada", "comment": "" }, "window_msgBox_queueExported_label": { "string": "Cola exportada a «{0}».", "comment": "0: File name" }, "msg_configFileLoaded": { "string": "¡Archivo de configuración cargado!", "comment": "" }, "msg_noConfigFile": { "string": "¡No se ha encontrado un archivo de configuración! ¡Se utilizará la configuración predeterminada!", "comment": "" }, "msg_configFileSaved": { "string": "¡Archivo de configuración guardado!", "comment": "" }, "msg_loadedTitledb": { "string": "TitleDB cargado: «{0}»", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "Juego: {0}\t TitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "¡El TitleID no es válido!", "comment": "" }, "msg_metaNotAvailable": { "string": "¡No está disponible el archivo de metadatos de este TitleID!", "comment": "" }, "msg_metaFileEmpty": { "string": "¡El archivo de metadatos de este TitleID no contiene información!", "comment": "" }, "msg_startingDownloads": { "string": "Iniciando descarga de actualizaciones", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "¡El archivo «{0}» ya se ha descargado, omitiendo! ¡Archivo sin verificar!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "¡El archivo «{0}» ya se ha descargado, omitiendo! ¡SHA-1 verificado!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "Iniciando descarga {0} de {1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "¡La verificación de «{0}» ha tenido éxito!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "¡La verificación de «{0}» ha fallado!\t¡Eliminando el archivo!", "comment": "0: File name" }, "msg_noVerify": { "string": "¡El archivo «{0}» no ha sido verificado!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "¡Se han terminado de descargar {0} archivos!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "¡No queda espacio en el disco!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "El espacio en disco está por debajo de {0}", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "¡No se ha podido comprobar si hay versiones nuevas!", "comment": "" }, "msg_alreadyUpToDate": { "string": "¡Ya tienes la última versión!", "comment": "" }, "msg_foundNewRelease": { "string": "Se ha encontrado una versión nueva: «{0}»", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "No se ha podido encontrar un archivo de esta versión para tu arquitectura o plataforma. Platforma: «{0}» Arquitectura: «{1}» Compilación: «{2}»", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "¡La carpeta de descargas «{0}» no tiene permisos de escritura!", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "¡Comprueba que tu configuración del servidor proxy sea correcta!", "comment": "" }, "msg_metaFileBrokenSyntax": { "string": "El archivo de metadatos solicitado para «{0}» contiene una sintaxis errónea. Probablemente el motivo es que Sony se está preparando para desconectar los servidores de actualización.", "comment": "0: TitleID" }, "msg_sonyPS3StoreShutdownNotice": { "string": "¡¡¡IMPORTANTE!!! Sony anunció el 07/02/21 que cerrarían la Store de PS3, pero más tarde cancelaron esa decisión. Parece ser que entre anuncios se eliminaron algunas actualizaciones de juegos. Recomiendo guardar una copia de seguridad de las actualizaciones descargadas.", "comment": "" }, "msg_newTitleDbVersion": { "string": "Se ha descargado una nueva versión del TitleDB", "comment": "" } } ================================================ FILE: loc/it.json ================================================ { "language_name": { "string": "Italiano", "comment": "Name of the language" }, "language_short": { "string": "it", "comment": "Name of the language file" }, "window_main_title": { "string": "PS3 Game Update Downloader", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "Inserisci il TitleID", "comment": "" }, "window_main_enter_btn": { "string": "Cerca", "comment": "" }, "window_main_progress_label": { "string": "Download file {0}:\n{1}/{2}({3}%)\nVelocità: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "Configurazione", "comment": "" }, "window_main_exit_btn": { "string": "Esci", "comment": "" }, "window_main_queue_btn": { "string": "Coda", "comment": "" }, "window_config_title": { "string": "Configurazione", "comment": "" }, "window_config_dldir_label": { "string": "Cartella di download:", "comment": "" }, "window_config_verify_label": { "string": "Verifica file:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "Controlla se il file è già stato scaricato:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "Cerca una nuova versione all'avvio:", "comment": "" }, "window_config_currentLoc_label": { "string": "Lingua:", "comment": "" }, "window_config_useproxy_label": { "string": "Utilizzare Proxy? (SOLO SOCKS5!)", "comment": "" }, "window_config_proxyip_label": { "string": "IP Proxy:", "comment": "" }, "window_config_proxyport_label": { "string": "Porta Proxy:", "comment": "" }, "window_config_proxyuser_laber": { "string": "Utente Proxy:", "comment": "" }, "window_config_proxypass_label": { "string": "Password Proxy", "comment": "" }, "window_config_cancel_btn": { "string": "Annulla", "comment": "" }, "window_config_save_btn": { "string": "Salva", "comment": "" }, "window_select_title": { "string": "Seleziona Aggiornamenti", "comment": "" }, "window_select_text_label": { "string": "Gioco: {0}\tTitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "Versione", "comment": "" }, "window_select_table_size": { "string": "Dimensione file", "comment": "" }, "window_select_table_sysver": { "string": "Versione FW PS3", "comment": "" }, "window_select_download_btn": { "string": "Scarica", "comment": "" }, "window_select_cancel_btn": { "string": "Annulla", "comment": "" }, "window_select_queue_btn": { "string": "Aggiungi alla coda dei download", "comment": "" }, "window_select_help_label": { "string": "Tieni premuto Ctrl e clicca gli aggiornamenti che vuoi selezionare.", "comment": "" }, "window_relNotify_title": { "string": "Nuova versione trovata!", "comment": "" }, "window_relNotify_version_label": { "string": "Versione in uso: {0}\nNuova versione: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "Cambiamenti:", "comment": "" }, "window_relNotify_web_btn": { "string": "Apri sito web nel browser", "comment": "" }, "window_relNotify_dl_btn": { "string": "Scarica e installa aggiornamento", "comment": "" }, "window_relNotify_close_btn": { "string": "Chiudi", "comment": "" }, "window_queue_title": { "string": "Coda download", "comment": "" }, "window_queue_table_num": { "string": "Num", "comment": "" }, "window_queue_table_game": { "string": "Gioco", "comment": "" }, "window_queue_table_titleid": { "string": "TitleID", "comment": "" }, "window_queue_table_ver": { "string": "Versione", "comment": "" }, "window_queue_table_size": { "string": "Dimensione file", "comment": "" }, "window_queue_download_btn": { "string": "Avvia Download", "comment": "" }, "window_queue_close_btn": { "string": "Chiudi", "comment": "" }, "window_queue_moveup_btn": { "string": "Sposta in Alto", "comment": "" }, "window_queue_movedown_btn": { "string": "Sposta in Basso", "comment": "" }, "window_queue_remove_btn": { "string": "Rimuovi", "comment": "" }, "window_queue_totalsize_label": { "string": "Dimensioni Totali: {0}", "comment": "0: Total download size of queue" }, "msg_configFileLoaded": { "string": "File di configurazione caricato!", "comment": "" }, "msg_noConfigFile": { "string": "Nessun file di configurazione trovato! Verranno utilizzati i valori predefiniti!", "comment": "" }, "msg_configFileSaved": { "string": "File di configurazione salvato!", "comment": "" }, "msg_loadedTitledb": { "string": "Caricato TitleDB \"{0}\"", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "Il gioco è: {0}\t TitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "Il TitleID non è valido!", "comment": "" }, "msg_metaNotAvailable": { "string": "Il file meta per questo TitleID non è disponibile!", "comment": "" }, "msg_metaFileEmpty": { "string": "Il file meta per questo TitleID non contiene informazioni!", "comment": "" }, "msg_startingDownloads": { "string": "Avvio del download degli aggiornamenti", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "Il file \"{0}\" è già stato scaricato! Lo salto! Non verificato!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "Il file \"{0}\" è già stato scaricato! Lo salto! SHA-1 Verificato!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "Avvio del download {0} di {1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "Verifica di \"{0}\" completata con successo!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "Verifica di \"{0}\" fallita!\tElimino il file!", "comment": "0: File name" }, "msg_noVerify": { "string": "Il file \"{0}\" non è stato verificato!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "Download di {0} file completato!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "Spazio su disco insufficiente!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "Lo spazio su disco disponibile è inferiore al {0}", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "Non è stato possibile cercare una nuova versione!", "comment": "" }, "msg_alreadyUpToDate": { "string": "Stai già utilizzando l'ultima versione!", "comment": "" }, "msg_foundNewRelease": { "string": "Nuova Versione Trovata \"{0}\"", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "Non è stato possibile trovare una versione compatibile con la tua architettura o piattaforma. Piattaforma: \"{0}\" Architettura: \"{1}\" Compilato: \"{2}\"", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "La cartella di download selezionata \"{0}\" non è scrivibile!", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "Per favore controlla che le impostazioni del proxy siano corrette!", "comment": "" } } ================================================ FILE: loc/ru.json ================================================ { "language_name": { "string": "Русский", "comment": "Name of the language" }, "language_short": { "string": "ru", "comment": "Name of the language file" }, "window_main_title": { "string": "PS3 Game Update Downloader", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "Введите TitleID", "comment": "" }, "window_main_enter_btn": { "string": "Найти", "comment": "" }, "window_main_progress_label": { "string": "Загрузка файла {0}:\n{1}/{2}({3}%)\nСкорость: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "Настройки", "comment": "" }, "window_main_exit_btn": { "string": "Выход", "comment": "" }, "window_main_queue_btn": { "string": "Очередь загрузок", "comment": "" }, "window_config_title": { "string": "Настройки", "comment": "" }, "window_config_dldir_label": { "string": "Папка загрузок:", "comment": "" }, "window_config_verify_label": { "string": "Проверять целостность файлов:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "Проверять, был ли файл уже загружен:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "Проверять обновления при запуске:", "comment": "" }, "window_config_currentLoc_label": { "string": "Язык:", "comment": "" }, "window_config_useproxy_label": { "string": "Использовать прокси? (ТОЛЬКО SOCKS5!)", "comment": "" }, "window_config_proxyip_label": { "string": "IP прокси:", "comment": "" }, "window_config_proxyport_label": { "string": "Порт прокси:", "comment": "" }, "window_config_proxyuser_laber": { "string": "Пользователь прокси:", "comment": "" }, "window_config_proxypass_label": { "string": "Пароль прокси", "comment": "" }, "window_config_cancel_btn": { "string": "Отмена", "comment": "" }, "window_config_save_btn": { "string": "Сохранить", "comment": "" }, "window_select_title": { "string": "Выбор обновлений", "comment": "" }, "window_select_text_label": { "string": "Игра: {0}\tTitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "Версия", "comment": "" }, "window_select_table_size": { "string": "Размер файла", "comment": "" }, "window_select_table_sysver": { "string": "Версия PS3 FW", "comment": "" }, "window_select_download_btn": { "string": "Загрузить", "comment": "" }, "window_select_cancel_btn": { "string": "Отмена", "comment": "" }, "window_select_queue_btn": { "string": "Добавить в очередь загрузок", "comment": "" }, "window_select_help_label": { "string": "Удерживайте Ctrl и кликайте на обновления, которые хотите выбрать.", "comment": "" }, "window_relNotify_title": { "string": "Доступно обновление!", "comment": "" }, "window_relNotify_version_label": { "string": "Текущая версия: {0}\nНовая версия: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "Изменения:", "comment": "" }, "window_relNotify_web_btn": { "string": "Открыть сайт в браузере", "comment": "" }, "window_relNotify_dl_btn": { "string": "Загрузить и установить обновление", "comment": "" }, "window_relNotify_close_btn": { "string": "Закрыть", "comment": "" }, "window_queue_title": { "string": "Очередь загрузок", "comment": "" }, "window_queue_table_num": { "string": "№", "comment": "" }, "window_queue_table_game": { "string": "Игра", "comment": "" }, "window_queue_table_titleid": { "string": "TitleID", "comment": "" }, "window_queue_table_ver": { "string": "Версия", "comment": "" }, "window_queue_table_size": { "string": "Размер файла", "comment": "" }, "window_queue_download_btn": { "string": "Начать загрузку", "comment": "" }, "window_queue_close_btn": { "string": "Закрыть", "comment": "" }, "window_queue_moveup_btn": { "string": "Выше", "comment": "" }, "window_queue_movedown_btn": { "string": "Ниже", "comment": "" }, "window_queue_remove_btn": { "string": "Удалить", "comment": "" }, "window_queue_totalsize_label": { "string": "Общий размер: {0}", "comment": "0: Total download size of queue" }, "msg_configFileLoaded": { "string": "Конфигурация загружена из файла!", "comment": "" }, "msg_noConfigFile": { "string": "Файл конфигурации не найден! Используются настройки по умолчанию!", "comment": "" }, "msg_configFileSaved": { "string": "Файл конфигурации сохранен!", "comment": "" }, "msg_loadedTitledb": { "string": "Загружен TitleDB \"{0}\"", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "Игра: {0}\t TitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "Неверный TitleID!", "comment": "" }, "msg_metaNotAvailable": { "string": "Недоступен мета-файл для данного TitleID!", "comment": "" }, "msg_metaFileEmpty": { "string": "Мета-файл для данного TitleID пустой!", "comment": "" }, "msg_startingDownloads": { "string": "Начало загрузки", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "Файл \"{0}\" был загружен ранее и будет пропущен! Целостность не подтрерждена!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "Файл \"{0}\" был загружен ранее и будет пропущен! Хеш SHA-1 подтрержден!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "Начало загрузки {0} из {1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "Целостность файла \"{0}\" подтверждена!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "Целостность файла \"{0}\" не подтверждена!\tФайл будет удален!", "comment": "0: File name" }, "msg_noVerify": { "string": "Целостность файла \"{0}\" не подтверждена!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "Завершена загрузка {0} файлов!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "Недостаточно места на диске!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "На диске менее {0} свободного места", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "Не удалось проверить обновления!", "comment": "" }, "msg_alreadyUpToDate": { "string": "Используется последняя версия!", "comment": "" }, "msg_foundNewRelease": { "string": "Найдена новая версия \"{0}\"", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "Не удалось найти версию для вашей архитектуры или платформы. Платформа: \"{0}\" Архитектура: \"{1}\" Скомпилированный код: \"{2}\"", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "Нет доступа для записи файлов в выбранную папку загрузок \"{0}\"", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "Убедитесь, что настройки прокси введены правльно!", "comment": "" } } ================================================ FILE: loc/th.json ================================================ { "language_name": { "string": "ภาษาไทย", "comment": "Name of the language" }, "language_short": { "string": "th", "comment": "Name of the language file" }, "window_main_title": { "string": "ระบบดาวน์โหลดอัปเดตเกม PS3", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "กรุณาใส่รหัส TitleID", "comment": "" }, "window_main_enter_btn": { "string": "ค้นหา", "comment": "" }, "window_main_progress_label": { "string": "กำลังโหลดไฟล์ {0}:\n{1}/{2}({3}%)\nความเร็วในการดาวน์โหลด: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "การกำหนดค่า", "comment": "" }, "window_main_exit_btn": { "string": "ออก", "comment": "" }, "window_main_queue_btn": { "string": "คิว", "comment": "" }, "window_config_title": { "string": "การกำหนดค่า", "comment": "" }, "window_config_dldir_label": { "string": "ตำแหน่งการดาวน์โหลด:", "comment": "" }, "window_config_verify_label": { "string": "ยืนยันไฟล์:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "ตรวจสอบไฟล์ที่ถูกดาวน์โหลดแล้ว:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "ตรวบจสอบเนื้อหาใหม่ขณะกำลังเริ่มต้น:", "comment": "" }, "window_config_currentLoc_label": { "string": "ภาษา:", "comment": "" }, "window_config_useproxy_label": { "string": "ใช้งานพร็อกซี่เซิฟเวอร์ใหม่ไม่? (สำหรับ SOCKS5 เท่านั้น!)", "comment": "" }, "window_config_proxyip_label": { "string": "พร็อกซี่ IP:", "comment": "" }, "window_config_proxyport_label": { "string": "พร็อกซี่ Port:", "comment": "" }, "window_config_proxyuser_laber": { "string": "พร็อกซี่ชื่อผู้ใช้:", "comment": "" }, "window_config_proxypass_label": { "string": "พร็อกซี่รหัสผ่าน", "comment": "" }, "window_config_cancel_btn": { "string": "ยกเลิก", "comment": "" }, "window_config_save_btn": { "string": "บันทึก", "comment": "" }, "window_select_title": { "string": "เลือกการอัปเดต", "comment": "" }, "window_select_text_label": { "string": "เกม: {0}\tรหัสเกม: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "เวอร์ชั่น", "comment": "" }, "window_select_table_size": { "string": "ขนาดไฟล์", "comment": "" }, "window_select_table_sysver": { "string": "PS3 เวอร์ชั่นเฟิร์มแวร์", "comment": "" }, "window_select_download_btn": { "string": "ดาวน์โหลด", "comment": "" }, "window_select_cancel_btn": { "string": "ยกเลิก", "comment": "" }, "window_select_queue_btn": { "string": "เพิ่มเข้าคิวดาวน์โหลด", "comment": "" }, "window_select_help_label": { "string": "กดปุ่ม Ctrl ค้างและคลิกการอัปเดตที่คุณต้องการเลือก", "comment": "" }, "window_relNotify_title": { "string": "พบเนื้อหาใหม่!", "comment": "" }, "window_relNotify_version_label": { "string": "เวอร์ชั่นปัจจุบัน: {0}\nเวอร์ชั่นใหม่: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "การเปลี่ยนแปลง:", "comment": "" }, "window_relNotify_web_btn": { "string": "เปิดในเว็บเบราว์เซอร์", "comment": "" }, "window_relNotify_dl_btn": { "string": "ดาวน์โหลดและติดตั้งอัปเดต", "comment": "" }, "window_relNotify_close_btn": { "string": "ปิด", "comment": "" }, "window_queue_title": { "string": "คิดการดาวน์โหลด", "comment": "" }, "window_queue_table_num": { "string": "เลขที่", "comment": "" }, "window_queue_table_game": { "string": "เกม", "comment": "" }, "window_queue_table_titleid": { "string": "รหัสเกม", "comment": "" }, "window_queue_table_ver": { "string": "เวอร์ชั่น", "comment": "" }, "window_queue_table_size": { "string": "ขนาดไฟล์", "comment": "" }, "window_queue_download_btn": { "string": "เริ่มดาวน์โหลด", "comment": "" }, "window_queue_close_btn": { "string": "ปิด", "comment": "" }, "window_queue_moveup_btn": { "string": "ย้ายขั้น", "comment": "" }, "window_queue_movedown_btn": { "string": "ย้ายลง", "comment": "" }, "window_queue_remove_btn": { "string": "ลบ", "comment": "" }, "window_queue_totalsize_label": { "string": "ขนาดไฟล์: {0}", "comment": "0: Total download size of queue" }, "msg_configFileLoaded": { "string": "โหลดไฟล์การกำหนดค่าเรียบร้อยแล้ว!", "comment": "" }, "msg_noConfigFile": { "string": "ไม่พบไฟล์การกำหนดค่าใช้การตั้งค่าเดิม!", "comment": "" }, "msg_configFileSaved": { "string": "บันทึกการกำหนดค่าแล้วร้อยแล้ว", "comment": "" }, "msg_loadedTitledb": { "string": "โหลดรหัสเกม \"{0}\"", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "เกม: {0}\t รหัสเกม: {1}", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "รหัสเกมไม่ถูกต้องd!", "comment": "" }, "msg_metaNotAvailable": { "string": "ไม่พบไฟล์ Meta สำหรับรหัสเกมนี้!", "comment": "" }, "msg_metaFileEmpty": { "string": "ไม่พบข้อมูลที่อยู่ในไฟล์ Meta สำหรับรหัสเกมนี้!", "comment": "" }, "msg_startingDownloads": { "string": "เริ่มดาวน์โหลดอัปเดต", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "ไฟล์ \"{0}\" ถูกดาวน์โหลดแล้วกำลังทำการข้าม! ไฟล์ไม่ถูกยืนยัน!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "ไฟล์ \"{0}\" ถูกดาวน์โหลดแล้วกำลังทำการข้าม! ยืนยันโดยการเข้ารหัส SHA-1!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "เริ่มการดาวน์โหลดแล้ว {0} จาก {1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "การยืนยันสำหรับ \"{0}\" เสร็จสิ้นแล้ว!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "การยืนยันสำหรับ \"{0}\" ล้มเหลว!\tกำลังลบไฟล์!", "comment": "0: File name" }, "msg_noVerify": { "string": "ไฟล์ \"{0}\" ไม่ได้รับการยืนยัน!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "กำลังเสร็จสิ้นการดาวน์โหลด {0} ไฟล์!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "พื้นที่ไม่เพียงพอ!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "ขนาดที่ว่างมีน้อยกว่า {0}", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "ไม่สามารถตรวจสอบเนื้อหาใหม่ได้!", "comment": "" }, "msg_alreadyUpToDate": { "string": "เป็นเนื้อหาล่าสุดอยู่แล้ว!", "comment": "" }, "msg_foundNewRelease": { "string": "พบเนื้อหาใหม่ \"{0}\"", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "ไม่สามารถค้นหาเนื้อใหม่สำหรับสถาปัตยกรรมหรือแพลตฟอร์มปัจจุบันของคุณได้. แพลตฟอร์ม(Platform): \"{0}\" สถาปัตยกรรม(Architecture): \"{1}\" การประมวลผล(Compile): \"{2}\"", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "เส้นการดาวน์โหลดที่คุณได้เลือกไว้ไม่สามารถเขียนข้อมูลได้! \"{0}\"", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "กรุณาตรวจสอบความถูกต้องของการตั้งค่าพร็อกซี่เซิฟเวอร์!", "comment": "" } } ================================================ FILE: loc/tr.json ================================================ { "language_name": { "string": "Türkçe", "comment": "Name of the language" }, "language_short": { "string": "tr", "comment": "Name of the language file" }, "window_main_title": { "string": "PS3 Game Update Downloader", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "TitleID Gir", "comment": "" }, "window_main_enter_btn": { "string": "Ara", "comment": "" }, "window_main_progress_label": { "string": "Dosya indiriliyor {0}:\n{1}/{2}({3}%)\nHız: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "Ayarlar", "comment": "" }, "window_main_exit_btn": { "string": "Kapat", "comment": "" }, "window_main_queue_btn": { "string": "Sıra", "comment": "" }, "window_config_title": { "string": "Ayarlar", "comment": "" }, "window_config_dldir_label": { "string": "İndirilenler klasörü:", "comment": "" }, "window_config_verify_label": { "string": "Dosyaları doğrula:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "Dosyanın zaten indirilip indirilmediğini kontrol et:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "Başlangıçta yeni sürüm olup olmadığını kontrol et:", "comment": "" }, "window_config_currentLoc_label": { "string": "Dil:", "comment": "" }, "window_config_useproxy_label": { "string": "Proxy kullan? (SADECE SOCKS5!)", "comment": "" }, "window_config_proxyip_label": { "string": "Proxy IP:", "comment": "" }, "window_config_proxyport_label": { "string": "Proxy Port:", "comment": "" }, "window_config_proxyuser_laber": { "string": "Proxy Kullanıcısı:", "comment": "" }, "window_config_proxypass_label": { "string": "Proxy Parolası", "comment": "" }, "window_config_cancel_btn": { "string": "İptal", "comment": "" }, "window_config_save_btn": { "string": "Kaydet", "comment": "" }, "window_select_title": { "string": "Güncellemeleri seç", "comment": "" }, "window_select_text_label": { "string": "Oyun: {0}\tTitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "Versiyon", "comment": "" }, "window_select_table_size": { "string": "Dosya boyutu", "comment": "" }, "window_select_table_sysver": { "string": "PS3 FW Versiyon", "comment": "" }, "window_select_download_btn": { "string": "İndir", "comment": "" }, "window_select_cancel_btn": { "string": "İptal", "comment": "" }, "window_select_queue_btn": { "string": "İndirme sırasına ekle", "comment": "" }, "window_select_help_label": { "string": "CTRL'ye basılı tutarak istediğin güncellemeleri seç.", "comment": "" }, "window_relNotify_title": { "string": "Yeni sürüm bulundu!", "comment": "" }, "window_relNotify_version_label": { "string": "Şu anki sürüm: {0}\nYeni sürüm: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "Değişiklikler:", "comment": "" }, "window_relNotify_web_btn": { "string": "Siteyi tarayıcı da aç", "comment": "" }, "window_relNotify_dl_btn": { "string": "Güncellemeyi indir ve yükle", "comment": "" }, "window_relNotify_close_btn": { "string": "Kapat", "comment": "" }, "window_queue_title": { "string": "İndirme sırası", "comment": "" }, "window_queue_table_num": { "string": "Sıra", "comment": "" }, "window_queue_table_game": { "string": "Oyun", "comment": "" }, "window_queue_table_titleid": { "string": "TitleID", "comment": "" }, "window_queue_table_ver": { "string": "Versiyon", "comment": "" }, "window_queue_table_size": { "string": "Dosya boyutu", "comment": "" }, "window_queue_download_btn": { "string": "İndirmeyi başlat", "comment": "" }, "window_queue_close_btn": { "string": "Kapat", "comment": "" }, "window_queue_moveup_btn": { "string": "Yukarı çıkar", "comment": "" }, "window_queue_movedown_btn": { "string": "Aşağı indir", "comment": "" }, "window_queue_remove_btn": { "string": "Kaldır", "comment": "" }, "window_queue_totalsize_label": { "string": "Toplam Boyut: {0}", "comment": "0: Total download size of queue" }, "window_keyring_support_info_label": { "string": "Geçerli backend keyring'i bulunamadı.\nLütfen, ilgili yükleme rehberi için keyring'in anasayfasını ziyaret edin.\n{0}", "comment": "0: Url of keyring homepage" }, "window_keyring_support_dont_show_again_label": { "string": "Tekrar gösterme", "comment": "" }, "window_keyring_support_ok_btn": { "string": "Tamam", "comment": "" }, "window_keyring_support_browser_btn": { "string": "Tarayıcıda aç", "comment": "" }, "window_keyring_support_title": { "string": "Dikkat! Proxy desteği kapatıldı!", "comment": "" }, "msg_configFileLoaded": { "string": "Ayar dosyası indirildi!", "comment": "" }, "msg_noConfigFile": { "string": "Ayar dosyası bulunamadı! Varsayılan ayarlar kullanılıyor!", "comment": "" }, "msg_configFileSaved": { "string": "Ayarlar kaydedildi!", "comment": "" }, "msg_loadedTitledb": { "string": "TitleDB \"{0}\" yüklendi.", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "Oyun: {0}\t TitleID: {1}", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "TitleID geçersiz!", "comment": "" }, "msg_metaNotAvailable": { "string": "Bu TitleID için meta dosyası mevcut değil!", "comment": "" }, "msg_metaFileEmpty": { "string": "Bu TitleID için meta dosyası hiçbir veri bulundurmuyor!", "comment": "" }, "msg_startingDownloads": { "string": "Güncelleme indirmeleri başlıyor", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "Dosya \"{0}\" zaten indirilmişti! Geçiliyor! Doğrulanmadı!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "Dosya \"{0}\" zaten indirilmişti! Geçiliyor! SHA-1 doğrulandı!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "İndirme başlatılıyor {0}/{1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "\"{0}\" doğrulaması başarılı!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "\"{0}\" doğrulaması başarısız!\tDosya siliniyor!", "comment": "0: File name" }, "msg_noVerify": { "string": "\"{0}\" doğrulanamadı!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "{0} dosyalar indirildi!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "Yetersiz depo alanı!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "Depo alanı {0} altında", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "Yeni sürüm kontrol edilemedi!", "comment": "" }, "msg_alreadyUpToDate": { "string": "Zaten en yeni sürüm bu!", "comment": "" }, "msg_foundNewRelease": { "string": "Yeni sürüm bulundu \"{0}\"", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "Bu mimari veya platform için uygun bir arşiv sürümü bulunamadı. Platform: \"{0}\" Mimari: \"{1}\" Derleme: \"{2}\"", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "\"{0}\" indirmeleri için seçilen klasör yazılabilir değil!", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "Lütfen, Proxy ayarlarının doğruluğunu kontrol et!", "comment": "" } } ================================================ FILE: loc/zh_CN.json ================================================ { "language_name": { "string": "简体中文", "comment": "Name of the language" }, "language_short": { "string": "zh_CN", "comment": "Name of the language file" }, "window_main_title": { "string": "PS3 Game Update Downloader", "comment": "Main window title (don't translate)" }, "window_main_titleid_label": { "string": "输入内容 ID", "comment": "" }, "window_main_enter_btn": { "string": "搜索", "comment": "" }, "window_main_progress_label": { "string": "下载文件 {0}:\n{1}/{2}({3}%)\n速度: {4}", "comment": "0: Number of download, 1: Amount of downloaded data, 2: Total file size, 3: Amount of downloaded data in %, 4: Download speed" }, "window_main_config_btn": { "string": "配置", "comment": "" }, "window_main_exit_btn": { "string": "退出", "comment": "" }, "window_main_queue_btn": { "string": "队列", "comment": "" }, "window_config_title": { "string": "配置", "comment": "" }, "window_config_dldir_label": { "string": "下载目录:", "comment": "" }, "window_config_verify_label": { "string": "验证文件:", "comment": "" }, "window_config_checkIfAlreadyDownloaded_label": { "string": "检查文件是否已经下载:", "comment": "" }, "window_config_checkForNewRelease_label": { "string": "启动时检查新版本:", "comment": "" }, "window_config_storageThreshold_label": { "string": "存储阈值 (GiB):", "comment": "" }, "window_config_currentLoc_label": { "string": "语言:", "comment": "" }, "window_config_renamepkgs_label": { "string": "重命名 .pkg 文件:", "comment": "" }, "window_config_renamepkgs_tooltip": { "string": "将该 .pkg 文件重命名为 $GAMENAME_[$GAMEID]_$GAMEVERSION", "comment": "" }, "window_config_updatetitledb_label": { "string": "启动时更新内容数据:", "comment": "" }, "window_config_useproxy_label": { "string": "使用代理?(只支持 SOCKS5!)", "comment": "" }, "window_config_proxyip_label": { "string": "代理 IP:", "comment": "" }, "window_config_proxyport_label": { "string": "代理端口:", "comment": "" }, "window_config_proxyuser_laber": { "string": "代理用户名:", "comment": "" }, "window_config_proxypass_label": { "string": "代理密码", "comment": "" }, "window_config_cancel_btn": { "string": "取消", "comment": "" }, "window_config_save_btn": { "string": "保存", "comment": "" }, "window_select_title": { "string": "选择更新内容", "comment": "" }, "window_select_text_label": { "string": "游戏标题: {0}\t内容 ID: {1}", "comment": "0: Game name, 1: TitleID" }, "window_select_table_ver": { "string": "版本", "comment": "" }, "window_select_table_size": { "string": "文件大小", "comment": "" }, "window_select_table_sysver": { "string": "PS3 软件版本", "comment": "" }, "window_select_download_btn": { "string": "下载", "comment": "" }, "window_select_cancel_btn": { "string": "取消", "comment": "" }, "window_select_queue_btn": { "string": "添加到下载队列", "comment": "" }, "window_select_help_label": { "string": "按住 Ctrl 键并点击要选择的更新补丁", "comment": "" }, "window_relNotify_title": { "string": "发现新版本!", "comment": "" }, "window_relNotify_version_label": { "string": "当前版本: {0}\n新版本: {1}", "comment": "0: Current programm version, 1: New programm version" }, "window_relNotify_changelog_label": { "string": "更新日志:", "comment": "" }, "window_relNotify_web_btn": { "string": "在浏览器中打开网站", "comment": "" }, "window_relNotify_dl_btn": { "string": "下载并安装更新", "comment": "" }, "window_relNotify_close_btn": { "string": "关闭", "comment": "" }, "window_queue_title": { "string": "下载队列", "comment": "" }, "window_queue_table_num": { "string": "序号", "comment": "" }, "window_queue_table_game": { "string": "游戏标题", "comment": "" }, "window_queue_table_titleid": { "string": "内容 ID", "comment": "" }, "window_queue_table_ver": { "string": "版本", "comment": "" }, "window_queue_table_size": { "string": "文件大小", "comment": "" }, "window_queue_download_btn": { "string": "开始下载", "comment": "" }, "window_queue_close_btn": { "string": "关闭", "comment": "" }, "window_queue_moveup_btn": { "string": "上移", "comment": "" }, "window_queue_movedown_btn": { "string": "下移", "comment": "" }, "window_queue_remove_btn": { "string": "移除", "comment": "" }, "window_queue_totalsize_label": { "string": "全部大小: {0}", "comment": "0: Total download size of queue" }, "window_queue_export_label": { "string": "导出队列到:", "comment": "" }, "window_queue_export_btn": { "string": "导出", "comment": "" }, "window_keyring_support_info_label": { "string": "未找到可用的密钥链后端,\n请查看主页上的密钥链安装指南。\n{0}", "comment": "0: Url of keyring homepage" }, "window_keyring_support_dont_show_again_label": { "string": "以后不再显示", "comment": "" }, "window_keyring_support_ok_btn": { "string": "确定", "comment": "" }, "window_keyring_support_browser_btn": { "string": "在浏览器中打开", "comment": "" }, "window_keyring_support_title": { "string": "警告! 代理支持已禁用!", "comment": "" }, "window_msgBox_ok_btn": { "string": "确定", "comment": "" }, "window_msgBox_queueExported_title": { "string": "队列已导出", "comment": "" }, "window_msgBox_queueExported_label": { "string": "队列已导出到 \"{0}\".", "comment": "0: File name" }, "msg_configFileLoaded": { "string": "已加载配置文件!", "comment": "" }, "msg_noConfigFile": { "string": "未发现配置文件,将使用默认配置!", "comment": "" }, "msg_configFileSaved": { "string": "配置文件已保存!", "comment": "" }, "msg_loadedTitledb": { "string": "内容数据已加载 \"{0}\"", "comment": "0: Path to TitleDB" }, "msg_titleIDIs": { "string": "游戏标题: {0}\t 内容 ID: {1} ", "comment": "0: Game name, 1: TitleID" }, "msg_titleIDNotValid": { "string": "内容 ID 无效!", "comment": "" }, "msg_metaNotAvailable": { "string": "此内容 ID 的元数据文件不可用!", "comment": "" }, "msg_metaFileEmpty": { "string": "此内容 ID 的元数据文件不包含任何信息!", "comment": "" }, "msg_startingDownloads": { "string": "开始下载更新补丁", "comment": "" }, "msg_alreadyDownloadedNoVerify": { "string": "文件 \"{0}\" 已经下载,将会跳过且不会校验该文件!", "comment": "0: File name" }, "msg_alreadyDownloadedVerify": { "string": "文件 \"{0}\" 已经下载,将会跳过,且 SHA-1 已验证!", "comment": "0: File name" }, "msg_startSingleDownload": { "string": "开始下载 {0} / {1}", "comment": "0: Number of download, 1: Total number of downloads in queue" }, "msg_verifySuccess": { "string": "\"{0}\" 验证成功!", "comment": "0: File name" }, "msg_verifyFailure": { "string": "\"{0}\" 验证失败!\t将会被删除!", "comment": "0: File name" }, "msg_noVerify": { "string": "文件 \"{0}\" 未验证!", "comment": "0: File name" }, "msg_finishedDownload": { "string": "{0} 个文件下载完成!", "comment": "0: Number of files downloaded" }, "msg_notEnoughDiskSpace": { "string": "没有足够的磁盘空间!", "comment": "" }, "msg_spaceBelowThreshold": { "string": "可用磁盘空间低于 {0}", "comment": "0: Storage threshold" }, "msg_relCheckError": { "string": "无法检查新版本!", "comment": "" }, "msg_alreadyUpToDate": { "string": "已更新到最新版本!", "comment": "" }, "msg_foundNewRelease": { "string": "发现新版本 \"{0}\"", "comment": "0: New programm version" }, "msg_NoReleaseArchiveForPlatformOrArch": { "string": "找不到适用于您的架构或平台的发布版本。当前平台: \"{0}\" 架构: \"{1}\" 已编译: \"{2}\"", "comment": "0: Platform, 1: Architecture, 2: App is compiled(True|False)" }, "msg_dldirNotWriteable": { "string": "您选择的下载目录 \"{0}\" 无法写入!", "comment": "0: Directory name" }, "msg_checkProxySettings": { "string": "请验证您的代理设置是否正确!", "comment": "" }, "msg_metaFileBrokenSyntax": { "string": "请求的元数据文件 \"{0}\" 包含错误语法。这很可能是由于索尼准备关闭更新服务器所致。", "comment": "0: TitleID" }, "msg_sonyPS3StoreShutdownNotice": { "string": "!!! 重要 !!! 索尼宣布 2021 年 7 月 21 日关闭 PS3 商店,但随后又撤销了这一决定。从宣布到撤销之间,似乎有一些游戏更新被删除了。我建议您备份已下载的游戏更新。", "comment": "" }, "msg_newTitleDbVersion": { "string": "下载新版本的内容数据", "comment": "" } } ================================================ FILE: main_ps3gud.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # #PS3GameUpdateDownloader downloads PS3 game updates from official Sony servers #Copyright (C) 2023 shinrax2 # #This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. # #This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # #You should have received a copy of the GNU General Public License along with this program. If not, see . #local files import gui def run(): g = gui.Gui() g.mainWin() if __name__ == "__main__": run() ================================================ FILE: missingstrings.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # # missingstrings.py for PS3GameUpdateDownloader by shinrax2 #built-in import json import os #constants output = "missingstrings.txt" locdir = "./loc/" missing = {} with open("./loc/en.json", "r", encoding="utf8") as f: master = json.loads(f.read()) locFiles = [pos_json for pos_json in os.listdir(locdir) if pos_json.endswith('.json')] for file in locFiles: if file.endswith("en.json") == False: with open(os.path.join(locdir, file), "r", encoding="utf8") as f: loc = json.loads(f.read()) short = loc["language_short"]["string"] miss = {} for k, v in master.items(): try: loc[k] except KeyError: miss[k] = v missing[short] = miss with open(output, "w", encoding="utf8") as f: f.write(json.dumps(missing, sort_keys=True, indent=4, ensure_ascii=False)) ================================================ FILE: ps3gud_jdownloader_renamepkgs.packagizer ================================================ [ {"filetypeFilter":{"customs":null,"matchType":"IS","archivesEnabled":false,"audioFilesEnabled":false,"docFilesEnabled":false,"exeFilesEnabled":false,"hashEnabled":false,"imagesEnabled":false,"subFilesEnabled":false,"useRegex":false,"videoFilesEnabled":false,"enabled":false},"originFilter":{"matchType":"IS","origins":[],"enabled":false},"hosterURLFilter":{"matchType":"CONTAINS","regex":"","useRegex":true,"enabled":false},"onlineStatusFilter":{"matchType":"IS","onlineStatus":"OFFLINE","enabled":false},"chunks":10,"created":1706018868842,"sourceURLFilter":{"matchType":"CONTAINS","regex":".*ww.np.dl.playstation.net.*#folder=(.+)#name=(.+)","useRegex":true,"enabled":true},"conditionFilter":{"conditions":[],"matchType":"IS_TRUE","enabled":false},"testUrl":"http://b0.ww.np.dl.playstation.net/tppkg/np/BLES01807/BLES01807_T29/45755cadf6f036f0/EP1004-BLES01807_00-GTAVTITLEUPDATER-A0106-V0100-PE.pkg#folder=Grand%20Theft%20Auto%20V%20%28PAL%29%20%5BBLES01807%5D#name=Grand%20Theft%20Auto%20V%20%28PAL%29_%5BBLES01807%5D_01.06.pkg","enabled":true,"autoForcedStartEnabled":true,"filename":"","packagenameFilter":{"matchType":"CONTAINS","regex":"","useRegex":false,"enabled":false},"filenameFilter":{"matchType":"CONTAINS","regex":"","useRegex":false,"enabled":false},"name":"PS3 Updates","matchAlwaysFilter":{"enabled":false},"packageName":"","pluginStatusFilter":{"matchType":"IS","pluginStatus":"PREMIUM","enabled":false},"autoStartEnabled":true,"filesizeFilter":{"from":0,"matchType":"BETWEEN","to":0,"enabled":false}} ] ================================================ FILE: release.debug.json ================================================ { "version": "v000", "author": "shinrax2", "repo": "test-repo", "tdb_version": 0 } ================================================ FILE: release.json ================================================ { "version": "v013", "author": "shinrax2", "repo": "PS3GameUpdateDownloader", "tdb_version": 1 } ================================================ FILE: requirements.txt ================================================ requests==2.33.0 FreeSimpleGUI==5.2.0.post1 keyring==25.7.0 requests[socks]==2.33.0 setuptools==82.0.0 psutil==7.2.2 pyyaml==6.0.3 ================================================ FILE: sony.pem ================================================ -----BEGIN CERTIFICATE----- MIID0jCCArqgAwIBAgIBADANBgkqhkiG9w0BAQUFADBUMQswCQYDVQQGEwJKUDEp MCcGA1UEChMgU29ueSBDb21wdXRlciBFbnRlcnRhaW5tZW50IEluYy4xGjAYBgNV BAMTEVNDRUkgRE5BUyBSb290IDA1MB4XDTA0MDcxMjA5MDExOVoXDTM3MTIwNjA5 MDExOVowVDELMAkGA1UEBhMCSlAxKTAnBgNVBAoTIFNvbnkgQ29tcHV0ZXIgRW50 ZXJ0YWlubWVudCBJbmMuMRowGAYDVQQDExFTQ0VJIEROQVMgUm9vdCAwNTCCASIw DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANmPeza8PwCqlI7esOGIkoSESnIN g72ZD3Ut63jy7SdothPIvGBqVZWYkIpqJYJd1I4Nh//IpXQCQL0PnJLrh9BBeowq Muf5NNq3Us80Ihiu9CvNEAEO18g3OFV1TYdSwQ5zUsk33OUeI7h4aBPDVcZXYeHt dbPLqe4K8igian5prrAD5S6h28t8aAm+qMWRo+bW25B/841XwDGBP7/IxZv8Yoio rCo80CVYe6lGoU08eeqQiaHI5zAF281DWZSoVfLjJUEWmEnxqr8aOhszRGePi+Ei 7UQjHDuZX9rLhDI1zAND+BA259tn/iwOqVXe20OccJllHJcG4Ecmd98f5qMCAwEA AaOBrjCBqzAdBgNVHQ4EFgQUxlahM1tPzoN3YgVEhm0gV7Wv2twwfAYDVR0jBHUw c4AUxlahM1tPzoN3YgVEhm0gV7Wv2tyhWKRWMFQxCzAJBgNVBAYTAkpQMSkwJwYD VQQKEyBTb255IENvbXB1dGVyIEVudGVydGFpbm1lbnQgSW5jLjEaMBgGA1UEAxMR U0NFSSBETkFTIFJvb3QgMDWCAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUF AAOCAQEACZPihjwXA27wJ03tEKcHAeFLi8aBw2ysH4GwuH1dWb3UpuznWOB0iQT1 wQocnEFYCJx5XFEnj4aLWpSHLEq/sSO+my+aPoTEsy20ajF+YLYZm0bZxH50CJYh rkET4C2aC0XvhGp9k1JQ1o0W6+cFT5LTlXapsq8Btt31t+XDPX7RqGV4WGekt3hM T7xRc7JWXdAQijIrbYi8mtbM07KEGnPU6IT8C47+0mSurpwLOoWL1tPgo6ePpLNi c4quUMgh9RXVjeTyXOMmyYdeUm2gt7qErvQONli+6Epmhm0A2khpIMHSpQjTE8gV rZp42a6+zg1iYy2vFBOmiQ17GRUl0A== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEUjCCAzqgAwIBAgICDPowDQYJKoZIhvcNAQEFBQAwVDELMAkGA1UEBhMCSlAx KTAnBgNVBAoTIFNvbnkgQ29tcHV0ZXIgRW50ZXJ0YWlubWVudCBJbmMuMRowGAYD VQQDExFTQ0VJIEROQVMgUm9vdCAwNTAeFw0xNzA5MjIwNTQ0MTJaFw0yMDA5MjEw NTQ0MTJaMIG0MQswCQYDVQQGEwJKUDEOMAwGA1UECAwFVG9reW8xEjAQBgNVBAcM CU1pbmF0by1rdTEsMCoGA1UECgwjU29ueSBJbnRlcmFjdGl2ZSBFbnRlcnRhaW5t ZW50IEluYy4xLjAsBgNVBAsMJU5ldHdvcmsgRW5naW5lZXJpbmcgJiBPcGVyYXRp b24gRGVwdC4xIzAhBgNVBAMMGioud3cubnAuZGwucGxheXN0YXRpb24ubmV0MIIB IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq7zQRgxIISeHNLtVQblA8R2c bTpmaspQFYYWSbNymDvApi29YkxxfTYYwgsIyEziHowahZWzqVEKIvSMr43sOYA2 R4fMIevbztHY+UcFdDgzJtthxnhgmJR+ntzLr72JxIKc3SH4nP28maHLmR230BS9 x7OmHx3RcSgc9nGgaT6P+SIB5bIpZXedlNp9jS9SAX+scVE5feqYEjA+o76IXDBM HU8Y7rVFl/nE/qSZRfA9zTBS/aX7BeUL7epyB/bKFfpdq1s8Jxv00G0DpbPIiVvD HpKca8h49QUo1xM74OiFPEqOaMDBrV9YXE9EmcezPtQzzOPaw2+zFUEDqMv7mwID AQABo4HMMIHJMAkGA1UdEwQCMAAwHwYJYIZIAYb4QgENBBIWEEROQVMgQ2VydGlm aWNhdGUwHQYDVR0OBBYEFAwiSPzSFE0Y/S6ay4MajjnJuADrMHwGA1UdIwR1MHOA FMZWoTNbT86Dd2IFRIZtIFe1r9rcoVikVjBUMQswCQYDVQQGEwJKUDEpMCcGA1UE ChMgU29ueSBDb21wdXRlciBFbnRlcnRhaW5tZW50IEluYy4xGjAYBgNVBAMTEVND RUkgRE5BUyBSb290IDA1ggEAMA0GCSqGSIb3DQEBBQUAA4IBAQBcNMiLeaRuc0Gv lhNfIFv9p/tOQkPt0bSjG4bhWqXPbXhXVJwI1SQ/2+3+wlGG3suo3ztVwQocWix6 zGO0m3hwPUunzJAov5RtvRfndHxYF2fSjqIDnOr8ppA9W7VTqgBgfyRAspQf8iTU +dYgnUzE3w1JngxHAHsObcsJAgwLDgDjshb078cY6lQzX66G/TVP6mHjZN9U2Mr1 SMBpOvGlMzopVvBUecn45kGnNzwVC/VYdMw1JMa/Q4IdpjFq+Y444N3z3BH4UUru CGZvT2MSWFdcu2QFQAMCJaA+7eOfz+aM72QfSEtNUeyVB7kq2P+WX/OUMe4TiU7n PlH3VCy0 -----END CERTIFICATE----- ================================================ FILE: titledb.debug.json ================================================ { "db": [ { "id": "ASIA00048", "name": "Ultimate Shooter Pack: Resistance 3 / Killzone 3" }, { "id": "ASIA00049", "name": "Square Enix Adventure Pack: Tomb Raider / Sleeping Dogs" }, { "id": "ASIA00050", "name": "Ultimate Adventure Pack: Uncharted 3: Drake's Deception / God of War III" }, { "id": "ASIA00051", "name": "PS3 Best Hit Collection Vol. 1: Uncharted 3: Drake's Deception / LittleBigPlanet 2" }, { "id": "ASIA00052", "name": "PS3 Best Hit Collection Vol. 2: Resistance 3 / God of War III" }, { "id": "ASIA00074", "name": "Ultimate Uncharted Pack" }, { "id": "ATS201009", "name": "Catherine Best Selection" }, { "id": "BCAS01594", "name": "Ratchet & Clank: QForce (NTSC-A)" }, { "id": "BCAS20001", "name": "Ridge Racer 7 (NTSC-A)" }, { "id": "BCAS20002", "name": "Genji: Kamui Souran (NTSC-A)" }, { "id": "BCAS20003", "name": "Resistance : Fall of Man (NTSC-A)" }, { "id": "BCAS20004", "name": "MotorStorm (NTSC-A)" }, { "id": "BCAS20005", "name": "Armored Core 4 (NTSC-A)" }, { "id": "BCAS20006", "name": "NBA '07 (NTSC-A)" }, { "id": "BCAS20007", "name": "Railfan (NTSC-A)" }, { "id": "BCAS20008", "name": "Enchant Arm (NTSC-A)" }, { "id": "BCAS20009", "name": "Formula One Championship Edition (NTSC-A)" }, { "id": "BCAS20010", "name": "MLB 07: The Show (NTSC-A)" }, { "id": "BCAS20012", "name": "Ninja Gaiden Sigma (NTSC-A)" }, { "id": "BCAS20013", "name": "Folklore (NTSC-A)" }, { "id": "BCAS20014", "name": "Lair (NTSC-A)" }, { "id": "BCAS20015", "name": "Warhawk (NTSC-A)" }, { "id": "BCAS20016", "name": "Heavenly Sword (NTSC-A)" }, { "id": "BCAS20018", "name": "Railfan Taiwan High Speed Rail (NTSC-A)" }, { "id": "BCAS20019", "name": "Everybody's Golf 5 (NTSC-A)" }, { "id": "BCAS20020", "name": "Wangan Midnight (NTSC-A)" }, { "id": "BCAS20021", "name": "The Eye of Judgement (NTSC-A)" }, { "id": "BCAS20022", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (NTSC-A)" }, { "id": "BCAS20023", "name": "Ratchet & Clank: A Crack in Time (NTSC-A)" }, { "id": "BCAS20024", "name": "Uncharted: Drake's Fortune (NTSC-A)" }, { "id": "BCAS20025", "name": "NBA 08 (NTSC-A)" }, { "id": "BCAS20026", "name": "Time Crisis 4 (with GunCon 3) (NTSC-A)" }, { "id": "BCAS20027", "name": "Gran Turismo 5: Prologue (NTSC-A)" }, { "id": "BCAS20028", "name": "Beowolf: The Game (NTSC-A)" }, { "id": "BCAS20029", "name": "Brothers in Arms: Hell's Highway (NTSC-A)" }, { "id": "BCAS20030", "name": "Haze (NTSC-A)" }, { "id": "BCAS20031", "name": "Makai Senki Disgaea 3 (NTSC-A)" }, { "id": "BCAS20032", "name": "Trusty Bell: Chopin no Yume Reprise (NTSC-A)" }, { "id": "BCAS20033", "name": "Lost: Via Domus (NTSC-A)" }, { "id": "BCAS20034", "name": "Armored Core: For Answer (NTSC-A)" }, { "id": "BCAS20035", "name": "Motorstorm Complete (NTSC-A)" }, { "id": "BCAS20036", "name": "Dark Sector (NTSC-A)" }, { "id": "BCAS20037", "name": "Resistance: Fall of Man (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20038", "name": "FolksSoul: Ushinawareta Denshou / Folklore (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20039", "name": "Ridge Racer 7 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20040", "name": "Ninja Gaiden Sigma (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20041", "name": "Hot Shots Golf : Out of Bounds (NTSC-A)" }, { "id": "BCAS20042", "name": "MLB 08 : The Show (NTSC-A)" }, { "id": "BCAS20043", "name": "Battle Fantasia (NTSC-A)" }, { "id": "BCAS20044", "name": "MotorStorm II (NTSC-A)" }, { "id": "BCAS20045", "name": "Ratchet & Clank: Tools of Destruction (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20046", "name": "Tears to Tiara : Kakan no Daichi (NTSC-A)" }, { "id": "BCAS20047", "name": "SIREN: New Translation (NTSC-A)" }, { "id": "BCAS20048", "name": "SoulCalibur IV (NTSC-A)" }, { "id": "BCAS20049", "name": "Vampire Rain : Altered Species (NTSC-A)" }, { "id": "BCAS20050", "name": "Hakuna Matata (NTSC-A)" }, { "id": "BCAS20051", "name": "SOCOM: U.S. Navy SEALs Confrontation (NTSC-A)" }, { "id": "BCAS20052", "name": "Ratchet & Clank: Quest for Booty (NTSC-A)" }, { "id": "BCAS20053", "name": "Disgaea 3: Absence of Justice (NTSC-A)" }, { "id": "BCAS20054", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-A)" }, { "id": "BCAS20055", "name": "Resistance 2 (NTSC-A)" }, { "id": "BCAS20056", "name": "X Edge (NTSC-A)" }, { "id": "BCAS20057", "name": "Warhawk (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20058", "name": "LittleBigPlanet (NTSC-A)" }, { "id": "BCAS20059", "name": "The Elder Scrolls IV: Oblivion (Game of the Year Edition) (NTSC-A)" }, { "id": "BCAS20060", "name": "NBA 09 The Inside (NTSC-A)" }, { "id": "BCAS20061", "name": "Fallout 3 (NTSC-A)" }, { "id": "BCAS20062", "name": "Hakuna Matata (NTSC-A)" }, { "id": "BCAS20063", "name": "Way of the Samurai 3 (NTSC-A)" }, { "id": "BCAS20064", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-A)" }, { "id": "BCAS20065", "name": "SBK 08 : Superbike World Championship (NTSC-A)" }, { "id": "BCAS20066", "name": "Killzone 2 (NTSC-A)" }, { "id": "BCAS20068", "name": "Brain Challenge (NTSC-A)" }, { "id": "BCAS20070", "name": "PixelJunk 3-in-1 Pack (NTSC-A)" }, { "id": "BCAS20071", "name": "Demon's Souls (NTSC-A)" }, { "id": "BCAS20072", "name": "MLB 09 : The Show (NTSC-A)" }, { "id": "BCAS20073", "name": "The Last Guy (NTSC-A)" }, { "id": "BCAS20074", "name": "inFamous (NTSC-A)" }, { "id": "BCAS20075", "name": "Agarest Senki Zero (NTSC-A)" }, { "id": "BCAS20076", "name": "Rorona no Atelier: Arland no Renkinjutsushi (NTSC-A)" }, { "id": "BCAS20077", "name": "BlazBlue: Calamity Trigger (NTSC-A)" }, { "id": "BCAS20078", "name": "LittleBigPlanet (Game of the Year Edition) (NTSC-A)" }, { "id": "BCAS20079", "name": "Uncharted: Drake's Fortune (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20080", "name": "Katamari Damacy Tribute (NTSC-A)" }, { "id": "BCAS20081", "name": "MAG (NTSC-A)" }, { "id": "BCAS20082", "name": "SIREN: New Translation (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20083", "name": "Minna no Golf 5 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20084", "name": "Tears to Tiara : Kakan no Daichi (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20085", "name": "Soul Calibur IV (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20086", "name": "Trinity Universe (NTSC-A)" }, { "id": "BCAS20087", "name": "Toro! Let's Party! (NTSC-A)" }, { "id": "BCAS20088", "name": "Trusty Bell: Chopin no Yume Reprise (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20089", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (NTSC-A)" }, { "id": "BCAS20090", "name": "Hakuna Matata (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20091", "name": "LittleBigPlanet (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20092", "name": "WET (NTSC-A)" }, { "id": "BCAS20093", "name": "Tales of Vesperia (NTSC-A)" }, { "id": "BCAS20094", "name": "Tears to Tiara Gaiden : Avalon no Nazo (NTSC-A)" }, { "id": "BCAS20095", "name": "Katamari Forever (NTSC-A)" }, { "id": "BCAS20097", "name": "Uncharted 2: Among Thieves (NTSC-A)" }, { "id": "BCAS20098", "name": "Ratchet & Clank Future: A Crack in Time (NTSC-A)" }, { "id": "BCAS20099", "name": "Rogue Warrior (NTSC-A)" }, { "id": "BCAS20100", "name": "Wipeout HD Fury (NTSC-A)" }, { "id": "BCAS20101", "name": "Way of the Samurai 3 Plus (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20102", "name": "God of War Collection (NTSC-A)" }, { "id": "BCAS20103", "name": "EyePet (Bundle with PlayStation3 Eye) (NTSC-A)" }, { "id": "BCAS20104", "name": "EyePet (Bundle with PlayStation3 Eye) (NTSC-A)" }, { "id": "BCAS20105", "name": "ModNation Racers (NTSC-A)" }, { "id": "BCAS20106", "name": "3D Dot Game Heroes (NTSC-A)" }, { "id": "BCAS20107", "name": "Heavy Rain (NTSC-A)" }, { "id": "BCAS20108", "name": "Gran Turismo 5 (NTSC-A)" }, { "id": "BCAS20109", "name": "Last Rebellion (NTSC-A)" }, { "id": "BCAS20110", "name": "Resistance 2 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20111", "name": "Star Ocean: The Last Hope International (NTSC-A)" }, { "id": "BCAS20112", "name": "No More Heroes: Eiyuutachi no Rakuen (NTSC-A)" }, { "id": "BCAS20113", "name": "LittleBigPlanet 2 (NTSC-A)" }, { "id": "BCAS20114", "name": "Last Rebellion (NTSC-A)" }, { "id": "BCAS20115", "name": "Demon's Souls (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20116", "name": "BlazBlue : Calamity Trigger (PlayStation3 the Best) (NTSC-A)" }, { "id": "BCAS20117", "name": "Lair (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20118", "name": "Red Seeds Profile (NTSC-A)" }, { "id": "BCAS20119", "name": "MLB 10 The Show (NTSC-A)" }, { "id": "BCAS20120", "name": "NieR RepliCant (NTSC-A)" }, { "id": "BCAS20121", "name": "SOCOM 4: U.S. Navy SEALS (NTSC-A)" }, { "id": "BCAS20122", "name": "NieR (NTSC-A)" }, { "id": "BCAS20123", "name": "Front Mission Evolved (NTSC-A)" }, { "id": "BCAS20124", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (NTSC-A)" }, { "id": "BCAS20125", "name": "Sports Champions (NTSC-A)" }, { "id": "BCAS20126", "name": "BlazBlue: Continuum Shift (NTSC-A)" }, { "id": "BCAS20128", "name": "TV Superstars (NTSC-A)" }, { "id": "BCAS20129", "name": "Chou Jigen Game: Neptune (NTSC-A)" }, { "id": "BCAS20131", "name": "Toro! Let's Party! (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20132", "name": "Kung Fu Rider (NTSC-A)" }, { "id": "BCAS20133", "name": "echochrome ii (NTSC-A)" }, { "id": "BCAS20134", "name": "The Shoot (NTSC-A)" }, { "id": "BCAS20135", "name": "Start the Party! (NTSC-A)" }, { "id": "BCAS20137", "name": "Front Mission Evolved (NTSC-A)" }, { "id": "BCAS20138", "name": "Brunswick Pro Bowling (NTSC-A)" }, { "id": "BCAS20139", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20140", "name": "EyePet (Move Edition) (NTSC-A)" }, { "id": "BCAS20141", "name": "The Fight (NTSC-A)" }, { "id": "BCAS20142", "name": "Uncharted 2: Among Thieves (Game of the Year Edition) (NTSC-A)" }, { "id": "BCAS20143", "name": "Fallout: New Vegas (NTSC-A)" }, { "id": "BCAS20144", "name": "Beat Sketch! (NTSC-A)" }, { "id": "BCAS20146", "name": "Atelier Rorona: The Alchemist of Arland (NTSC-A)" }, { "id": "BCAS20147", "name": "Agarest Senki 2 (NTSC-A)" }, { "id": "BCAS20149", "name": "Sly Cooper Collection (NTSC-A)" }, { "id": "BCAS20150", "name": "The ICO & Shadow of the Colossus Collection (NTSC-A)" }, { "id": "BCAS20151", "name": "Gran Turismo 5 (First Print Limited Edition) (NTSC-A)" }, { "id": "BCAS20153", "name": "SingStar Dance (Party Pack) (NTSC-A)" }, { "id": "BCAS20154", "name": "Gran Turismo 5 (Collector's Edition) (NTSC-A)" }, { "id": "BCAS20156", "name": "Furi Furi! Saru Get You (NTSC-A)" }, { "id": "BCAS20157", "name": "Killzone 2 (PlayStation3 the Best) (NTSC-A)" }, { "id": "BCAS20159", "name": "Ape Escape On the Move! (NTSC-A)" }, { "id": "BCAS20160", "name": "MotorStorm 3 Apocalypse (NTSC-A)" }, { "id": "BCAS20161", "name": "Mindjack (NTSC-A)" }, { "id": "BCAS20162", "name": "Arcana Heart 3 (NTSC-A)" }, { "id": "BCAS20163", "name": "Playstation Move Heroes (NTSC-A)" }, { "id": "BCAS20164", "name": "Gran Turismo 5 (Dual Shock 3 bundle Pack) or (Collector's Pack 2nd Edition) (NTSC-A)" }, { "id": "BCAS20165", "name": "Hyperdimension Neptunia (NTSC-A)" }, { "id": "BCAS20166", "name": "Catherine (NTSC-A)" }, { "id": "BCAS20167", "name": "Way of the Samurai 4 (NTSC-A)" }, { "id": "BCAS20168", "name": "Makai Senki Disgaea 4 (NTSC-A)" }, { "id": "BCAS20169", "name": "MLB 11: The Show (NTSC-A)" }, { "id": "BCAS20173", "name": "El Shaddai: Ascension of the Metatron (NTSC-A)" }, { "id": "BCAS20174", "name": "Man vs. Wild with Bear Grylls (NTSC-A)" }, { "id": "BCAS20175", "name": "God of War : Origins Collection (NTSC-A)" }, { "id": "BCAS20176", "name": "NieR RepliCant (Ultimate Hits) (NTSC-A)" }, { "id": "BCAS20177", "name": "Star Ocean: The Last Hope International (Ultimate Hits) (NTSC-A)" }, { "id": "BCAS20178", "name": "Brink (NTSC-A)" }, { "id": "BCAS20180", "name": "inFamous (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20181", "name": "inFamous 2 (NTSC-A)" }, { "id": "BCAS20182", "name": "Atelier Meruru: The Alchemist of Arland 3 (NTSC-A)" }, { "id": "BCAS20183", "name": "Hunted: The Demon's Forge (NTSC-A)" }, { "id": "BCAS20184", "name": "Cars 2: The Video Game (NTSC-A)" }, { "id": "BCAS20185", "name": "Disgaea 4: A Promise Unforgotten (NTSC-A)" }, { "id": "BCAS20186", "name": "Bleach: Soul Ignition (NTSC-A)" }, { "id": "BCAS20189", "name": "No More Heroes: Red Zone Edition (NTSC-A)" }, { "id": "BCAS20192", "name": "Split/Second (NTSC-A)" }, { "id": "BCAS20193", "name": "Toy Story 3 (NTSC-A)" }, { "id": "BCAS20195", "name": "Chou Jigen Game Neptune Mk2 (NTSC-A)" }, { "id": "BCAS20196", "name": "Final Fantasy XIII-2 (NTSC-A)" }, { "id": "BCAS20200", "name": "Ratchet & Clank: All 4 One (NTSC-A)" }, { "id": "BCAS20201", "name": "LittleBigPlanet 2 (Annual Special Edition) (NTSC-A)" }, { "id": "BCAS20202", "name": "ICO (NTSC-A)" }, { "id": "BCAS20203", "name": "Wander to Kyozou (NTSC-A)" }, { "id": "BCAS20204", "name": "Medieval Moves: Deadmund's Quest (NTSC-A)" }, { "id": "BCAS20205", "name": "LittleBigPlanet Karting (NTSC-A)" }, { "id": "BCAS20206", "name": "Disgaea 4: A Promise Unforgotten (NTSC-A)" }, { "id": "BCAS20208", "name": "Minna no Golf 5 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20209", "name": "Atelier Totori: The Adventurer of Arland (NTSC-A)" }, { "id": "BCAS20210", "name": "Carnival Island (NTSC-A)" }, { "id": "BCAS20211", "name": "To Heart 2 DX Plus (NTSC-A)" }, { "id": "BCAS20212", "name": "EyePet & Friends (NTSC-A)" }, { "id": "BCAS20213", "name": "Start the Party 2! Save the World (NTSC-A)" }, { "id": "BCAS20215", "name": "Disney Universe (NTSC-A)" }, { "id": "BCAS20218", "name": "Ninokuni: Shiroki Seihai no Joou (NTSC-A)" }, { "id": "BCAS20219", "name": "Move Fitness (NTSC-A)" }, { "id": "BCAS20221", "name": "Cartoon Network: Punch Time Explosion XL (NTSC-A)" }, { "id": "BCAS20222", "name": "Jak & Daxter Collection (NTSC-A)" }, { "id": "BCAS20223", "name": "Final Fantasy XIII-2 Lightning Edition Ver.2 Bundle (NTSC-A)" }, { "id": "BCAS20224", "name": "Final Fantasy XIII-2 (NTSC-A)" }, { "id": "BCAS20225", "name": "Final Fantasy XIII-2 (NTSC-A)" }, { "id": "BCAS20226", "name": "All About PlayStation Game Hits Vol. 1 (NTSC-A)" }, { "id": "BCAS20227", "name": "BlazBlue: Continuum Shift: Extend (NTSC-A)" }, { "id": "BCAS20228", "name": "Wizardry Perfect Pack (NTSC-A)" }, { "id": "BCAS20229", "name": "Gran Turismo 5 Spec II (NTSC-A)" }, { "id": "BCAS20230", "name": "Twisted Metal (NTSC-A)" }, { "id": "BCAS20233", "name": "Tokyo Jungle (NTSC-A)" }, { "id": "BCAS20234", "name": "BlazBlue: Continuum Shift Extend (NTSC-A)" }, { "id": "BCAS20236", "name": "Attouteki Yuugi: Mugen Souls (NTSC-A)" }, { "id": "BCAS20237", "name": "MLB 12 The Show (NTSC-A)" }, { "id": "BCAS20242", "name": "Brave: The Video Game (NTSC-A)" }, { "id": "BCAS20243", "name": "Lollipop Chainsaw (NTSC-A)" }, { "id": "BCAS20244", "name": "Chou Jigen Game Neptune mk2 (NTSC-A)" }, { "id": "BCAS20245", "name": "AquaPazza: AquaPlus Dream Match (NTSC-A)" }, { "id": "BCAS20246", "name": "The Ratchet & Clank Trilogy: Classics HD (NTSC-A)" }, { "id": "BCAS20248", "name": "Tales of Vesperia (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS20249", "name": "Damage Inc.: Pacific Squadron WWII (NTSC-A)" }, { "id": "BCAS20250", "name": "Sleeping Dogs (NTSC-A)" }, { "id": "BCAS20251", "name": "Persona 4: The Ultimate in Mayonaka Arena (NTSC-A)" }, { "id": "BCAS20252", "name": "Kami Jigen Game Neptune V (NTSC-A)" }, { "id": "BCAS20253", "name": "PlayStation All-Stars Battle Royale (NTSC-A)" }, { "id": "BCAS20254", "name": "Sports Champions 2 (NTSC-A)" }, { "id": "BCAS20255", "name": "Sleeping Dogs (NTSC-A)" }, { "id": "BCAS20258", "name": "Muv-Luv (NTSC-A)" }, { "id": "BCAS20259", "name": "Toy Story Mania (NTSC-A)" }, { "id": "BCAS20261", "name": "Dream C Club: Complete Edipyon! (NTSC-A)" }, { "id": "BCAS20266", "name": "Kamisama to Unmei Kakumei no Paradox (NTSC-A)" }, { "id": "BCAS20267", "name": "Gran Turismo 5: 2013 Edition (NTSC-A)" }, { "id": "BCAS20268", "name": "Dream C Club Zero: Special Edipyon! (NTSC-A)" }, { "id": "BCAS20272", "name": "Tomb Raider (NTSC-A)" }, { "id": "BCAS20273", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-A)" }, { "id": "BCAS20274", "name": "Disgea Dimension 2 (NTSC-A)" }, { "id": "BCAS20275", "name": "MLB 13: The Show (NTSC-A)" }, { "id": "BCAS20276", "name": "Minna no Golf 6 (NTSC-A)" }, { "id": "BCAS20277", "name": "Attouteki Yuugi: Mugen Souls Z (NTSC-A)" }, { "id": "BCAS20278", "name": "Best of PlayStation Network Vol. 1 (NTSC-A)" }, { "id": "BCAS20279", "name": "Lightning Returns: Final Fantasy XIII (NTSC-A)" }, { "id": "BCAS20280", "name": "Z/X: Zillions of enemy X - Zekkai no Crusade (NTSC-A)" }, { "id": "BCAS20281", "name": "Puppeteer (NTSC-A)" }, { "id": "BCAS20283", "name": "Final Fantasy XIII-2 (Ultimate Hits) (NTSC-A)" }, { "id": "BCAS20284", "name": "XBLAZE Code: Embryo (NTSC-A)" }, { "id": "BCAS20285", "name": "Time and Eternity (NTSC-A)" }, { "id": "BCAS20289", "name": "Final Fantasy X/X-2 HD Remaster (NTSC-A)" }, { "id": "BCAS20290", "name": "Dragon's Crown (NTSC-A)" }, { "id": "BCAS20291", "name": "Killer is Dead (Premium Edition) (NTSC-A)" }, { "id": "BCAS20292", "name": "Killer is Dead (NTSC-A)" }, { "id": "BCAS20294", "name": "Arcadias no Ikusahime (NTSC-A)" }, { "id": "BCAS20295", "name": "Diablo III (NTSC-A)" }, { "id": "BCAS20296", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-A)" }, { "id": "BCAS20297", "name": "Fairy Fencer F (NTSC-A)" }, { "id": "BCAS20298", "name": "Dragon's Crown (NTSC-A)" }, { "id": "BCAS20299", "name": "Drag-On Dragoon 3 (NTSC-A)" }, { "id": "BCAS20301", "name": "Disgaea D2: A Brighter Darkness (NTSC-J)" }, { "id": "BCAS20302", "name": "Disgaea D2: A Brighter Darkness (NTSC-A)" }, { "id": "BCAS20303", "name": "BlazBlue: Chrono Phantasma (NTSC-A)" }, { "id": "BCAS20304", "name": "Akiba's Trip 2 (NTSC-A)" }, { "id": "BCAS20308", "name": "Lightning Returns: Final Fantasy XIII (NTSC-A)" }, { "id": "BCAS20309", "name": "Final Fantasy X / X-2 HD Remaster (NTSC-A)" }, { "id": "BCAS20310", "name": "Akiba's Trip 2 (NTSC-A)" }, { "id": "BCAS20311", "name": "Drag-On Dragoon 3 (NTSC-A)" }, { "id": "BCAS20312", "name": "Lightning Returns: Final Fantasy XIII (NTSC-A)" }, { "id": "BCAS20315", "name": "Final Fantasy X / X-2 HD Remaster (English Version) (NTSC-A)" }, { "id": "BCAS20316", "name": "Natural Doctrine (NTSC-A)" }, { "id": "BCAS20317", "name": "Ragnarok Odyssey ACE (NTSC-A)" }, { "id": "BCAS20318", "name": "Drakengard 3 (NTSC-A)" }, { "id": "BCAS20319", "name": "Lost in the Rain (NTSC-A)" }, { "id": "BCAS20320", "name": "MLB 14: The Show (NTSC-A)" }, { "id": "BCAS20322", "name": "LittleBigPlanet 3 (NTSC-A)" }, { "id": "BCAS20325", "name": "Diablo III: Reaper of Souls (Ultimate Evil Edition) (NTSC-A)" }, { "id": "BCAS20327", "name": "Akiba's Trip: Undead & Undressed (NTSC-A)" }, { "id": "BCAS20328", "name": "Kamisama to Unmei Kakusei no Cross Thesis (NTSC-A)" }, { "id": "BCAS20330", "name": "Kingdom Hearts HD 1.5 + 2.5 ReMIX (Limited Edition) (NTSC-A)" }, { "id": "BCAS20333", "name": "The Evil Within (NTSC-J)" }, { "id": "BCAS20336", "name": "Natural Doctrine (NTSC-A)" }, { "id": "BCAS20338", "name": "Guilty Gear Xrd -SIGN- (NTSC-A)" }, { "id": "BCAS20519", "name": "Gran Turismo 6 (Anniversary Edition) (NTSC-A)" }, { "id": "BCAS20520", "name": "Gran Turismo 6 (Anniversary Edition) (NTSC-A)" }, { "id": "BCAS20521", "name": "Gran Turismo 6 (Collector's Edition) (NTSC-A)" }, { "id": "BCAS25001", "name": "Fainaru Fantajī Sātīn (NTSC-A)" }, { "id": "BCAS25002", "name": "Final Fantasy XIII (PS3 Lightning Edition) (NTSC-A)" }, { "id": "BCAS25003", "name": "God of War III (NTSC-A)" }, { "id": "BCAS25004", "name": "Final Fantasy XIII (NTSC-A)" }, { "id": "BCAS25005", "name": "Final Fantasy XIII (NTSC-A)" }, { "id": "BCAS25006", "name": "Heavy Rain (Move Edition) (NTSC-A)" }, { "id": "BCAS25007", "name": "God of War III (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BCAS25008", "name": "Killzone 3 (NTSC-A)" }, { "id": "BCAS25009", "name": "Uncharted 3: Drake's Deception (NTSC-A)" }, { "id": "BCAS25011", "name": "Final Fantasy XIII (Ultimate Hits) (NTSC-A)" }, { "id": "BCAS25012", "name": "Resistance 3 (NTSC-A)" }, { "id": "BCAS25014", "name": "Uncharted 3: Drake's Deception (Game of the Year Edition) (NTSC-A)" }, { "id": "BCAS25016", "name": "God of War: Ascension (NTSC-A)" }, { "id": "BCAS25017", "name": "Beyond: Two Souls (NTSC-A)" }, { "id": "BCAS25018", "name": "Gran Turismo 6 (NTSC-J)" }, { "id": "BCAS25019", "name": "Gran Turismo 6 (15th Anniversary Limited Edition) (NTSC-A)" }, { "id": "BCAS50693", "name": "Hatsune Miku: Project Diva F 2nd (NTSC-A)" }, { "id": "BCAS80001", "name": "Phineas and Ferb: Across the Second Dimension (NTSC-A)" }, { "id": "BCAS85001", "name": "Tekken Hybrid (NTSC-A)" }, { "id": "BCAX90003", "name": "Playstation Three Big Hit Titles Demo Collection" }, { "id": "BCED00060", "name": "Official PlayStation Magazine Volume 7" }, { "id": "BCED00084", "name": "Official PlayStation Magazine Volume 8" }, { "id": "BCED00085", "name": "Official PlayStation Magazine Volume 9" }, { "id": "BCED00086", "name": "Official PlayStation Magazine Volume 10" }, { "id": "BCED00087", "name": "Official PlayStation Magazine Volume 11" }, { "id": "BCED00088", "name": "Official PlayStation Magazine Volume 12" }, { "id": "BCED00181", "name": "Official PlayStation Magazine Volume 13" }, { "id": "BCED00204", "name": "Official PlayStation Magazine Volume 16" }, { "id": "BCED00205", "name": "Official PlayStation Magazine Volume 17" }, { "id": "BCED00206", "name": "Official PlayStation Magazine Volume 18" }, { "id": "BCED00207", "name": "Official PlayStation Magazine Volume 19" }, { "id": "BCED00208", "name": "Official PlayStation Magazine Volume 20" }, { "id": "BCED00210", "name": "Official PlayStation Magazine Volume 22" }, { "id": "BCED00212", "name": "Official PlayStation Magazine Volume 24" }, { "id": "BCED00213", "name": "Official PlayStation Magazine Volume 25" }, { "id": "BCED00214", "name": "Official PlayStation Magazine Volume 26" }, { "id": "BCED00428", "name": "Official PlayStation Magazine Volume 29" }, { "id": "BCED00429", "name": "Official PlayStation Magazine Volume 30" }, { "id": "BCED00435", "name": "Official PlayStation Magazine Volume 36" }, { "id": "BCED00437", "name": "Official PlayStation Magazine Volume 15" }, { "id": "BCED00439", "name": "Official PlayStation Magazine Volume 40" }, { "id": "BCED00804", "name": "Official PlayStation Magazine Volume 42" }, { "id": "BCED00806", "name": "Official PlayStation Magazine Volume 44" }, { "id": "BCED00808", "name": "Official PlayStation Magazine Volume 46" }, { "id": "BCED00812", "name": "Official PlayStation Magazine Volume 50" }, { "id": "BCED00813", "name": "Official PlayStation Magazine Volume 51" }, { "id": "BCED01063", "name": "PlayStation Move Starter Disc" }, { "id": "BCED01571", "name": "Official PlayStation Magazine Volume 76" }, { "id": "BCES00001", "name": "Resistance: Fall of Man (PAL)" }, { "id": "BCES00002", "name": "Genji: Days of the Blade (PAL)" }, { "id": "BCES00004", "name": "Lair (PAL)" }, { "id": "BCES00005", "name": "Formula One: Championship Edition (PAL)" }, { "id": "BCES00006", "name": "MotorStorm (PAL)" }, { "id": "BCES00007", "name": "The Eye of Judgment (PAL)" }, { "id": "BCES00008", "name": "Warhawk (PAL)" }, { "id": "BCES00009", "name": "Ridge Racer 7 (PAL)" }, { "id": "BCES00011", "name": "SingStar (PAL)" }, { "id": "BCES00013", "name": "SingStar (PAL)" }, { "id": "BCES00029", "name": "SingStar Pop Edition (PAL)" }, { "id": "BCES00030", "name": "SingStar (PAL)" }, { "id": "BCES00031", "name": "SingStar (PAL)" }, { "id": "BCES00032", "name": "SingStar (PAL)" }, { "id": "BCES00049", "name": "SingStar Queen (PAL)" }, { "id": "BCES00050", "name": "Folklore (PAL)" }, { "id": "BCES00051", "name": "SingStar (PAL)" }, { "id": "BCES00052", "name": "Ratchet & Clank: Tools of Destruction (PAL)" }, { "id": "BCES00057", "name": "Time Crisis 4 (PAL)" }, { "id": "BCES00065", "name": "Uncharted: Drake's Fortune (PAL)" }, { "id": "BCES00068", "name": "Everybody's Golf: World Tour (PAL)" }, { "id": "BCES00069", "name": "EyeCreate (PAL)" }, { "id": "BCES00078", "name": "Heavenly Sword (PAL)" }, { "id": "BCES00081", "name": "Killzone 2 (PAL)" }, { "id": "BCES00096", "name": "PlayTV (PAL)" }, { "id": "BCES00098", "name": "Buzz! Quiz TV (PAL)" }, { "id": "BCES00099", "name": "Buzz! Quiz TV (PAL)" }, { "id": "BCES00104", "name": "Gran Turismo 5: Prologue (PAL)" }, { "id": "BCES00112", "name": "NBA 08 (PAL)" }, { "id": "BCES00123", "name": "Heavenly Sword (PAL)" }, { "id": "BCES00129", "name": "MotorStorm: Pacific Rift (PAL)" }, { "id": "BCES00141", "name": "LittleBigPlanet (PAL)" }, { "id": "BCES00173", "name": "SOCOM Confrontation (PAL)" }, { "id": "BCES00185", "name": "SingStar Volume 2 (PAL)" }, { "id": "BCES00195", "name": "Buzz! Quiz TV (PAL)" }, { "id": "BCES00216", "name": "SingStar Volume 3 (PAL)" }, { "id": "BCES00220", "name": "inFamous (PAL)" }, { "id": "BCES00225", "name": "White Knight Chronicles (PAL)" }, { "id": "BCES00226", "name": "Resistance 2 (PAL)" }, { "id": "BCES00233", "name": "SingStar Volume 2 (PAL)" }, { "id": "BCES00234", "name": "SingStar Volume 2 (PAL)" }, { "id": "BCES00235", "name": "SingStar Vol. 2 (PAL)" }, { "id": "BCES00264", "name": "SingStar Hits (PAL)" }, { "id": "BCES00265", "name": "SingStar Vol. 3 (PAL)" }, { "id": "BCES00266", "name": "SingStar Vol. 3 (PAL)" }, { "id": "BCES00267", "name": "SingStar Volume 3 (PAL)" }, { "id": "BCES00293", "name": "SingStar Pop (PAL)" }, { "id": "BCES00294", "name": "Siren Blood Curse (PAL)" }, { "id": "BCES00301", "name": "Ratchet & Clank: Quest for Booty (PAL)" }, { "id": "BCES00303", "name": "Buzz!: Quiz TV (Special Edition) (PAL)" }, { "id": "BCES00304", "name": "Buzz! Quiz TV (PAL)" }, { "id": "BCES00305", "name": "Buzz! Quiz TV (PAL)" }, { "id": "BCES00341", "name": "SingStar: Pop Edition (PAL)" }, { "id": "BCES00342", "name": "SingStar Pop Edition (PAL)" }, { "id": "BCES00343", "name": "SingStar Pop (PAL)" }, { "id": "BCES00344", "name": "SingStar Pop (PAL)" }, { "id": "BCES00345", "name": "SingStar Pop (PAL)" }, { "id": "BCES00346", "name": "SingStar Hits 2 (PAL)" }, { "id": "BCES00347", "name": "Buzz! Brain of the UK (PAL)" }, { "id": "BCES00348", "name": "Buzz! Le Plus Malin Des Français (PAL)" }, { "id": "BCES00349", "name": "Buzz! Il Quizzone Nazionale (PAL)" }, { "id": "BCES00350", "name": "Buzz! Deutschland Superquiz (PAL)" }, { "id": "BCES00351", "name": "Buzz! ¿Qué sabes de tu País? (PAL)" }, { "id": "BCES00363", "name": "Buzz! Brain of Oz (PAL)" }, { "id": "BCES00364", "name": "Buzz! De Slimste Van Nederland (PAL)" }, { "id": "BCES00365", "name": "Buzz! Brain of Switzerland (PAL)" }, { "id": "BCES00366", "name": "Buzz! Brain of the UK (PAL)" }, { "id": "BCES00367", "name": "Buzz! Polskie Łanigłówki (PAL)" }, { "id": "BCES00381", "name": "SingStar: ABBA (PAL)" }, { "id": "BCES00423", "name": "SingStar ABBA (PAL)" }, { "id": "BCES00440", "name": "Buzz! Quiz World (PAL)" }, { "id": "BCES00458", "name": "Heavy Rain (PAL)" }, { "id": "BCES00459", "name": "Buzz! Quem é o Génio Português? (PAL)" }, { "id": "BCES00463", "name": "The Shoot (PAL)" }, { "id": "BCES00483", "name": "EyePet (PAL)" }, { "id": "BCES00484", "name": "MotorStorm Apocalypse (PAL)" }, { "id": "BCES00494", "name": "SingStar: Queen (PAL)" }, { "id": "BCES00509", "name": "Uncharted 2: Among Thieves (PAL)" }, { "id": "BCES00510", "name": "God of War III (PAL)" }, { "id": "BCES00511", "name": "Ratchet & Clank: A Crack in Time (PAL)" }, { "id": "BCES00516", "name": "God of War III (PAL)" }, { "id": "BCES00518", "name": "SingStar Morangos Com Açúcar (PAL)" }, { "id": "BCES00519", "name": "SingStar: Mallorca Party (PAL)" }, { "id": "BCES00520", "name": "SingStar Studio 100 (PAL)" }, { "id": "BCES00531", "name": "SingStar Polskie Hity (PAL)" }, { "id": "BCES00548", "name": "Pain (PAL)" }, { "id": "BCES00558", "name": "MAG (PAL)" }, { "id": "BCES00569", "name": "Gran Turismo 5 (PAL)" }, { "id": "BCES00583", "name": "SingStar Mecano (PAL)" }, { "id": "BCES00591", "name": "inFamous (PAL)" }, { "id": "BCES00594", "name": "Agarest: Generations of War (PAL)" }, { "id": "BCES00596", "name": "SingStar Motown (PAL)" }, { "id": "BCES00598", "name": "TV Superstars (PAL)" }, { "id": "BCES00607", "name": "SingStar: Take That (PAL)" }, { "id": "BCES00609", "name": "inFamous (PAL)" }, { "id": "BCES00611", "name": "LittleBigPlanet (Game of the Year Edition) (PAL)" }, { "id": "BCES00614", "name": "SingStar: Made in Germany (PAL)" }, { "id": "BCES00617", "name": "SingStar Starter Pack (PAL)" }, { "id": "BCES00621", "name": "SingStar Starter Pack (PAL)" }, { "id": "BCES00622", "name": "SingStar (PAL)" }, { "id": "BCES00624", "name": "SingStar Starter Pack (PAL)" }, { "id": "BCES00625", "name": "SingStar Starter Pack (PAL)" }, { "id": "BCES00634", "name": "SingStar The Wiggles (PAL)" }, { "id": "BCES00640", "name": "SingStar: Chartbreaker (PAL)" }, { "id": "BCES00642", "name": "Ghostbusters: The Videogame & The Blu-Ray Movie (PAL)" }, { "id": "BCES00644", "name": "Buzz!: Quiz World (PAL)" }, { "id": "BCES00645", "name": "Buzz! Quiz World (PAL)" }, { "id": "BCES00646", "name": "Buzz! Quiz World (PAL)" }, { "id": "BCES00647", "name": "Buzz! Quiz World (PAL)" }, { "id": "BCES00664", "name": "Wipeout HD Fury (PAL)" }, { "id": "BCES00701", "name": "ModNation Racers (PAL)" }, { "id": "BCES00722", "name": "SingStar Vasco (PAL)" }, { "id": "BCES00726", "name": "Ratchet & Clank: A Crack in Time (PAL)" }, { "id": "BCES00727", "name": "Uncharted 2: Among Thieves (PAL)" }, { "id": "BCES00737", "name": "Heavy Rain (PAL)" }, { "id": "BCES00747", "name": "Start the Party (PAL)" }, { "id": "BCES00748", "name": "Ratchet & Clank: A Crack in Time (PAL)" }, { "id": "BCES00757", "name": "Uncharted 2: Among Thieves (PAL)" }, { "id": "BCES00764", "name": "ModNation Racers (PAL)" }, { "id": "BCES00773", "name": "Battlefield: Bad Company 2 (PAL)" }, { "id": "BCES00791", "name": "God of War Collection (PAL)" }, { "id": "BCES00795", "name": "Sports Champions (PAL)" }, { "id": "BCES00797", "name": "Heavy Rain (PAL)" }, { "id": "BCES00799", "name": "God of War III (PAL)" }, { "id": "BCES00800", "name": "God of War Collection (PAL)" }, { "id": "BCES00802", "name": "Heavy Rain (Move Edition) (PAL)" }, { "id": "BCES00816", "name": "Resident Evil 5: Gold Edition (PAL)" }, { "id": "BCES00818", "name": "MAG (PAL)" }, { "id": "BCES00819", "name": "Sorcery (PAL)" }, { "id": "BCES00828", "name": "Buzz! The Ultimate Music Quiz (PAL)" }, { "id": "BCES00829", "name": "Buzz! The Ultimate Music Quiz (PAL)" }, { "id": "BCES00830", "name": "Buzz! The Ultimate Music Quiz (PAL)" }, { "id": "BCES00831", "name": "Buzz! The Ultimate Music Quiz (PAL)" }, { "id": "BCES00835", "name": "SingStar Guitar (PAL)" }, { "id": "BCES00846", "name": "SingStar Chart Hits (PAL)" }, { "id": "BCES00847", "name": "SingStar SuomiHitit (PAL)" }, { "id": "BCES00850", "name": "LittleBigPlanet 2 (PAL)" }, { "id": "BCES00852", "name": "SingStar Kent (PAL)" }, { "id": "BCES00856", "name": "SingStar Polskie Hity 2 (PAL)" }, { "id": "BCES00864", "name": "EyePet Move Edition (PAL)" }, { "id": "BCES00865", "name": "EyePet & Friends (PAL)" }, { "id": "BCES00869", "name": "SingStar: Fussball Hits (PAL)" }, { "id": "BCES00871", "name": "SingStar Portugal Hits (PAL)" }, { "id": "BCES00873", "name": "SingStar Patito Feo (PAL)" }, { "id": "BCES00874", "name": "The Fight (PAL)" }, { "id": "BCES00894", "name": "SingStar: Dance (PAL)" }, { "id": "BCES00907", "name": "StarHawk (PAL)" }, { "id": "BCES00908", "name": "Kung Fu Rider (PAL)" }, { "id": "BCES00935", "name": "Puppeteer (PAL)" }, { "id": "BCES00938", "name": "SOCOM: Special Forces (PAL)" }, { "id": "BCES00939", "name": "SOCOM: Special Forces (PAL)" }, { "id": "BCES00956", "name": "PlayStation Move Heroes (PAL)" }, { "id": "BCES00968", "name": "The Sly Trilogy (PAL)" }, { "id": "BCES00969", "name": "Start the Party (PAL)" }, { "id": "BCES00970", "name": "Start The Party (PAL)" }, { "id": "BCES00979", "name": "SingStar Guitar (PAL)" }, { "id": "BCES00980", "name": "SingStar Guitar (PAL)" }, { "id": "BCES00981", "name": "SingStar Guitar (PAL)" }, { "id": "BCES00982", "name": "The Sly Trilogy (PAL)" }, { "id": "BCES01007", "name": "Killzone 3 (PAL)" }, { "id": "BCES01010", "name": "Twisted Metal (PAL)" }, { "id": "BCES01012", "name": "Sports Champions (PAL)" }, { "id": "BCES01023", "name": "SingStar Cantautori Italiani (PAL)" }, { "id": "BCES01024", "name": "SingStar: Après-Ski Party 2 (PAL)" }, { "id": "BCES01029", "name": "Kung Fu Rider (PAL)" }, { "id": "BCES01048", "name": "DC Universe Online (PAL)" }, { "id": "BCES01049", "name": "SingStar Dance (PAL)" }, { "id": "BCES01070", "name": "Time Crisis: Razing Storm (PAL)" }, { "id": "BCES01072", "name": "The Fight (PAL)" }, { "id": "BCES01077", "name": "TV Superstars (PAL)" }, { "id": "BCES01083", "name": "SingStar Afrikaanse Treffers (PAL)" }, { "id": "BCES01085", "name": "White Knight Chronicles II (PAL)" }, { "id": "BCES01086", "name": "LittleBigPlanet 2 (PAL)" }, { "id": "BCES01097", "name": "The ICO & Shadow of the Colossus Collection (PAL)" }, { "id": "BCES01103", "name": "SingStar Danske Hits (PAL)" }, { "id": "BCES01104", "name": "MotorStorm Apocalypse (PAL)" }, { "id": "BCES01111", "name": "Start the Party (PAL)" }, { "id": "BCES01115", "name": "The ICO & Shadow of the Colossus Collection (PAL)" }, { "id": "BCES01118", "name": "Resistance 3 (PAL)" }, { "id": "BCES01121", "name": "Beyond: Two Souls (PAL)" }, { "id": "BCES01122", "name": "Beyond: Two Souls (PAL)" }, { "id": "BCES01123", "name": "Beyond: Two Souls (PAL)" }, { "id": "BCES01141", "name": "Ratchet & Clank: All 4 One (PAL)" }, { "id": "BCES01142", "name": "Ratchet & Clank: All for One (PAL)" }, { "id": "BCES01143", "name": "inFamous 2 (PAL)" }, { "id": "BCES01144", "name": "inFamous 2 (PAL)" }, { "id": "BCES01160", "name": "De Blob 2 (PAL)" }, { "id": "BCES01175", "name": "Uncharted 3: Drake's Deception (PAL)" }, { "id": "BCES01176", "name": "Uncharted 3: Drake's Deception (PAL)" }, { "id": "BCES01180", "name": "PlayStation Move Heroes (PAL)" }, { "id": "BCES01186", "name": "Ape Escape (PAL)" }, { "id": "BCES01229", "name": "inFamous 2 (PAL)" }, { "id": "BCES01234", "name": "StarHawk (PAL)" }, { "id": "BCES01247", "name": "DanceStar Party (PAL)" }, { "id": "BCES01255", "name": "SingStar SuomiSuosikit (PAL)" }, { "id": "BCES01257", "name": "SingStar: Back to the 80s (PAL)" }, { "id": "BCES01258", "name": "SingStar Grandes Éxitos (PAL)" }, { "id": "BCES01273", "name": "Start The Party! Save the World (PAL)" }, { "id": "BCES01274", "name": "Start the Party! Save the World (PAL)" }, { "id": "BCES01277", "name": "God of War Collection Volume II (PAL)" }, { "id": "BCES01278", "name": "God of War Collection Volume II (PAL)" }, { "id": "BCES01279", "name": "Medieval Moves (PAL)" }, { "id": "BCES01284", "name": "Sly Cooper: Thieves in Time (PAL)" }, { "id": "BCES01289", "name": "Puppeteer (PAL)" }, { "id": "BCES01325", "name": "Jak & Daxter The Trilogy (PAL)" }, { "id": "BCES01334", "name": "Move Mind Benders (PAL)" }, { "id": "BCES01335", "name": "After Hours Athletes (PAL)" }, { "id": "BCES01336", "name": "Medieval Moves (PAL)" }, { "id": "BCES01337", "name": "Move Fitness (PAL)" }, { "id": "BCES01345", "name": "LittleBigPlanet 2 (PAL)" }, { "id": "BCES01346", "name": "LittleBigPlanet 2 (PAL)" }, { "id": "BCES01353", "name": "Resistance 3 (PAL)" }, { "id": "BCES01360", "name": "DanceStar Party (PAL)" }, { "id": "BCES01361", "name": "DanceStar Party (PAL)" }, { "id": "BCES01369", "name": "Carnival Island (PAL)" }, { "id": "BCES01370", "name": "Carnival Island (PAL)" }, { "id": "BCES01400", "name": "Twisted Metal (PAL)" }, { "id": "BCES01422", "name": "LittleBigPlanet Karting (PAL)" }, { "id": "BCES01435", "name": "PlayStation All-Stars Battle Royale (PAL)" }, { "id": "BCES01436", "name": "PlayStation All-Stars Battle Royale (PAL)" }, { "id": "BCES01454", "name": "Tekken Hybrid (PAL)" }, { "id": "BCES01482", "name": "Move Fitness (PAL)" }, { "id": "BCES01491", "name": "EyePet & Friends (PAL)" }, { "id": "BCES01498", "name": "Move Street Cricket (PAL)" }, { "id": "BCES01503", "name": "The Ratchet & Clank Trilogy (PAL)" }, { "id": "BCES01505", "name": "DanceStar Party Hits (PAL)" }, { "id": "BCES01531", "name": "Wonderbook: Book of Spells (PAL)" }, { "id": "BCES01556", "name": "Until Dawn (PAL)" }, { "id": "BCES01584", "name": "The Last of US (PAL)" }, { "id": "BCES01585", "name": "The Last of US (PAL)" }, { "id": "BCES01594", "name": "Ratchet & Clank: QForce (PAL)" }, { "id": "BCES01598", "name": "Sports Champions 2 (PAL)" }, { "id": "BCES01626", "name": "Ratchet & Clank: QForce (PAL)" }, { "id": "BCES01645", "name": "Doctor Who: The Eternity Clock (PAL)" }, { "id": "BCES01663", "name": "LittleBigPlanet 3 (PAL)" }, { "id": "BCES01670", "name": "Uncharted 3: Drake's Deception (Game of the Year Edition) (PAL)" }, { "id": "BCES01692", "name": "Uncharted 3: Drake's Deception (Game of the Year Edition) (PAL)" }, { "id": "BCES01693", "name": "LittleBigPlanet 2 Extras Edition (PAL)" }, { "id": "BCES01694", "name": "LittleBigPlanet 2 (Extras Edition) (PAL)" }, { "id": "BCES01695", "name": "Move Street Cricket II (PAL)" }, { "id": "BCES01700", "name": "Invizimals: The Lost Kingdom (PAL)" }, { "id": "BCES01725", "name": "Wonderbook Diggs: Nightcrawler (PAL)" }, { "id": "BCES01735", "name": "SingStar SuomiHuiput (PAL)" }, { "id": "BCES01740", "name": "Journey Collector's Edition (PAL)" }, { "id": "BCES01741", "name": "God of War: Ascension (PAL)" }, { "id": "BCES01742", "name": "God of War: Ascension (PAL)" }, { "id": "BCES01743", "name": "Killzone (PAL)" }, { "id": "BCES01806", "name": "Wonderbook: Walking with Dinosaurs (PAL)" }, { "id": "BCES01866", "name": "Wonderbook: Book of Potions (PAL)" }, { "id": "BCES01888", "name": "Beyond: Two Souls (PAL)" }, { "id": "BCES01893", "name": "Gran Turismo 6 (PAL)" }, { "id": "BCES01905", "name": "Gran Turismo 6 (PAL)" }, { "id": "BCES01908", "name": "Ratchet & Clank: Into the Nexus (PAL)" }, { "id": "BCES01915", "name": "SingStar SuomiHelmet (PAL)" }, { "id": "BCES01949", "name": "Ratchet & Clank: Into the Nexus (PAL)" }, { "id": "BCES01953", "name": "Wonderbook: Walking with Dinosaurs (PAL)" }, { "id": "BCES02025", "name": "SingStar: Ultimate Party (PAL)" }, { "id": "BCES02043", "name": "SingStar Ultimate Party (PAL)" }, { "id": "BCES02068", "name": "LittleBigPlanet 3 (PAL)" }, { "id": "BCES02112", "name": "SingStar Frozen (PAL)" }, { "id": "BCES02113", "name": "SingStar Frozen (PAL)" }, { "id": "BCES50000", "name": "Saint Seiya: Sanctuary Battle (PAL)" }, { "id": "BCET70033", "name": "Resistance 3 Online Beta" }, { "id": "BCET70034", "name": "Uncharted 3: Drake's Deception Beta" }, { "id": "BCJN29601", "name": "LittleBigPlanet (w/Dual Shock 3 - Clear Black)" }, { "id": "BCJN29602", "name": "LittleBigPlanet (w/Dual Shock 3 - Ceramic White)" }, { "id": "BCJN29603", "name": "LittleBigPlanet (w/Dual Shock 3 - Satin Silver)" }, { "id": "BCJS30001", "name": "Gran Turismo 5 (First Print Limited Edition) (NTSC-J)" }, { "id": "BCJS30002", "name": "Genji: Kamui Souran (NTSC-J)" }, { "id": "BCJS30003", "name": "Resistance: Jinrui Botsuraku no Hi (NTSC-J)" }, { "id": "BCJS30004", "name": "MotorStorm (NTSC-J)" }, { "id": "BCJS30005", "name": "Formula One Championship Edition (NTSC-J)" }, { "id": "BCJS30007", "name": "The Eye of Judgement (NTSC-J)" }, { "id": "BCJS30009", "name": "FolksSoul: Ushinawareta Denshou (NTSC-J)" }, { "id": "BCJS30010", "name": "Boku no Natsuyasumi 3 (NTSC-J)" }, { "id": "BCJS30011", "name": "Everybody's Golf 5 (NTSC-J)" }, { "id": "BCJS30012", "name": "Rise from Lair (NTSC-J)" }, { "id": "BCJS30014", "name": "Ratchet & Clank: Future : Tools of Destruction (NTSC-J)" }, { "id": "BCJS30015", "name": "Uncharted: El Dorado no Hihou (NTSC-J)" }, { "id": "BCJS30016", "name": "Heavenly Sword (NTSC-J)" }, { "id": "BCJS30017", "name": "Gran Turismo 5: Prologue (NTSC-J)" }, { "id": "BCJS30018", "name": "LittleBigPlanet (NTSC-J)" }, { "id": "BCJS30020", "name": "SIREN: New Translation (NTSC-J)" }, { "id": "BCJS30021", "name": "Afrika (NTSC-J)" }, { "id": "BCJS30022", "name": "Demon's Souls (NTSC-J)" }, { "id": "BCJS30023", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-J)" }, { "id": "BCJS30025", "name": "SOCOM: Confrontation (NTSC-J)" }, { "id": "BCJS30027", "name": "MotorStorm II (NTSC-J)" }, { "id": "BCJS30029", "name": "Resistance 2 (NTSC-J)" }, { "id": "BCJS30030", "name": "White Knight Chronicles (NTSC-J)" }, { "id": "BCJS30031", "name": "Gran Turismo 5 Prologue Spec III (NTSC-J)" }, { "id": "BCJS30032", "name": "Killzone 2 (NTSC-J)" }, { "id": "BCJS30033", "name": "The Last Guy (NTSC-J)" }, { "id": "BCJS30034", "name": "Toro to Morimori (NTSC-J)" }, { "id": "BCJS30035", "name": "Uncharted: Ougontou to Kieta Sendan (NTSC-J)" }, { "id": "BCJS30036", "name": "MAG: Massive Action Game (NTSC-J)" }, { "id": "BCJS30037", "name": "inFamous (NTSC-J)" }, { "id": "BCJS30038", "name": "Ratchet & Clank: Future - A Crack in Time (NTSC-J)" }, { "id": "BCJS30039", "name": "Shirokishi Monogatari: Inishie no Kodou (EX Edition) (NTSC-J)" }, { "id": "BCJS30040", "name": "Heavy Rain (NTSC-J)" }, { "id": "BCJS30041", "name": "ModNation: Mugen no Kart Oukoku (NTSC-J)" }, { "id": "BCJS30042", "name": "Shirokishi Monogatari: Hikari to Yami no Kakusei (NTSC-J)" }, { "id": "BCJS30050", "name": "Gran Turismo 5 (NTSC-J)" }, { "id": "BCJS30052", "name": "SOCOM 4: U.S. Navy SEALS (NTSC-J)" }, { "id": "BCJS30053", "name": "Sports Champions (NTSC-J)" }, { "id": "BCJS30054", "name": "Furi Furi! Saru Get You (NTSC-J)" }, { "id": "BCJS30055", "name": "Machi Suberi (NTSC-J)" }, { "id": "BCJS30056", "name": "Move de Party (NTSC-J)" }, { "id": "BCJS30057", "name": "Me & My Pet (NTSC-J)" }, { "id": "BCJS30058", "name": "LittleBigPlanet 2 (NTSC-J)" }, { "id": "BCJS30059", "name": "Beat Sketch! (NTSC-J)" }, { "id": "BCJS30060", "name": "Studio shooting (NTSC-J)" }, { "id": "BCJS30061", "name": "Sly Cooper Collection (NTSC-J)" }, { "id": "BCJS30062", "name": "Nikudan (NTSC-J)" }, { "id": "BCJS30063", "name": "TV Superstars (NTSC-J)" }, { "id": "BCJS30064", "name": "MotorStorm 3 (NTSC-J)" }, { "id": "BCJS30065", "name": "Mugen Kairou: Hikari to Kage no Hako (NTSC-J)" }, { "id": "BCJS30066", "name": "Killzone 3 (NTSC-J)" }, { "id": "BCJS30068", "name": "Tsumiki Bloq (NTSC-J)" }, { "id": "BCJS30069", "name": "Tokyo Jungle (NTSC-J)" }, { "id": "BCJS30070", "name": "ICO (NTSC-J)" }, { "id": "BCJS30071", "name": "Wander to Kyozou (NTSC-J)" }, { "id": "BCJS30072", "name": "Gachinko Heroes (NTSC-J)" }, { "id": "BCJS30073", "name": "ICO / Wander to Kyozou (Limited Box) (NTSC-J)" }, { "id": "BCJS30075", "name": "inFamous 2 (NTSC-J)" }, { "id": "BCJS30077", "name": "Bleach: Soul Ignition (NTSC-J)" }, { "id": "BCJS30078", "name": "Puppeteer (NTSC-J)" }, { "id": "BCJS30080", "name": "God of War: Rakujitsu no Hisoukyoku & Koutan no Kokuin HD Collection (NTSC-J)" }, { "id": "BCJS30081", "name": "Ratchet & Clank: All 4 One (NTSC-J)" }, { "id": "BCJS30084", "name": "Ratchet & Clank 1-2-3: Ginga * Saikyou Gorgeous Pack (NTSC-J)" }, { "id": "BCJS30085", "name": "LittleBigPlanet Karting (NTSC-J)" }, { "id": "BCJS30086", "name": "Sports Champions 2 (NTSC-J)" }, { "id": "BCJS30087", "name": "Wonderbook: Book of Spells (NTSC-J)" }, { "id": "BCJS30088", "name": "PlayStation All-Stars Battle Royale (NTSC-J)" }, { "id": "BCJS30093", "name": "Rain (NTSC-J)" }, { "id": "BCJS30094", "name": "Ratchet & Clank: Ginga Saikyou Tri-Star Pack (NTSC-J)" }, { "id": "BCJS30095", "name": "LittleBigPlanet 3 (NTSC-J)" }, { "id": "BCJS30100", "name": "Gran Turismo 5 Spec II (NTSC-J)" }, { "id": "BCJS35001", "name": "Destiny (NTSC-J)" }, { "id": "BCJS35002", "name": "Destiny: Furitachi Jashin - Legendary Edition (NTSC-J)" }, { "id": "BCJS37001", "name": "God of War III (NTSC-J)" }, { "id": "BCJS37002", "name": "God of War Trilogy (NTSC-J)" }, { "id": "BCJS37003", "name": "Killzone 3 (NTSC-J)" }, { "id": "BCJS37004", "name": "Uncharted 3: Sabaku ni Nemuru Atlantis (NTSC-J)" }, { "id": "BCJS37009", "name": "Beyond: Two Souls (NTSC-J)" }, { "id": "BCJS37011", "name": "Beyond: Two Souls (NTSC-J)" }, { "id": "BCJS37016", "name": "Gran Turismo 6 (NTSC-J)" }, { "id": "BCJS70001", "name": "Resistance: Jinrui Botsuraku no Hi (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70002", "name": "FolksSoul: Ushinawareta Denshou / Folklore (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70003", "name": "Boku no Natsuyasumi 3 (NTSC-J)" }, { "id": "BCJS70004", "name": "Ratchet & Clank Future: Tools of Destruction (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70005", "name": "Minna no Golf 5 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70006", "name": "SIREN: New Translation (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70007", "name": "Uncharted: El Dorado no Hihou (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70008", "name": "Afrika (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70009", "name": "LittleBigPlanet (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70010", "name": "Resistance: Jinrui Botsuraku no Hi (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BCJS70011", "name": "FolksSoul: Ushinawareta Denshou / Folklore (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BCJS70012", "name": "Ratchet & Clank: Tools of Destruction (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BCJS70013", "name": "Demon's Souls (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70014", "name": "Rise from Lair (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70016", "name": "Killzone 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70017", "name": "Heavy Rain (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70018", "name": "inFamous (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70019", "name": "Shirokishi Monogatari: Hikari to Yami no Kakusei (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70020", "name": "Minna no Golf 5 (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BCJS70021", "name": "Uncharted: Ougontou to Kieta Sendan (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70022", "name": "Resistance 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70023", "name": "inFamous 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70024", "name": "LittleBigPlanet 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70025", "name": "Bleach: Soul Ignition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70026", "name": "MAG: Massive Action Game (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70027", "name": "Tokyo Jungle (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS70028", "name": "Minna no Golf 6 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS75001", "name": "God of War III (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS75002", "name": "Killzone 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJS75003", "name": "Uncharted 3: Sabaku ni Nemuru Atlantis (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BCJX96001", "name": "Gran Turismo HD Install Disc" }, { "id": "BCJX96003", "name": "PlayStation 3 Special Demo Disc" }, { "id": "BCJX96004", "name": "PlayStation 3 Special Demo Disc" }, { "id": "BCKS10002", "name": "Motor Storm (NTSC-K)" }, { "id": "BCKS10006", "name": "MLB 07: The Show (NTSC-K)" }, { "id": "BCKS10010", "name": "Heavenly Sword (NTSC-K)" }, { "id": "BCKS10012", "name": "WarHawk (NTSC-K)" }, { "id": "BCKS10015", "name": "Everybody's Golf 5 (NTSC-K)" }, { "id": "BCKS10026", "name": "Haze (NTSC-K)" }, { "id": "BCKS10033", "name": "Ryu ga Gotoku Kenzan! (NTSC-K)" }, { "id": "BCKS10041", "name": "MotorStorm II (NTSC-K)" }, { "id": "BCKS10042", "name": "Hot Shots Golf: Out of Bounds (NTSC-K)" }, { "id": "BCKS10043", "name": "The Club (NTSC-K)" }, { "id": "BCKS10046", "name": "Sega Superstars Tennis (NTSC-K)" }, { "id": "BCKS10047", "name": "Condemned 2 (NTSC-K)" }, { "id": "BCKS10048", "name": "Viking: Battle for Asgard (NTSC-K)" }, { "id": "BCKS10053", "name": "SOCOM: U.S. Navy SEALs Confrontation (NTSC-K)" }, { "id": "BCKS10054", "name": "Ratchet & Clank Future: Tools of Destruction (Big Hit Series) (NTSC-K)" }, { "id": "BCKS10057", "name": "Resistance 2 (NTSC-K)" }, { "id": "BCKS10058", "name": "NBA 09 The Inside (NTSC-K)" }, { "id": "BCKS10059", "name": "LittleBigPlanet (NTSC-K)" }, { "id": "BCKS10060", "name": "Fallout 3 (NTSC-K)" }, { "id": "BCKS10061", "name": "Golden Axe: Beast Rider (NTSC-K)" }, { "id": "BCKS10062", "name": "The Elder Scrolls IV: Obivion (Game of the Year Edition) (NTSC-K)" }, { "id": "BCKS10063", "name": "Hakuna Matata (NTSC-K)" }, { "id": "BCKS10065", "name": "Sonic Unleashed (NTSC-K)" }, { "id": "BCKS10066", "name": "FolksSoul (BigHit Series) (NTSC-K)" }, { "id": "BCKS10067", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-K)" }, { "id": "BCKS10071", "name": "Demon's Souls (NTSC-K)" }, { "id": "BCKS10082", "name": "inFamous (NTSC-K)" }, { "id": "BCKS10112", "name": "No More Heroes: Heroes' Paradise (NTSC-K)" }, { "id": "BCKS10115", "name": "NieR RepliCant (NTSC-K)" }, { "id": "BCKS10128", "name": "Front Mission Evolved (NTSC-K)" }, { "id": "BCKS10164", "name": "MLB 11: The Show (NTSC-K)" }, { "id": "BCKS10195", "name": "Call of Duty Modern Warfare Three (NTSC-K)" }, { "id": "BCKS15006", "name": "Heavy Rain: Move Edition (NTSC-K)" }, { "id": "BCUS00236", "name": "MLB 15: The Show (NTSC-U)" }, { "id": "BCUS01089", "name": "MLB The Show 16 (NTSC-U)" }, { "id": "BCUS90260", "name": "LittleBigPlanet 2: Special Edition (NTSC-U)" }, { "id": "BCUS90528", "name": "God of War Saga (NTSC-U)" }, { "id": "BCUS90640", "name": "Uncharted: Drake's Fortune (Greatest Hits) (NTSC-U)" }, { "id": "BCUS90641", "name": "Uncharted 2: Among Thieves (Game of the Year Edition) (Greatest Hits) (NTSC-U)" }, { "id": "BCUS90662", "name": "PlayStation Move Demo Disc Volume 2 (NTSC-U)" }, { "id": "BCUS90675", "name": "Uncharted 3: Drake's Deception (NTSC-U)" }, { "id": "BCUS90762", "name": "PlayStation Move Demo Disc Volume 3 (NTSC-U)" }, { "id": "BCUS94344", "name": "SingStar Latino (NTSC-U)" }, { "id": "BCUS98081", "name": "Jak & Daxter Collection (NTSC-U)" }, { "id": "BCUS98102", "name": "NBA '07 (NTSC-U)" }, { "id": "BCUS98103", "name": "Uncharted: Drake's Fortune (NTSC-U)" }, { "id": "BCUS98106", "name": "Twisted Metal (NTSC-U)" }, { "id": "BCUS98107", "name": "Resistance: Fall of Man (NTSC-U)" }, { "id": "BCUS98109", "name": "MLB '07: The Show (NTSC-U)" }, { "id": "BCUS98110", "name": "MAG (NTSC-U)" }, { "id": "BCUS98111", "name": "God of War III (NTSC-U)" }, { "id": "BCUS98112", "name": "Lair (NTSC-U)" }, { "id": "BCUS98114", "name": "Gran Turismo 5 (NTSC-U)" }, { "id": "BCUS98115", "name": "Hot Shots Golf: Out of Bounds (NTSC-U)" }, { "id": "BCUS98116", "name": "Killzone Trilogy (NTSC-U)" }, { "id": "BCUS98117", "name": "Warhawk (With Headset) (NTSC-U)" }, { "id": "BCUS98119", "name": "inFamous (Greatest Hits) (NTSC-U)" }, { "id": "BCUS98120", "name": "Resistance 2 (NTSC-U)" }, { "id": "BCUS98123", "name": "Uncharted 2: Among Thieves (NTSC-U)" }, { "id": "BCUS98124", "name": "Ratchet & Clank: Future - A Crack in Time (NTSC-U)" }, { "id": "BCUS98125", "name": "inFamous 2 (NTSC-U)" }, { "id": "BCUS98127", "name": "Ratchet & Clank: Future - Tools of Destruction (NTSC-U)" }, { "id": "BCUS98131", "name": "Genji: Days of the Blade (NTSC-U)" }, { "id": "BCUS98132", "name": "Heavenly Sword (NTSC-U)" }, { "id": "BCUS98133", "name": "The Eye of Judgement (NTSC-U)" }, { "id": "BCUS98135", "name": "SOCOM 4: U.S. Navy SEALs (NTSC-U)" }, { "id": "BCUS98137", "name": "MotorStorm (NTSC-U)" }, { "id": "BCUS98141", "name": "MLB '08: The Show (NTSC-U)" }, { "id": "BCUS98142", "name": "Formula One: Championship Edition (NTSC-U)" }, { "id": "BCUS98144", "name": "NBA 08 (NTSC-U)" }, { "id": "BCUS98145", "name": "Buzz! Quiz TV (Bundle) (NTSC-U)" }, { "id": "BCUS98146", "name": "White Knight Chronicles: International Edition (NTSC-U)" }, { "id": "BCUS98147", "name": "Folklore (NTSC-U)" }, { "id": "BCUS98148", "name": "LittleBigPlanet (NTSC-U)" }, { "id": "BCUS98151", "name": "SingStar (NTSC-U)" }, { "id": "BCUS98152", "name": "SOCOM: U.S. Navy SEALs - Confrontation (NTSC-U)" }, { "id": "BCUS98154", "name": "inFamous (NTSC-U)" }, { "id": "BCUS98155", "name": "MotorStorm: Pacific Rift (NTSC-U)" }, { "id": "BCUS98156", "name": "Welcome to PlayStation Network and PlayStation 3 40GB (NTSC-U)" }, { "id": "BCUS98158", "name": "Gran Turismo 5: Prologue (NTSC-U)" }, { "id": "BCUS98161", "name": "SingStar (NTSC-U)" }, { "id": "BCUS98162", "name": "Warhawk (NTSC-U)" }, { "id": "BCUS98164", "name": "Heavy Rain (NTSC-U)" }, { "id": "BCUS98165", "name": "NBA '09: The Inside (NTSC-U)" }, { "id": "BCUS98167", "name": "ModNation Racers (NTSC-U)" }, { "id": "BCUS98168", "name": "SingStar Vol.2 (NTSC-U)" }, { "id": "BCUS98174", "name": "The Last of US (NTSC-U)" }, { "id": "BCUS98175", "name": "Ratchet & Clank: All 4 One (NTSC-U)" }, { "id": "BCUS98176", "name": "Resistance 3 (Doomsday Edition) (NTSC-U)" }, { "id": "BCUS98177", "name": "Sports Champions (NTSC-U)" }, { "id": "BCUS98178", "name": "SingStar Vol.2 (NTSC-U)" }, { "id": "BCUS98180", "name": "MLB 09: The Show (NTSC-U)" }, { "id": "BCUS98181", "name": "Starhawk (NTSC-U)" }, { "id": "BCUS98182", "name": "Welcome to PlayStation Network and PlayStation 3 80GB (NTSC-U)" }, { "id": "BCUS98183", "name": "SOCOM: U.S. Navy SEALs - Confrontation (NTSC-U)" }, { "id": "BCUS98184", "name": "inFamous (NTSC-U)" }, { "id": "BCUS98186", "name": "SingStar Vol.2 (NTSC-U)" }, { "id": "BCUS98190", "name": "Resistance 2 (Collector's Edition) (NTSC-U)" }, { "id": "BCUS98192", "name": "SingStar ABBA (NTSC-U)" }, { "id": "BCUS98195", "name": "Welcome to PlayStation Network and PlayStation 3 160GB (NTSC-U)" }, { "id": "BCUS98199", "name": "LittleBigPlanet (NTSC-U)" }, { "id": "BCUS98206", "name": "SingStar Queen (NTSC-U)" }, { "id": "BCUS98207", "name": "MLB 10: The Show (NTSC-U)" }, { "id": "BCUS98208", "name": "LittleBigPlanet (Game of the Year Edition) (NTSC-U)" }, { "id": "BCUS98209", "name": "Buzz! Quiz World (NTSC-U)" }, { "id": "BCUS98213", "name": "Welcome to PlayStation Network and PlayStation 3 Slim (NTSC-U)" }, { "id": "BCUS98214", "name": "EyePet: Move Edition (NTSC-U)" }, { "id": "BCUS98215", "name": "Buzz! Quiz World (NTSC-U)" }, { "id": "BCUS98220", "name": "Start the Party! (NTSC-U)" }, { "id": "BCUS98222", "name": "The Shoot (NTSC-U)" }, { "id": "BCUS98224", "name": "TV Superstars (NTSC-U)" }, { "id": "BCUS98227", "name": "Puppeteer (NTSC-U)" }, { "id": "BCUS98229", "name": "God of War Collection (NTSC-U)" }, { "id": "BCUS98231", "name": "God of War III (Ultimate Edition) (NTSC-U)" }, { "id": "BCUS98232", "name": "God of War: Ascension (NTSC-U)" }, { "id": "BCUS98233", "name": "Uncharted 3: Drake's Deception (NTSC-U)" }, { "id": "BCUS98234", "name": "Killzone 3 (NTSC-U)" }, { "id": "BCUS98235", "name": "EyePet & Friends (NTSC-U)" }, { "id": "BCUS98242", "name": "MotorStorm Apocalypse (NTSC-U)" }, { "id": "BCUS98245", "name": "LittleBigPlanet 2 (NTSC-U)" }, { "id": "BCUS98246", "name": "The Sly Collection (NTSC-U)" }, { "id": "BCUS98247", "name": "Sly Cooper: Thieves in Time (NTSC-U)" }, { "id": "BCUS98248", "name": "Playstation Move Heroe (NTSC-U)" }, { "id": "BCUS98249", "name": "LittleBigPlanet 2 (Collector's Edition) (NTSC-U)" }, { "id": "BCUS98251", "name": "MLB 11: The Show (NTSC-U)" }, { "id": "BCUS98254", "name": "Little Big Planet Karting (NTSC-U)" }, { "id": "BCUS98255", "name": "The Fight: Lights Out (NTSC-U)" }, { "id": "BCUS98257", "name": "Uncharted 2: Among Thieves (Game of the Year Edition) (NTSC-U)" }, { "id": "BCUS98259", "name": "The ICO & Shadow of the Colossus Collection (NTSC-U)" }, { "id": "BCUS98261", "name": "High Velocity Bowling (Move Edition) (NTSC-U)" }, { "id": "BCUS98262", "name": "Sports Champions (Bundle) (NTSC-U)" }, { "id": "BCUS98263", "name": "PlayStation Move Demo Disc Volume 1 (NTSC-U)" }, { "id": "BCUS98266", "name": "SingStar Dance (NTSC-U)" }, { "id": "BCUS98270", "name": "Kung Fu Rider (NTSC-U)" }, { "id": "BCUS98271", "name": "Carnival Island (NTSC-U)" }, { "id": "BCUS98272", "name": "Gran Turismo 5 (Collector's Edition) (NTSC-U)" }, { "id": "BCUS98279", "name": "Medieval Moves: Deadmund's Quest (NTSC-U)" }, { "id": "BCUS98280", "name": "Heavy Rain (Greatest Hits) (NTSC-U)" }, { "id": "BCUS98281", "name": "Jak & Daxter Collection (NTSC-U)" }, { "id": "BCUS98282", "name": "Ratchet & Clank Collection (NTSC-U)" }, { "id": "BCUS98285", "name": "ESA Game Pack (NTSC-U)" }, { "id": "BCUS98289", "name": "God of War Origins Collection (NTSC-U)" }, { "id": "BCUS98290", "name": "inFamous 2 (Hero Edition) (NTSC-U)" }, { "id": "BCUS98295", "name": "MLB 12: The Show (NTSC-U)" }, { "id": "BCUS98296", "name": "Gran Turismo 6 (NTSC-U)" }, { "id": "BCUS98298", "name": "Beyond: Two Souls (NTSC-U)" }, { "id": "BCUS98359", "name": "Wonderbook: Book of Spells (NTSC-U)" }, { "id": "BCUS98362", "name": "LittleBigPlanet 3 (NTSC-U)" }, { "id": "BCUS98365", "name": "Everybody Dance (NTSC-U)" }, { "id": "BCUS98366", "name": "Uncharted 3: Drake's Deception (Collector's Edition) (NTSC-U)" }, { "id": "BCUS98372", "name": "LittleBigPlanet 2 (Special Edition) (NTSC-U)" }, { "id": "BCUS98374", "name": "Tiger Woods PGA Tour 12 (NTSC-U)" }, { "id": "BCUS98375", "name": "Uncharted Double Pack (NTSC-U)" }, { "id": "BCUS98376", "name": "Resistance Dual Pack (Greatest Hits) (NTSC-U)" }, { "id": "BCUS98377", "name": "Journey : Collector's Edition (NTSC-U)" }, { "id": "BCUS98380", "name": "Ratchet & Clank: Full Frontal Assault (NTSC-U)" }, { "id": "BCUS98394", "name": "Gran Turismo 5 XL Edition (NTSC-U)" }, { "id": "BCUS98472", "name": "PlayStation All-Stars Battle Royale (NTSC-U)" }, { "id": "BCUS98473", "name": "MLB 13 : The Show (NTSC-U)" }, { "id": "BCUS99069", "name": "God of War Saga (NTSC-U)" }, { "id": "BCUS99075", "name": "Killzone Trilogy (NTSC-U)" }, { "id": "BCUS99142", "name": "Sly Cooper: Thieves in Time (NTSC-U)" }, { "id": "BCUS99195", "name": "MLB 14: The Show (NTSC-U)" }, { "id": "BCUS99205", "name": "Best of PlayStation Network: Vol. 1 (NTSC-U)" }, { "id": "BCUS99245", "name": "Ratchet & Clank: Into the Nexus (NTSC-U)" }, { "id": "BCUS99247", "name": "Gran Turismo 6: Ayrton Senna Special Edition (NTSC-U)" }, { "id": "BLAS20237", "name": "MLB 12: The Show (NTSC-A)" }, { "id": "BLAS50001", "name": "Gundam: Target in Sight (NTSC-A)" }, { "id": "BLAS50002", "name": "Mahjong Kakutou Club:Zenkoku Taisenban (NTSC-A)" }, { "id": "BLAS50003", "name": "Need for Speed: Carbon (NTSC-A)" }, { "id": "BLAS50004", "name": "Tiger Woods PGA Tour 2007 (NTSC-A)" }, { "id": "BLAS50008", "name": "Sonic the Hedgehog (NTSC-A)" }, { "id": "BLAS50009", "name": "Fight Night: Round 3 (NTSC-A)" }, { "id": "BLAS50010", "name": "Virtua Fighter 5 (NTSC-A)" }, { "id": "BLAS50011", "name": "NBA Street : Homecourt (NTSC-A)" }, { "id": "BLAS50012", "name": "Def Jam: Icon (NTSC-A)" }, { "id": "BLAS50013", "name": "The Godfather: The Don's Edition (NTSC-A)" }, { "id": "BLAS50014", "name": "Virtua Tennis 3 / Power Smash 3 (NTSC-A)" }, { "id": "BLAS50015", "name": "Gundam Musou (NTSC-A)" }, { "id": "BLAS50016", "name": "Bladestorm: Hyakunen Sensou (NTSC-A)" }, { "id": "BLAS50017", "name": "Mist of Chaos (NTSC-A)" }, { "id": "BLAS50018", "name": "Harry Potter and the Order of the Phoenix (NTSC-A)" }, { "id": "BLAS50019", "name": "Madden NFL 08 (NTSC-A)" }, { "id": "BLAS50020", "name": "Tiger Woods PGA Tour 08 (NTSC-A)" }, { "id": "BLAS50021", "name": "Skate (NTSC-A)" }, { "id": "BLAS50022", "name": "NBA Live 08 (NTSC-A)" }, { "id": "BLAS50023", "name": "Blazing Angels 2: Secret Missions of WWII (NTSC-A)" }, { "id": "BLAS50024", "name": "Shin Sangoku Musou 5 (NTSC-A)" }, { "id": "BLAS50025", "name": "Medal of Honor: Airborne (NTSC-A)" }, { "id": "BLAS50026", "name": "Need for Speed: ProStreet (NTSC-A)" }, { "id": "BLAS50027", "name": "FIFA Soccer 08 (NTSC-A)" }, { "id": "BLAS50028", "name": "Sega Rally Revo (NTSC-A)" }, { "id": "BLAS50030", "name": "Megazone 23: Aoi Garland (NTSC-A)" }, { "id": "BLAS50031", "name": "Mercenaries 2: World in Flames (NTSC-A)" }, { "id": "BLAS50032", "name": "Army of Two (NTSC-A)" }, { "id": "BLAS50033", "name": "The Simpsons Game (NTSC-A)" }, { "id": "BLAS50034", "name": "Half-Life 2: The Orange Box (NTSC-A)" }, { "id": "BLAS50036", "name": "WORLD SOCCER Winning Eleven 2008 (NTSC-A)" }, { "id": "BLAS50038", "name": "Assassin's Creed (NTSC-A)" }, { "id": "BLAS50039", "name": "Burnout Paradise (NTSC-A)" }, { "id": "BLAS50040", "name": "Devil May Cry 4 (NTSC-A)" }, { "id": "BLAS50041", "name": "FIFA Street 3 (NTSC-A)" }, { "id": "BLAS50042", "name": "Lost Planet: Extreme Condition (NTSC-A)" }, { "id": "BLAS50043", "name": "Alone in the Dark: Inferno (NTSC-A)" }, { "id": "BLAS50044", "name": "Ryu ga Gotoku Kenzan! (NTSC-A)" }, { "id": "BLAS50045", "name": "Tom Clancy's Rainbow Six: Vegas 2 (NTSC-A)" }, { "id": "BLAS50046", "name": "Battlefield: Bad Company (NTSC-A)" }, { "id": "BLAS50047", "name": "The Club (NTSC-A)" }, { "id": "BLAS50048", "name": "Sega Superstars Tennis (NTSC-A)" }, { "id": "BLAS50049", "name": "Condemned 2 (NTSC-A)" }, { "id": "BLAS50050", "name": "Viking: Battle for Asgard (NTSC-A)" }, { "id": "BLAS50051", "name": "Iron Man (NTSC-U)" }, { "id": "BLAS50052", "name": "UEFA Euro 2008 (NTSC-A)" }, { "id": "BLAS50053", "name": "Initial D Extreme Stage (NTSC-A)" }, { "id": "BLAS50054", "name": "Dragon Ball Z: Burst Limit (NTSC-A)" }, { "id": "BLAS50055", "name": "The Incredible Hulk (NTSC-A)" }, { "id": "BLAS50056", "name": "Battlefield: Bad Company (Gold Edition) (NTSC-A)" }, { "id": "BLAS50057", "name": "Hellboy: Science of Evil (NTSC-A)" }, { "id": "BLAS50058", "name": "Splinter Cell: Double Agent (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50059", "name": "Tom Clancy's Rainbow Six: Vegas (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50060", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50062", "name": "Need for Speed: Carbon (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50072", "name": "Dead Space (NTSC-A)" }, { "id": "BLAS50074", "name": "Silent Hill: Homecoming (NTSC-A)" }, { "id": "BLAS50086", "name": "World Soccer Winning Eleven 2009 (NTSC-A)" }, { "id": "BLAS50091", "name": "Burnout Paradise: The Ultimate Box (NTSC-A)" }, { "id": "BLAS50092", "name": "Bionic Commando (NTSC-A)" }, { "id": "BLAS50099", "name": "The Godfather II (NTSC-A)" }, { "id": "BLAS50104", "name": "I Am Alive (NTSC-A)" }, { "id": "BLAS50109", "name": "Professional Baseball Spirits 6 (NTSC-J)" }, { "id": "BLAS50113", "name": "UFC Undisputed 2009 (NTSC-A)" }, { "id": "BLAS50116", "name": "Devil May Cry 4 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50117", "name": "World Soccer Winning Eleven 2009 (Playstation the best) (NTSC-A)" }, { "id": "BLAS50123", "name": "Army Of Two (NTSC-A)" }, { "id": "BLAS50124", "name": "Need for Speed: ProStreet (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50125", "name": "Battlefield: Bad Company (PlayStation3 the Best) (NTSC-A)" }, { "id": "BLAS50126", "name": "Half-Life 2: The Orange Box (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50127", "name": "The King of Fighters XII (NTSC-A)" }, { "id": "BLAS50131", "name": "Prince of Persia (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50135", "name": "Batman: Arkham Asylum (NTSC-A)" }, { "id": "BLAS50142", "name": "Musou Orochi Z (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50146", "name": "Saw (NTSC-A)" }, { "id": "BLAS50152", "name": "Tekken 6 (NTSC-A)" }, { "id": "BLAS50153", "name": "WORLD SOCCER Winning Eleven 2010 (NTSC-A)" }, { "id": "BLAS50159", "name": "Assassin's Creed II (NTSC-A)" }, { "id": "BLAS50160", "name": "Ninja Gaiden Sigma 2 (NTSC-J)" }, { "id": "BLAS50162", "name": "Street Fighter IV (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50164", "name": "Bayonetta (NTSC-A)" }, { "id": "BLAS50167", "name": "MX vs. ATV: Reflex (NTSC-A)" }, { "id": "BLAS50169", "name": "Saints Row 2 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50170", "name": "Gundam Musou 2 (PlayStation 3 the Best) (Gundam 30th Anniversary Collection) (NTSC-A)" }, { "id": "BLAS50172", "name": "Ryu ga Gotoku 3 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50174", "name": "Army of Two: The 40th Day (NTSC-A)" }, { "id": "BLAS50177", "name": "Ar Tonelico III: Sekai Shuuen No Hikigane Wa Shoujo No Uta Ga Hiku (NTSC-A)" }, { "id": "BLAS50181", "name": "Resident Evil 5 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50186", "name": "Battlefield: Bad Company 2 (NTSC-A)" }, { "id": "BLAS50191", "name": "R.U.S.E. (NTSC-A)" }, { "id": "BLAS50192", "name": "Quantum Theory (NTSC-A)" }, { "id": "BLAS50195", "name": "Yakuza 3 (NTSC-A)" }, { "id": "BLAS50199", "name": "World Soccer Winning Eleven 2010 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50204", "name": "Need for Speed: Undercover (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50205", "name": "Fight Night Round 4 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50207", "name": "Prince of Persia: The Forgotten Sands (NTSC-A)" }, { "id": "BLAS50211", "name": "WWE Smackdown vs. Raw 2010 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50212", "name": "Need for Speed: Shift (EA Best Hits) (NTSC-A)" }, { "id": "BLAS50215", "name": "Assassin's Creed II: Complete Edition (NTSC-A)" }, { "id": "BLAS50218", "name": "Shin Sangoku Musou 5 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50219", "name": "Naruto Narultimate Storm (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50220", "name": "Sengoku Basara 3 (NTSC-A)" }, { "id": "BLAS50221", "name": "Madden NFL 11 (NTSC-A)" }, { "id": "BLAS50231", "name": "WORLD SOCCER Winning Eleven 2011 (NTSC-A)" }, { "id": "BLAS50232", "name": "Medal of Honor (NTSC-A)" }, { "id": "BLAS50234", "name": "NBA 2K11 (NTSC-A)" }, { "id": "BLAS50235", "name": "Time Crisis: Razing Storm (NTSC-A)" }, { "id": "BLAS50236", "name": "Medal of Honor (NTSC-A)" }, { "id": "BLAS50238", "name": "Medal of Honor (NTSC-A)" }, { "id": "BLAS50239", "name": "Medal of Honor (NTSC-A)" }, { "id": "BLAS50241", "name": "Enslaved: Odyssey to the West (NTSC-A)" }, { "id": "BLAS50243", "name": "Tekken 6 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50244", "name": "Burnout Paradise: The Ultimate Box (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50245", "name": "Dead Space (Playstation 3 The Best) (NTSC-A)" }, { "id": "BLAS50248", "name": "Castlevania: Lords of Shadow (NTSC-A)" }, { "id": "BLAS50257", "name": "The Sims 3 (NTSC-A)" }, { "id": "BLAS50272", "name": "Create (NTSC-A)" }, { "id": "BLAS50278", "name": "Assassin's Creed: Brotherhood (NTSC-A)" }, { "id": "BLAS50279", "name": "Michael Jackson: The Experience (NTSC-A)" }, { "id": "BLAS50287", "name": "Hokuto Musou International (NTSC-A)" }, { "id": "BLAS50288", "name": "Super Street Fighter IV (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50296", "name": "Red Dead Redemption: Undead Nightmare Collection (NTSC-A)" }, { "id": "BLAS50300", "name": "Castlevania: Lords of Shadow (NTSC-A)" }, { "id": "BLAS50303", "name": "Knights Contract (NTSC-A)" }, { "id": "BLAS50307", "name": "Shin Sangoku Musou 6 (NTSC-A)" }, { "id": "BLAS50309", "name": "Yakuza 4 (NTSC-A)" }, { "id": "BLAS50310", "name": "Ryu ga Gotoku: Of the End (NTSC-A)" }, { "id": "BLAS50312", "name": "Bulletstorm (NTSC-A)" }, { "id": "BLAS50318", "name": "Homefront (NTSC-A)" }, { "id": "BLAS50319", "name": "Child of Eden (NTSC-A)" }, { "id": "BLAS50321", "name": "Dance on Broadway (NTSC-A)" }, { "id": "BLAS50332", "name": "Mortal Kombat (NTSC-A)" }, { "id": "BLAS50333", "name": "Virtua Tennis 4 (NTSC-A)" }, { "id": "BLAS50336", "name": "World Soccer Winning Eleven 2011 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50337", "name": "Need for Speed : The Run (NTSC-A)" }, { "id": "BLAS50339", "name": "FIFA 11 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50341", "name": "Duke Nukem Forever (NTSC-A)" }, { "id": "BLAS50342", "name": "L.A. Noire (NTSC-A)" }, { "id": "BLAS50343", "name": "Red Faction: Armageddon (NTSC-A)" }, { "id": "BLAS50345", "name": "Sengoku Basara 3 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50352", "name": "Call of Juarez: The Cartel (NTSC-A)" }, { "id": "BLAS50355", "name": "BioHazard: Revival Selection (NTSC-A)" }, { "id": "BLAS50357", "name": "Ninja Gaiden Sigma 2 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50360", "name": "Tom Clancy's Splinter Cell Classic Trilogy HD (NTSC-A)" }, { "id": "BLAS50364", "name": "Sengoku Musou 3 Empires (NTSC-A)" }, { "id": "BLAS50365", "name": "WORLD SOCCER Winning Eleven 2012 (NTSC-A)" }, { "id": "BLAS50366", "name": "The King of Fighters XIII (NTSC-A)" }, { "id": "BLAS50370", "name": "FIFA 12 (NTSC-A)" }, { "id": "BLAS50371", "name": "Tales of Xillia (First-Print Edition) (NTSC-A)" }, { "id": "BLAS50372", "name": "Warhammer 40000: Space Marine (NTSC-A)" }, { "id": "BLAS50374", "name": "Rage (NTSC-A)" }, { "id": "BLAS50378", "name": "The Sims: Pets (NTSC-A)" }, { "id": "BLAS50379", "name": "Batman: Arkham City (NTSC-A)" }, { "id": "BLAS50383", "name": "Metal Gear Solid: HD Collection (NTSC-A)" }, { "id": "BLAS50384", "name": "Battlefield 3 (NTSC-A)" }, { "id": "BLAS50387", "name": "Dark Souls (NTSC-A)" }, { "id": "BLAS50388", "name": "NBA 2K12 (NTSC-A)" }, { "id": "BLAS50389", "name": "Just Dance 3 (NTSC-A)" }, { "id": "BLAS50392", "name": "Motionsports Adrenaline (NTSC-A)" }, { "id": "BLAS50394", "name": "The House of the Dead Overkill: Extended Cut (NTSC-A)" }, { "id": "BLAS50395", "name": "Dragon Ball Z: Ultimate Tenkaichi (NTSC-A)" }, { "id": "BLAS50396", "name": "The Idolm@ster 2 (NTSC-A)" }, { "id": "BLAS50397", "name": "Dark Souls (NTSC-A)" }, { "id": "BLAS50404", "name": "The Elder Scrolls V: Skyrim (NTSC-A)" }, { "id": "BLAS50405", "name": "Sonic Generations (NTSC-A)" }, { "id": "BLAS50407", "name": "Saints Row: The Third (NTSC-A)" }, { "id": "BLAS50411", "name": "Saint Seiya Senki (NTSC-A)" }, { "id": "BLAS50414", "name": "Dynasty Warriors 7: Xtreme Legends (NTSC-A)" }, { "id": "BLAS50417", "name": "Just Dance Kids 2 (NTSC-A)" }, { "id": "BLAS50418", "name": "Assassin's Creed: Revelations (NTSC-A)" }, { "id": "BLAS50419", "name": "Happy Feet Two (NTSC-A)" }, { "id": "BLAS50420", "name": "LEGO Harry Potter: Years 5-7 (NTSC-A)" }, { "id": "BLAS50421", "name": "Rayman Origins (NTSC-A)" }, { "id": "BLAS50422", "name": "Professional Baseball Spirits 2012 (NTSC-A)" }, { "id": "BLAS50423", "name": "Mobile Suit Gundam: Extreme VS. (NTSC-A)" }, { "id": "BLAS50424", "name": "Dragon Ball: Ultimate Blast (NTSC-A)" }, { "id": "BLAS50425", "name": "Musou Orochi 2 (NTSC-A)" }, { "id": "BLAS50426", "name": "Blades of Time (NTSC-A)" }, { "id": "BLAS50429", "name": "SoulCalibur V (NTSC-A)" }, { "id": "BLAS50432", "name": "Silent Hill: HD Collection (NTSC-A)" }, { "id": "BLAS50434", "name": "Binary Domain (NTSC-A)" }, { "id": "BLAS50436", "name": "Super Street Fighter IV: Arcade Edition (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50437", "name": "Darkness II (Limited Edition) (NTSC-A)" }, { "id": "BLAS50438", "name": "Saint Seiya: Sanctuary Battle (NTSC-A)" }, { "id": "BLAS50439", "name": "Naruto Shippuden: Narutimate Storm Generation (NTSC-A)" }, { "id": "BLAS50440", "name": "Ryu ga Gotoku: Of the End (NTSC-A)" }, { "id": "BLAS50442", "name": "NeverDead (NTSC-A)" }, { "id": "BLAS50443", "name": "Kingdoms of Amalur: Reckoning (NTSC-A)" }, { "id": "BLAS50445", "name": "SSX (NTSC-A)" }, { "id": "BLAS50447", "name": "Asura's Wrath (NTSC-A)" }, { "id": "BLAS50448", "name": "Armored Core: V (NTSC-A)" }, { "id": "BLAS50450", "name": "One Piece: Kaizoku Musou (NTSC-A)" }, { "id": "BLAS50454", "name": "Mass Effect 3 (NTSC-A)" }, { "id": "BLAS50456", "name": "Silent Hill: Downpour (NTSC-A)" }, { "id": "BLAS50457", "name": "Kidou Senshi Gundam UC (NTSC-A)" }, { "id": "BLAS50458", "name": "Naruto Shippuden: Narutimate Storm Generation (NTSC-A)" }, { "id": "BLAS50460", "name": "Max Payne 3 (NTSC-A)" }, { "id": "BLAS50462", "name": "Ninja Gaiden 3 (NTSC-A)" }, { "id": "BLAS50464", "name": "Warriors Orochi 3 (NTSC-A)" }, { "id": "BLAS50469", "name": "FIFA 12 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50477", "name": "Tom Clancy's Rainbow Six Vegas 2 (Complete Edition) + Ghost Recon Advanced Warfighter 2 (Double Pack) (NTSC-A)" }, { "id": "BLAS50478", "name": "Tom Clancy's Splinter Cell Double Agent / Rainbow Six Vegas (Double Pack) (NTSC-A)" }, { "id": "BLAS50480", "name": "Driver: San Francisco (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50484", "name": "Ayesha no Atelier: Tasogare no Daichi no Renkinjutsushi (NTSC-A)" }, { "id": "BLAS50485", "name": "Resident Evil 6 (NTSC-A)" }, { "id": "BLAS50486", "name": "Gundam Musou 3 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50487", "name": "London 2012 - The Official Video Game of the Olympic Games (NTSC-A)" }, { "id": "BLAS50490", "name": "Darksiders II (NTSC-A)" }, { "id": "BLAS50492", "name": "Shin Sangoku Musou 5 Empires (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50493", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version (NTSC-A)" }, { "id": "BLAS50494", "name": "Assassin's Creed III (NTSC-A)" }, { "id": "BLAS50495", "name": "Assassin's Creed III (NTSC-A)" }, { "id": "BLAS50497", "name": "Crysis 3 (NTSC-A)" }, { "id": "BLAS50498", "name": "WORLD SOCCER Winning Eleven 2013 (NTSC-A)" }, { "id": "BLAS50499", "name": "Assassin's Creed: Revelations (NTSC-A)" }, { "id": "BLAS50500", "name": "Troy Musou (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50501", "name": "Tales of Graces F (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50502", "name": "Atelier Ayesha: The Alchemist of Dusk (NTSC-A)" }, { "id": "BLAS50505", "name": "Medal of Honor: Warfighter (NTSC-A)" }, { "id": "BLAS50506", "name": "Tekken Tag Tournament 2 (NTSC-A)" }, { "id": "BLAS50507", "name": "Accel World: Ginyoku No Kakusei (NTSC-A)" }, { "id": "BLAS50508", "name": "Shin Sangoku Musou 6 Empires (NTSC-A)" }, { "id": "BLAS50509", "name": "Borderlands 2 (NTSC-A)" }, { "id": "BLAS50514", "name": "FIFA 13 (NTSC-A)" }, { "id": "BLAS50515", "name": "Dead or Alive 5 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50523", "name": "Okami Zekkeihan (NTSC-A)" }, { "id": "BLAS50527", "name": "Tokitowa (NTSC-A)" }, { "id": "BLAS50528", "name": "Dark Souls (NTSC-A)" }, { "id": "BLAS50529", "name": "Medal of Honor: Warfighter (NTSC-A)" }, { "id": "BLAS50530", "name": "WWE '13 (NTSC-A)" }, { "id": "BLAS50532", "name": "Steins;Gate (NTSC-A)" }, { "id": "BLAS50533", "name": "Tales of Xillia 2 (NTSC-A)" }, { "id": "BLAS50535", "name": "Saints Row: The Third (The Full Package) (NTSC-A)" }, { "id": "BLAS50539", "name": "F1 Race Stars (NTSC-A)" }, { "id": "BLAS50540", "name": "Sonic & All-Stars Racing Transformed (NTSC-A)" }, { "id": "BLAS50542", "name": "Dai-2-Ji Super Robot Taisen Original Generations (NTSC-A)" }, { "id": "BLAS50544", "name": "Shin Sangoku Musou 6 Empires (NTSC-A)" }, { "id": "BLAS50546", "name": "The Elder Scrolls V: Skyrim (NTSC-A)" }, { "id": "BLAS50551", "name": "BioHazard: Revival Selection (NTSC-A)" }, { "id": "BLAS50552", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (NTSC-A)" }, { "id": "BLAS50553", "name": "Devil May Cry HD Collection (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50554", "name": "Sengoku Musou 3 Z (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50555", "name": "Mobile Suit Gundam: Extreme VS (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50556", "name": "Shin Hokuto Musou (NTSC-A)" }, { "id": "BLAS50557", "name": "DmC: Devil May Cry (NTSC-A)" }, { "id": "BLAS50558", "name": "Sengoku Musou 3 Empires (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50559", "name": "Accel World: Kasoku No Chouten (NTSC-A)" }, { "id": "BLAS50562", "name": "Vampire Resurrection (NTSC-A)" }, { "id": "BLAS50565", "name": "BioShock Infinite (NTSC-A)" }, { "id": "BLAS50570", "name": "Shin Sangoku Musou 6 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50571", "name": "Dead Space 3 (NTSC-A)" }, { "id": "BLAS50572", "name": "Dragon Ball Z: Ultimate Blast (PS3 the Best) (NTSC-A)" }, { "id": "BLAS50573", "name": "Aliens: Colonial Marines (NTSC-A)" }, { "id": "BLAS50574", "name": "Saint Seiya Senki (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50576", "name": "Hatsune Miku: Project Diva F (NTSC-A)" }, { "id": "BLAS50577", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (NTSC-A)" }, { "id": "BLAS50578", "name": "Metro: Last Light (Limited Edition) (NTSC-A)" }, { "id": "BLAS50579", "name": "One Piece: Kaizoku Musou 2 (NTSC-A)" }, { "id": "BLAS50580", "name": "Tiger Woods PGA Tour 14 (NTSC-A)" }, { "id": "BLAS50581", "name": "Army of Two: The Devil's Cartel (NTSC-A)" }, { "id": "BLAS50582", "name": "Shin Sangoku Musou 7 (NTSC-A)" }, { "id": "BLAS50583", "name": "Assassin's Creed III: Washington Edition (NTSC-A)" }, { "id": "BLAS50585", "name": "Tom Clancy's Ghost Recon Double Pack (Future Soldier & Advanced Warfighter 2) (NTSC-A)" }, { "id": "BLAS50587", "name": "Borderlands 2: Add-On Content Pack (NTSC-A)" }, { "id": "BLAS50588", "name": "Battlefield 4 (NTSC-A)" }, { "id": "BLAS50589", "name": "Assassin's Creed III: Washington Edition (NTSC-A)" }, { "id": "BLAS50590", "name": "Hitman HD Trilogy (NTSC-A)" }, { "id": "BLAS50591", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (NTSC-A)" }, { "id": "BLAS50592", "name": "Injustice: Gods Among Us (NTSC-A)" }, { "id": "BLAS50593", "name": "Ninja Gaiden 3: Razor's Edge (NTSC-A)" }, { "id": "BLAS50594", "name": "Dragon's Dogma: Dark Arisen (NTSC-A)" }, { "id": "BLAS50595", "name": "Dragon's Dogma (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50596", "name": "Fuse (NTSC-A)" }, { "id": "BLAS50597", "name": "One Piece: Kaizoku Musou 2 (NTSC-A)" }, { "id": "BLAS50598", "name": "Resident Evil: Revelations (NTSC-A)" }, { "id": "BLAS50599", "name": "Remember Me (NTSC-A)" }, { "id": "BLAS50600", "name": "Dead Island: Riptide (NTSC-A)" }, { "id": "BLAS50601", "name": "Star Trek: The Video Game (NTSC-A)" }, { "id": "BLAS50602", "name": "Need for Speed: Rivals (NTSC-A)" }, { "id": "BLAS50605", "name": "World Soccer Winning Eleven 2013 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50606", "name": "Gundam Breaker (NTSC-A)" }, { "id": "BLAS50607", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi (NTSC-A)" }, { "id": "BLAS50608", "name": "Battlefield 3 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50609", "name": "Battlefield 3 (NTSC-A)" }, { "id": "BLAS50611", "name": "Tom Clancy's Splinter Cell: Blacklist (NTSC-A)" }, { "id": "BLAS50614", "name": "The Smurfs 2 (NTSC-A)" }, { "id": "BLAS50618", "name": "Armored Core: Verdict Day (NTSC-A)" }, { "id": "BLAS50619", "name": "WORLD SOCCER Winning Eleven 2014 (NTSC-A)" }, { "id": "BLAS50620", "name": "Rayman Legends (NTSC-A)" }, { "id": "BLAS50621", "name": "Jojo no Kimyou na Bouken All-Star Battle (NTSC-A)" }, { "id": "BLAS50622", "name": "Madden NFL 25 (NTSC-A)" }, { "id": "BLAS50623", "name": "Lost Planet 3 (NTSC-A)" }, { "id": "BLAS50625", "name": "Dungeons & Dragons: Mystara Eiyuu Senki (NTSC-A)" }, { "id": "BLAS50627", "name": "Saints Row IV (NTSC-A)" }, { "id": "BLAS50628", "name": "The Bureau: XCOM Declassified (NTSC-A)" }, { "id": "BLAS50629", "name": "Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice (NTSC-A)" }, { "id": "BLAS50630", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst (NTSC-A)" }, { "id": "BLAS50632", "name": "Ar Tonelico III: Sekai Shuuen No Hikigane Wa Shoujo No Uta Ga Hiku (NTSC-A)" }, { "id": "BLAS50633", "name": "F1 2013 (NTSC-A)" }, { "id": "BLAS50634", "name": "Dead or Alive 5 Ultimate (NTSC-A)" }, { "id": "BLAS50636", "name": "AKB1/149: Love Election (NTSC-A)" }, { "id": "BLAS50637", "name": "FIFA 14 (NTSC-A)" }, { "id": "BLAS50638", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End (NTSC-A)" }, { "id": "BLAS50639", "name": "Grand Theft Auto V (NTSC-A)" }, { "id": "BLAS50640", "name": "Dark Souls II (NTSC-A)" }, { "id": "BLAS50641", "name": "NBA 2K14 (NTSC-A)" }, { "id": "BLAS50642", "name": "WWE 2K14 (NTSC-A)" }, { "id": "BLAS50643", "name": "Assassin's Creed IV: Black Flag (NTSC-A)" }, { "id": "BLAS50644", "name": "Just Dance 2014 (NTSC-A)" }, { "id": "BLAS50645", "name": "Rocksmith 2014 Edition (NTSC-A)" }, { "id": "BLAS50647", "name": "Atelier Escha & Logy: Alchemists of the Dusk Sky (NTSC-A)" }, { "id": "BLAS50649", "name": "Batman: Arkham Origins (NTSC-A)" }, { "id": "BLAS50651", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst (NTSC-A)" }, { "id": "BLAS50652", "name": "Saint Seiya: Brave Soldiers (NTSC-A)" }, { "id": "BLAS50653", "name": "Tales of Symphonia: Unisonant Pack (NTSC-A)" }, { "id": "BLAS50654", "name": "Pac-Man and the Ghostly Adventures (NTSC-A)" }, { "id": "BLAS50655", "name": "Okami: Zekkeiban HD Remaster (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50658", "name": "Watch Dogs (NTSC-A)" }, { "id": "BLAS50660", "name": "Assassin's Creed IV: Black Flag (NTSC-A)" }, { "id": "BLAS50661", "name": "XCOM: Enemy Within (NTSC-A)" }, { "id": "BLAS50663", "name": "Saint Seiya: Brave Soldiers (NTSC-A)" }, { "id": "BLAS50664", "name": "Shin Rorona no Atelier: Hajimari no Monogatari: Arland no Renkinjutsushi (NTSC-A)" }, { "id": "BLAS50666", "name": "Tekken Tag Tournament 2 (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50671", "name": "Shin Gundam Musou (NTSC-A)" }, { "id": "BLAS50672", "name": "Shin Sangoku Musou 7 with Musouden (NTSC-A)" }, { "id": "BLAS50675", "name": "Sengoku Basara 4 (NTSC-A)" }, { "id": "BLAS50676", "name": "Musou Orochi 2 Ultimate (NTSC-A)" }, { "id": "BLAS50677", "name": "Kidou Senshi Gundam: Extreme VS Full Boost (NTSC-A)" }, { "id": "BLAS50678", "name": "Ultra Street Fighter IV (NTSC-A)" }, { "id": "BLAS50681", "name": "Ar Nosurge: Umareizuru Hoshi e Inoru Uta (NTSC-A)" }, { "id": "BLAS50682", "name": "Shin Gundam Musou (NTSC-A)" }, { "id": "BLAS50683", "name": "Dragon Ball Z: Battle of Z (NTSC-A)" }, { "id": "BLAS50684", "name": "Dragon Ball Z: Battle of Z (NTSC-A)" }, { "id": "BLAS50685", "name": "Ryu ga Gotoku: Ishin! (NTSC-A)" }, { "id": "BLAS50686", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu! (NTSC-A)" }, { "id": "BLAS50687", "name": "Tales of Symphonia Chronicles (NTSC-A)" }, { "id": "BLAS50688", "name": "Yaiba: Ninja Gaiden Z (NTSC-A)" }, { "id": "BLAS50690", "name": "Thief (NTSC-A)" }, { "id": "BLAS50691", "name": "Kagero: Darkside Princess (NTSC-A)" }, { "id": "BLAS50692", "name": "The LEGO Movie Videogame (NTSC-A)" }, { "id": "BLAS50693", "name": "Hatsune Miku: Project Diva F 2nd (NTSC-A)" }, { "id": "BLAS50695", "name": "Dynasty Warriors 8: Xtreme Legends (NTSC-A)" }, { "id": "BLAS50696", "name": "Sengoku Musou 4 (NTSC-A)" }, { "id": "BLAS50697", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-A)" }, { "id": "BLAS50698", "name": "Nobunaga no Yabou: Souzou (NTSC-A)" }, { "id": "BLAS50699", "name": "One Piece: Unlimited World R (NTSC-A)" }, { "id": "BLAS50700", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution (NTSC-A)" }, { "id": "BLAS50701", "name": "JoJo's Bizarre Adventure All-Star Battle (NTSC-A)" }, { "id": "BLAS50702", "name": "Earth Defense Force 4 (Best Price) (NTSC-A)" }, { "id": "BLAS50703", "name": "Dream C Club Gogo. (NTSC-A)" }, { "id": "BLAS50704", "name": "LEGO: The Hobbit (NTSC-A)" }, { "id": "BLAS50705", "name": "2014 FIFA World Cup Brazil (NTSC-A)" }, { "id": "BLAS50706", "name": "Oneechanbara Z Kagura: with NoNoNo! (Best Price Version) (NTSC-A)" }, { "id": "BLAS50707", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-A)" }, { "id": "BLAS50708", "name": "The Idolm@ster One for All (NTSC-A)" }, { "id": "BLAS50710", "name": "Mobile Suit Gundam Side Stories (NTSC-A)" }, { "id": "BLAS50711", "name": "Rocksmith 2014 Edition (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50713", "name": "Robotics;Notes (NTSC-A)" }, { "id": "BLAS50715", "name": "One Piece: Unlimited World Red (NTSC-A)" }, { "id": "BLAS50716", "name": "Kamen Rider: Battride War II (NTSC-A)" }, { "id": "BLAS50717", "name": "Dynasty Warriors: Gundam Reborn (NTSC-A)" }, { "id": "BLAS50718", "name": "Watch Dogs (NTSC-A)" }, { "id": "BLAS50720", "name": "Plants vs. Zombies: Garden Warfare (NTSC-A)" }, { "id": "BLAS50722", "name": "Murdered: Soul Suspect (NTSC-A)" }, { "id": "BLAS50724", "name": "GRID Autosport (NTSC-A)" }, { "id": "BLAS50726", "name": "Wolfenstein: The New Order (NTSC-A)" }, { "id": "BLAS50729", "name": "Caladrius Blaze (NTSC-A)" }, { "id": "BLAS50730", "name": "Tales of Xillia 2 (NTSC-A)" }, { "id": "BLAS50734", "name": "Eiyuu Densetsu: Sen no Kiseki (NTSC-A)" }, { "id": "BLAS50736", "name": "Sacred 3 (NTSC-A)" }, { "id": "BLAS50737", "name": "Risen 3: Titan Lords (NTSC-A)" }, { "id": "BLAS50738", "name": "Destiny (NTSC-A)" }, { "id": "BLAS50740", "name": "Eiyuu Densetsu: Sen no Kiseki II (NTSC-A)" }, { "id": "BLAS50742", "name": "FIFA 15 (NTSC-A)" }, { "id": "BLAS50744", "name": "WORLD SOCCER Winning Eleven 2015 (NTSC-A)" }, { "id": "BLAS50745", "name": "Shining Resonance (NTSC-A)" }, { "id": "BLAS50746", "name": "Alien: Isolation (NTSC-A)" }, { "id": "BLAS50747", "name": "Just Dance 2015 (NTSC-A)" }, { "id": "BLAS50749", "name": "NBA 2K15 (NTSC-A)" }, { "id": "BLAS50750", "name": "Borderlands: The Pre-Sequel (NTSC-A)" }, { "id": "BLAS50751", "name": "WWE 2K15 (NTSC-A)" }, { "id": "BLAS50770", "name": "Gundam Breaker 2 (NTSC-J)" }, { "id": "BLAS50771", "name": "Atelier Shallie: Alchemists of the Dusk Sea (NTSC-A)" }, { "id": "BLAS50789", "name": "Sword Art Online: Lost Song (Chinese) (NTSC-A)" }, { "id": "BLAS50790", "name": "Sword Art Online: Lost Song (NTSC-J)" }, { "id": "BLAS50791", "name": "One Piece: Pirate Warriors 3 (NTSC-A)" }, { "id": "BLAS50792", "name": "Resident Evil Revelations 2 (NTSC-A)" }, { "id": "BLAS50793", "name": "Nobunaga no Yabou: Souzou with Power Up Kit (NTSC-A)" }, { "id": "BLAS50794", "name": "Kagero: Mou Hitori no Princess (NTSC-A)" }, { "id": "BLAS50796", "name": "Ryu ga Gotoku 0: Chikai No Basho (NTSC-A)" }, { "id": "BLAS50798", "name": "Mobile Suit Gundam: Extreme VS. Full Boost (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS50799", "name": "BlazBlue: Chrono Phantasma Extend (NTSC-A)" }, { "id": "BLAS50800", "name": "LEGO Jurassic World (NTSC-A)" }, { "id": "BLAS50801", "name": "Dengeki Bunko: Fighting Climax (NTSC-A)" }, { "id": "BLAS50802", "name": "Sengoku Basara 4 Sumeragi (NTSC-A)" }, { "id": "BLAS50803", "name": "PES 2016 (Winning Eleven 2016) (NTSC-A)" }, { "id": "BLAS50804", "name": "Metal Gear Solid V: The Phantom Pain (Japanese) (NTSC-A)" }, { "id": "BLAS50805", "name": "Metal Gear Solid V: The Phantom Pain (English) (NTSC-A)" }, { "id": "BLAS50808", "name": "FIFA 16 (NTSC-A)" }, { "id": "BLAS50809", "name": "NBA 2K16 (NTSC-A)" }, { "id": "BLAS50810", "name": "Blade Arcus from Shining EX (NTSC-A)" }, { "id": "BLAS50812", "name": "Just Dance 2016 (NTSC-A)" }, { "id": "BLAS50813", "name": "River City: Super Sports Challenge All Stars Special (NTSC-A)" }, { "id": "BLAS50814", "name": "WWE 2K16 (NTSC-A)" }, { "id": "BLAS50815", "name": "Metal Gear Solid V: The Phantom Pain (Chinese & Korean) (NTSC-A)" }, { "id": "BLAS50818", "name": "Dengeki Bunko: Fighting Climax Ignition (NTSC-A)" }, { "id": "BLAS50819", "name": "Call of Duty: Black Ops III (NTSC-A)" }, { "id": "BLAS50821", "name": "UEFA Euro 2016 / PES 2016 (Winning Eleven 2016) (NTSC-A)" }, { "id": "BLAS50822", "name": "Sengoku Basara Sanada Yukimura-Den (NTSC-A)" }, { "id": "BLAS50823", "name": "LEGO Star Wars: The Force Awakens (NTSC-A)" }, { "id": "BLAS50824", "name": "PES 2017 (Winning Eleven 2017) (NTSC-A)" }, { "id": "BLAS50825", "name": "FIFA 17 (NTSC-A)" }, { "id": "BLAS50826", "name": "NBA 2K17 (NTSC-A)" }, { "id": "BLAS50827", "name": "Just Dance 2017 (English Version) (NTSC-A)" }, { "id": "BLAS50828", "name": "WWE 2K17 (NTSC-A)" }, { "id": "BLAS55005", "name": "Metal Gear Solid 4: Guns of the Patriots (PlayStation 3 the Best) (NTSC-A)" }, { "id": "BLAS55007", "name": "L.A. Noire - The Complete Edition (NTSC-A)" }, { "id": "BLAS55010", "name": "Assassin's Creed: Heritage Collection (NTSC-A)" }, { "id": "BLAS57001", "name": "PES 2018 (Winning Eleven 2018) (NTSC-A)" }, { "id": "BLAS57003", "name": "FIFA 18 (NTSC-A)" }, { "id": "BLAS57004", "name": "FIFA 19 (NTSC-A)" }, { "id": "BLAS83001", "name": "Short Peace: Tsukigime Ranko no Ichiban Nagai Hi (NTSC-A)" }, { "id": "BLAS87001", "name": ".hack: Sekai No Mukou Ni (NTSC-A)" }, { "id": "BLAS87003", "name": "Eureka Seven AO: Jungfrau no Hanabanatachi (NTSC-A)" }, { "id": "BLAS87005", "name": "Tales of Zestiria (NTSC-A)" }, { "id": "BLES00012", "name": "Tiger Woods PGA Tour 2007 (PAL)" }, { "id": "BLES00013", "name": "Marvel: Ultimate Alliance (PAL)" }, { "id": "BLES00014", "name": "Tony Hawk's Project 8 (PAL)" }, { "id": "BLES00015", "name": "Full Auto 2: Battlelines (PAL)" }, { "id": "BLES00016", "name": "Call of Duty 3 (PAL)" }, { "id": "BLES00017", "name": "Call of Duty 3 (PAL)" }, { "id": "BLES00019", "name": "Untold Legends: Dark Kingdom (PAL)" }, { "id": "BLES00020", "name": "Need for Speed: Carbon (PAL)" }, { "id": "BLES00021", "name": "Call of Duty 3 (PAL)" }, { "id": "BLES00023", "name": "Blazing Angels: Squadrons of WWII (PAL)" }, { "id": "BLES00024", "name": "Tom Clancy's Splinter Cell: Double Agent (PAL)" }, { "id": "BLES00025", "name": "NBA 2K7 (PAL)" }, { "id": "BLES00026", "name": "Fight Night: Round 3 (PAL)" }, { "id": "BLES00027", "name": "Virtua Tennis 3 (PAL)" }, { "id": "BLES00028", "name": "Sonic the Hedgehog (PAL)" }, { "id": "BLES00029", "name": "Virtua Fighter 5 (PAL)" }, { "id": "BLES00033", "name": "NHL 2K7 (PAL)" }, { "id": "BLES00034", "name": "Mobile Suit Gundam: Target in Sight (PAL)" }, { "id": "BLES00035", "name": "F.E.A.R.: First Encounter Assault Recon (PAL)" }, { "id": "BLES00036", "name": "F.E.A.R.: First Encounter Assault Recon (PAL)" }, { "id": "BLES00038", "name": "NBA Street Homecourt (PAL)" }, { "id": "BLES00039", "name": "Armored Core 4 (PAL)" }, { "id": "BLES00041", "name": "World Snooker Championship 2007 (PAL)" }, { "id": "BLES00042", "name": "Def Jam: Icon (PAL)" }, { "id": "BLES00043", "name": "The Godfather: The Don's Edition (PAL)" }, { "id": "BLES00044", "name": "The Godfather: The Don's Edition (PAL)" }, { "id": "BLES00045", "name": "The Godfather: The Don's Edition (PAL)" }, { "id": "BLES00046", "name": "The Godfather The Don-Edition (PAL)" }, { "id": "BLES00047", "name": "The Godfather: The Don's Edition (PAL)" }, { "id": "BLES00048", "name": "The Elder Scrolls IV: Oblivion (PAL)" }, { "id": "BLES00049", "name": "Enchanted Arms (PAL)" }, { "id": "BLES00052", "name": "Ratchet & Clank: Tools of Destruction (PAL)" }, { "id": "BLES00054", "name": "Tom Clancy's Rainbow Six: Vegas (PAL)" }, { "id": "BLES00055", "name": "Spider-Man 3 (PAL)" }, { "id": "BLES00056", "name": "Spider-Man 3 (PAL)" }, { "id": "BLES00058", "name": "The Darkness (PAL)" }, { "id": "BLES00059", "name": "The Darkness (PAL)" }, { "id": "BLES00062", "name": "Spider-Man 3 (Collector's Edition) (PAL)" }, { "id": "BLES00066", "name": "Pirates of the Caribbean: At World's End (PAL)" }, { "id": "BLES00067", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2 (PAL)" }, { "id": "BLES00070", "name": "Harry Potter and the Order of the Phoenix (PAL)" }, { "id": "BLES00071", "name": "Harry Potter and the Order of the Phoenix (PAL)" }, { "id": "BLES00072", "name": "Ninja Gaiden Sigma (PAL)" }, { "id": "BLES00073", "name": "Burnout Paradise (PAL)" }, { "id": "BLES00074", "name": "Burnout Paradise (PAL)" }, { "id": "BLES00075", "name": "Fantastic Four: Rise of the Silver Surfer (PAL)" }, { "id": "BLES00076", "name": "Conan (PAL)" }, { "id": "BLES00077", "name": "Conan (PAL)" }, { "id": "BLES00080", "name": "Ratatouille (PAL)" }, { "id": "BLES00081", "name": "Killzone 2 (PAL)" }, { "id": "BLES00082", "name": "Surf's Up (PAL)" }, { "id": "BLES00083", "name": "Surf's Up (PAL)" }, { "id": "BLES00089", "name": "Ratatouille (PAL)" }, { "id": "BLES00090", "name": "Hellboy: Science of Evil (PAL)" }, { "id": "BLES00092", "name": "Transformers: The Game (PAL)" }, { "id": "BLES00094", "name": "Transformers: The Game (PAL)" }, { "id": "BLES00095", "name": "Colin McRae: DiRT (PAL)" }, { "id": "BLES00097", "name": "NASCAR 08 (PAL)" }, { "id": "BLES00100", "name": "Pro Evolution Soccer 2008 (PAL)" }, { "id": "BLES00102", "name": "Madden NFL 08 (PAL)" }, { "id": "BLES00103", "name": "Blazing Angels 2: Secret Missions of WWII (PAL)" }, { "id": "BLES00105", "name": "Tiger Woods PGA Tour 08 (PAL)" }, { "id": "BLES00107", "name": "Sega Rally (PAL)" }, { "id": "BLES00110", "name": "Pro Evolution Soccer 2008 (PAL)" }, { "id": "BLES00111", "name": "Pro Evolution Soccer 2008 (PAL)" }, { "id": "BLES00113", "name": "Bladestorm: The Hundred Years' War (PAL)" }, { "id": "BLES00115", "name": "Call of Duty 4: Modern Warfare (PAL)" }, { "id": "BLES00118", "name": "NHL 08 (PAL)" }, { "id": "BLES00119", "name": "NBA Live 08 (PAL)" }, { "id": "BLES00120", "name": "Clive Barker's Jericho (PAL)" }, { "id": "BLES00121", "name": "LEGO Star Wars: The Complete Saga (PAL)" }, { "id": "BLES00124", "name": "Skate (PAL)" }, { "id": "BLES00125", "name": "Skate (PAL)" }, { "id": "BLES00130", "name": "Tony Hawk's Proving Ground (PAL)" }, { "id": "BLES00131", "name": "NHL 2K8 (PAL)" }, { "id": "BLES00132", "name": "FIFA 08 (PAL)" }, { "id": "BLES00133", "name": "FIFA 08 (PAL)" }, { "id": "BLES00134", "name": "Guitar Hero III: Legends of Rock (PAL)" }, { "id": "BLES00135", "name": "Stuntman: Ignition (PAL)" }, { "id": "BLES00136", "name": "WWE SmackDown vs. Raw 2008 (PAL)" }, { "id": "BLES00137", "name": "WWE SmackDown vs. Raw 2008 (PAL)" }, { "id": "BLES00138", "name": "NBA 2K8 (PAL)" }, { "id": "BLES00139", "name": "World Series of Poker 2008: Battle for the Bracelets (PAL)" }, { "id": "BLES00140", "name": "FIFA 08 (PAL)" }, { "id": "BLES00142", "name": "The Simpsons Game (PAL)" }, { "id": "BLES00143", "name": "Juiced 2: Hot Import Nights (PAL)" }, { "id": "BLES00144", "name": "Stranglehold (PAL)" }, { "id": "BLES00145", "name": "Stranglehold (PAL)" }, { "id": "BLES00146", "name": "The Simpsons Game (PAL)" }, { "id": "BLES00147", "name": "Dynasty Warriors: Gundam (PAL)" }, { "id": "BLES00148", "name": "Call of Duty 4: Modern Warfare (PAL)" }, { "id": "BLES00149", "name": "Call of Duty 4: Modern Warfare (PAL)" }, { "id": "BLES00150", "name": "X-Men Origins: Wolverine Uncaged Edition (PAL)" }, { "id": "BLES00153", "name": "The Orange Box (PAL)" }, { "id": "BLES00154", "name": "Call of Duty 4: Modern Warfare (PAL)" }, { "id": "BLES00155", "name": "Call of Duty 4: Modern Warfare (PAL)" }, { "id": "BLES00156", "name": "Call of Duty 4: Modern Warfare (PAL)" }, { "id": "BLES00157", "name": "Haze (PAL)" }, { "id": "BLES00158", "name": "Assassin's Creed (PAL)" }, { "id": "BLES00159", "name": "TimeShift (PAL)" }, { "id": "BLES00160", "name": "TimeShift (PAL)" }, { "id": "BLES00161", "name": "Beowulf: The Game (PAL)" }, { "id": "BLES00162", "name": "Cars: Mater-National Championship (PAL)" }, { "id": "BLES00163", "name": "The Elder Scrolls IV: Oblivion - Game of the Year Edition (PAL)" }, { "id": "BLES00164", "name": "Haze (PAL)" }, { "id": "BLES00166", "name": "Ferrari Challenge: Trofeo Pirelli (PAL)" }, { "id": "BLES00167", "name": "Kane & Lynch: Dead Men (PAL)" }, { "id": "BLES00168", "name": "Army of Two (PAL)" }, { "id": "BLES00169", "name": "Haze (PAL)" }, { "id": "BLES00171", "name": "The Orange Box (PAL)" }, { "id": "BLES00172", "name": "The Orange Box (PAL)" }, { "id": "BLES00174", "name": "Medal of Honor: Airborne (PAL)" }, { "id": "BLES00175", "name": "Need for Speed: ProStreet (PAL)" }, { "id": "BLES00176", "name": "Need for Speed: ProStreet (PAL)" }, { "id": "BLES00177", "name": "Need for Speed ProStreet (PAL)" }, { "id": "BLES00178", "name": "MX vs. ATV: Untamed (PAL)" }, { "id": "BLES00179", "name": "MX vs. ATV: Untamed (PAL)" }, { "id": "BLES00180", "name": "The Golden Compass (PAL)" }, { "id": "BLES00182", "name": "Conflict: Denied Ops (PAL)" }, { "id": "BLES00183", "name": "Conflict: Denied Ops (PAL)" }, { "id": "BLES00184", "name": "Enemy Territory: Quake Wars (PAL)" }, { "id": "BLES00186", "name": "Devil May Cry 4 (PAL)" }, { "id": "BLES00187", "name": "Turok (PAL)" }, { "id": "BLES00188", "name": "FIFA Street 3 (PAL)" }, { "id": "BLES00189", "name": "Soldier of Fortune: Payback (PAL)" }, { "id": "BLES00190", "name": "Soldier of Fortune: Payback (PAL)" }, { "id": "BLES00191", "name": "BlackSite (PAL)" }, { "id": "BLES00192", "name": "The Club (PAL)" }, { "id": "BLES00193", "name": "The Club (PAL)" }, { "id": "BLES00194", "name": "The History Channel: Battle for the Pacific (PAL)" }, { "id": "BLES00196", "name": "Turning Point: Fall of Liberty (PAL)" }, { "id": "BLES00197", "name": "Turning Point: Fall of Liberty (PAL)" }, { "id": "BLES00198", "name": "Lost Planet: Extreme Condition (PAL)" }, { "id": "BLES00199", "name": "Assassin's Creed (PAL)" }, { "id": "BLES00200", "name": "Unreal Tournament 3 (PAL)" }, { "id": "BLES00201", "name": "Unreal Tournament 3 (PAL)" }, { "id": "BLES00215", "name": "Dynasty Warriors 6 (PAL)" }, { "id": "BLES00218", "name": "NFL Tour (PAL)" }, { "id": "BLES00219", "name": "Condemned 2 (PAL)" }, { "id": "BLES00221", "name": "Lost: Via Domus (PAL)" }, { "id": "BLES00222", "name": "Dark Sector (PAL)" }, { "id": "BLES00227", "name": "UEFA Euro 2008 (PAL)" }, { "id": "BLES00228", "name": "Rock Band (PAL)" }, { "id": "BLES00229", "name": "Grand Theft Auto IV (PAL)" }, { "id": "BLES00231", "name": "Dragon Ball Z: Burst Limit (PAL)" }, { "id": "BLES00232", "name": "Sega Superstars Tennis (PAL)" }, { "id": "BLES00237", "name": "Tom Clancy's Rainbow Six: Vegas 2 (PAL)" }, { "id": "BLES00238", "name": "Sid Meier's Civilization Revolution (PAL)" }, { "id": "BLES00239", "name": "Vampire Rain: Altered Species (PAL)" }, { "id": "BLES00241", "name": "Guitar Hero: Aerosmith (PAL)" }, { "id": "BLES00242", "name": "Viking: Battle for Asgard (PAL)" }, { "id": "BLES00243", "name": "Kung Fu Panda (PAL)" }, { "id": "BLES00246", "name": "Metal Gear Solid 4: Guns of the Patriots (PAL)" }, { "id": "BLES00247", "name": "Iron Man (PAL)" }, { "id": "BLES00248", "name": "Tom Clancy's Rainbow Six: Vegas 2 (PAL)" }, { "id": "BLES00249", "name": "Robert Ludlum's The Bourne Conspiracy (PAL)" }, { "id": "BLES00250", "name": "Robert Ludlum's The Bourne Conspiracy (PAL)" }, { "id": "BLES00251", "name": "The Chronicles of Narnia: Prince Caspian (PAL)" }, { "id": "BLES00253", "name": "Battle Fantasia (PAL)" }, { "id": "BLES00254", "name": "LEGO Indiana Jones: The Original Adventures (PAL)" }, { "id": "BLES00255", "name": "Monster Madness: Grave Danger (PAL)" }, { "id": "BLES00256", "name": "Race Driver Grid (PAL)" }, { "id": "BLES00257", "name": "Overlord: Raising Hell (PAL)" }, { "id": "BLES00258", "name": "Grand Theft Auto IV (PAL)" }, { "id": "BLES00259", "name": "Battlefield: Bad Company (PAL)" }, { "id": "BLES00261", "name": "Battlefield: Bad Company (Gold Edition) (PAL)" }, { "id": "BLES00262", "name": "Star Wars: The Force Unleashed (PAL)" }, { "id": "BLES00263", "name": "Robert Ludlum's The Bourne Conspiracy (PAL)" }, { "id": "BLES00268", "name": "Nascar 09 (PAL)" }, { "id": "BLES00269", "name": "Prototype (PAL)" }, { "id": "BLES00271", "name": "G1 Jockey 4 2008 (PAL)" }, { "id": "BLES00276", "name": "Top Spin 3 (PAL)" }, { "id": "BLES00279", "name": "Wall-E (PAL)" }, { "id": "BLES00280", "name": "WALL•E (PAL)" }, { "id": "BLES00283", "name": "WALL•E (PAL)" }, { "id": "BLES00285", "name": "Madden NFL 09 (PAL)" }, { "id": "BLES00289", "name": "The Incredible Hulk (PAL)" }, { "id": "BLES00290", "name": "WSC Real 09: World Snooker Championship (PAL)" }, { "id": "BLES00291", "name": "FaceBreaker (PAL)" }, { "id": "BLES00295", "name": "Tiger Woods PGA Tour 09 (PAL)" }, { "id": "BLES00296", "name": "SoulCalibur IV (PAL)" }, { "id": "BLES00298", "name": "NHL '9 (PAL)" }, { "id": "BLES00299", "name": "Guitar Hero: World Tour (PAL)" }, { "id": "BLES00300", "name": "TNA iMPACT! (PAL)" }, { "id": "BLES00302", "name": "NBA Live 09 (PAL)" }, { "id": "BLES00307", "name": "Silent Hill: Homecoming (Promo) (PAL)" }, { "id": "BLES00308", "name": "Dead Space (PAL)" }, { "id": "BLES00309", "name": "Dead Space (PAL)" }, { "id": "BLES00310", "name": "Dead Space (PAL)" }, { "id": "BLES00311", "name": "The Chronicles of Riddick: Assault on Dark Athena (PAL)" }, { "id": "BLES00314", "name": "FIFA 09 (PAL)" }, { "id": "BLES00315", "name": "FIFA 09 (PAL)" }, { "id": "BLES00316", "name": "BioShock: Ultimate Rapture Edition (PAL)" }, { "id": "BLES00317", "name": "Bioshock (PAL)" }, { "id": "BLES00318", "name": "Brothers in Arms: Hell's Highway (PAL)" }, { "id": "BLES00319", "name": "Brothers In Arms : Hell's Highway (PAL)" }, { "id": "BLES00322", "name": "Mirror's Edge (PAL)" }, { "id": "BLES00323", "name": "Mercenaries 2: World in Flames (PAL)" }, { "id": "BLES00324", "name": "Far Cry 2 (PAL)" }, { "id": "BLES00325", "name": "Far Cry 2 (PAL)" }, { "id": "BLES00326", "name": "Tom Clancy's EndWar (PAL)" }, { "id": "BLES00327", "name": "Pure (PAL)" }, { "id": "BLES00328", "name": "Mercenaries 2: World in Flames (PAL)" }, { "id": "BLES00329", "name": "Fracture (PAL)" }, { "id": "BLES00330", "name": "Tom Clancy's H.A.W.X (PAL)" }, { "id": "BLES00332", "name": "LEGO Batman: The Videogame (PAL)" }, { "id": "BLES00333", "name": "Fallout 3 (PAL)" }, { "id": "BLES00336", "name": "Fallout 3 (PAL)" }, { "id": "BLES00338", "name": "Pro Evolution Soccer 2009 (PAL)" }, { "id": "BLES00353", "name": "NHL 2K9 (PAL)" }, { "id": "BLES00354", "name": "Call of Duty: World at War (PAL)" }, { "id": "BLES00355", "name": "Call of Duty: World at War (PAL)" }, { "id": "BLES00357", "name": "Call of Duty: World at War (PAL)" }, { "id": "BLES00359", "name": "Baja: Edge of Control (PAL)" }, { "id": "BLES00361", "name": "WWE Smackdown vs Raw 2009 (PAL)" }, { "id": "BLES00362", "name": "Midnight Club: Los Angeles (PAL)" }, { "id": "BLES00368", "name": "SBK 08 : Superbike World Championship (PAL)" }, { "id": "BLES00370", "name": "Armored Core: For Answer (PAL)" }, { "id": "BLES00371", "name": "Naruto: Ultimate Ninja Storm (PAL)" }, { "id": "BLES00372", "name": "Valkyria Chronicles (PAL)" }, { "id": "BLES00373", "name": "Saints Row 2 (PAL)" }, { "id": "BLES00378", "name": "Disney Sing It (PAL)" }, { "id": "BLES00380", "name": "Disney Sing It (PAL)" }, { "id": "BLES00382", "name": "The Legend of Spyro: Dawn of the Dragon (PAL)" }, { "id": "BLES00383", "name": "The Legend of Spyro: Dawn of the Dragon (PAL)" }, { "id": "BLES00384", "name": "NBA 2K9 (PAL)" }, { "id": "BLES00385", "name": "Rock Band 2 (PAL)" }, { "id": "BLES00387", "name": "Monopoly (PAL)" }, { "id": "BLES00389", "name": "Prince of Persia (PAL)" }, { "id": "BLES00390", "name": "Prince of Persia (PAL)" }, { "id": "BLES00391", "name": "Golden Axe: Beast Rider (PAL)" }, { "id": "BLES00392", "name": "Spider-Man: Web of Shadows (PAL)" }, { "id": "BLES00394", "name": "Madagascar: Escape 2 Africa (PAL)" }, { "id": "BLES00395", "name": "Madagascar: Escape 2 Africa (PAL)" }, { "id": "BLES00396", "name": "MotoGP 08 (PAL)" }, { "id": "BLES00397", "name": "Blitz: The League II (PAL)" }, { "id": "BLES00399", "name": "Fallout 3 (PAL)" }, { "id": "BLES00400", "name": "Fallout 3 (PAL)" }, { "id": "BLES00401", "name": "Rapala Fishing Frenzy 2009 (PAL)" }, { "id": "BLES00402", "name": "Cabela's Dangerous Adventures (PAL)" }, { "id": "BLES00403", "name": "Shaun White Snowboarding (PAL)" }, { "id": "BLES00404", "name": "Call of Duty: World at War (PAL)" }, { "id": "BLES00405", "name": "Legendary (PAL)" }, { "id": "BLES00406", "name": "Quantum of Solace: The Game (PAL)" }, { "id": "BLES00408", "name": "Shellshock 2: Blood Trails (PAL)" }, { "id": "BLES00409", "name": "Tomb Raider: Underworld (PAL)" }, { "id": "BLES00410", "name": "Fallen Angel Sacred 2 (PAL)" }, { "id": "BLES00412", "name": "The Lord of the Rings: Conquest (PAL)" }, { "id": "BLES00414", "name": "Bolt (PAL)" }, { "id": "BLES00415", "name": "Disney's Bolt (PAL)" }, { "id": "BLES00417", "name": "Disney Bolt (PAL)" }, { "id": "BLES00418", "name": "Rise of the Argonauts (PAL)" }, { "id": "BLES00420", "name": "Brain Challenge (PAL)" }, { "id": "BLES00421", "name": "World Championship Off Road Racing (PAL)" }, { "id": "BLES00422", "name": "Alone in the Dark: Inferno (PAL)" }, { "id": "BLES00424", "name": "Harry Potter and the Half-Blood Prince (PAL)" }, { "id": "BLES00425", "name": "Sonic Unleashed (PAL)" }, { "id": "BLES00441", "name": "Mortal Kombat vs. DC Universe (PAL)" }, { "id": "BLES00442", "name": "Disney Sing It: High School Musical 3 Senior Year (PAL)" }, { "id": "BLES00444", "name": "Eternal Sonata (PAL)" }, { "id": "BLES00447", "name": "X-Blades (PAL)" }, { "id": "BLES00450", "name": "Need for Speed: Undercover (PAL)" }, { "id": "BLES00451", "name": "Rock Band Song Pack 2 (PAL)" }, { "id": "BLES00452", "name": "Disgaea 3: Absence of Justice (PAL)" }, { "id": "BLES00453", "name": "AC/DC Live: Rock Band (PAL)" }, { "id": "BLES00455", "name": "Burnout Paradise: The Ultimate Box (PAL)" }, { "id": "BLES00460", "name": "Silent Hill: Homecoming (PAL)" }, { "id": "BLES00461", "name": "Skate 2 (PAL)" }, { "id": "BLES00462", "name": "Burnout Paradise: The Ultimate Box (PAL)" }, { "id": "BLES00464", "name": "F.E.A.R. 2: Project Origin (PAL)" }, { "id": "BLES00465", "name": "Bionic Commando (PAL)" }, { "id": "BLES00467", "name": "Destroy All Humans! Path of the Furon (PAL)" }, { "id": "BLES00472", "name": "50 Cent: Blood on the Sand (PAL)" }, { "id": "BLES00474", "name": "Rock Revolution (PAL)" }, { "id": "BLES00475", "name": "Sega Mega Drive: Ultimate Collection (PAL)" }, { "id": "BLES00477", "name": "The Godfather II (PAL)" }, { "id": "BLES00478", "name": "The Godfather II (PAL)" }, { "id": "BLES00479", "name": "Guitar Hero: Metallica (PAL)" }, { "id": "BLES00480", "name": "Wheelman (PAL)" }, { "id": "BLES00481", "name": "Street Fighter IV (PAL)" }, { "id": "BLES00485", "name": "Resident Evil 5 (PAL)" }, { "id": "BLES00488", "name": "Trivial Pursuit (PAL)" }, { "id": "BLES00490", "name": "Dreamworks Monsters vs. Aliens (PAL)" }, { "id": "BLES00492", "name": "WWE Legends of WrestleMania (PAL)" }, { "id": "BLES00495", "name": "Eat Lead: The Return of Matt Hazard (PAL)" }, { "id": "BLES00496", "name": "Red Faction: Guerilla (PAL)" }, { "id": "BLES00498", "name": "Red Faction: Guerrilla (PAL)" }, { "id": "BLES00501", "name": "The Godfather 2 (PAL)" }, { "id": "BLES00503", "name": "Batman: Arkham Asylum (PAL)" }, { "id": "BLES00504", "name": "Wanted: Weapons of Fate (PAL)" }, { "id": "BLES00506", "name": "Command & Conquer: Red Alert 3 (PAL)" }, { "id": "BLES00507", "name": "Command & Conquer: Red Alert 3 (Ultimate Edition) (PAL)" }, { "id": "BLES00508", "name": "Command & Conquer: Red Alert 3 (Ultimate Edition) (PAL)" }, { "id": "BLES00512", "name": "Mini Ninjas (PAL)" }, { "id": "BLES00513", "name": "Stormrise (PAL)" }, { "id": "BLES00515", "name": "Stormrise (PAL)" }, { "id": "BLES00516", "name": "Afro Samurai (PAL)" }, { "id": "BLES00517", "name": "Just Cause 2 (PAL)" }, { "id": "BLES00521", "name": "Mafia II (PAL)" }, { "id": "BLES00522", "name": "Ice Age 3: Dawn of the Dinosaurs (PAL)" }, { "id": "BLES00525", "name": "Ice Age: Dawn of the Dinosaurs (PAL)" }, { "id": "BLES00526", "name": "Damnation (PAL)" }, { "id": "BLES00528", "name": "Dynasty Warriors: Gundam 2 (PAL)" }, { "id": "BLES00529", "name": "Superstars V8 Racing (PAL)" }, { "id": "BLES00530", "name": "Tiger Woods PGA Tour 10 (PAL)" }, { "id": "BLES00532", "name": "The Beatles: Rock Band (PAL)" }, { "id": "BLES00536", "name": "SBK-09 Superbike World Championship (PAL)" }, { "id": "BLES00537", "name": "Terminator Salvation (PAL)" }, { "id": "BLES00538", "name": "Fight Night Round 4 (PAL)" }, { "id": "BLES00539", "name": "UFC 2009: Undisputed (PAL)" }, { "id": "BLES00540", "name": "Dynasty Warriors 6 Empires (PAL)" }, { "id": "BLES00542", "name": "Up (PAL)" }, { "id": "BLES00543", "name": "UP (PAL)" }, { "id": "BLES00544", "name": "Up (PAL)" }, { "id": "BLES00546", "name": "Marvel: Ultimate Alliance 2 (PAL)" }, { "id": "BLES00549", "name": "Guitar Hero: Greatest Hits (PAL)" }, { "id": "BLES00553", "name": "Leisure Suit Larry: Box Office Bust (PAL)" }, { "id": "BLES00554", "name": "The Chronicles of Riddick: Assault on Dark Athena (PAL)" }, { "id": "BLES00556", "name": "Call of Juarez: Bound in Blood (PAL)" }, { "id": "BLES00557", "name": "Vin Diesel Wheelman (PAL)" }, { "id": "BLES00559", "name": "Fritz Chess (PAL)" }, { "id": "BLES00560", "name": "Singularity (PAL)" }, { "id": "BLES00561", "name": "Singularity (PAL)" }, { "id": "BLES00562", "name": "Brutal Legend (PAL)" }, { "id": "BLES00564", "name": "Wolfenstein (PAL)" }, { "id": "BLES00565", "name": "Virtua Tennis 2009 (PAL)" }, { "id": "BLES00566", "name": "Wolfenstein (PAL)" }, { "id": "BLES00567", "name": "NHL 10 (PAL)" }, { "id": "BLES00570", "name": "Fuel (PAL)" }, { "id": "BLES00572", "name": "G-Force (PAL)" }, { "id": "BLES00574", "name": "G-Force (PAL)" }, { "id": "BLES00575", "name": "G-Force (PAL)" }, { "id": "BLES00576", "name": "Guitar Hero 5 (PAL)" }, { "id": "BLES00577", "name": "Transformers: Revenge of the Fallen (PAL)" }, { "id": "BLES00578", "name": "Guitar Hero: Van Halen (PAL)" }, { "id": "BLES00580", "name": "Overlord II (PAL)" }, { "id": "BLES00581", "name": "Supercar Challenge (PAL)" }, { "id": "BLES00582", "name": "Rogue Warrior (PAL)" }, { "id": "BLES00584", "name": "Planet 51: The Game (PAL)" }, { "id": "BLES00585", "name": "Aliens vs. Predator (PAL)" }, { "id": "BLES00586", "name": "Aliens vs. Predator (PAL)" }, { "id": "BLES00588", "name": "Hannah Montana: The Movie (PAL)" }, { "id": "BLES00589", "name": "Hannah Montana: The Movie (PAL)" }, { "id": "BLES00590", "name": "G.I.JOE: The Rise of Cobra (PAL)" }, { "id": "BLES00592", "name": "Red Faction: Guerrilla (PAL)" }, { "id": "BLES00594", "name": "Agarest: Generations of War (PAL)" }, { "id": "BLES00595", "name": "Madden NFL 10 (PAL)" }, { "id": "BLES00597", "name": "Operation Flashpoint: Dragon Rising (PAL)" }, { "id": "BLES00599", "name": "Bayonetta (PAL)" }, { "id": "BLES00600", "name": "Winter Sports 2010: The Great Tournament (PAL)" }, { "id": "BLES00602", "name": "DJ Hero (PAL)" }, { "id": "BLES00604", "name": "Kane & Lynch 2: Dog Days (PAL)" }, { "id": "BLES00605", "name": "Watchmen: The End is Nigh - Part 1&2 (PAL)" }, { "id": "BLES00610", "name": "The King of Fighters XII (PAL)" }, { "id": "BLES00613", "name": "Watchmen: The End is Nigh - Part 1&2 (PAL)" }, { "id": "BLES00615", "name": "FIFA 10 (PAL)" }, { "id": "BLES00618", "name": "Cloudy with a Chance of Meatballs (PAL)" }, { "id": "BLES00619", "name": "Cloudy with a Chance of Meatballs (PAL)" }, { "id": "BLES00620", "name": "Cars: Race-O-Rama (PAL)" }, { "id": "BLES00635", "name": "Tekken 6 (PAL)" }, { "id": "BLES00636", "name": "LEGO: Rock Band (PAL)" }, { "id": "BLES00637", "name": "NBA Live 10 (PAL)" }, { "id": "BLES00638", "name": "Disney Sing It: Pop Hits (PAL)" }, { "id": "BLES00639", "name": "Ashes Cricket 2009 (PAL)" }, { "id": "BLES00648", "name": "IL-2 Sturmovik: Birds of Prey (PAL)" }, { "id": "BLES00650", "name": "Cross Edge (PAL)" }, { "id": "BLES00651", "name": "WW Smackdown vs Raw 2010 (PAL)" }, { "id": "BLES00652", "name": "Midnight Club: Los Angeles - Complete Edition (PAL)" }, { "id": "BLES00654", "name": "NHL 2K10 (PAL)" }, { "id": "BLES00655", "name": "NBA 2K10 (PAL)" }, { "id": "BLES00658", "name": "Katamari Forever (PAL)" }, { "id": "BLES00659", "name": "Army of Two: The 40th Day (PAL)" }, { "id": "BLES00660", "name": "Vancouver 2010 (PAL)" }, { "id": "BLES00661", "name": "Wolfenstein (PAL)" }, { "id": "BLES00662", "name": "MX vs. ATV Reflex (PAL)" }, { "id": "BLES00667", "name": "Avatar: The Game (PAL)" }, { "id": "BLES00668", "name": "Top Spin 4 (PAL)" }, { "id": "BLES00669", "name": "Assassin's Creed II (PAL)" }, { "id": "BLES00670", "name": "Assassin's Creed II: Complete Edition (PAL)" }, { "id": "BLES00673", "name": "Colin McRae: DiRT 2 (PAL)" }, { "id": "BLES00676", "name": "Saw (PAL)" }, { "id": "BLES00678", "name": "Star Wars: The Force Unleashed (Ultimate Sith Edition) (PAL)" }, { "id": "BLES00679", "name": "Heroes Over Europe (PAL)" }, { "id": "BLES00680", "name": "Red Dead Redemption (PAL)" }, { "id": "BLES00682", "name": "Need for Speed Shift (PAL)" }, { "id": "BLES00683", "name": "Call of Duty: Modern Warfare 2 (PAL)" }, { "id": "BLES00685", "name": "Call of Duty: Modern Warfare 2 (PAL)" }, { "id": "BLES00686", "name": "Call of Duty : Modern Warfare 2 (PAL)" }, { "id": "BLES00687", "name": "Call of Duty : Modern Warfare 2 (PAL)" }, { "id": "BLES00689", "name": "Pro Evolution Soccer 2010 (PAL)" }, { "id": "BLES00691", "name": "Call of Duty: Modern Warfare 2 (PAL)" }, { "id": "BLES00692", "name": "Star Wars The Clone Wars: Republic Heroes (PAL)" }, { "id": "BLES00693", "name": "Dragon Ball: Raging Blast (PAL)" }, { "id": "BLES00694", "name": "Karaoke Revolution (PAL)" }, { "id": "BLES00695", "name": "Tornado Outbreak (PAL)" }, { "id": "BLES00696", "name": "Fairytale Fights (PAL)" }, { "id": "BLES00697", "name": "Borderlands (PAL)" }, { "id": "BLES00698", "name": "Borderlands (PAL)" }, { "id": "BLES00699", "name": "Dragon Age: Origins (PAL)" }, { "id": "BLES00704", "name": "Alpha Protocol (PAL)" }, { "id": "BLES00705", "name": "Darksiders (PAL)" }, { "id": "BLES00706", "name": "Tony Hawk Ride (PAL)" }, { "id": "BLES00707", "name": "Wet (PAL)" }, { "id": "BLES00709", "name": "Grand Slam Tennis 2 (PAL)" }, { "id": "BLES00710", "name": "Lost Planet 2 (PAL)" }, { "id": "BLES00711", "name": "Band Hero (PAL)" }, { "id": "BLES00712", "name": "Way of the Samurai 3 (PAL)" }, { "id": "BLES00713", "name": "Dante's Inferno (PAL)" }, { "id": "BLES00714", "name": "Dante's Inferno (PAL)" }, { "id": "BLES00720", "name": "LEGO Harry Potter: Years 1-4 (PAL)" }, { "id": "BLES00723", "name": "Dark Void (PAL)" }, { "id": "BLES00724", "name": "Where the Wild Things Are (PAL)" }, { "id": "BLES00725", "name": "Pure Football (PAL)" }, { "id": "BLES00728", "name": "BioShock 2 (PAL)" }, { "id": "BLES00730", "name": "Dragon Age: Origins (PAL)" }, { "id": "BLES00733", "name": "Scene It? Bright Lights! Big Screen! (PAL)" }, { "id": "BLES00735", "name": "Madagascar Kartz (PAL)" }, { "id": "BLES00736", "name": "Ninja Gaiden Sigma 2 (PAL)" }, { "id": "BLES00742", "name": "Fallout 3 Game of the Year Edition (PAL)" }, { "id": "BLES00743", "name": "The Saboteur (PAL)" }, { "id": "BLES00744", "name": "The Saboteur (PAL)" }, { "id": "BLES00745", "name": "Saboteur (PAL)" }, { "id": "BLES00749", "name": "Dead Island (PAL)" }, { "id": "BLES00750", "name": "Sonic & Sega All-Stars Racing (PAL)" }, { "id": "BLES00751", "name": "Assassin's Creed II (PAL)" }, { "id": "BLES00755", "name": "Tom Clancy's Rainbow Six Vegas 2 (Complete Edition) (PAL)" }, { "id": "BLES00756", "name": "MotoGP 09/10 (PAL)" }, { "id": "BLES00758", "name": "Bakugan Battle Brawlers (PAL)" }, { "id": "BLES00759", "name": "Blur (PAL)" }, { "id": "BLES00760", "name": "Skate 3 (PAL)" }, { "id": "BLES00761", "name": "Tron Evolution (PAL)" }, { "id": "BLES00763", "name": "LEGO Indiana Jones 2: The Adventure Continues (PAL)" }, { "id": "BLES00765", "name": "Prison Break: The Conspiracy (PAL)" }, { "id": "BLES00766", "name": "Prison Break: The Conspiracy (PAL)" }, { "id": "BLES00767", "name": "Star Ocean: The Last Hope International (PAL)" }, { "id": "BLES00769", "name": "Nat Geo Quiz: Wild Life (PAL)" }, { "id": "BLES00770", "name": "Super Street Fighter IV (PAL)" }, { "id": "BLES00771", "name": "Superstars V8 Next Challenge (PAL)" }, { "id": "BLES00772", "name": "Arthur and the Revenge of Maltazard (PAL)" }, { "id": "BLES00773", "name": "Battlefield: Bad Company 2 (PAL)" }, { "id": "BLES00774", "name": "SBK X Superbike World Championship (PAL)" }, { "id": "BLES00776", "name": "Venetica (PAL)" }, { "id": "BLES00777", "name": "Rugby League Live (PAL)" }, { "id": "BLES00779", "name": "Battlefield: Bad Company 2 (PAL)" }, { "id": "BLES00780", "name": "Spit/Second: Velocity (PAL)" }, { "id": "BLES00781", "name": "Split/Second (PAL)" }, { "id": "BLES00783", "name": "Final Fantasy XIII (PAL)" }, { "id": "BLES00785", "name": "Ruse: Don't Believe What You See (PAL)" }, { "id": "BLES00788", "name": "Front Mission Evolved (PAL)" }, { "id": "BLES00789", "name": "Resonance of Fate (PAL)" }, { "id": "BLES00793", "name": "Saw (PAL)" }, { "id": "BLES00796", "name": "2010 FIFA World Cup South Africa (PAL)" }, { "id": "BLES00798", "name": "How to Train Your Dragon (PAL)" }, { "id": "BLES00801", "name": "Guitar Hero: Warriors of Rock (PAL)" }, { "id": "BLES00816", "name": "Resident Evil 5: Gold Edition (PAL)" }, { "id": "BLES00817", "name": "Brink (PAL)" }, { "id": "BLES00820", "name": "BlazBlue: Calamity Trigger (PAL)" }, { "id": "BLES00822", "name": "History: Great Battles Medieval (PAL)" }, { "id": "BLES00824", "name": "Dead to Rights: Retribution (PAL)" }, { "id": "BLES00825", "name": "Dynasty Warriors: Strikeforce (PAL)" }, { "id": "BLES00826", "name": "Nier (PAL)" }, { "id": "BLES00827", "name": "Batman: Arkham Asylum (Game of the Year Edition) (PAL)" }, { "id": "BLES00832", "name": "Sengoku Basara: Samurai Heroes (PAL)" }, { "id": "BLES00833", "name": "Transformers: War for Cybertron (PAL)" }, { "id": "BLES00834", "name": "Yakuza 3 (PAL)" }, { "id": "BLES00837", "name": "Shrek Forever After (PAL)" }, { "id": "BLES00839", "name": "Prince of Persia: The Forgotten Sands (PAL)" }, { "id": "BLES00840", "name": "Prince of Persia: The Forgotten Sands (PAL)" }, { "id": "BLES00841", "name": "Clash of the Titans: The Game (PAL)" }, { "id": "BLES00842", "name": "UFC Undisputed 2010 (PAL)" }, { "id": "BLES00845", "name": "Two Worlds II (PAL)" }, { "id": "BLES00860", "name": "Medal of Honor (PAL)" }, { "id": "BLES00861", "name": "Last Rebellion (PAL)" }, { "id": "BLES00867", "name": "Megamind: Ultimate Showdown (PAL)" }, { "id": "BLES00868", "name": "Quantum Theory (PAL)" }, { "id": "BLES00870", "name": "Tiger Woods PGA Tour 11 (PAL)" }, { "id": "BLES00875", "name": "3D Dot Game Heroes (PAL)" }, { "id": "BLES00876", "name": "Toy Story 3 (PAL)" }, { "id": "BLES00877", "name": "Toy Story 3: The Video Game (PAL)" }, { "id": "BLES00884", "name": "Test Drive Unlimited 2 (PAL)" }, { "id": "BLES00885", "name": "Iron Man 2: The Video Game (PAL)" }, { "id": "BLES00887", "name": "Grand Theft Auto: Episodes from Liberty City (PAL)" }, { "id": "BLES00891", "name": "Driver: San Francisco (PAL)" }, { "id": "BLES00893", "name": "Star Wars: The Force Unleashed II (PAL)" }, { "id": "BLES00895", "name": "Marvel Super Hero Squad: The Infinity Gauntlet (PAL)" }, { "id": "BLES00896", "name": "DJ Hero 2 (PAL)" }, { "id": "BLES00899", "name": "Assassin's Creed II - Game of The Year Edition (PAL)" }, { "id": "BLES00901", "name": "Fallout: New Vegas (PAL)" }, { "id": "BLES00904", "name": "Fallout: New Vegas (PAL)" }, { "id": "BLES00905", "name": "Fallout: New Vegas (Collector's Edition) (PAL)" }, { "id": "BLES00906", "name": "Prince of Persia: The Forgotten Sands (PAL)" }, { "id": "BLES00909", "name": "Assassin's Creed: Brotherhood (PAL)" }, { "id": "BLES00910", "name": "Assassin's Creed: Brotherhood (PAL)" }, { "id": "BLES00912", "name": "Virtua Tennis 4 (PAL)" }, { "id": "BLES00914", "name": "nail'd (PAL)" }, { "id": "BLES00916", "name": "Madden NFL 11 (PAL)" }, { "id": "BLES00917", "name": "F1 2010 (PAL)" }, { "id": "BLES00918", "name": "F1 2010 (PAL)" }, { "id": "BLES00919", "name": "Majin and the Forsaken Kingdom (PAL)" }, { "id": "BLES00921", "name": "International Cricket 2010 (PAL)" }, { "id": "BLES00922", "name": "Tom Clancy's Ghost Recon: Future Soldier (PAL)" }, { "id": "BLES00924", "name": "Tom Clancy's Ghost Recon: Future Soldier (PAL)" }, { "id": "BLES00926", "name": "Batman: Arkham City (PAL)" }, { "id": "BLES00927", "name": "Vanquish (PAL)" }, { "id": "BLES00928", "name": "Tom Clancy's H.A.W.X. 2 (PAL)" }, { "id": "BLES00931", "name": "Harry Potter and the Deathly Hallows - Part 1 (PAL)" }, { "id": "BLES00932", "name": "Demon's Souls (PAL)" }, { "id": "BLES00933", "name": "L.A. Noire (PAL)" }, { "id": "BLES00934", "name": "LEGO Star Wars III: The Clone Wars (PAL)" }, { "id": "BLES00936", "name": "MySims SkyHeroes (PAL)" }, { "id": "BLES00937", "name": "Apache: Air Assault (PAL)" }, { "id": "BLES00941", "name": "Battle vs. Chess (PAL)" }, { "id": "BLES00942", "name": "Max Payne 3 (PAL)" }, { "id": "BLES00944", "name": "BackBreaker (PAL)" }, { "id": "BLES00945", "name": "Naughty Bear (PAL)" }, { "id": "BLES00946", "name": "Spider-Man: Dimensions (PAL)" }, { "id": "BLES00947", "name": "Kane & Lynch 2: Dog Days (PAL)" }, { "id": "BLES00948", "name": "Dead Rising 2 (PAL)" }, { "id": "BLES00949", "name": "Need for Speed: Hot Pursuit (PAL)" }, { "id": "BLES00950", "name": "Need for Speed: Hot Pursuit (Limited Edition) (PAL)" }, { "id": "BLES00951", "name": "Driver: San Francisco (PAL)" }, { "id": "BLES00952", "name": "Naruto: Ninja Storm 2 (PAL)" }, { "id": "BLES00954", "name": "Monopoly Streets (PAL)" }, { "id": "BLES00957", "name": "Rapala Pro Bass Fishing (PAL)" }, { "id": "BLES00962", "name": "Homefront (PAL)" }, { "id": "BLES00963", "name": "F.E.A.R. 3 (PAL)" }, { "id": "BLES00964", "name": "Legend of the Guardians: The Owls of Ga'Hoole (PAL)" }, { "id": "BLES00965", "name": "EA Sports Active 2 (PAL)" }, { "id": "BLES00971", "name": "Trinity Universe (PAL)" }, { "id": "BLES00973", "name": "Hasbro Family Game Night 3 (PAL)" }, { "id": "BLES00977", "name": "Get Fit with Mel B: See the difference (PAL)" }, { "id": "BLES00978", "name": "Dragon Ball: Raging Blast 2 (PAL)" }, { "id": "BLES00983", "name": "Def Jam Rapstar (PAL)" }, { "id": "BLES00984", "name": "NHL 11 (PAL)" }, { "id": "BLES00986", "name": "Rock Band 3 (PAL)" }, { "id": "BLES00987", "name": "EA Sports MMA (PAL)" }, { "id": "BLES00989", "name": "Enslaved: Odyssey to the West (PAL)" }, { "id": "BLES00991", "name": "Red Faction Armageddon (PAL)" }, { "id": "BLES00992", "name": "WRC: Fia World Rally Championship (PAL)" }, { "id": "BLES00995", "name": "WWE All Stars (PAL)" }, { "id": "BLES00998", "name": "The Lord of the Rings: Aragorn's Quest (PAL)" }, { "id": "BLES01000", "name": "Racket Sports (PAL)" }, { "id": "BLES01001", "name": "Knights Contract (PAL)" }, { "id": "BLES01002", "name": "Tony Hawk: Shred (PAL)" }, { "id": "BLES01003", "name": "Shaun White Skateboarding (PAL)" }, { "id": "BLES01008", "name": "NBA 2K11 (PAL)" }, { "id": "BLES01009", "name": "MindJack (PAL)" }, { "id": "BLES01011", "name": "Summer Challenge: Athletics Tournament (PAL)" }, { "id": "BLES01016", "name": "The Sims 3 (PAL)" }, { "id": "BLES01017", "name": "James Bond 007: Blood Stone (PAL)" }, { "id": "BLES01021", "name": "Pro Evolution Soccer 2011 (PAL)" }, { "id": "BLES01022", "name": "Pro Evolution Soccer 2011 (PAL)" }, { "id": "BLES01030", "name": "Atelier Rorona: The Alchemist of Arland (PAL)" }, { "id": "BLES01031", "name": "Call of Duty: Black Ops (PAL)" }, { "id": "BLES01032", "name": "Call of Duty: Black Ops (PAL)" }, { "id": "BLES01033", "name": "Call of Duty: Black Ops (PAL)" }, { "id": "BLES01034", "name": "Call of Duty: Black Ops (PAL)" }, { "id": "BLES01035", "name": "Call of Duty: Black Ops (PAL)" }, { "id": "BLES01036", "name": "Bakugan: Defenders of the Core (PAL)" }, { "id": "BLES01037", "name": "National Geographic Challenge! (PAL)" }, { "id": "BLES01038", "name": "AFL Live (PAL)" }, { "id": "BLES01039", "name": "Fight Night Champion (PAL)" }, { "id": "BLES01040", "name": "Dead Space 2 (Limited Edition) (PAL)" }, { "id": "BLES01041", "name": "Dead Space 2 (PAL)" }, { "id": "BLES01044", "name": "Create (PAL)" }, { "id": "BLES01045", "name": "WW Smackdown vs Raw 2011 (PAL)" }, { "id": "BLES01046", "name": "Blood Drive (PAL)" }, { "id": "BLES01047", "name": "Castlevania: Lords of Shadow (PAL)" }, { "id": "BLES01050", "name": "Saw II: Flesh & Blood (PAL)" }, { "id": "BLES01051", "name": "Williams Pinball Classics (PAL)" }, { "id": "BLES01057", "name": "Fallout: New Vegas (PAL)" }, { "id": "BLES01059", "name": "FIFA 11 (PAL)" }, { "id": "BLES01060", "name": "Crysis 2 (PAL)" }, { "id": "BLES01061", "name": "Winter Sports 2011: Go for Gold (PAL)" }, { "id": "BLES01066", "name": "Shift 2: Unleashed (PAL)" }, { "id": "BLES01067", "name": "Medal of Honor (Limited Edition) (PAL)" }, { "id": "BLES01069", "name": "Thor God of Thunder (PAL)" }, { "id": "BLES01074", "name": "London 2012: The Official Video Game of the Olympic Games (PAL)" }, { "id": "BLES01076", "name": "Dragon Age: Origins - Ultimate Edition (PAL)" }, { "id": "BLES01079", "name": "Monster Jam: Path of Destruction (PAL)" }, { "id": "BLES01080", "name": "Yoostar 2: In the Movies (PAL)" }, { "id": "BLES01081", "name": "Yakuza 4 (PAL)" }, { "id": "BLES01084", "name": "Dragon Age II (Bioware Signature Edition) (PAL)" }, { "id": "BLES01088", "name": "MySims: Sky Heroes (PAL)" }, { "id": "BLES01089", "name": "John Daly's ProStroke Golf (PAL)" }, { "id": "BLES01090", "name": "PDC World Championship Darts: Pro Tour (PAL)" }, { "id": "BLES01092", "name": "Prince of Persia Trilogy 3D (PAL)" }, { "id": "BLES01093", "name": "Mafia 2: Special Extended Edition (PAL)" }, { "id": "BLES01100", "name": "MotoGP 10/11 (PAL)" }, { "id": "BLES01101", "name": "No More Heroes: Heroes' Paradise (PAL)" }, { "id": "BLES01102", "name": "Ar Tonelico Qoga: Knell of Ar Ciel (PAL)" }, { "id": "BLES01105", "name": "Call of Duty - Black Ops (PAL)" }, { "id": "BLES01106", "name": "Medal of Honor: Tier 1 Edition (PAL)" }, { "id": "BLES01107", "name": "Metal of Honor: Limited Edition (PAL)" }, { "id": "BLES01110", "name": "Ben 10: Ultimate Alien - Cosmic Destruction (PAL)" }, { "id": "BLES01112", "name": "Cabela's Dangerous Hunts 2011 (PAL)" }, { "id": "BLES01114", "name": "Child of Eden (PAL)" }, { "id": "BLES01116", "name": "Green Lantern: Rise of the Manhunters (PAL)" }, { "id": "BLES01119", "name": "BlazBlue: Continuum Shift (PAL)" }, { "id": "BLES01120", "name": "Splatterhouse (PAL)" }, { "id": "BLES01128", "name": "Grand Theft Auto IV: Complete Edition (PAL)" }, { "id": "BLES01129", "name": "Final Fantasy XIV Online: A Realm Reborn (PAL)" }, { "id": "BLES01130", "name": "Brunswick Pro Bowling (PAL)" }, { "id": "BLES01132", "name": "Mortal Kombat (PAL)" }, { "id": "BLES01133", "name": "Mass Effect 2 (PAL)" }, { "id": "BLES01134", "name": "Bulletstorm (Limited Edition) (PAL)" }, { "id": "BLES01135", "name": "Michael Jackson: The Experience (PAL)" }, { "id": "BLES01137", "name": "Farcry 3 (PAL)" }, { "id": "BLES01138", "name": "Far Cry 3 (PAL)" }, { "id": "BLES01139", "name": "Rio (PAL)" }, { "id": "BLES01145", "name": "Mayhem (PAL)" }, { "id": "BLES01146", "name": "Tom Clancy's Splinter Cell: Trilogy (PAL)" }, { "id": "BLES01147", "name": "Duke Nukem Forever (PAL)" }, { "id": "BLES01148", "name": "WSC Real 11: World Snooker Championship (PAL)" }, { "id": "BLES01149", "name": "Dynasty Warriors 7 (PAL)" }, { "id": "BLES01150", "name": "Deus Ex Human Revolution (PAL)" }, { "id": "BLES01151", "name": "Deus Ex: Human Revolution (PAL)" }, { "id": "BLES01153", "name": "Transformers: Fall of Cybertron (PAL)" }, { "id": "BLES01157", "name": "Spec Ops: The Line (PAL)" }, { "id": "BLES01160", "name": "de Blob 2 (PAL)" }, { "id": "BLES01161", "name": "Dungeon Siege III (PAL)" }, { "id": "BLES01163", "name": "El Shaddai: Ascension of the Metatron (PAL)" }, { "id": "BLES01164", "name": "Rango (PAL)" }, { "id": "BLES01166", "name": "Mafia II (PAL)" }, { "id": "BLES01167", "name": "Captain America : Super Soldier (PAL)" }, { "id": "BLES01169", "name": "Transformers: Dark of the Moon (PAL)" }, { "id": "BLES01170", "name": "UFC Personal Trainer (PAL)" }, { "id": "BLES01171", "name": "Operation Flashpoint: Red River (PAL)" }, { "id": "BLES01177", "name": "Tiger Woods PGA Tour 12: The Masters (PAL)" }, { "id": "BLES01178", "name": "Hyperdimension Neptunia (PAL)" }, { "id": "BLES01179", "name": "Red Dead Redemption: Undead Nightmare (PAL)" }, { "id": "BLES01181", "name": "Lord of the Rings: War in the North (PAL)" }, { "id": "BLES01183", "name": "Warriors: Legends of Troy (PAL)" }, { "id": "BLES01184", "name": "Trinity: Souls of Zill O'll (PAL)" }, { "id": "BLES01191", "name": "My Fitness Coach - Club (PAL)" }, { "id": "BLES01192", "name": "MX vs. ATV Alive (PAL)" }, { "id": "BLES01193", "name": "F3ear (PAL)" }, { "id": "BLES01195", "name": "The Tomb Raider Trilogy (PAL)" }, { "id": "BLES01210", "name": "Jonah Lomu: Rugby Challenge (PAL)" }, { "id": "BLES01211", "name": "Binary Domain (PAL)" }, { "id": "BLES01212", "name": "Bulletstorm (PAL)" }, { "id": "BLES01213", "name": "Kung Fu Panda 2 (PAL)" }, { "id": "BLES01214", "name": "Earth Defense Force: Insect Armageddon (PAL)" }, { "id": "BLES01215", "name": "We Dare: Flirty Fun For All (PAL)" }, { "id": "BLES01216", "name": "Rocksmith (PAL)" }, { "id": "BLES01217", "name": "Hunter's Trophy (PAL)" }, { "id": "BLES01218", "name": "My Body Coach 2 (PAL)" }, { "id": "BLES01219", "name": "The Penguins of Madagascar: Dr. Blowhole Returns Again (PAL)" }, { "id": "BLES01221", "name": "Atelier Totori: The Adventurer of Arland (PAL)" }, { "id": "BLES01222", "name": "Portal 2 (PAL)" }, { "id": "BLES01224", "name": "Winter Stars (PAL)" }, { "id": "BLES01225", "name": "Disgaea 4: A Promise Unforgotten (PAL)" }, { "id": "BLES01226", "name": "SBK 2011 FIM Superbike World Championship (PAL)" }, { "id": "BLES01227", "name": "Asura's Wrath (PAL)" }, { "id": "BLES01228", "name": "Devil May Cry: HD Collection (PAL)" }, { "id": "BLES01231", "name": "UFC: Undisputed 3 (PAL)" }, { "id": "BLES01232", "name": "Anarchy Reigns (PAL)" }, { "id": "BLES01233", "name": "Dance on Broadway (PAL)" }, { "id": "BLES01235", "name": "Champion Jockey: G1 Jockey & Gallop Racer (PAL)" }, { "id": "BLES01236", "name": "Sonic Generations (PAL)" }, { "id": "BLES01237", "name": "Top Gun: Hard Lock (PAL)" }, { "id": "BLES01239", "name": "Pirates of the Caribbean: The Video Game (PAL)" }, { "id": "BLES01241", "name": "LEGO Pirates of the Caribbean: The Video Game (PAL)" }, { "id": "BLES01242", "name": "Cars 2: The Video Game (PAL)" }, { "id": "BLES01250", "name": "SoulCalibur V (PAL)" }, { "id": "BLES01251", "name": "Kingdoms of Amalur: Reckoning (PAL)" }, { "id": "BLES01252", "name": "Street Fighter X Tekken (PAL)" }, { "id": "BLES01265", "name": "Alice: Madness Returns (PAL)" }, { "id": "BLES01266", "name": "Dance! It's your Stage (PAL)" }, { "id": "BLES01268", "name": "Let's Dance with Mel B (PAL)" }, { "id": "BLES01269", "name": "Final Fantasy XIII-2 (PAL)" }, { "id": "BLES01270", "name": "Tiger Woods PGA Tour 12: The Masters (PAL)" }, { "id": "BLES01271", "name": "Generator Rex : Agent of Providence (PAL)" }, { "id": "BLES01272", "name": "Skylanders Spyro's Adventure (PAL)" }, { "id": "BLES01275", "name": "Battlefield 3 (PAL)" }, { "id": "BLES01276", "name": "Shadows of the Damned (PAL)" }, { "id": "BLES01286", "name": "Sniper: Ghost Warrior (PAL)" }, { "id": "BLES01287", "name": "Colin McRae: DiRT 3 (PAL)" }, { "id": "BLES01288", "name": "Resident Evil : Operation Raccoon City (PAL)" }, { "id": "BLES01290", "name": "Sniper Elite V2 (PAL)" }, { "id": "BLES01291", "name": "Spider-Man: Edge of Time (PAL)" }, { "id": "BLES01292", "name": "Golden Eye 007: Reloaded (PAL)" }, { "id": "BLES01294", "name": "Red Dead Redemption: Game of the Year Edition (PAL)" }, { "id": "BLES01295", "name": "Arcana Heart 3 (PAL)" }, { "id": "BLES01296", "name": "Le Tour de France (PAL)" }, { "id": "BLES01298", "name": "Need for Speed: The Run (PAL)" }, { "id": "BLES01299", "name": "The Cursed Crusade (PAL)" }, { "id": "BLES01301", "name": "Dynasty Warriors: Gundam 3 (PAL)" }, { "id": "BLES01302", "name": "Dead Rising 2 : Off The Record (PAL)" }, { "id": "BLES01303", "name": "NeverDead (PAL)" }, { "id": "BLES01304", "name": "Brink (PAL)" }, { "id": "BLES01305", "name": "Agarest: Generations of War Zero (PAL)" }, { "id": "BLES01306", "name": "The Adventures of Tintin: The Secret of the Unicorn (PAL)" }, { "id": "BLES01307", "name": "Harry Potter and the Deathly Hallows - Part 2 (PAL)" }, { "id": "BLES01308", "name": "Puss in Boots (PAL)" }, { "id": "BLES01309", "name": "Hunted: The Demond`s Forge (PAL)" }, { "id": "BLES01310", "name": "Hunted: The Demon's Forge (PAL)" }, { "id": "BLES01311", "name": "F1 2011 (PAL)" }, { "id": "BLES01314", "name": "Bodycount (PAL)" }, { "id": "BLES01315", "name": "Bleach: Soul Resurrección (PAL)" }, { "id": "BLES01316", "name": "Air Conflicts: Secret Wars (PAL)" }, { "id": "BLES01320", "name": "Madden NFL 12 (PAL)" }, { "id": "BLES01322", "name": "The Bureau: XCOM Declassified (PAL)" }, { "id": "BLES01326", "name": "The House of the Dead: Overkill Extended Cut (PAL)" }, { "id": "BLES01327", "name": "Snipers - Invisible, Silent, Deadly (PAL)" }, { "id": "BLES01328", "name": "Cars 2: The Video Game (PAL)" }, { "id": "BLES01330", "name": "The Elder Scrolls V: Skyrim (PAL)" }, { "id": "BLES01338", "name": "Get Up And Dance (PAL)" }, { "id": "BLES01340", "name": "Obut Petanque (PAL)" }, { "id": "BLES01341", "name": "Ridge Racer Unbounded (PAL)" }, { "id": "BLES01342", "name": "Stains Row: The Third (PAL)" }, { "id": "BLES01347", "name": "Warhammer 40000: Space Marine (PAL)" }, { "id": "BLES01348", "name": "LEGO Harry Potter: Years 5-7 (PAL)" }, { "id": "BLES01349", "name": "Phineas and Ferb: Across the 2nd Dimension (PAL)" }, { "id": "BLES01351", "name": "X-Men: Destiny (PAL)" }, { "id": "BLES01352", "name": "Call of Juarez: the Cartel (PAL)" }, { "id": "BLES01354", "name": "Disney Universe (PAL)" }, { "id": "BLES01355", "name": "Ultimate Marvel vs Capcom 3 (PAL)" }, { "id": "BLES01356", "name": "Dragon's Dogma (PAL)" }, { "id": "BLES01357", "name": "NHL 12 (PAL)" }, { "id": "BLES01358", "name": "Rugby World Cup 2011 (PAL)" }, { "id": "BLES01364", "name": "Hasbro Family Game Night 4 (PAL)" }, { "id": "BLES01366", "name": "Disney Universe (PAL)" }, { "id": "BLES01368", "name": "The Sims 3: Pets (PAL)" }, { "id": "BLES01371", "name": "Syndicate (PAL)" }, { "id": "BLES01373", "name": "SuperStar Kartz (PAL)" }, { "id": "BLES01376", "name": "Phineas and Ferb: Across the 2nd Dimension (PAL)" }, { "id": "BLES01377", "name": "Rage (PAL)" }, { "id": "BLES01378", "name": "Rage: Anarchy Edition (PAL)" }, { "id": "BLES01379", "name": "Marvel Super Hero Squad : Comic Combat (PAL)" }, { "id": "BLES01381", "name": "FIFA 12 (PAL)" }, { "id": "BLES01383", "name": "Everyone Sing (PAL)" }, { "id": "BLES01384", "name": "Split/Second Velocity (PAL)" }, { "id": "BLES01386", "name": "Rayman Origins (PAL)" }, { "id": "BLES01387", "name": "Rayman Origins (PAL)" }, { "id": "BLES01388", "name": "The Darkness II (PAL)" }, { "id": "BLES01390", "name": "The Darkness II (PAL)" }, { "id": "BLES01391", "name": "uDraw Studio (PAL)" }, { "id": "BLES01392", "name": "Ace Combat: Assault Horizon (PAL)" }, { "id": "BLES01393", "name": "Ace Combat: Assault Horizon (PAL)" }, { "id": "BLES01395", "name": "Blades of Time (PAL)" }, { "id": "BLES01396", "name": "Dark Souls (PAL)" }, { "id": "BLES01397", "name": "Birds of Steel (PAL)" }, { "id": "BLES01398", "name": "Risen 2: Dark Waters (PAL)" }, { "id": "BLES01399", "name": "Yakuza: Dead Souls (PAL)" }, { "id": "BLES01401", "name": "Dragon Ball Z: Ultimate Tenkaichi (PAL)" }, { "id": "BLES01402", "name": "Dark Souls: Limited Edition (PAL)" }, { "id": "BLES01403", "name": "Hitman Absolution (PAL)" }, { "id": "BLES01406", "name": "Pro Evolution Soccer 2012 (PAL)" }, { "id": "BLES01407", "name": "Pro Evolution Soccer 2012 (PAL)" }, { "id": "BLES01408", "name": "Pro Evolution Soccer 2012 (PAL)" }, { "id": "BLES01409", "name": "The King of Fighters XIII (PAL)" }, { "id": "BLES01410", "name": "Grease Dance (PAL)" }, { "id": "BLES01411", "name": "Cabela's Big Game Hunter 2012 (PAL)" }, { "id": "BLES01412", "name": "Cabela's Survival: Shadows of Katmai (PAL)" }, { "id": "BLES01413", "name": "Monkey Island (Special Edition Collection) (PAL)" }, { "id": "BLES01414", "name": "Test Drive: Ferrari Racing Legends (PAL)" }, { "id": "BLES01416", "name": "Wanted Corp. (PAL)" }, { "id": "BLES01418", "name": "NBA 2K12 (PAL)" }, { "id": "BLES01419", "name": "Metal Gear Solid: HD Collection (PAL)" }, { "id": "BLES01420", "name": "Cyberbike 2: Cycling Sports (PAL)" }, { "id": "BLES01421", "name": "Saint Seiya: Sanctuary Battle (PAL)" }, { "id": "BLES01425", "name": "Happy Feet 2 (PAL)" }, { "id": "BLES01426", "name": "Rage (PAL)" }, { "id": "BLES01427", "name": "Crash Time 4: The Syndicate (PAL)" }, { "id": "BLES01428", "name": "Call of Duty: Modern Warfare 3 (PAL)" }, { "id": "BLES01429", "name": "Call of Duty: Modern Warfare 3 (PAL)" }, { "id": "BLES01430", "name": "Call of Duty: Modern Warfare 3 (PAL)" }, { "id": "BLES01431", "name": "Call of Duty: Modern Warfare 3 (PAL)" }, { "id": "BLES01432", "name": "Call of Duty: Modern Warfare 3 (PAL)" }, { "id": "BLES01433", "name": "Call of Duty: Modern Warfare 3 (PAL)" }, { "id": "BLES01434", "name": "Call of Duty: Modern Warfare 3 (PAL)" }, { "id": "BLES01437", "name": "SSX (PAL)" }, { "id": "BLES01439", "name": "WWE 12 (PAL)" }, { "id": "BLES01440", "name": "Armored Core: V (PAL)" }, { "id": "BLES01442", "name": "WRC 2: Fia World Rally Championship (PAL)" }, { "id": "BLES01444", "name": "Schlag den Raab 2 (PAL)" }, { "id": "BLES01445", "name": "Tiger Woods PGA Tour 13 (PAL)" }, { "id": "BLES01446", "name": "Silent Hill: Downpour (PAL)" }, { "id": "BLES01447", "name": "Just Dance Kids (PAL)" }, { "id": "BLES01451", "name": "Ferrari Challenge: Trofeo Pirelli + Supercar Challenge (PAL)" }, { "id": "BLES01452", "name": "Happy Feet 2: The Video Game (PAL)" }, { "id": "BLES01453", "name": "Ferrari: The Race Experience (PAL)" }, { "id": "BLES01454", "name": "Tekken Hybrid (PAL)" }, { "id": "BLES01455", "name": "Aliens: Colonial Marines (PAL)" }, { "id": "BLES01459", "name": "Catherine (PAL)" }, { "id": "BLES01460", "name": "NCIS (PAL)" }, { "id": "BLES01461", "name": "Motionsports Adrenaline (PAL)" }, { "id": "BLES01462", "name": "Mass Effect 3 (PAL)" }, { "id": "BLES01463", "name": "Captain Morgane and the Golden Turtle (PAL)" }, { "id": "BLES01464", "name": "The Adventures of Tintin: The Secret of the Unicorn (PAL)" }, { "id": "BLES01465", "name": "Resident Evil 6 (PAL)" }, { "id": "BLES01466", "name": "Assassin's Creed: Revelations (PAL)" }, { "id": "BLES01467", "name": "Assassin's Creed: Revelations (PAL)" }, { "id": "BLES01468", "name": "Cabela's Adventure Camp (PAL)" }, { "id": "BLES01469", "name": "Ben 10: Galactic Racing (PAL)" }, { "id": "BLES01470", "name": "Order Up!! (PAL)" }, { "id": "BLES01471", "name": "The Cube (PAL)" }, { "id": "BLES01472", "name": "Rugby League Live 2 (PAL)" }, { "id": "BLES01474", "name": "Pictionary: Ultimate Edition (PAL)" }, { "id": "BLES01475", "name": "Fallout New Vegas: Ultimate Edition (PAL)" }, { "id": "BLES01478", "name": "Fallout New Vegas: Ultimate Edition (PAL)" }, { "id": "BLES01481", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (PAL)" }, { "id": "BLES01485", "name": "The Testament of Sherlock Holmes (PAL)" }, { "id": "BLES01486", "name": "Ski Doo: Snowmobile Challenge (PAL)" }, { "id": "BLES01487", "name": "BlazBlue: Continuum Shift: Extend (PAL)" }, { "id": "BLES01488", "name": "L.A. Noire: The Complete Edition (PAL)" }, { "id": "BLES01492", "name": "Sacred 3 (PAL)" }, { "id": "BLES01493", "name": "FIFA Street (PAL)" }, { "id": "BLES01494", "name": "Das Duel Männer vs Frauen (PAL)" }, { "id": "BLES01500", "name": "Absolute Supercars (PAL)" }, { "id": "BLES01501", "name": "Putty Squad (PAL)" }, { "id": "BLES01504", "name": "Silent Hill: HD Collection (PAL)" }, { "id": "BLES01507", "name": "Hyperdimension Neptunia mk2 (PAL)" }, { "id": "BLES01508", "name": "Mortal Kombat Komplete Edition (PAL)" }, { "id": "BLES01512", "name": "Captain Morgane and the Golden Turtle (PAL)" }, { "id": "BLES01516", "name": "LEGO The Lord of the Rings (PAL)" }, { "id": "BLES01517", "name": "Hitman HD Trilogy (PAL)" }, { "id": "BLES01520", "name": "Battleship (PAL)" }, { "id": "BLES01522", "name": "Just Dance 3 (PAL)" }, { "id": "BLES01524", "name": "Ninja Gaiden 3 (PAL)" }, { "id": "BLES01525", "name": "Lollipop Chainsaw (PAL)" }, { "id": "BLES01527", "name": "Sniper: Ghost Warrior 2 Limited Edition (PAL)" }, { "id": "BLES01528", "name": "Summer Stars 2012 (PAL)" }, { "id": "BLES01529", "name": "Adidas miCoach (PAL)" }, { "id": "BLES01532", "name": "Prototype 2 (PAL)" }, { "id": "BLES01533", "name": "Prototype 2 (PAL)" }, { "id": "BLES01542", "name": "Brave: The Video Game (PAL)" }, { "id": "BLES01547", "name": "The Amazing Spider-Man (PAL)" }, { "id": "BLES01548", "name": "DiRT 3 (PAL)" }, { "id": "BLES01549", "name": "Men in Black: Alien Crisis (PAL)" }, { "id": "BLES01550", "name": "Rune Factory: Oceans (PAL)" }, { "id": "BLES01551", "name": "MUD FIM Motocross World Championship (PAL)" }, { "id": "BLES01555", "name": "Ni no Kuni: Wrath of the White Witch (PAL)" }, { "id": "BLES01562", "name": "Le Tour de France 2012 (PAL)" }, { "id": "BLES01563", "name": "Damage Inc. Pacific Squadron WWII (PAL)" }, { "id": "BLES01578", "name": "DiRT Showdown (PAL)" }, { "id": "BLES01579", "name": "Game of Thrones (PAL)" }, { "id": "BLES01580", "name": "Game of Thrones (PAL)" }, { "id": "BLES01581", "name": "Ride to Hell: Retribution (PAL)" }, { "id": "BLES01582", "name": "Assassin's Creed Double Pack (PAL)" }, { "id": "BLES01586", "name": "Of Orcs and Men (PAL)" }, { "id": "BLES01587", "name": "Batman: Arkham City (PAL)" }, { "id": "BLES01588", "name": "Warriors Orochi 3 (PAL)" }, { "id": "BLES01590", "name": "Tom Clancy's Rainbow Six Vegas 2 (Complete Edition) + Ghost Recon Advanced Warfighter 2 (Double Pack) (PAL)" }, { "id": "BLES01591", "name": "Tom Clancy's Splinter Cell Double Agent / Rainbow Six Vegas (Double Pack) (PAL)" }, { "id": "BLES01593", "name": "Atelier Meruru: The Apprentice of Arland (PAL)" }, { "id": "BLES01596", "name": "Back to the Future: The Game (PAL)" }, { "id": "BLES01597", "name": "Darksiders II (PAL)" }, { "id": "BLES01601", "name": "Bejeweled 3 (PAL)" }, { "id": "BLES01602", "name": "Heavy Fire: Afghanistan (PAL)" }, { "id": "BLES01603", "name": "Madden NFL 13 (PAL)" }, { "id": "BLES01604", "name": "Air Conflicts: Pacific Carriers (PAL)" }, { "id": "BLES01610", "name": "Worms Collection (PAL)" }, { "id": "BLES01613", "name": "LEGO Batman 2: DC Super Heroes (PAL)" }, { "id": "BLES01614", "name": "007 Legends (PAL)" }, { "id": "BLES01617", "name": "Tales of Graces F (PAL)" }, { "id": "BLES01618", "name": "The Amazing Spider-Man (PAL)" }, { "id": "BLES01620", "name": "Crash Time 5: Undercover (PAL)" }, { "id": "BLES01622", "name": "Cartoon Network: Punch Time Explosion XL (PAL)" }, { "id": "BLES01623", "name": "Dead or Alive 5 (PAL)" }, { "id": "BLES01624", "name": "Madagascar 3: Europe's Most Wanted (PAL)" }, { "id": "BLES01625", "name": "Family Guy: Back to the Multiverse (PAL)" }, { "id": "BLES01627", "name": "Disney Epic Mickey 2: The Power of Two (PAL)" }, { "id": "BLES01632", "name": "Disney Pixar Brave (PAL)" }, { "id": "BLES01633", "name": "Brave: The Video Game (PAL)" }, { "id": "BLES01636", "name": "Medal of Honor Warfighter (PAL)" }, { "id": "BLES01639", "name": "Sleeping Dogs (PAL)" }, { "id": "BLES01641", "name": "Hitman: Absolution (PAL)" }, { "id": "BLES01643", "name": "Agarest: Generations of War 2 (PAL)" }, { "id": "BLES01644", "name": "Castlevania: Lords of Shadow 2 (PAL)" }, { "id": "BLES01646", "name": "Sonic & All-Stars Racing Transformed (PAL)" }, { "id": "BLES01647", "name": "SBK Generations (PAL)" }, { "id": "BLES01649", "name": "Crysis 3 (PAL)" }, { "id": "BLES01654", "name": "Enemy Front (PAL)" }, { "id": "BLES01655", "name": "Enemy Front (PAL)" }, { "id": "BLES01656", "name": "Max Payne 3 (PAL)" }, { "id": "BLES01657", "name": "Dragon Age: Inquisition (PAL)" }, { "id": "BLES01658", "name": "Dragon Ball Z Budokai HD Collection (PAL)" }, { "id": "BLES01659", "name": "Need for Speed: Most Wanted (PAL)" }, { "id": "BLES01661", "name": "Sleeping Dogs (PAL)" }, { "id": "BLES01662", "name": "Sleeping Dogs (PAL)" }, { "id": "BLES01664", "name": "F1 2012 (PAL)" }, { "id": "BLES01667", "name": "Assassin's Creed III (PAL)" }, { "id": "BLES01668", "name": "Assassin's Creed III (PAL)" }, { "id": "BLES01669", "name": "Assassin's Creed III (PAL)" }, { "id": "BLES01671", "name": "Hunter's Trophy 2: Europa (PAL)" }, { "id": "BLES01672", "name": "One Piece: Pirate Warriors (PAL)" }, { "id": "BLES01673", "name": "Injustice : Gods Among Us (Special Edition) (PAL)" }, { "id": "BLES01674", "name": "Dishonored (PAL)" }, { "id": "BLES01675", "name": "Dishonored (PAL)" }, { "id": "BLES01676", "name": "FIFA 13: Ultimate Edition (PAL)" }, { "id": "BLES01677", "name": "FIFA 13 (PAL)" }, { "id": "BLES01679", "name": "Doom 3: BFG Edition (PAL)" }, { "id": "BLES01681", "name": "Dead Island (PAL)" }, { "id": "BLES01682", "name": "Way of the Samurai 4 (PAL)" }, { "id": "BLES01684", "name": "Borderlands 2 (PAL)" }, { "id": "BLES01685", "name": "Lost Planet 3 (PAL)" }, { "id": "BLES01686", "name": "Ice Age 4: Continental Drift - Artic Games (PAL)" }, { "id": "BLES01689", "name": "Skylanders Giants (PAL)" }, { "id": "BLES01691", "name": "NHL 13 (PAL)" }, { "id": "BLES01696", "name": "Obut Petanque 2 (PAL)" }, { "id": "BLES01697", "name": "Alien: Isolation (PAL)" }, { "id": "BLES01698", "name": "DmC: Devil May Cry (PAL)" }, { "id": "BLES01699", "name": "WWE '13 (PAL)" }, { "id": "BLES01701", "name": "Remember Me (PAL)" }, { "id": "BLES01702", "name": "Tekken Tag Tournament 2 (PAL)" }, { "id": "BLES01704", "name": "Sleeping Dogs (PAL)" }, { "id": "BLES01705", "name": "BioShock Infinite (PAL)" }, { "id": "BLES01707", "name": "Port Royale 3: Pirates & Merchants (PAL)" }, { "id": "BLES01708", "name": "Pro Evolution Soccer 2013 (PAL)" }, { "id": "BLES01709", "name": "Pro Evolution Soccer 2013 (PAL)" }, { "id": "BLES01710", "name": "Pro Evolution Soccer 2013 (PAL)" }, { "id": "BLES01711", "name": "XCOM: Enemy Unknown (PAL)" }, { "id": "BLES01713", "name": "NBA 2K13 (PAL)" }, { "id": "BLES01714", "name": "Dishonored (PAL)" }, { "id": "BLES01715", "name": "F1 Race Stars (PAL)" }, { "id": "BLES01717", "name": "Call of Duty: Black Ops II (PAL)" }, { "id": "BLES01718", "name": "Call of Duty: Black Ops II (PAL)" }, { "id": "BLES01719", "name": "Call of Duty: Black Ops II (PAL)" }, { "id": "BLES01720", "name": "Call of Duty: Black Ops 2 (PAL)" }, { "id": "BLES01721", "name": "WRC 3: FIA World Rally Championship (PAL)" }, { "id": "BLES01722", "name": "Just Dance 4 (PAL)" }, { "id": "BLES01723", "name": "Mugen Souls (PAL)" }, { "id": "BLES01724", "name": "Fuse (PAL)" }, { "id": "BLES01730", "name": "Toy Story Mania! (PAL)" }, { "id": "BLES01731", "name": "South Park: The Stick of Truth (PAL)" }, { "id": "BLES01732", "name": "Angry Birds Trilogy (PAL)" }, { "id": "BLES01733", "name": "Dead Space 3 (PAL)" }, { "id": "BLES01736", "name": "Cabela's Dangerous Hunts 2013 (PAL)" }, { "id": "BLES01737", "name": "GRID 2 (PAL)" }, { "id": "BLES01738", "name": "Persona 4 Arena (PAL)" }, { "id": "BLES01739", "name": "Dead Island Riptide (PAL)" }, { "id": "BLES01744", "name": "History: Legends of War (PAL)" }, { "id": "BLES01745", "name": "Middle-earth: Shadow of Mordor (PAL)" }, { "id": "BLES01746", "name": "Pro Evolution Soccer 2013 (PAL)" }, { "id": "BLES01747", "name": "Saints Row: The Third - The Full Package (PAL)" }, { "id": "BLES01748", "name": "Saints Row : The Third (PAL)" }, { "id": "BLES01750", "name": "Metal Gear Rising: Revengeance (PAL)" }, { "id": "BLES01752", "name": "Under Defeat HD (Deluxe Edition) (PAL)" }, { "id": "BLES01753", "name": "Ben 10 Omniverse (PAL)" }, { "id": "BLES01754", "name": "Tiger Woods PGA Tour 14 (PAL)" }, { "id": "BLES01756", "name": "Zone of the Enders HD Collection (PAL)" }, { "id": "BLES01760", "name": "Rise of the Guardians (PAL)" }, { "id": "BLES01763", "name": "Army of Two: The Devil's Cartel (PAL)" }, { "id": "BLES01764", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (PAL)" }, { "id": "BLES01765", "name": "Dark Souls: Prepare to Die Edition (PAL)" }, { "id": "BLES01766", "name": "Tom Clancy's Splinter Cell: Blacklist (PAL)" }, { "id": "BLES01768", "name": "Midway Arcade Origins (PAL)" }, { "id": "BLES01773", "name": "Resident Evil: Revelations (PAL)" }, { "id": "BLES01774", "name": "Mass Effect (PAL)" }, { "id": "BLES01776", "name": "Deadly Premonition The Directors Cut (PAL)" }, { "id": "BLES01778", "name": "Hitman Absolution Complete Edition (PAL)" }, { "id": "BLES01779", "name": "The Walking Dead: Survival Instinct (PAL)" }, { "id": "BLES01780", "name": "Tomb Raider (PAL)" }, { "id": "BLES01781", "name": "Tomb Raider (PAL)" }, { "id": "BLES01783", "name": "Arcania: The Complete Tale (PAL)" }, { "id": "BLES01784", "name": "Batman: Arkham Origins (PAL)" }, { "id": "BLES01786", "name": "Iron Sky Invasion (PAL)" }, { "id": "BLES01787", "name": "Defiance (PAL)" }, { "id": "BLES01788", "name": "Hyperdimension Neptunia Victory (PAL)" }, { "id": "BLES01789", "name": "Deadpool (PAL)" }, { "id": "BLES01791", "name": "Painkiller: Hell & Damnation (PAL)" }, { "id": "BLES01792", "name": "Star Trek (PAL)" }, { "id": "BLES01793", "name": "Atelier Ayesha: The Alchemist of Dusk (PAL)" }, { "id": "BLES01794", "name": "Dragon's Dogma: Dark Arisen (PAL)" }, { "id": "BLES01796", "name": "Farming Simulator 2013 (PAL)" }, { "id": "BLES01797", "name": "The Smurfs 2 (PAL)" }, { "id": "BLES01798", "name": "Truck Racer (PAL)" }, { "id": "BLES01801", "name": "Fist of the North Star: Ken's Rage 2 (PAL)" }, { "id": "BLES01804", "name": "Yaiba Ninja Gaiden Z - Special Edition (PAL)" }, { "id": "BLES01805", "name": "MotoGP 13 (PAL)" }, { "id": "BLES01807", "name": "Grand Theft Auto V (PAL)" }, { "id": "BLES01808", "name": "Young Justice: Legacy (PAL)" }, { "id": "BLES01811", "name": "Lightning Returns Final Fantasy XIII (PAL)" }, { "id": "BLES01812", "name": "Sniper Elite V2 - Game of the Year Edition (PAL)" }, { "id": "BLES01813", "name": "Borderlands 2: Addon Pack (PAL)" }, { "id": "BLES01815", "name": "Tales of Xillia (PAL)" }, { "id": "BLES01817", "name": "The Amazing Spider-Man 2 (PAL)" }, { "id": "BLES01831", "name": "LEGO Marvel Super Heroes (PAL)" }, { "id": "BLES01832", "name": "Battlefield 4 (PAL)" }, { "id": "BLES01833", "name": "The Walking Dead: A Telltale Games Series (PAL)" }, { "id": "BLES01835", "name": "The Walking Dead: Survival Instinct (PAL)" }, { "id": "BLES01836", "name": "Murdered : Soul Suspect (PAL)" }, { "id": "BLES01840", "name": "Tom Clancy's Ghost Recon Double Pack (Future Soldier & Advanced Warfighter 2) (PAL)" }, { "id": "BLES01841", "name": "Rugby Challenge 2: The Lions Tour Edition (PAL)" }, { "id": "BLES01845", "name": "Ninja Gaiden 3 : Razor's Edge (PAL)" }, { "id": "BLES01846", "name": "Le Tour de France 2013 - 100th Edition (PAL)" }, { "id": "BLES01847", "name": "Earth Defense Force 2025 (PAL)" }, { "id": "BLES01848", "name": "Time and Eternity (PAL)" }, { "id": "BLES01849", "name": "Turbo: Super Stunt Squad (PAL)" }, { "id": "BLES01851", "name": "XCOM: Enemy Within - Commander Edition (PAL)" }, { "id": "BLES01853", "name": "NHL 14 (PAL)" }, { "id": "BLES01854", "name": "Watch Dogs (PAL)" }, { "id": "BLES01855", "name": "GRID 2 (PAL)" }, { "id": "BLES01856", "name": "Killer is Dead (PAL)" }, { "id": "BLES01857", "name": "Destiny (PAL)" }, { "id": "BLES01858", "name": "Air Conflicts: Vietnam (PAL)" }, { "id": "BLES01859", "name": "Don Bradman Cricket 14 (PAL)" }, { "id": "BLES01860", "name": "Skylanders: Swap Force (PAL)" }, { "id": "BLES01862", "name": "Rocksmith 2014 Edition (PAL)" }, { "id": "BLES01863", "name": "Rayman Legends (PAL)" }, { "id": "BLES01864", "name": "Tales of Symphonia Chronicles (PAL)" }, { "id": "BLES01865", "name": "Dynasty Warriors 8 (PAL)" }, { "id": "BLES01867", "name": "Metro: Last Light (PAL)" }, { "id": "BLES01868", "name": "Port Royale 3: Gold Edition (PAL)" }, { "id": "BLES01869", "name": "Heavy Fire: Shattered Spear (PAL)" }, { "id": "BLES01870", "name": "F1 2013 Classic Edition (PAL)" }, { "id": "BLES01874", "name": "WRC 4: FIA World Rally Championship (PAL)" }, { "id": "BLES01875", "name": "AFL Live 2 (PAL)" }, { "id": "BLES01876", "name": "FIFA 14 (PAL)" }, { "id": "BLES01880", "name": "Final Fantasy X / X-2 HD Remaster (PAL)" }, { "id": "BLES01881", "name": "Hot Wheels: World's Best Driver (PAL)" }, { "id": "BLES01882", "name": "Assassin's Creed IV: Black Flag (PAL)" }, { "id": "BLES01883", "name": "Assassin's Creed IV: Black Flag (PAL)" }, { "id": "BLES01884", "name": "Assassin's Creed IV: Black Flag (PAL)" }, { "id": "BLES01885", "name": "The Elder Scrolls V: Skyrim (Legendary Edition) (PAL)" }, { "id": "BLES01886", "name": "The Elder Scrolls V: Skyrim Legendary Edition (PAL)" }, { "id": "BLES01889", "name": "Saints Row IV (PAL)" }, { "id": "BLES01891", "name": "The Voice of Germany Volume 2 (PAL)" }, { "id": "BLES01892", "name": "Yaiba: Ninja Gaiden Z (PAL)" }, { "id": "BLES01894", "name": "Need for Speed: Rivals (PAL)" }, { "id": "BLES01897", "name": "Kingdom Hearts HD 1.5 ReMIX (PAL)" }, { "id": "BLES01898", "name": "Armored Core: Verdict Day (PAL)" }, { "id": "BLES01899", "name": "Ben 10: Omniverse 2 (PAL)" }, { "id": "BLES01900", "name": "Ultra Street Fighter IV (PAL)" }, { "id": "BLES01901", "name": "Pac-Man and the Ghostly Adventures (PAL)" }, { "id": "BLES01902", "name": "Payday 2 (PAL)" }, { "id": "BLES01907", "name": "Dead or Alive 5 Ultimate (PAL)" }, { "id": "BLES01909", "name": "Wolfenstein: The New Order (PAL)" }, { "id": "BLES01910", "name": "Wolfenstein The New Order (PAL)" }, { "id": "BLES01911", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge (PAL)" }, { "id": "BLES01913", "name": "One Piece: Pirate Warriors 2 (PAL)" }, { "id": "BLES01916", "name": "The Evil Within (PAL)" }, { "id": "BLES01920", "name": "NBA 2K14 (PAL)" }, { "id": "BLES01921", "name": "Diablo III (PAL)" }, { "id": "BLES01924", "name": "Dishonored: Game of the Year Edition (PAL)" }, { "id": "BLES01925", "name": "Dishonored: Game of the Year Edition (PAL)" }, { "id": "BLES01928", "name": "Deus Ex: Human Revolution Director's Cut (PAL)" }, { "id": "BLES01930", "name": "Pro Evolution Soccer 2014 (PAL)" }, { "id": "BLES01931", "name": "Pro Evolution Soccer 2014 (PAL)" }, { "id": "BLES01932", "name": "Pro Evolution Soccer 2014 (PAL)" }, { "id": "BLES01933", "name": "Watch Dogs (PAL)" }, { "id": "BLES01934", "name": "Watch Dogs (Russian) (PAL)" }, { "id": "BLES01935", "name": "Pro Evolution Soccer 2014 (PAL)" }, { "id": "BLES01936", "name": "Saint Seiya : Brave Soldiers (PAL)" }, { "id": "BLES01937", "name": "WWE 2K14 (PAL)" }, { "id": "BLES01938", "name": "Terraria (PAL)" }, { "id": "BLES01939", "name": "Disgaea D2 : A Brighter Darkness (PAL)" }, { "id": "BLES01940", "name": "The Guided Fate Paradox (PAL)" }, { "id": "BLES01941", "name": "Dragon Ball Z: Battle of Z (PAL)" }, { "id": "BLES01943", "name": "Angry Birds Star Wars (PAL)" }, { "id": "BLES01945", "name": "Call of Duty: Ghosts (PAL)" }, { "id": "BLES01948", "name": "Call of Duty: Ghosts (PAL)" }, { "id": "BLES01950", "name": "Dragon's Crown (PAL)" }, { "id": "BLES01952", "name": "Bound by Flame (PAL)" }, { "id": "BLES01955", "name": "Just Dance 2014 (PAL)" }, { "id": "BLES01959", "name": "Dark Souls II (PAL)" }, { "id": "BLES01961", "name": "Adventure Time: Explore the Dungeon Because I DON'T KNOW! (PAL)" }, { "id": "BLES01963", "name": "Rambo: The Video Game (PAL)" }, { "id": "BLES01964", "name": "The LEGO Movie Videogame (PAL)" }, { "id": "BLES01967", "name": "Injustice: Gods Among Us - Ultimate Edition (PAL)" }, { "id": "BLES01968", "name": "Assassin's Creed: Heritage Collection (PAL)" }, { "id": "BLES01969", "name": "DuckTales: Remastered (PAL)" }, { "id": "BLES01971", "name": "Metal Gear Solid V: Ground Zeroes (PAL)" }, { "id": "BLES01975", "name": "The Walking Dead (Game of the Year Edition) (PAL)" }, { "id": "BLES01976", "name": "Minecraft: PlayStation 3 Edition (PAL)" }, { "id": "BLES01981", "name": "Sniper Elite III (PAL)" }, { "id": "BLES01982", "name": "Thief (PAL)" }, { "id": "BLES01983", "name": "Kick-Ass 2 (PAL)" }, { "id": "BLES01984", "name": "MXGP: The Official Motocross Videogame (PAL)" }, { "id": "BLES01986", "name": "JoJo's Bizarre Adventure: All-Star Battle (PAL)" }, { "id": "BLES01987", "name": "The Witch and the Hundred Knight (PAL)" }, { "id": "BLES01988", "name": "Bloodbath (PAL)" }, { "id": "BLES01989", "name": "The Amazing Spider-Man 2 (PAL)" }, { "id": "BLES01992", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky (PAL)" }, { "id": "BLES01993", "name": "IHF Handball Challenge 14 (PAL)" }, { "id": "BLES01994", "name": "2014 FIFA World Cup Brazil (PAL)" }, { "id": "BLES01996", "name": "MotoGP 14 (PAL)" }, { "id": "BLES01997", "name": "Deception IV: Blood Ties (PAL)" }, { "id": "BLES01998", "name": "LEGO The Hobbit (PAL)" }, { "id": "BLES01999", "name": "Metro: Last Light - Complete Edition (PAL)" }, { "id": "BLES02000", "name": "Sherlock Holmes: Crimes & Punishments (PAL)" }, { "id": "BLES02001", "name": "South Park: The Stick of Truth (PAL)" }, { "id": "BLES02004", "name": "F1 2013 (PAL)" }, { "id": "BLES02005", "name": "How to Train Your Dragon 2 (PAL)" }, { "id": "BLES02006", "name": "Le Tour de France 2014 (PAL)" }, { "id": "BLES02007", "name": "Short Peace: Ranko Tsukigime's Longest Day (PAL)" }, { "id": "BLES02008", "name": "Dynasty Warriors 8: Xtreme Legends (PAL)" }, { "id": "BLES02010", "name": "Risen 3: Titan Lords (PAL)" }, { "id": "BLES02011", "name": "Far Cry 4 (PAL)" }, { "id": "BLES02012", "name": "Far Cry 4 (PAL)" }, { "id": "BLES02014", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution (PAL)" }, { "id": "BLES02018", "name": "Transformers: Rise of the Dark Spark (PAL)" }, { "id": "BLES02019", "name": "Saints Row IV - Game of the Century Edition (PAL)" }, { "id": "BLES02020", "name": "One Piece: Unlimited World Red (PAL)" }, { "id": "BLES02021", "name": "Plants vs Zombies: Garden Warfare (PAL)" }, { "id": "BLES02022", "name": "Mugen Souls Z (PAL)" }, { "id": "BLES02023", "name": "Fairy Fencer F (PAL)" }, { "id": "BLES02026", "name": "Escape Dead Island (PAL)" }, { "id": "BLES02028", "name": "Syberia Collection (PAL)" }, { "id": "BLES02029", "name": "Hatsune Miku: Project Diva F 2nd (PAL)" }, { "id": "BLES02033", "name": "LEGO Batman 3: Beyond Gotham (PAL)" }, { "id": "BLES02035", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition (PAL)" }, { "id": "BLES02036", "name": "Diablo 3: Reaper of Souls - Ultimate Evil Edition (PAL)" }, { "id": "BLES02037", "name": "NHL 15 (PAL)" }, { "id": "BLES02038", "name": "GRID Autosport (PAL)" }, { "id": "BLES02039", "name": "Battlefield: Hardline (PAL)" }, { "id": "BLES02040", "name": "Resident Evil: Revelations 2 (PAL)" }, { "id": "BLES02048", "name": "FIFA 15 (PAL)" }, { "id": "BLES02050", "name": "Atelier Rorona Plus: The Alchemist of Arland (PAL)" }, { "id": "BLES02052", "name": "Just Dance 2015 (PAL)" }, { "id": "BLES02055", "name": "Skylanders Trap Team (PAL)" }, { "id": "BLES02057", "name": "Dynasty Warriors: Gundam Reborn (PAL)" }, { "id": "BLES02058", "name": "Borderlands: The Pre-Sequel (PAL)" }, { "id": "BLES02060", "name": "Natural Doctrine (PAL)" }, { "id": "BLES02061", "name": "Assassin's Creed: Rogue (PAL)" }, { "id": "BLES02062", "name": "Assassin's Creed: Rogue (PAL)" }, { "id": "BLES02066", "name": "Disney Infinity: Marvel Super Heroes - 2.0 Edition (PAL)" }, { "id": "BLES02067", "name": "NBA 2K15 (PAL)" }, { "id": "BLES02070", "name": "Kingdom Hearts HD 2.5 ReMIX (PAL)" }, { "id": "BLES02071", "name": "Digimon All-Star Rumble (PAL)" }, { "id": "BLES02072", "name": "WWE 2K15 (PAL)" }, { "id": "BLES02077", "name": "Call of Duty: Advanced Warfare (PAL)" }, { "id": "BLES02078", "name": "Call of Duty: Advanced Warfare (PAL)" }, { "id": "BLES02080", "name": "F1 2014 (PAL)" }, { "id": "BLES02085", "name": "Assassin's Creed: Birth of a New World - The American Saga (PAL)" }, { "id": "BLES02086", "name": "Rugby 15 (PAL)" }, { "id": "BLES02087", "name": "Pro Evolution Soccer 2015 (PAL)" }, { "id": "BLES02088", "name": "Pro Evolution Soccer 2015 (PAL)" }, { "id": "BLES02090", "name": "Los 40 Principales Karaoke Party (PAL)" }, { "id": "BLES02092", "name": "La Voz Vol. 2 (PAL)" }, { "id": "BLES02093", "name": "The Evil Within (PAL)" }, { "id": "BLES02095", "name": "Saints Row: Gat Out of Hell (PAL)" }, { "id": "BLES02096", "name": "Dragon Ball: Xenoverse (PAL)" }, { "id": "BLES02097", "name": "Akiba's Trip: Undead & Undressed (PAL)" }, { "id": "BLES02102", "name": "Metal Gear Solid V – The Phantom Pain (PAL)" }, { "id": "BLES02103", "name": "Motorcycle Club (PAL)" }, { "id": "BLES02105", "name": "Lego Dimensions (PAL)" }, { "id": "BLES02108", "name": "Farming Simulator 15 (PAL)" }, { "id": "BLES02115", "name": "Tears to Tiara II: Heir of the Overlord (PAL)" }, { "id": "BLES02126", "name": "Arcana Heart 3: LOVE MAX!!!!! (PAL)" }, { "id": "BLES02127", "name": "Under Night In-Birth Exe:Late (PAL)" }, { "id": "BLES02132", "name": "LEGO Jurassic World (PAL)" }, { "id": "BLES02133", "name": "RIDE (PAL)" }, { "id": "BLES02134", "name": "Teslagrad (PAL)" }, { "id": "BLES02135", "name": "Dark Souls 2 - Scholar of the First Sin (PAL)" }, { "id": "BLES02136", "name": "J-Stars Victory VS+ (PAL)" }, { "id": "BLES02138", "name": "The Arland Atelier Trilogy (PAL)" }, { "id": "BLES02139", "name": "Madden NFL 16 (PAL)" }, { "id": "BLES02140", "name": "One Piece Pirate Warriors 3 (PAL)" }, { "id": "BLES02143", "name": "Atelier Shallie: Alchemists of the Dusk Sea (PAL)" }, { "id": "BLES02144", "name": "Kung Fu Panda: Showdown of Legendary Legends (PAL)" }, { "id": "BLES02152", "name": "Tales of Zestiria (PAL)" }, { "id": "BLES02153", "name": "NHL 16: Legacy Edition (PAL)" }, { "id": "BLES02154", "name": "Space Hulk (PAL)" }, { "id": "BLES02155", "name": "Teenage Mutant Ninja Turtles Mutants in Manhattan (PAL)" }, { "id": "BLES02161", "name": "FIFA 16 (PAL)" }, { "id": "BLES02162", "name": "MotoGP 15 (PAL)" }, { "id": "BLES02164", "name": "Godzilla (PAL)" }, { "id": "BLES02165", "name": "WRC 5 (PAL)" }, { "id": "BLES02166", "name": "Call of Duty: Black Ops III (PAL)" }, { "id": "BLES02169", "name": "LEGO Marvel's Avengers (PAL)" }, { "id": "BLES02173", "name": "Le Tour De France - Season 2014 (PAL)" }, { "id": "BLES02174", "name": "Rugby World Cup 2015 (PAL)" }, { "id": "BLES02178", "name": "Handball 16 (PAL)" }, { "id": "BLES02179", "name": "Just Dance 2016 (PAL)" }, { "id": "BLES02180", "name": "Guitar Hero Live (PAL)" }, { "id": "BLES02181", "name": "Saint Seiya Soldiers Soul (PAL)" }, { "id": "BLES02186", "name": "Rugby Challenge 3 (PAL)" }, { "id": "BLES02187", "name": "PES 2016: Pro Evolution Soccer Day One Edition (PAL)" }, { "id": "BLES02189", "name": "Barbie and Her Sisters Puppy Rescue (PAL)" }, { "id": "BLES02190", "name": "WWE 2K16 (PAL)" }, { "id": "BLES02191", "name": "NBA 2K16 (PAL)" }, { "id": "BLES02198", "name": "The Disgaea Triple Play Collection (PAL)" }, { "id": "BLES02199", "name": "Monster High New Ghoul in School (PAL)" }, { "id": "BLES02202", "name": "Tower of Guns: Special Edition (PAL)" }, { "id": "BLES02204", "name": "Assassin's Creed IV : Black Flag + Rogue (PAL)" }, { "id": "BLES02213", "name": "LEGO Star Wars: The Force Awakens (PAL)" }, { "id": "BLES02215", "name": "Game of Thrones: A Telltale Games Series (PAL)" }, { "id": "BLES02219", "name": "Grand Theft Auto: San Andreas (PAL)" }, { "id": "BLES02228", "name": "UEFA Euro 2016 (PAL)" }, { "id": "BLES02230", "name": "BlazBlue: CentralFiction (PAL)" }, { "id": "BLES02231", "name": "Just Dance 2017 (PAL)" }, { "id": "BLES02233", "name": "FIFA 17 (PAL)" }, { "id": "BLES02237", "name": "Pro Evolution Soccer 2017 (PAL)" }, { "id": "BLES02241", "name": "Odin Sphere Leifthrasir (PAL)" }, { "id": "BLES02242", "name": "NBA 2K17 (PAL)" }, { "id": "BLES02243", "name": "Handball 17 (PAL)" }, { "id": "BLES02244", "name": "The Legend of Heroes: Trails of Cold Steel II (PAL)" }, { "id": "BLES02245", "name": "Batman: The Telltale Series – Episode 1 (PAL)" }, { "id": "BLES02247", "name": "Persona 5 (PAL)" }, { "id": "BLES02250", "name": "FIFA 18 (PAL)" }, { "id": "BLES02252", "name": "Pro Evolution Soccer 2018 (PAL)" }, { "id": "BLES02254", "name": "Just Dance 2018 (PAL)" }, { "id": "BLES02255", "name": "NBA 2K18 (PAL)" }, { "id": "BLES02258", "name": "FIFA 19 (PAL)" }, { "id": "BLES02997", "name": "Borderlands: The Pre-Sequel (PAL)" }, { "id": "BLES15617", "name": "Angry Birds Trilogy (PAL)" }, { "id": "BLES30040", "name": "NASCAR '08 (PAL)" }, { "id": "BLES30213", "name": "Brain Challenge (PAL)" }, { "id": "BLES30347", "name": "Call of Juarez: Bound in Blood (PAL)" }, { "id": "BLES30592", "name": "NBA Elite 11 (PAL)" }, { "id": "BLES82001", "name": "Metal Gear Solid: The Legacy Collection (PAL)" }, { "id": "BLJM10030", "name": "Guitar Hero Aerosmith (NTSC-J)" }, { "id": "BLJM10170", "name": "Borderlands (NTSC-J)" }, { "id": "BLJM55001", "name": "Tom Clancy's Rainbow Six: Vegas (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55002", "name": "Wangan Midnight (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55003", "name": "Bladestorm: Hyakunen Sensou (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55004", "name": "Gundam Musou (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55005", "name": "Armored Core: For Answer (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55006", "name": "Ryu ga Gotoku Kenzan! (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55007", "name": "Lost Planet: Extreme Condition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55008", "name": "Senjou no Valkyria (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55009", "name": "Shin Sangoku Musou 5 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55010", "name": "Devil May Cry 4 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55011", "name": "Grand Theft Auto IV (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55012", "name": "Ryu ga Gotoku 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55013", "name": "Initial D Extreme Stage (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55014", "name": "Lost Planet: Extreme Condition (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55015", "name": "Gundam Musou 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55016", "name": "Bayonetta (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55017", "name": "Devil May Cry 4 (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55018", "name": "Rorona no Atelier: Arland no Renkinjutsushi (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55019", "name": "BioHazard 5: Alternative Edition (NTSC-J)" }, { "id": "BLJM55020", "name": "Shin Sangoku Musou 5 Empires (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55021", "name": "Ryu ga Gotoku 4: Densetsu o Tsugumono (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55022", "name": "Ninja Gaiden Sigma 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55023", "name": "Lost Planet 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55024", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55025", "name": "Ryu ga Gotoku Kenzan! (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55026", "name": "Ryu ga Gotoku 3 (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55027", "name": "Senjou no Valkyria (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55028", "name": "Initial D Extreme Stage (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55029", "name": "Wangan Midnight (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55030", "name": "Fallout: New Vegas (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55031", "name": "Musou Orochi Z (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55032", "name": "Rya ga Gotoku 4 Densetsu wo Tsugumono (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55033", "name": "Sengoku Basara 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55034", "name": "Nobunaga no Yabou: Tendou (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55035", "name": "Dead Rising 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55036", "name": "Super Street Fighter IV: Arcade Edition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55037", "name": "The Elder Scrolls IV: Oblivion (NTSC-J)" }, { "id": "BLJM55038", "name": "Fallout 3 (PlayStation 3 the Best) (Game of the Year Edition) (NTSC-J)" }, { "id": "BLJM55039", "name": "Atelier Rorona: The Alchemist of Arland (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55040", "name": "Atelier Totori: Alchemist of Arland 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55041", "name": "Atelier Meruru: Alchemist of Arland 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55042", "name": "Gundam Musou 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55043", "name": "Shin Sangoku Musou 5 Empires (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55044", "name": "Troy Musou (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55045", "name": "Shin Sangoku Musou 5 (PlayStation 3 the Best) (New Price Version) (NTSC-J)" }, { "id": "BLJM55046", "name": "Ninja Gaiden Sigma (PlayStation 3 the Best) (New Price Version) (NTSC-J)" }, { "id": "BLJM55047", "name": "Sengoku Musou 3 Z (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55048", "name": "BioHazard: Revival Selection (NTSC-J)" }, { "id": "BLJM55049", "name": "Sengoku Basara 3 Utage (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55050", "name": "Bladestorm: Hyakunen Sensou (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55051", "name": "Shin Sangoku Musou 6 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55052", "name": "Sengoku Musou 3 Empires (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55053", "name": "Dragon's Dogma (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55054", "name": "Ryu ga Gotoku: Of the End (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55055", "name": "Metal Gear Solid: Peace Walker HD Edition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55056", "name": "Metal Gear Solid HD Edition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55057", "name": "Monster Hunter Portable 3rd HD Ver. (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55058", "name": "Shin Sangoku Musou 6 Moushouden (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55059", "name": "The Elder Scrolls V: Skyrim (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55060", "name": "BlazBlue: Continuum Shift Extend (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55061", "name": "Okami: Zekkeiban HD Remaster (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55062", "name": "Battlefield 3 (NTSC-J)" }, { "id": "BLJM55063", "name": "Zone of the Enders: HD Edition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55064", "name": "BioHazard Chronicles HD Selection (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55065", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55066", "name": "Shin Sangoku Musou 6 Empires (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55067", "name": "Musou Orochi 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55068", "name": "BioHazard: Revival Selection (PlayStation 3 the Best) (Best Price Version) (NTSC-J)" }, { "id": "BLJM55069", "name": "BioHazard 6 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55071", "name": "BioHazard Revelations: Unveiled Edition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55073", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM55074", "name": "Nobunaga no Yabou: Tendou with Power-Up Kit (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55075", "name": "Sangokushi 12 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55076", "name": "Ryu ga Gotoku 1&2 HD Edition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55077", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJM55078", "name": "Okami Zekkeihan (PlayStation 3 the Best with Soundtrack CD) (NTSC-J)" }, { "id": "BLJM55079", "name": "Eiyuu Densetsu: Sen no Kiseki (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM55081", "name": "Shallie no Atelier: Tasogare no Umi no Renkinjutsushi (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM57001", "name": "Metal Gear Solid 4: Guns of the Patriots (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM60006", "name": "Sonic the Hedgehog (NTSC-J)" }, { "id": "BLJM60007", "name": "Miyazato San Kyoudai Naizou: Sega Golf Club (NTSC-J)" }, { "id": "BLJM60008", "name": "Mahjong Kakutou Club: Zenkoku Taisenban (NTSC-J)" }, { "id": "BLJM60009", "name": "Bladestorm: Hyakunen Sensou (NTSC-J)" }, { "id": "BLJM60011", "name": "Mahjong Taikai IV" }, { "id": "BLJM60013", "name": "Railfan (NTSC-J)" }, { "id": "BLJM60014", "name": "Need for Speed: Carbon (NTSC-J)" }, { "id": "BLJM60016", "name": "Virtua Fighter 5 (NTSC-J)" }, { "id": "BLJM60017", "name": "Power Smash 3 / Virtua Tennis 3 (NTSC-J)" }, { "id": "BLJM60018", "name": "Gundam Musou (NTSC-J)" }, { "id": "BLJM60019", "name": "Winning Post 7 Maximum 2007 (NTSC-J)" }, { "id": "BLJM60020", "name": "Fight Night: Round 3 (NTSC-J)" }, { "id": "BLJM60022", "name": "Mist of Chaos (NTSC-J)" }, { "id": "BLJM60023", "name": "Pro Yakyuu Spirits 4 (NTSC-J)" }, { "id": "BLJM60024", "name": "Tom Clancy's Rainbow Six: Vegas (NTSC-J)" }, { "id": "BLJM60025", "name": "NBA Street : Homecourt (NTSC-J)" }, { "id": "BLJM60026", "name": "Marvel: Ultimate Alliance (NTSC-J)" }, { "id": "BLJM60027", "name": "Call of Duty 3 (NTSC-J)" }, { "id": "BLJM60028", "name": "Wangan Midnight (NTSC-J)" }, { "id": "BLJM60029", "name": "Def Jam: Icon (NTSC-J)" }, { "id": "BLJM60030", "name": "Tony Hawk's Project 8 (NTSC-J)" }, { "id": "BLJM60031", "name": "Major League Baseball 2K7 (NTSC-J)" }, { "id": "BLJM60032", "name": "The Elder Scrolls IV: Oblivion (NTSC-J)" }, { "id": "BLJM60033", "name": "Yamasa Digi World SP: Pachi-Slot Sengoku Musou (NTSC-J)" }, { "id": "BLJM60034", "name": "Pirates of the Caribbean: At World's End (NTSC-J)" }, { "id": "BLJM60035", "name": "World Soccer Winning Eleven 2008 (NTSC-J)" }, { "id": "BLJM60036", "name": "Megazone 23: Aoi Garland (Limited Edition) (NTSC-J)" }, { "id": "BLJM60037", "name": "Megazone 23: Aoi Garland (NTSC-J)" }, { "id": "BLJM60038", "name": "Record of Agarest War (NTSC-J)" }, { "id": "BLJM60039", "name": "Disney/Pixar Remy no Oishii Restaurant (NTSC-J)" }, { "id": "BLJM60040", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (NTSC-J)" }, { "id": "BLJM60041", "name": "Shin Sangoku Musou 5 (NTSC-J)" }, { "id": "BLJM60042", "name": "Imabikisou (NTSC-J)" }, { "id": "BLJM60043", "name": "The Godfather: The Don's Edition (NTSC-J)" }, { "id": "BLJM60044", "name": "Need for Speed: Carbon (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60045", "name": "NBA Live 08 (NTSC-J)" }, { "id": "BLJM60046", "name": "FIFA 08: World Class Soccer (NTSC-J)" }, { "id": "BLJM60047", "name": "WWE SmackDown vs. Raw 2008 (NTSC-J)" }, { "id": "BLJM60048", "name": "Harry Potter to Fushichou no Kishidan (NTSC-J)" }, { "id": "BLJM60049", "name": "G1 Jockey 4 2007" }, { "id": "BLJM60050", "name": "Assassin's Creed (NTSC-J)" }, { "id": "BLJM60051", "name": "Conan (NTSC-J)" }, { "id": "BLJM60052", "name": "Stuntman: Ignition (NTSC-J)" }, { "id": "BLJM60053", "name": "Burnout Paradise (NTSC-J)" }, { "id": "BLJM60054", "name": "Medal of Honor: Airborne (NTSC-J)" }, { "id": "BLJM60055", "name": "Initial D Extreme Stage (NTSC-J)" }, { "id": "BLJM60056", "name": "Devil May Cry 4 (NTSC-J)" }, { "id": "BLJM60057", "name": "Sega Rally: Revo (NTSC-J)" }, { "id": "BLJM60058", "name": "Drift Nights: Juiced 2 (NTSC-J)" }, { "id": "BLJM60059", "name": "Need for Speed: ProStreet (NTSC-J)" }, { "id": "BLJM60060", "name": "Vampire Rain: Altered Species (NTSC-J)" }, { "id": "BLJM60061", "name": "Lost Planet: Extreme Condition (NTSC-J)" }, { "id": "BLJM60062", "name": "Armored Core 4 (The Best Collection) (NTSC-J)" }, { "id": "BLJM60064", "name": "Ryu ga Gotoku Kenzan! (NTSC-J)" }, { "id": "BLJM60065", "name": "Tears to Tiara : Kakan no Daichi (Limited Edition) (NTSC-J)" }, { "id": "BLJM60066", "name": "Armored Core: For Answer (NTSC-J)" }, { "id": "BLJM60067", "name": "Winning Post 7 Maximum 2008 (NTSC-J)" }, { "id": "BLJM60068", "name": "Lyra no Bouken: Ougon no Rashinban (NTSC-J)" }, { "id": "BLJM60069", "name": "Army of Two (NTSC-J)" }, { "id": "BLJM60070", "name": "Skate (NTSC-J)" }, { "id": "BLJM60071", "name": "Battlefield: Bad Company (NTSC-J)" }, { "id": "BLJM60072", "name": "Blazing Angels 2: Secret Missions of WWII (NTSC-J)" }, { "id": "BLJM60074", "name": "Tom Clancy's Rainbow Six: Vegas 2 (NTSC-J)" }, { "id": "BLJM60075", "name": "Pro Yakyuu Spirits 5 (NTSC-J)" }, { "id": "BLJM60076", "name": "Turok (NTSC-J)" }, { "id": "BLJM60077", "name": "Battle Fantasia (NTSC-J)" }, { "id": "BLJM60078", "name": "Stranglehold (NTSC-J)" }, { "id": "BLJM60079", "name": "FIFA Street 3 (NTSC-J)" }, { "id": "BLJM60080", "name": "Beijing 2008: The Official Video Game of the Olympic Games (NTSC-J)" }, { "id": "BLJM60081", "name": "Tears to Tiara : Kakan no Daichi (NTSC-J)" }, { "id": "BLJM60082", "name": "Metal Gear Online (NTSC-J)" }, { "id": "BLJM60084", "name": "WALL-E (NTSC-J)" }, { "id": "BLJM60086", "name": "X Edge (NTSC-J)" }, { "id": "BLJM60088", "name": "Madden NFL 09 Eigoban (NTSC-J)" }, { "id": "BLJM60089", "name": "Saints Row 2 (NTSC-J)" }, { "id": "BLJM60090", "name": "Unreal Tournament III (NTSC-J)" }, { "id": "BLJM60091", "name": "Def Jam: Icon (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60092", "name": "Fight Night Round 3 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60093", "name": "Grand Theft Auto IV (NTSC-J)" }, { "id": "BLJM60094", "name": "Tears to Tiara : Kakan no Daichi (AquaPrice 2800) (NTSC-J)" }, { "id": "BLJM60095", "name": "FaceBreaker (NTSC-J)" }, { "id": "BLJM60096", "name": "NBA Live 09 (NTSC-J)" }, { "id": "BLJM60097", "name": "WWE SmackDown Vs. Raw 2009 (NTSC-J)" }, { "id": "BLJM60098", "name": "WORLD SOCCER Winning Eleven 2009 (NTSC-J)" }, { "id": "BLJM60099", "name": "Major League Baseball 2K8 (NTSC-J)" }, { "id": "BLJM60100", "name": "Brothers in Arms: Hell's Highway (NTSC-J)" }, { "id": "BLJM60101", "name": "Mercenaries 2: World in Flames (NTSC-J)" }, { "id": "BLJM60102", "name": "Virtua Tennis 3 (Sega the Best) / Power Smash 3 (Sega the Best) (NTSC-J)" }, { "id": "BLJM60103", "name": "FIFA 09 World Class Soccer (NTSC-J)" }, { "id": "BLJM60104", "name": "Mirror's edge (NTSC-J)" }, { "id": "BLJM60105", "name": "Mahjong Taikai IV (Koei the Best) (NTSC-J)" }, { "id": "BLJM60107", "name": "Prince of Persia (NTSC-J)" }, { "id": "BLJM60108", "name": "Far Cry 2 (NTSC-J)" }, { "id": "BLJM60110", "name": "Assassin's Creed (NTSC-J)" }, { "id": "BLJM60112", "name": "Sonic World Adventure (NTSC-J)" }, { "id": "BLJM60113", "name": "The Godfather: The Don's Edition (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60114", "name": "Medal of Honor: Airborne (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60115", "name": "Need for Speed: Undercover (NTSC-J)" }, { "id": "BLJM60116", "name": "Alone in the Dark (NTSC-J)" }, { "id": "BLJM60117", "name": "Virtua Fighter 5 (Sega the Best) (NTSC-J)" }, { "id": "BLJM60120", "name": "Pro Yakyuu Spirits 5 Kanzenban (NTSC-J)" }, { "id": "BLJM60122", "name": "Extreme Racing: Pure (NTSC-J)" }, { "id": "BLJM60124", "name": "Bionic Commando (NTSC-J)" }, { "id": "BLJM60125", "name": "Sega Rally: Revo (Sega the Best) (NTSC-J)" }, { "id": "BLJM60127", "name": "Drift Nights: Juiced 2 (THQ Collection) (NTSC-J)" }, { "id": "BLJM60128", "name": "Tom Clancy's EndWar with Headset (NTSC-J)" }, { "id": "BLJM60129", "name": "Daikoukai Jidai Online: El Oriente (NTSC-J)" }, { "id": "BLJM60130", "name": "Street Fighter IV (NTSC-J)" }, { "id": "BLJM60131", "name": "Shaun White Snowboarding (NTSC-J)" }, { "id": "BLJM60132", "name": "Ryu ga Gotoku 3" }, { "id": "BLJM60133", "name": "Burnout Paradise: The Ultimate Box (NTSC-J)" }, { "id": "BLJM60134", "name": "Skate 2 (NTSC-J)" }, { "id": "BLJM60135", "name": "NBA Live 08 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60136", "name": "Tom Clancy's EndWar (NTSC-J)" }, { "id": "BLJM60137", "name": "007: Nagusame no Houshuu (NTSC-J)" }, { "id": "BLJM60138", "name": "The Godfather II (NTSC-J)" }, { "id": "BLJM60139", "name": "Musou Orochi Z (NTSC-J)" }, { "id": "BLJM60140", "name": "Winning Post World (NTSC-J)" }, { "id": "BLJM60141", "name": "Skate (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60142", "name": "Army of Two (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60143", "name": "Need for Speed: ProStreet (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60144", "name": "Tom Clancy's H.A.W.X. (NTSC-J)" }, { "id": "BLJM60146", "name": "Legends of Wrestlemania (NTSC-J)" }, { "id": "BLJM60147", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (Ubi the Best) (NTSC-J)" }, { "id": "BLJM60149", "name": "X Blades (NTSC-J)" }, { "id": "BLJM60150", "name": "Stranglehold (Good Price) (NTSC-J)" }, { "id": "BLJM60151", "name": "Record Of Agarest War (NTSC-J)" }, { "id": "BLJM60152", "name": "Operation Flashpoint: Dragon Rising (NTSC-J)" }, { "id": "BLJM60153", "name": "Call of Juarez: Chi no Kizuna (NTSC-J)" }, { "id": "BLJM60154", "name": "Rorona no Atelier: Arland no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM60155", "name": "Agarest Senki Zero (Limited Edition) (NTSC-J)" }, { "id": "BLJM60156", "name": "Agarest Senki Zero (NTSC-J)" }, { "id": "BLJM60157", "name": "BlazBlue: Calamity Trigger (NTSC-J)" }, { "id": "BLJM60158", "name": "Battlefield: Bad Company (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60159", "name": "Tom Clancy's Rainbow Six: Vegas 2 (Ubi the Best) (NTSC-J)" }, { "id": "BLJM60160", "name": "F.E.A.R. 2: Project Origin (NTSC-J)" }, { "id": "BLJM60161", "name": "Trinity Universe (Limited Edition) (NTSC-J)" }, { "id": "BLJM60162", "name": "Trinity Universe (NTSC-J)" }, { "id": "BLJM60164", "name": "UFC 2009: Undisputed (NTSC-J)" }, { "id": "BLJM60165", "name": "Tears to Tiara Gaiden : Avalon no Nazo (Limited Edition) (NTSC-J)" }, { "id": "BLJM60166", "name": "Tears to Tiara Gaiden : Avalon no Nazo (NTSC-J)" }, { "id": "BLJM60167", "name": "Need for Speed: Shift (NTSC-J)" }, { "id": "BLJM60168", "name": "Ninja Gaiden Sigma 2 (NTSC-J)" }, { "id": "BLJM60169", "name": "Terminator Salvation (NTSC-J)" }, { "id": "BLJM60172", "name": "Shin Sangoku Musou MultiRaid Special (NTSC-J)" }, { "id": "BLJM60173", "name": "Call of Duty 4: Modern Warfare (NTSC-J)" }, { "id": "BLJM60174", "name": "Bayonetta (NTSC-J)" }, { "id": "BLJM60176", "name": "WORLD SOCCER Winning Eleven 2010 (NTSC-J)" }, { "id": "BLJM60177", "name": "Lost Planet 2 (NTSC-J)" }, { "id": "BLJM60178", "name": "Collin McRae: DiRT 2 (NTSC-J)" }, { "id": "BLJM60179", "name": "WWE Smackdown vs. Raw 2010 (NTSC-J)" }, { "id": "BLJM60180", "name": "3D Dot Game Heroes (NTSC-J)" }, { "id": "BLJM60181", "name": "Mirror's Edge (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60182", "name": "Mercenaries 2: World in Flames (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60184", "name": "Shaun White Snowboarding (UBI the Best) (NTSC-J)" }, { "id": "BLJM60185", "name": "Assassin's Creed II (NTSC-J)" }, { "id": "BLJM60187", "name": "End of Eternity (NTSC-J)" }, { "id": "BLJM60188", "name": "Daikoukai Jidai Online: El Oriente (NTSC-J)" }, { "id": "BLJM60189", "name": "Star Ocean: The Last Hope International (NTSC-J)" }, { "id": "BLJM60190", "name": "X Edge (Compile Heart Selection) (NTSC-J)" }, { "id": "BLJM60191", "name": "Call of Duty: Modern Warfare 2 (NTSC-J)" }, { "id": "BLJM60192", "name": "Gundam Musou 2 (Gundam 30th Anniversary Collection) (NTSC-J)" }, { "id": "BLJM60193", "name": "Batman: Arkham Asylum (NTSC-J)" }, { "id": "BLJM60194", "name": "Fight Night : Round 4 (NTSC-J)" }, { "id": "BLJM60195", "name": "Need for Speed: Undercover (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60197", "name": "Battlefield: Bad Company 2 (NTSC-J)" }, { "id": "BLJM60199", "name": "BioHazard 5: Alternative Edition (NTSC-J)" }, { "id": "BLJM60200", "name": "God of War Collection (NTSC-J)" }, { "id": "BLJM60201", "name": "Skate 2 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60202", "name": "Dante's Inferno: Shinkyoku Jigoku-Hen (NTSC-J)" }, { "id": "BLJM60203", "name": "Super Street Fighter IV Arcade Edition (NTSC-J)" }, { "id": "BLJM60204", "name": "Darksiders" }, { "id": "BLJM60205", "name": "Pro Yakyuu Spirits 2010 (NTSC-J)" }, { "id": "BLJM60206", "name": "Front Mission Evolved (NTSC-J)" }, { "id": "BLJM60207", "name": "Power Smash: Live Match! (NTSC-J)" }, { "id": "BLJM60209", "name": "Winter Sports 2010: The Great Tournament (NTSC-J)" }, { "id": "BLJM60210", "name": "Winning Post World 2010 (NTSC-J)" }, { "id": "BLJM60211", "name": "Nobunaga no Yabou: Tendou (NTSC-J)" }, { "id": "BLJM60212", "name": "Trinity: Zill O'll Zero (NTSC-J)" }, { "id": "BLJM60213", "name": "BlazBlue: Calamity Trigger (Arc System Works Best Selection) (NTSC-J)" }, { "id": "BLJM60214", "name": "Quantum Theory (NTSC-J)" }, { "id": "BLJM60215", "name": "Catherine (NTSC-J)" }, { "id": "BLJM60216", "name": "Army of Two: The 40th Day (NTSC-J)" }, { "id": "BLJM60217", "name": "The Godfather II (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60218", "name": "Sengoku Basara 3 (NTSC-J)" }, { "id": "BLJM60219", "name": "Tom Clancy's Ghost Recon: Future Soldier (NTSC-J)" }, { "id": "BLJM60220", "name": "Singularity (NTSC-J)" }, { "id": "BLJM60221", "name": "Dead Rising 2 (NTSC-J)" }, { "id": "BLJM60222", "name": "2010 FIFA World Cup South Africa (NTSC-J)" }, { "id": "BLJM60223", "name": "NieR RepliCant (NTSC-J)" }, { "id": "BLJM60224", "name": "World Soccer Winning Eleven 2010: Aoki Samurai no Chousen (NTSC-J)" }, { "id": "BLJM60225", "name": "Tom Clancy's H.A.W.X. (Ubi the Best) (NTSC-J)" }, { "id": "BLJM60226", "name": "X Blades (UBI the Best) (NTSC-J)" }, { "id": "BLJM60227", "name": "Vanquish (NTSC-J)" }, { "id": "BLJM60228", "name": "White Album: Tsuzurareru Fuyu no Omoide (Limited Edition) (NTSC-J)" }, { "id": "BLJM60229", "name": "White Album: Tsuzurareru Fuyu no Omoide (NTSC-J)" }, { "id": "BLJM60232", "name": "Just Cause 2 (NTSC-J)" }, { "id": "BLJM60233", "name": "Assassin's Creed II: Special Edition (NTSC-J)" }, { "id": "BLJM60234", "name": "Prince of Persia: Boukyaku no Suna (NTSC-J)" }, { "id": "BLJM60235", "name": "Grand Theft Auto: Episodes from Liberty City (NTSC-J)" }, { "id": "BLJM60236", "name": "Race Driver: GRID (Codemasters the Best) (NTSC-J)" }, { "id": "BLJM60237", "name": "BlazBlue: Continuum Shift (Limited Box) (NTSC-J)" }, { "id": "BLJM60238", "name": "BlazBlue: Continuum Shift (NTSC-J)" }, { "id": "BLJM60239", "name": "Saints Row 2 (THQ Collection) (NTSC-J)" }, { "id": "BLJM60240", "name": "Hakuouki: Junsouroku (NTSC-J)" }, { "id": "BLJM60241", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (NTSC-J)" }, { "id": "BLJM60242", "name": "Tom Clancy's H.A.W.X. 2 (NTSC-J)" }, { "id": "BLJM60244", "name": "Blur Racerz (NTSC-J)" }, { "id": "BLJM60246", "name": "Chou Jigen Game: Neptune (Limited Edition) (NTSC-J)" }, { "id": "BLJM60247", "name": "Chou Jigen Game: Neptune (NTSC-J)" }, { "id": "BLJM60248", "name": "Arcana Heart 3 (NTSC-J)" }, { "id": "BLJM60250", "name": "Assassin's Creed: Brotherhood (NTSC-J)" }, { "id": "BLJM60251", "name": "Split/Second (NTSC-J)" }, { "id": "BLJM60252", "name": "Kane & Lynch 2: Dog Days (NTSC-J)" }, { "id": "BLJM60253", "name": "Nobunaga no Yabou Online: Shinsei no Shou (NTSC-J)" }, { "id": "BLJM60254", "name": "Agarest Senki Zero (Compile Heart Selection) (NTSC-J)" }, { "id": "BLJM60255", "name": "Nurarihyon no Mago: Hyakki Ryouran Taisen (NTSC-J)" }, { "id": "BLJM60256", "name": "Marvel vs. Capcom 3: Fate of Two Worlds (NTSC-J)" }, { "id": "BLJM60258", "name": "Ken to Mahou to Gakuen Mono. 3 (NTSC-J)" }, { "id": "BLJM60259", "name": "Madden NFL '11 (NTSC-J)" }, { "id": "BLJM60260", "name": "FIFA 10 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60261", "name": "NBA Live 10 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60262", "name": "Need for Speed: Shift (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60263", "name": "Winning Post 7 2010 (NTSC-J)" }, { "id": "BLJM60264", "name": "Fuel (Codemasters the Best) (NTSC-J)" }, { "id": "BLJM60265", "name": "Red Dead Redemption (NTSC-J)" }, { "id": "BLJM60266", "name": "EA Sports Sougoukakutougi (NTSC-J)" }, { "id": "BLJM60268", "name": "Two Worlds II (NTSC-J)" }, { "id": "BLJM60269", "name": "Call of Duty: Modern Warfare 2 (NTSC-J)" }, { "id": "BLJM60270", "name": "Mafia II (NTSC-J)" }, { "id": "BLJM60271", "name": "WORLD SOCCER Winning Eleven 2011 (NTSC-J)" }, { "id": "BLJM60272", "name": "Mindjack (NTSC-J)" }, { "id": "BLJM60273", "name": "Agarest Senki 2 (NTSC-J)" }, { "id": "BLJM60275", "name": "Medal of Honor (NTSC-J)" }, { "id": "BLJM60277", "name": "NBA 2K11 (NTSC-J)" }, { "id": "BLJM60278", "name": "Ken to Mahou to Gakuen Mono 2G (NTSC-J)" }, { "id": "BLJM60279", "name": "Borderlands (NTSC-J)" }, { "id": "BLJM60280", "name": "Agarest Senki 2 (Limited Edition) (NTSC-J)" }, { "id": "BLJM60282", "name": "Fallout New Vegas (NTSC-J)" }, { "id": "BLJM60284", "name": "Castlevania: Lords of Shadow (NTSC-J)" }, { "id": "BLJM60285", "name": "The Sims 3 (NTSC-J)" }, { "id": "BLJM60286", "name": "Call of Duty: Black Ops (NTSC-J)" }, { "id": "BLJM60287", "name": "Call of Duty: Black Ops (NTSC-J)" }, { "id": "BLJM60289", "name": "Shaun White Skateboarding (NTSC-J)" }, { "id": "BLJM60290", "name": "Shin Sangoku Musou Online: Souten Ranbu (NTSC-J)" }, { "id": "BLJM60291", "name": "Shin Sangoku Musou 6 (NTSC-J)" }, { "id": "BLJM60292", "name": "Umineko no Naku Koro ni: Majo to Suiri no Rinbukyoku (NTSC-J)" }, { "id": "BLJM60294", "name": "Gekiatsu!! Pachi Game Tamashi: CR Evangelion - Hajimari no Fukuin (NTSC-J)" }, { "id": "BLJM60295", "name": "Battlefield: Bad Company 2 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60296", "name": "Skate 3 (NTSC-J)" }, { "id": "BLJM60297", "name": "Need for Speed: Hot Pursuit (NTSC-J)" }, { "id": "BLJM60298", "name": "End of Eternity (Sega the Best) (NTSC-J)" }, { "id": "BLJM60299", "name": "Dante's Inferno: Shinkyoku Jigoku-Hen (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60300", "name": "Gundam Musou 3 (NTSC-J)" }, { "id": "BLJM60301", "name": "Blood Stone 007 (NTSC-J)" }, { "id": "BLJM60302", "name": "Castlevania: Lords of Shadow (NTSC-J)" }, { "id": "BLJM60303", "name": "Hokuto Musou International (NTSC-J)" }, { "id": "BLJM60304", "name": "Collin McRae: DiRT 2 (Codemasters the Best) (NTSC-J)" }, { "id": "BLJM60305", "name": "Max Anarchy (NTSC-J)" }, { "id": "BLJM60306", "name": "Final Fantasy XIV Online: Shinsei Eorzea (NTSC-J)" }, { "id": "BLJM60307", "name": "Troy Musou (NTSC-J)" }, { "id": "BLJM60308", "name": "Army of Two: The 40th Day (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60309", "name": "Fight Night Round 4 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60311", "name": "Crysis 2 (NTSC-J)" }, { "id": "BLJM60312", "name": "Wizardry Twin Pack (NTSC-J)" }, { "id": "BLJM60313", "name": "Sengoku Musou 3 Z (NTSC-J)" }, { "id": "BLJM60314", "name": "Red Dead Redemption: Undead Nightmare (NTSC-J)" }, { "id": "BLJM60315", "name": "Operation Flashpoint: Dragon Rising (Codemasters the Best) (NTSC-J)" }, { "id": "BLJM60316", "name": "Ryu ga Gotoku: Of the End (NTSC-J)" }, { "id": "BLJM60317", "name": "Bulletstorm (NTSC-J)" }, { "id": "BLJM60318", "name": "Test Drive Unlimited 2 (NTSC-J)" }, { "id": "BLJM60319", "name": "Daikoukai Jidai Online: Tierra Americana (NTSC-J)" }, { "id": "BLJM60320", "name": "Racket Sports (NTSC-J)" }, { "id": "BLJM60321", "name": "L@ve Once: Mermaid's Tears (First Print Limited Edition) (NTSC-J)" }, { "id": "BLJM60322", "name": "L@ve Once: Mermaid's Tears (NTSC-J)" }, { "id": "BLJM60323", "name": "Mamoru-kun wa Norowarete Shimatta! Meikai Katsugeki Wide-Han (NTSC-J)" }, { "id": "BLJM60324", "name": "WRC: FIA World Rally Championship (NTSC-J)" }, { "id": "BLJM60326", "name": "Slotter Chou Mania: Antonio Inoki ga Genki ni Suru Pachi-Slot Ki (NTSC-J)" }, { "id": "BLJM60327", "name": "Hiiro no Kakera Aizouban: Akane Iro no Tsuioku (Limited Edition) (NTSC-J)" }, { "id": "BLJM60328", "name": "Hiiro no Kakera Aizouban: Akane Iro no Tsuioku (NTSC-J)" }, { "id": "BLJM60329", "name": "Clannad (NTSC-J)" }, { "id": "BLJM60333", "name": "Hunted: The Demon's Forge (NTSC-J)" }, { "id": "BLJM60335", "name": "Michael Jackson: The Experience (NTSC-J)" }, { "id": "BLJM60336", "name": "Child of Eden (NTSC-J)" }, { "id": "BLJM60337", "name": "Jikkyou Powerful Pro Yakyuu 2011 (NTSC-J)" }, { "id": "BLJM60338", "name": "Star Ocean: The Last Hope International (Ultimate Hits) (NTSC-J)" }, { "id": "BLJM60339", "name": "NieR RepliCant (Ultimate Hits) (NTSC-J)" }, { "id": "BLJM60340", "name": "LEGO Harry Potter: Years 1-4 (NTSC-J)" }, { "id": "BLJM60341", "name": "Dead Rising 2: Off the Record (NTSC-J)" }, { "id": "BLJM60342", "name": "BioHazard: Operation Raccoon City (NTSC-J)" }, { "id": "BLJM60343", "name": "L.A. Noire (NTSC-J)" }, { "id": "BLJM60344", "name": "Medal of Honor (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60345", "name": "Nobunaga no Yabou: Tendou with Power-Up Kit (NTSC-J)" }, { "id": "BLJM60347", "name": "Dunamis 15 (NTSC-J)" }, { "id": "BLJM60348", "name": "Meruru no Atelier: Arland no Renkinjutsushi 3 (NTSC-J)" }, { "id": "BLJM60349", "name": "F.E.A.R. 3 (NTSC-J)" }, { "id": "BLJM60351", "name": "Metal Gear Solid: Peace Walker HD Edition (NTSC-J)" }, { "id": "BLJM60354", "name": "NeverDead (NTSC-J)" }, { "id": "BLJM60355", "name": "Brink (NTSC-J)" }, { "id": "BLJM60356", "name": "Power Smash 4 (NTSC-J)" }, { "id": "BLJM60358", "name": "Shadows of the Damned (NTSC-J)" }, { "id": "BLJM60359", "name": "Alice: Madness Returns (NTSC-J)" }, { "id": "BLJM60361", "name": "Operation Flashpoint: Red River (NTSC-J)" }, { "id": "BLJM60362", "name": "Colin McRae: DiRT 3 (NTSC-J)" }, { "id": "BLJM60363", "name": "Devil May Cry: HD Collection (NTSC-J)" }, { "id": "BLJM60365", "name": "WWE All Stars (NTSC-J)" }, { "id": "BLJM60366", "name": "Just Cause 2 (Ultimate Hits) (NTSC-J)" }, { "id": "BLJM60367", "name": "Champion Jockey: G1 Jockey & Gallop Racer (NTSC-J)" }, { "id": "BLJM60368", "name": "Midnight Club: Los Angeles (Rockstar Classics) (NTSC-J)" }, { "id": "BLJM60369", "name": "Gekiatsu!! Pachi Game Tamashi Vol. 2: CR Evangelion - Shinjitsu no Tsubasa (NTSC-J)" }, { "id": "BLJM60370", "name": "Dungeon Siege III (NTSC-J)" }, { "id": "BLJM60372", "name": "Biohazard: Revival Selection (NTSC-J)" }, { "id": "BLJM60373", "name": "Tenchou no Igo (NTSC-J)" }, { "id": "BLJM60374", "name": "Sniper: Ghost Warrior (NTSC-J)" }, { "id": "BLJM60375", "name": "Tom Clancy's H.A.W.X. 2 (Ubi the Best) (NTSC-J)" }, { "id": "BLJM60376", "name": "R.U.S.E. (UBI the Best) (NTSC-J)" }, { "id": "BLJM60377", "name": "Chou Jigen Game: Neptune (Compile Heart Selection) (NTSC-J)" }, { "id": "BLJM60378", "name": "Armored Core: V (NTSC-J)" }, { "id": "BLJM60379", "name": "Dragon's Dogma (NTSC-J)" }, { "id": "BLJM60380", "name": "To Heart 2 DX Plus (Limited Edition) (NTSC-J)" }, { "id": "BLJM60381", "name": "To Heart 2 DX Plus (NTSC-J)" }, { "id": "BLJM60382", "name": "Final Fantasy XIII-2 (NTSC-J)" }, { "id": "BLJM60383", "name": "Ultimate Marvel vs. Capcom 3 (NTSC-J)" }, { "id": "BLJM60384", "name": "Battlefield 3 (NTSC-J)" }, { "id": "BLJM60385", "name": "WORLD SOCCER Winning Eleven 2012 (NTSC-J)" }, { "id": "BLJM60386", "name": "Need for Speed: The Run (NTSC-J)" }, { "id": "BLJM60387", "name": "Ao no Eiyuu: Birds of Steel (NTSC-J)" }, { "id": "BLJM60388", "name": "Blades of Time (NTSC-J)" }, { "id": "BLJM60389", "name": "Sengoku Basara 3" }, { "id": "BLJM60390", "name": "Time Leap (NTSC-J)" }, { "id": "BLJM60391", "name": "Silent Hill: Downpour (NTSC-J)" }, { "id": "BLJM60392", "name": "Warhammer 40000: Space Marine (NTSC-J)" }, { "id": "BLJM60393", "name": "Tears to Tiara Gaiden : Avalon no Nazo (AquaPrice 2800) (NTSC-J)" }, { "id": "BLJM60394", "name": "BlazBlue: Continuum Shift: Extend (NTSC-J)" }, { "id": "BLJM60395", "name": "The Cursed Crusade (NTSC-J)" }, { "id": "BLJM60396", "name": "Saints Row: The Third (NTSC-J)" }, { "id": "BLJM60397", "name": "Shin Sangoku Musou Online: Souten Ranbu (4th Anniversary Memorial Pack) (NTSC-J)" }, { "id": "BLJM60398", "name": "Gladiator VS (NTSC-J)" }, { "id": "BLJM60399", "name": "The Sims 3 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60400", "name": "Batman: Arkham City Collector's Edition (NTSC-J)" }, { "id": "BLJM60403", "name": "Red Dead Redemption: Complete Edition (NTSC-J)" }, { "id": "BLJM60404", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)" }, { "id": "BLJM60405", "name": "BioHazard 6 (NTSC-J)" }, { "id": "BLJM60406", "name": "The Lord of the Rings: War in the North (NTSC-J)" }, { "id": "BLJM60407", "name": "Michael Jackson: The Experience (Limited Edition) (NTSC-J)" }, { "id": "BLJM60408", "name": "Beyond the Future: Fix the Time Arrows (NTSC-J)" }, { "id": "BLJM60409", "name": "Asura's Wrath (NTSC-J)" }, { "id": "BLJM60410", "name": "Ryoufuu no Melt (NTSC-J)" }, { "id": "BLJM60411", "name": "Suigetsu Ni (NTSC-J)" }, { "id": "BLJM60412", "name": "Assassin's Creed: Revelations (NTSC-J)" }, { "id": "BLJM60413", "name": "The Elder Scrolls V: Skyrim (NTSC-J)" }, { "id": "BLJM60414", "name": "Umineko no Naku Koro ni San: Shinjitsu to Gensou no Yasoukyoku (NTSC-J)" }, { "id": "BLJM60416", "name": "One Piece : Pirate Warriors (NTSC-A)" }, { "id": "BLJM60417", "name": "Musou Orochi 2 (NTSC-J)" }, { "id": "BLJM60418", "name": "The House of the Dead: Overkill Director's Cut (NTSC-J)" }, { "id": "BLJM60419", "name": "Rocksmith (NTSC-J)" }, { "id": "BLJM60420", "name": "Crysis 2 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60421", "name": "Need for Speed: Hot Pursuit (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60422", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)" }, { "id": "BLJM60424", "name": "Jikkyou Powerful Pro Yakyuu 2011 Ketteiban (NTSC-J)" }, { "id": "BLJM60425", "name": "Silent Hill HD Collection (NTSC-J)" }, { "id": "BLJM60426", "name": "Shin Toudai Shogi (NTSC-J)" }, { "id": "BLJM60427", "name": "Mass Effect 3 (NTSC-J)" }, { "id": "BLJM60428", "name": "White Album: Tsuzurareru Fuyu no Omoide (AquaPrice 2800) (NTSC-J)" }, { "id": "BLJM60429", "name": "Grand Slam Tennis 2 (NTSC-J)" }, { "id": "BLJM60430", "name": "Maji de Watashi ni Koi Shinasai! R (NTSC-J)" }, { "id": "BLJM60433", "name": "BioHazard Chronicles HD Selection (NTSC-J)" }, { "id": "BLJM60434", "name": "Gal*Gun (NTSC-J)" }, { "id": "BLJM60435", "name": "Trinity: Zill O'll Zero (Koei Tecmo the Best) (NTSC-J)" }, { "id": "BLJM60437", "name": "Skate 3 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60439", "name": "WRC 2: FIA World Rally Championship (NTSC-J)" }, { "id": "BLJM60440", "name": "SSX (NTSC-J)" }, { "id": "BLJM60442", "name": "Persona 4: The Ultimate in Mayonaka Arena (NTSC-J)" }, { "id": "BLJM60443", "name": "Touch, Shot! Love Application (Limited Edition) (NTSC-J)" }, { "id": "BLJM60444", "name": "Tacchi, Shiyo! Love Application (NTSC-J)" }, { "id": "BLJM60445", "name": "Fight Night Champion (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60446", "name": "Robotics;Notes (NTSC-J)" }, { "id": "BLJM60447", "name": "Ninja Gaiden 3 (NTSC-J)" }, { "id": "BLJM60448", "name": "Under Defeat HD (NTSC-J)" }, { "id": "BLJM60449", "name": "Fallout New Vegas : Ultimate Edition (NTSC-J)" }, { "id": "BLJM60450", "name": "UFC Undisputed 3 (NTSC-J)" }, { "id": "BLJM60451", "name": "Zone of the Enders HD Edition (NTSC-J)" }, { "id": "BLJM60452", "name": "Nobunaga no Yabou Online: Houou no Shou (NTSC-J)" }, { "id": "BLJM60453", "name": "Shin Sangoku Musou Online: Ryuujin Ranbu (NTSC-J)" }, { "id": "BLJM60454", "name": "Winning Post 7 2012 (NTSC-J)" }, { "id": "BLJM60455", "name": "Attouteki Yuugi: Mugen Souls (Limited Edition) (NTSC-J)" }, { "id": "BLJM60456", "name": "Attouteki Yuugi: Mugen Souls (NTSC-J)" }, { "id": "BLJM60458", "name": "Colin McRae: DiRT 3 (Complete Edition) (NTSC-J)" }, { "id": "BLJM60459", "name": "Grand Theft Auto: Episodes from Liberty City (Rockstar Classics) (NTSC-J)" }, { "id": "BLJM60461", "name": "Nail'd (Best Hit Selection) (NTSC-J)" }, { "id": "BLJM60462", "name": "Steins;Gate (NTSC-J)" }, { "id": "BLJM60463", "name": "Max Payne 3 (NTSC-J)" }, { "id": "BLJM60464", "name": "Steins;Gate: Hiyoku Renri no Darling (NTSC-J)" }, { "id": "BLJM60466", "name": "Robotics;Notes (NTSC-J)" }, { "id": "BLJM60467", "name": "Okami Zekkeihan (NTSC-J)" }, { "id": "BLJM60468", "name": "Jissen Pachi-Slot Hisshouhou! Hokuto no Ken F - Seikimatsu Kyuuseishu Densetsu (NTSC-J)" }, { "id": "BLJM60469", "name": "Jikkyou Powerful Pro Yakyuu 2012 (NTSC-J)" }, { "id": "BLJM60470", "name": "Mamoru-kun wa Norowarete Shimatta! Meikai Katsugeki Wide-Han (Best Hit Selection) (NTSC-J)" }, { "id": "BLJM60471", "name": "Ryu Ga Gotoku 1 & 2 HD Edition (NTSC-J)" }, { "id": "BLJM60472", "name": "FIFA 12 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60473", "name": "Portal 2 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60474", "name": "AquaPazza: AquaPlus Dream Match (NTSC-J)" }, { "id": "BLJM60475", "name": "AquaPazza: AquaPlus Dream Match (NTSC-J)" }, { "id": "BLJM60476", "name": "AquaPazza: AquaPlus Dream Match (NTSC-J)" }, { "id": "BLJM60477", "name": "Operation Flashpoint: Red River (Codemasters the Best) (NTSC-J)" }, { "id": "BLJM60478", "name": "Agarest Senki 2 (Compile Heart Selection) (NTSC-J)" }, { "id": "BLJM60480", "name": "Two Worlds II (NTSC-J)" }, { "id": "BLJM60481", "name": "Mass Effect 2 (EA Best Hits) (Bonus Contents Collection) (NTSC-J)" }, { "id": "BLJM60482", "name": "Chou Jigen Game Neptune Mk2 (Compile Heart Selection) (NTSC-J)" }, { "id": "BLJM60483", "name": "Hakuouki: Reimeiroku Nagorigusa (Limited Edition) (NTSC-J)" }, { "id": "BLJM60484", "name": "Hakuouki: Reimeiroku Nagorigusa (NTSC-J)" }, { "id": "BLJM60485", "name": "Combat Wings: The Great Battles of WWII (NTSC-J)" }, { "id": "BLJM60486", "name": "Ayesha no Atalier: Tasogare no Daichi no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM60488", "name": "Sengoku Basara HD Collection (NTSC-J)" }, { "id": "BLJM60489", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (NTSC-J)" }, { "id": "BLJM60490", "name": "Lost Planet 3 (NTSC-J)" }, { "id": "BLJM60491", "name": "Hyperdimension Neptunia Victory V (NTSC-J)" }, { "id": "BLJM60492", "name": "Kami Jigen Game Neptune V (NTSC-J)" }, { "id": "BLJM60493", "name": "Alice: Madness Returns (NTSC-J)" }, { "id": "BLJM60495", "name": "Batman: Arkham City (NTSC-J)" }, { "id": "BLJM60496", "name": "Batman: Arkham Asylum (NTSC-J)" }, { "id": "BLJM60497", "name": "Colin McRae: DiRT Double Pack (NTSC-J)" }, { "id": "BLJM60499", "name": "Assassin's Creed Welcome Pack (NTSC-J)" }, { "id": "BLJM60501", "name": "Sleeping Dogs: Hong Kong Keisatsu (NTSC-J)" }, { "id": "BLJM60502", "name": "DmC: Devil May Cry (NTSC-J)" }, { "id": "BLJM60503", "name": "Sniper Elite V2 (NTSC-J)" }, { "id": "BLJM60504", "name": "Heavy Fire: Afghanistan (NTSC-J)" }, { "id": "BLJM60505", "name": "F1 Race Stars (NTSC-J)" }, { "id": "BLJM60506", "name": "Tomoyo After: It's a Wonderful Life - CS Edition (NTSC-J)" }, { "id": "BLJM60507", "name": "Battlefield: Bad Company 2 (NTSC-J)" }, { "id": "BLJM60508", "name": "Shadows of the Damned (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60509", "name": "Gekiatsu!! Pachi Game Damashi Max: Evangelion 7 x Seimei no Kodou (NTSC-J)" }, { "id": "BLJM60512", "name": "Doom 3 BFG Edition (NTSC-J)" }, { "id": "BLJM60514", "name": "FIFA 13: World Class Soccer (NTSC-J)" }, { "id": "BLJM60515", "name": "Injustice: Gods Among Us (NTSC-J)" }, { "id": "BLJM60516", "name": "Assassin's Creed III (NTSC-J)" }, { "id": "BLJM60517", "name": "Dark Souls with Artorias of the Abyss Edition (NTSC-J)" }, { "id": "BLJM60518", "name": "BioHazard Revelations: Unveiled Edition (NTSC-J)" }, { "id": "BLJM60519", "name": "Need for Speed: Most Wanted (NTSC-J)" }, { "id": "BLJM60521", "name": "Akatsuki no Goei: Trinity (NTSC-J)" }, { "id": "BLJM60522", "name": "World Soccer Winning Eleven 2013 (NTSC-J)" }, { "id": "BLJM60523", "name": "Daikoukai Jidai Online: 2nd Age (NTSC-J)" }, { "id": "BLJM60524", "name": "Shin Sangoku Musou 6 Empires (NTSC-J)" }, { "id": "BLJM60525", "name": "Grand Theft Auto IV: The Complete Edition (Rockstar Classics) (NTSC-J)" }, { "id": "BLJM60527", "name": "Hatsune Miku: Project Diva F (NTSC-J)" }, { "id": "BLJM60528", "name": "E.X. Troopers (NTSC-J)" }, { "id": "BLJM60530", "name": "Crysis 3 (NTSC-J)" }, { "id": "BLJM60532", "name": "Far Cry 3 (NTSC-J)" }, { "id": "BLJM60533", "name": "Need for Speed: The Run (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60534", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)" }, { "id": "BLJM60535", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)" }, { "id": "BLJM60536", "name": "Call of Duty: Black Ops (NTSC-J)" }, { "id": "BLJM60537", "name": "Call of Duty: Black Ops (NTSC-J)" }, { "id": "BLJM60538", "name": "Saints Row: The Third (Reprint) (NTSC-J)" }, { "id": "BLJM60540", "name": "White Album 2: Shiawase no Mukougawa (Premium Edition) (NTSC-J)" }, { "id": "BLJM60541", "name": "Medal of Honor: Warfighter (NTSC-J)" }, { "id": "BLJM60542", "name": "Chaos;Head Noah (NTSC-J)" }, { "id": "BLJM60543", "name": "Chaos;Head - Love ChuChu! (NTSC-J)" }, { "id": "BLJM60544", "name": "F1 2011 (Codemasters the Best) (NTSC-J)" }, { "id": "BLJM60545", "name": "Heartful Simulator Pachi-Slot: To Heart 2 (NTSC-J)" }, { "id": "BLJM60546", "name": "Muv-Luv (NTSC-J)" }, { "id": "BLJM60547", "name": "Muv-Luv Alternative (NTSC-J)" }, { "id": "BLJM60548", "name": "Call of Duty: Black Ops II (NTSC-J)" }, { "id": "BLJM60549", "name": "Call of Duty: Black Ops II (NTSC-J)" }, { "id": "BLJM60550", "name": "Sangokushi 12 (NTSC-J)" }, { "id": "BLJM60551", "name": "Power Smash 4 (Sega the Best) (NTSC-J)" }, { "id": "BLJM60552", "name": "SSX (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60553", "name": "Shin Hokuto Musou (NTSC-J)" }, { "id": "BLJM60554", "name": "Metal Gear Rising: Revengeance (NTSC-J)" }, { "id": "BLJM60555", "name": "Sengoku Hime 3: Tenka o Kirisaku Hikari to Kage (Deluxe Edition) (NTSC-J)" }, { "id": "BLJM60556", "name": "Sengoku Hime 3: Tenka o Kirisaku Hikari to Kage (NTSC-J)" }, { "id": "BLJM60557", "name": "Tomb Raider (NTSC-J)" }, { "id": "BLJM60558", "name": "Lightning Returns: Final Fantasy XIII (NTSC-J)" }, { "id": "BLJM60559", "name": "Race Driver: GRID 2 (NTSC-J)" }, { "id": "BLJM60560", "name": "Shin Sangoku Musou Online: Ryuujin Ranbu (5-Year Anniversary Pack) (NTSC-J)" }, { "id": "BLJM60561", "name": "Champion Jockey: G1 Jockey & Gallop Racer (Koei Tecmo the Best) (NTSC-J)" }, { "id": "BLJM60562", "name": "Hokuto Musou International (Koei Tecmo the Best) (NTSC-J)" }, { "id": "BLJM60565", "name": "Battlefield 3 (Premium Edition) (NTSC-J)" }, { "id": "BLJM60566", "name": "Port Royale 3: Pirates & Merchants (NTSC-J)" }, { "id": "BLJM60567", "name": "Vampire Resurrection (NTSC-J)" }, { "id": "BLJM60569", "name": "Devil May Cry HD Collection (Best Price!) (NTSC-J)" }, { "id": "BLJM60571", "name": "White Album 2: Shiawase no Mukougawa (NTSC-J)" }, { "id": "BLJM60572", "name": "One Piece: Kaizoku Musou 2 (NTSC-J)" }, { "id": "BLJM60573", "name": "Assassin's Creed: Revelations (NTSC-J)" }, { "id": "BLJM60574", "name": "FIFA Street (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60576", "name": "Winning Post 7 2013 (NTSC-J)" }, { "id": "BLJM60577", "name": "Monster Hunter Frontier G (Beginner's Package) (NTSC-J)" }, { "id": "BLJM60578", "name": "Army of Two: The Devil's Cartel (NTSC-J)" }, { "id": "BLJM60579", "name": "Muv-Luv Alternative: Total Eclipse (NTSC-J)" }, { "id": "BLJM60581", "name": "Pro Yakyuu Spirits 2013 (NTSC-J)" }, { "id": "BLJM60582", "name": "Sharin no Kuni, Himawari no Shoujo (NTSC-J)" }, { "id": "BLJM60583", "name": "Nobunaga no Yabou Online: 10-Shuunen Kinen Box (NTSC-J)" }, { "id": "BLJM60584", "name": "Binary Domain (Sega the Best) (NTSC-J)" }, { "id": "BLJM60585", "name": "Mass Effect 3 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM60586", "name": "Shin Sangoku Musou 7 (NTSC-J)" }, { "id": "BLJM60589", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-J)" }, { "id": "BLJM60987", "name": "Binary Domain (NTSC-J)" }, { "id": "BLJM60988", "name": "The Sims 3: Pets (NTSC-J)" }, { "id": "BLJM60989", "name": "Batman: Arkham City (Limited Edition) (NTSC-J)" }, { "id": "BLJM60990", "name": "Sengoku Musou 3 Empires (NTSC-J)" }, { "id": "BLJM60991", "name": "Chou Jigen Game Neptune mk2 (Limited Edition) (NTSC-J)" }, { "id": "BLJM60992", "name": "Chou Jigen Game Neptune mk2 (NTSC-J)" }, { "id": "BLJM60993", "name": "Dark Souls (NTSC-J)" }, { "id": "BLJM60995", "name": "Assassin's Creed: Brotherhood (Special Edition) (NTSC-J)" }, { "id": "BLJM60996", "name": "FIFA 12 (NTSC-J)" }, { "id": "BLJM60997", "name": "Ken to Mahou to Gakuen Mono 3 (Acquire the Best) (NTSC-J)" }, { "id": "BLJM60998", "name": "MLB Bobblehead! (NTSC-J)" }, { "id": "BLJM60999", "name": "Call of Juarez: The Cartel (NTSC-J)" }, { "id": "BLJM61000", "name": "Shin Sangoku Musou 6 Moushouden (NTSC-J)" }, { "id": "BLJM61001", "name": "Metal Gear Solid HD Collection (NTSC-J)" }, { "id": "BLJM61006", "name": "Call of Duty: Modern Warfare 2 (NTSC-J)" }, { "id": "BLJM61008", "name": "Wizardry Perfect Pack (NTSC-J)" }, { "id": "BLJM61009", "name": "Little Busters! Converted Edition (NTSC-J)" }, { "id": "BLJM61010", "name": "Ninja Gaiden 3: Razor's Edge" }, { "id": "BLJM61011", "name": "FIFA 11 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61012", "name": "Dragon's Dogma: Dark Arisen (NTSC-J)" }, { "id": "BLJM61014", "name": "Armored Core: Verdict Day (NTSC-J)" }, { "id": "BLJM61016", "name": "Attouteki Yuugi: Mugen Souls (NTSC-J)" }, { "id": "BLJM61017", "name": "Tacchi, Shiyo! Love Application (Compile Heart Selection) (NTSC-J)" }, { "id": "BLJM61018", "name": "Oretachi ni Tsubasa wa Nai" }, { "id": "BLJM61019", "name": "Grand Theft Auto V (NTSC-J)" }, { "id": "BLJM61020", "name": "Armored Core: Verdict Day (NTSC-J)" }, { "id": "BLJM61023", "name": "Need for Speed: ProStreet + Shift Double Value Pack (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61025", "name": "Need for Speed: Carbon + Undercover Double Value Pack (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61028", "name": "Mugen Souls Z (NTSC-J)" }, { "id": "BLJM61029", "name": "Steins;Gate: Senkei Kousoku no Phenogram (NTSC-J)" }, { "id": "BLJM61030", "name": "Mahjong Haoh: Dankyuu Battle 3 (NTSC-J)" }, { "id": "BLJM61031", "name": "Kazoku Keikaku: Re:Tsumugu Ito (NTSC-J)" }, { "id": "BLJM61032", "name": "Driver: San Francisco (UBI the Best) (NTSC-J)" }, { "id": "BLJM61033", "name": "Memories Off 6 Complete (NTSC-J)" }, { "id": "BLJM61034", "name": "Memories Off: Yubikiri no Kioku (NTSC-J)" }, { "id": "BLJM61035", "name": "Shin Toudai Shogi (MyNavi Best) (NTSC-J)" }, { "id": "BLJM61036", "name": "Tenchou no Igo (MyNavi Best) (NTSC-J)" }, { "id": "BLJM61039", "name": "Battlefield 4 (NTSC-J)" }, { "id": "BLJM61040", "name": "Murdered: Tamashii no Yobu Koe (NTSC-J)" }, { "id": "BLJM61041", "name": "Dragon's Crown (NTSC-J)" }, { "id": "BLJM61042", "name": "The Sims 3: Pets (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61043", "name": "Drag-On Dragoon 3 (NTSC-J)" }, { "id": "BLJM61044", "name": "Skylanders Spyro's Adventure (NTSC-J)" }, { "id": "BLJM61047", "name": "Date A Live: Rinne Utopia (Limited Edition) (NTSC-J)" }, { "id": "BLJM61048", "name": "Date A Live: Rinne Utopia (NTSC-J)" }, { "id": "BLJM61049", "name": "Rocksmith 2014 Edition (NTSC-J)" }, { "id": "BLJM61050", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM61051", "name": "Ayesha no Atelier: Tasogare no Daichi no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM61053", "name": "Gal*Gun (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJM61054", "name": "Watch Dogs (NTSC-J)" }, { "id": "BLJM61055", "name": "Dungeons & Dragons: Mystara Eiyuu Senki (NTSC-J)" }, { "id": "BLJM61056", "name": "Assassin's Creed IV: Black Flag (NTSC-J)" }, { "id": "BLJM61057", "name": "Tom Clancy's Splinter Cell Blacklist (NTSC-J)" }, { "id": "BLJM61058", "name": "FIFA 13: World Class Soccer (EA Super Hits) (NTSC-J)" }, { "id": "BLJM61059", "name": "Eiyuu Densetsu: Sen no Kiseki (NTSC-J)" }, { "id": "BLJM61060", "name": "Ketsui: Kizuna Jigoku Tachi Extra (NTSC-J)" }, { "id": "BLJM61061", "name": "Nobunaga no Yabou Online: Tenka Mugen no Shou (NTSC-J)" }, { "id": "BLJM61062", "name": "Shin Sangoku Musou Online Z (NTSC-J)" }, { "id": "BLJM61063", "name": "Sengoku Basara 4 (NTSC-J)" }, { "id": "BLJM61064", "name": "Soccer Tsuku: Pro Soccer Club o Tsukurou! (NTSC-J)" }, { "id": "BLJM61065", "name": "F1 2013 (NTSC-J)" }, { "id": "BLJM61066", "name": "Heartful Simulator Pachi-Slot: To Heart 2 (AquaPrice 2800) (NTSC-J)" }, { "id": "BLJM61067", "name": "Disorder 6 (NTSC-J)" }, { "id": "BLJM61069", "name": "FIFA 14: World Class Soccer (NTSC-J)" }, { "id": "BLJM61070", "name": "Need for Speed: Rivals (NTSC-J)" }, { "id": "BLJM61071", "name": "Hanasaku Manimani (NTSC-J)" }, { "id": "BLJM61072", "name": "Eiyuu * Senki (NTSC-J)" }, { "id": "BLJM61073", "name": "Final Fantasy XIII-2 (Ultimate Hits) (NTSC-J)" }, { "id": "BLJM61076", "name": "Tears To Tiara II: Haou no Matsuei (NTSC-J)" }, { "id": "BLJM61078", "name": "Sangokushi 12 with Power-Up Kit (NTSC-J)" }, { "id": "BLJM61079", "name": "Hatsune Miku: Project Diva F 2nd (NTSC-J)" }, { "id": "BLJM61080", "name": "Air Conflicts: Vietnam (NTSC-J)" }, { "id": "BLJM61081", "name": "Medal of Honor: Warfighter (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61083", "name": "Jikkyou Powerful Pro Yakyuu 2013 (NTSC-J)" }, { "id": "BLJM61084", "name": "Musou Orochi 2 Ultimate (NTSC-J)" }, { "id": "BLJM61085", "name": "Dead or Alive 5 Ultimate (NTSC-J)" }, { "id": "BLJM61087", "name": "FIFA 14: World Class Soccer (Ultimate Edition) (NTSC-J)" }, { "id": "BLJM61088", "name": "Rui wa Tomo o Yobu (NTSC-J)" }, { "id": "BLJM61089", "name": "Fairy Fencer F (Limited Edition) (NTSC-J)" }, { "id": "BLJM61090", "name": "Fairy Fencer F (NTSC-J)" }, { "id": "BLJM61091", "name": "Himawari no Kyoukai to Nagai Natsuyasumi: Extra Vacation (NTSC-J)" }, { "id": "BLJM61092", "name": "Sengoku Musou 2 with Moushouden & Empires HD Version (NTSC-J)" }, { "id": "BLJM61093", "name": "FINAL FANTASY X/X-2HD Remaster (NTSC-J)" }, { "id": "BLJM61094", "name": "End of Eternity (Sega the Best) (Best Price Version) (NTSC-J)" }, { "id": "BLJM61096", "name": "Batman: Arkham Origins (NTSC-J)" }, { "id": "BLJM61097", "name": "Puyo Puyo Tetris (NTSC-J)" }, { "id": "BLJM61098", "name": "Phantom Breaker: Extra (NTSC-J)" }, { "id": "BLJM61099", "name": "Need for Speed: Most Wanted - A Criterion Game (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61100", "name": "Root Double: Before Crime * After Days - Xtend Edition (NTSC-J)" }, { "id": "BLJM61101", "name": "Shin Koihime Musou: Otome Taisen Sangokushi Engi (NTSC-J)" }, { "id": "BLJM61103", "name": "Sengoku Hime 4: Souha Hyakkei, Hana Mamoru Chikai (Deluxe Limited Edition) (NTSC-J)" }, { "id": "BLJM61104", "name": "Sengoku Hime 4: Souha Hyakkei Hanamamoru Chikai (NTSC-J)" }, { "id": "BLJM61105", "name": "Akiba's Trip 2 (NTSC-J)" }, { "id": "BLJM61106", "name": "World Soccer Winning Eleven 2014 (NTSC-J)" }, { "id": "BLJM61107", "name": "Akumajou Dracula: Lords of Shadow 2 (NTSC-J)" }, { "id": "BLJM61108", "name": "The Walking Dead (NTSC-J)" }, { "id": "BLJM61109", "name": "Call of Duty: Black Ops II (NTSC-J)" }, { "id": "BLJM61110", "name": "Call of Duty: Black Ops II (NTSC-J)" }, { "id": "BLJM61111", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)" }, { "id": "BLJM61112", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)" }, { "id": "BLJM61113", "name": "Dark Souls II (NTSC-J)" }, { "id": "BLJM61115", "name": "Vampire Resurrection (Best Price!) (NTSC-J)" }, { "id": "BLJM61116", "name": "Batman: Arkham (Twin Pack) (Warner the Best) (NTSC-J)" }, { "id": "BLJM61118", "name": "Kaihou Shoujo SIN (NTSC-J)" }, { "id": "BLJM61119", "name": "Winning Post 8 (NTSC-J)" }, { "id": "BLJM61120", "name": "Rozen Maiden: Wechseln Sie Welt ab (NTSC-J)" }, { "id": "BLJM61123", "name": "Ginsei Igo 2: Next Generation (NTSC-J)" }, { "id": "BLJM61124", "name": "Rocksmith 2014 Edition (NTSC-J)" }, { "id": "BLJM61125", "name": "Call of Duty: Ghosts (NTSC-J)" }, { "id": "BLJM61126", "name": "Call of Duty: Ghosts (NTSC-J)" }, { "id": "BLJM61127", "name": "Shin Rorona no Atelier: Hajimari no Monogatari - Arland no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM61128", "name": "Dynasty Warriors 7: Moushouden (NTSC-J)" }, { "id": "BLJM61131", "name": "&: Sora no Mukou de Saki Masuyou ni (NTSC-J)" }, { "id": "BLJM61132", "name": "FIFA 14: World Class Soccer (NTSC-J)" }, { "id": "BLJM61135", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-J)" }, { "id": "BLJM61136", "name": "Diablo III (NTSC-J)" }, { "id": "BLJM61137", "name": "BandFuse: Rock Legends (NTSC-J)" }, { "id": "BLJM61138", "name": "Sengoku Hime 3: Tenka o Kirisaku Hikari to Kage (SystemSoft Selection) (NTSC-J)" }, { "id": "BLJM61139", "name": "Motto! SoniComi (NTSC-J)" }, { "id": "BLJM61140", "name": "Shin Gundam Musou (NTSC-J)" }, { "id": "BLJM61141", "name": "Skate 2 + Skate 3 Double Value Pack (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61143", "name": "Crysis 3 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61144", "name": "Sengoku Musou 4 (NTSC-J)" }, { "id": "BLJM61145", "name": "Sonic & All-Stars Racing Transformed (NTSC-J)" }, { "id": "BLJM61146", "name": "Infinite Stratos 2: Ignition Hearts (NTSC-J)" }, { "id": "BLJM61147", "name": "Ultra Street Fighter IV (NTSC-J)" }, { "id": "BLJM61148", "name": "Pro Yakyuu Spirits 2014 (NTSC-J)" }, { "id": "BLJM61149", "name": "Ryu ga Gotoku: Ishin (NTSC-J)" }, { "id": "BLJM61150", "name": "Ar Nosurge: Umareizuru Hoshi e Inoru Uta (NTSC-J)" }, { "id": "BLJM61152", "name": "Army of Two: The Devil's Cartel (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61153", "name": "Strider Hiryu (NTSC-J)" }, { "id": "BLJM61154", "name": "Sniper Elite V2 (UBI the Best) (NTSC-J)" }, { "id": "BLJM61155", "name": "Monster Hunter Frontier G (Memorial Package) (NTSC-J)" }, { "id": "BLJM61156", "name": "Shining Resonance (NTSC-J)" }, { "id": "BLJM61157", "name": "Kagero: Darkside Princess (NTSC-J)" }, { "id": "BLJM61158", "name": "WRC 4: FIA World Rally Championship (NTSC-J)" }, { "id": "BLJM61159", "name": "Ninja Gaiden 3: Razor's Edge (Koei the Best) (NTSC-J)" }, { "id": "BLJM61160", "name": "Tomb Raider (NTSC-J)" }, { "id": "BLJM61162", "name": "2014 FIFA World Cup Brazil (NTSC-J)" }, { "id": "BLJM61163", "name": "Yaiba: Ninja Gaiden Z (NTSC-J)" }, { "id": "BLJM61164", "name": "Far Cry 3 (UBI the Best) (NTSC-J)" }, { "id": "BLJM61166", "name": "Lost Dimension (NTSC-J)" }, { "id": "BLJM61167", "name": "F1 2013 (NTSC-J)" }, { "id": "BLJM61168", "name": "F.E.A.R. 3 (Warner the Best) (NTSC-J)" }, { "id": "BLJM61169", "name": "Lord of the Rings: War in the North (Warner the Best) (NTSC-J)" }, { "id": "BLJM61170", "name": "Injustice: Kamigami no Gekitotsu (Warner the Best) (NTSC-J)" }, { "id": "BLJM61171", "name": "Assassin's Creed III (UBI the Best) (NTSC-J)" }, { "id": "BLJM61172", "name": "Sleeping Dogs: Hong Kong Himitsu Keisatsu (New Price Version) (NTSC-J)" }, { "id": "BLJM61173", "name": "Hitman: Absolution (Low-Price Reprint) (NTSC-J)" }, { "id": "BLJM61174", "name": "Assassin's Creed: Connor Saga (NTSC-J)" }, { "id": "BLJM61175", "name": "Muv-Luv: photonflowers* (NTSC-J)" }, { "id": "BLJM61176", "name": "WORLD SOCCER Winning Eleven 2014: Aoki Samurai no Chousen (NTSC-J)" }, { "id": "BLJM61177", "name": "Monster Hunter Frontier GG (Premium Package) (NTSC-J)" }, { "id": "BLJM61178", "name": "Thief (NTSC-J)" }, { "id": "BLJM61180", "name": "Grand Theft Auto IV: The Complete Edition (Rockstar Classics) (NTSC-J)" }, { "id": "BLJM61181", "name": "Red Dead Redemption: Complete Edition (Rockstar Classics) (NTSC-J)" }, { "id": "BLJM61182", "name": "Grand Theft Auto V (Best Price Version) (NTSC-J)" }, { "id": "BLJM61183", "name": "Eiyuu Densetsu: Sen no Kiseki II (NTSC-J)" }, { "id": "BLJM61184", "name": "Kono Oozora ni, Tsubasa o Hirogete: Cruise Sign (NTSC-J)" }, { "id": "BLJM61185", "name": "Racedriver Grid 2 (NTSC-J)" }, { "id": "BLJM61186", "name": "Saikyou Shogi Gekisashi 13 (NTSC-J)" }, { "id": "BLJM61187", "name": "Cross Channel: For All People (NTSC-J)" }, { "id": "BLJM61188", "name": "Caladrius Blaze (NTSC-J)" }, { "id": "BLJM61189", "name": "Date A Live: Arusu Install (Limited Edition) (NTSC-J)" }, { "id": "BLJM61190", "name": "Date A Live: Arusu Install (NTSC-J)" }, { "id": "BLJM61191", "name": "Eiyuu Densetsu: Sen no Kiseki (Super Price) (NTSC-J)" }, { "id": "BLJM61192", "name": "Shallie no Atelier: Tasogare no Umi no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM61193", "name": "To Heart 2 DX Plus (Aqua Price 2800) (NTSC-J)" }, { "id": "BLJM61194", "name": "Plants vs. Zombies: Garden Warfare (NTSC-J)" }, { "id": "BLJM61195", "name": "WRC 4: FIA World Rally Championship (NTSC-J)" }, { "id": "BLJM61196", "name": "Battlefield 3 (Premium Edition) (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61197", "name": "Diablo III: Ultimate Evil Edition (NTSC-J)" }, { "id": "BLJM61198", "name": "Devil May Cry HD Collection (Best Price! Reprint) (NTSC-J)" }, { "id": "BLJM61199", "name": "BioHazard: Revelations 2 (NTSC-J)" }, { "id": "BLJM61200", "name": "Muv Luv: Photon Flowers (NTSC-J)" }, { "id": "BLJM61201", "name": "Wolfenstein: The New Order (NTSC-J)" }, { "id": "BLJM61202", "name": "FIFA 15 (NTSC-J)" }, { "id": "BLJM61203", "name": "Battlefield Hardline (NTSC-J)" }, { "id": "BLJM61204", "name": "Dragon Age: Inquisition (NTSC-J)" }, { "id": "BLJM61205", "name": "Monster Hunter Frontier G5 (Premium Package) (NTSC-J)" }, { "id": "BLJM61207", "name": "GRID Autosport (NTSC-J)" }, { "id": "BLJM61208", "name": "Assassin's Creed Rogue (NTSC-J)" }, { "id": "BLJM61209", "name": "Persona 4: The Ultimax Ultra Suplex Hold (NTSC-J)" }, { "id": "BLJM61210", "name": "Dengeki Bunko: Fighting Climax (NTSC-J)" }, { "id": "BLJM61211", "name": "Biohazard HD Remaster (NTSC-J)" }, { "id": "BLJM61212", "name": "Dragon Age: Inquisition (Deluxe Edition) (NTSC-J)" }, { "id": "BLJM61213", "name": "FIFA 15 (Ultimate Team Edition) (NTSC-J)" }, { "id": "BLJM61215", "name": "Jikkyou Powerful Pro Yakyuu 2014 (NTSC-J)" }, { "id": "BLJM61216", "name": "Transformers: Rise of the Dark Spark (NTSC-J)" }, { "id": "BLJM61217", "name": "Tom Clancy's Splinter Cell Blacklist (Ubi the Best) (NTSC-J)" }, { "id": "BLJM61218", "name": "The Amazing Spider-Man 2 (NTSC-J)" }, { "id": "BLJM61220", "name": "Kingdom Hearts HD 2.5 ReMIX (NTSC-J)" }, { "id": "BLJM61221", "name": "Kingdom Hearts HD 1.5 + 2.5 ReMIX (Starter Pack) (NTSC-J)" }, { "id": "BLJM61223", "name": "Kindom Hearts Collector's Pack: HD 1.5 + 2.5 ReMix (NTSC-J)" }, { "id": "BLJM61225", "name": "Shin Sangoku Musou 7 Empires (NTSC-J)" }, { "id": "BLJM61227", "name": "Call of Duty: Advanced Warfare (Subtitled Edition) (NTSC-J)" }, { "id": "BLJM61229", "name": "Tears to Tiara II: Haou no Matsuei (Aqua Price 2800) (NTSC-J)" }, { "id": "BLJM61230", "name": "Call of Duty: Black Ops II (Subtitle Version) (NTSC-J)" }, { "id": "BLJM61232", "name": "Call of Duty: Ghosts (Subtitle Version) (NTSC-J)" }, { "id": "BLJM61234", "name": "The LEGO Movie Videogame (NTSC-J)" }, { "id": "BLJM61235", "name": "Psycho Break (NTSC-J)" }, { "id": "BLJM61237", "name": "World Soccer Winning Eleven 2015 (NTSC-J)" }, { "id": "BLJM61238", "name": "Zettai Geigeki Wars (NTSC-J)" }, { "id": "BLJM61239", "name": "Odin Sphere Leifthrasir (NTSC-J)" }, { "id": "BLJM61242", "name": "LEGO Marvel Super Heroes (NTSC-J)" }, { "id": "BLJM61243", "name": "LEGO Batman 3: The Game - Gotham Kara Uchuu He (NTSC-J)" }, { "id": "BLJM61245", "name": "Sengoku Hime 5: Senkatatsu Haoh no Keifu (NTSC-J)" }, { "id": "BLJM61246", "name": "Sengoku Hime 5: Senkatatsu Haoh no Keifu (Deluxe Limited Edition) (NTSC-J)" }, { "id": "BLJM61247", "name": "Metal Gear Solid V: The Phantom Pain (NTSC-J)" }, { "id": "BLJM61248", "name": "Sengoku Basara 4: Sumeragi (NTSC-J)" }, { "id": "BLJM61249", "name": "Ryu ga Gotoku Zero: Chikai no Basho (NTSC-J)" }, { "id": "BLJM61250", "name": "White Album 2: Shiawase no Mukougawa (AquaPrice 2800) (NTSC-J)" }, { "id": "BLJM61251", "name": "Bladestorm: Hyakunen Sensou & Nightmare (NTSC-J)" }, { "id": "BLJM61253", "name": "Monster Hunter Frontier G6 (Premium Package) (NTSC-J)" }, { "id": "BLJM61254", "name": "AquaPazza: AquaPlus Dream Match (AquaPrice 2800) (NTSC-J)" }, { "id": "BLJM61255", "name": "Higurashi no Naku Koro ni Iki (NTSC-J)" }, { "id": "BLJM61256", "name": "Dragon Quest Heroes: Anryuu to Sekaiju no Shiro (NTSC-J)" }, { "id": "BLJM61257", "name": "Sengoku Musou 4-II (NTSC-J)" }, { "id": "BLJM61258", "name": "Dead or Alive 5: Last Round (NTSC-J)" }, { "id": "BLJM61259", "name": "Rewrite (NTSC-J)" }, { "id": "BLJM61260", "name": "Dark Souls II: Scholar of the First Sin (NTSC-J)" }, { "id": "BLJM61261", "name": "One Piece: Kaizoku Musou 3 (NTSC-J)" }, { "id": "BLJM61262", "name": "Winning Post 8 2015 (NTSC-J)" }, { "id": "BLJM61263", "name": "Pro Yakyuu Spirits 2015 (NTSC-J)" }, { "id": "BLJM61264", "name": "Yoru no Nai Kuni" }, { "id": "BLJM61265", "name": "Daisenryaku: Dai Toua Kouboushi - Dainijisekaitaisen Boppatsu - Suujiku Sentai Rengougun Zensekaisen (NTSC-J)" }, { "id": "BLJM61266", "name": "Gendai Daisenryaku 2016" }, { "id": "BLJM61267", "name": "Kagero: Mou Hitori no Princess (NTSC-J)" }, { "id": "BLJM61268", "name": "Daisenryaku: Dai Toua Kouboushi - Dainijisekaitaisen Boppatsu - Suujiku Sentai Rengougun Zensekaisen (Limited Edition) (NTSC-J)" }, { "id": "BLJM61269", "name": "Chaos;Child" }, { "id": "BLJM61271", "name": "Monster Hunter Frontier G7 (Premium Pack) (NTSC-J)" }, { "id": "BLJM61272", "name": "Biohazard 0 HD Remaster (NTSC-J)" }, { "id": "BLJM61274", "name": "Koihime Enbu" }, { "id": "BLJM61281", "name": "FIFA 16 (NTSC-J)" }, { "id": "BLJM61283", "name": "Final Fantasy XIV: Souten no Ishgard (NTSC-J)" }, { "id": "BLJM61285", "name": "FIFA 15 (EA Best Hits) (NTSC-J)" }, { "id": "BLJM61287", "name": "Assassin's Creed: Connor Saga (Ubi the Best) (NTSC-J)" }, { "id": "BLJM61288", "name": "Utawarerumono Itsuwari no Kamen" }, { "id": "BLJM61290", "name": "Infinite Stratos 2: Love and Purge (NTSC-J)" }, { "id": "BLJM61291", "name": "WORLD SOCCER Winning Eleven 2015 (Konami the Best) (NTSC-J)" }, { "id": "BLJM61294", "name": "RIDE (NTSC-J)" }, { "id": "BLJM61297", "name": "MotoGP 15 (NTSC-J)" }, { "id": "BLJM61298", "name": "LEGO Jurassic World (NTSC-J)" }, { "id": "BLJM61299", "name": "Nitro Plus Blasterz Heroines Infinite Duel" }, { "id": "BLJM61300", "name": "Sangokushi 12 with Power-Up Kit (Koei Tecmo the Best) (NTSC-J)" }, { "id": "BLJM61301", "name": "Winning Eleven 2016 (NTSC-J)" }, { "id": "BLJM61303", "name": "Steins;Gate 0 (NTSC-J)" }, { "id": "BLJM61306", "name": "FIFA 16 (Deluxe Edition) (NTSC-J)" }, { "id": "BLJM61307", "name": "Sengoku Musou 4 Empires" }, { "id": "BLJM61308", "name": "Arslan Senki x Musou (NTSC-J)" }, { "id": "BLJM61309", "name": "Sophie no Atelier: Fushigi na Hon no Renkinjutsushi (NTSC-J)" }, { "id": "BLJM61310", "name": "Blade Arcus From Shining EX" }, { "id": "BLJM61311", "name": "Dragon Quest Builders Alefgard o Fukkatsu Seyo (NTSC-J)" }, { "id": "BLJM61313", "name": "Ryu ga Gotoku: Kiwami" }, { "id": "BLJM61317", "name": "Jikkyou Powerful Pro Yakyuu 2016" }, { "id": "BLJM61320", "name": "Sangokushi 13" }, { "id": "BLJM61322", "name": "Dengeki Bunko: Fighting Climax Ignition" }, { "id": "BLJM61325", "name": "Star Ocean 5: Integrity and Faithlessness (NTSC-J)" }, { "id": "BLJM61326", "name": "Attack on Titan" }, { "id": "BLJM61329", "name": "LEGO Marvel's Avengers (NTSC-J)" }, { "id": "BLJM61330", "name": "LEGO Star Wars: Force no Kakusei (NTSC-J)" }, { "id": "BLJM61331", "name": "Utawarerumono futari no hakuoro" }, { "id": "BLJM61332", "name": "Sengoku Basara: Sanada Yukimura-Den" }, { "id": "BLJM61340", "name": "FIFA 17 (NTSC-J)" }, { "id": "BLJM61344", "name": "Toukiden 2" }, { "id": "BLJM61346", "name": "Persona 5 (NTSC-J)" }, { "id": "BLJM61347", "name": "Shin Sangoku Musou Eiketsuden" }, { "id": "BLJM61348", "name": "FIFA 17 (Deluxe Edition) (NTSC-J)" }, { "id": "BLJM61349", "name": "Sangokushi 13 with Power Up Kit (NTSC-J)" }, { "id": "BLJM61350", "name": "Sengoku Musou: Sanada Maru" }, { "id": "BLJM61351", "name": "Adventure Time: Secrets of the Nameless Kingdom (NTSC-J)" }, { "id": "BLJM61352", "name": "Dragon Quest Builders Alefgard o Fukkatsu Seyo (Ultimate Hits) (NTSC-J)" }, { "id": "BLJM61357", "name": "Winning Eleven 2018" }, { "id": "BLJM66125", "name": "Call of Duty Ghosts (NTSC-J)" }, { "id": "BLJM66126", "name": "Call of Duty Ghosts (NTSC-J)" }, { "id": "BLJM67001", "name": "Metal Gear Solid 4: Guns of the Patriots (NTSC-J)" }, { "id": "BLJM67005", "name": "Fainaru Fantajī Sātīn (NTSC-J)" }, { "id": "BLJM67007", "name": "UFC Undisputed 2010 (NTSC-J)" }, { "id": "BLJM67010", "name": "Final Fantasy XIII (NTSC-J)" }, { "id": "BLJM67011", "name": "Assassin's Creed: Ezio Saga (NTSC-J)" }, { "id": "BLJM67019", "name": "Wolfenstein: The New Order (NTSC-J)" }, { "id": "BLJM67020", "name": "Middle-earth: Shadow of Mordor (NTSC-J)" }, { "id": "BLJM67021", "name": "Assassin's Creed: Ezio Saga (Ubi the Best) (NTSC-J)" }, { "id": "BLJM85001", "name": "Monster Hunter Portable 3rd HD Ver. (NTSC-J)" }, { "id": "BLJM85002", "name": "K-On! Houkago Live!! HD Version (NTSC-J)" }, { "id": "BLJM85003", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version (NTSC-J)" }, { "id": "BLJM85004", "name": "Eiyuu Densetsu: Sora no Kiseki FC Kai HD Edition (NTSC-J)" }, { "id": "BLJM85005", "name": "Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition (NTSC-J)" }, { "id": "BLJM85006", "name": "Eiyuu Densetsu: Sora no Kiseki the 3rd Kai HD Edition (NTSC-J)" }, { "id": "BLJM87010", "name": "Final Fantasy XIII (Ultimate Hits) (NTSC-J)" }, { "id": "BLJM90001", "name": "BioHazard 5 (NTSC-J)" }, { "id": "BLJS10001", "name": "Ridge Racer 7 (NTSC-J)" }, { "id": "BLJS10002", "name": "Gundam: Target In Sight (NTSC-J)" }, { "id": "BLJS10003", "name": "Enchanted Arms (NTSC-J)" }, { "id": "BLJS10004", "name": "Untold Legends: Dark Kingdom (NTSC-J)" }, { "id": "BLJS10005", "name": "Ninja Gaiden Sigma (NTSC-J)" }, { "id": "BLJS10006", "name": "Yamasa Digi World SP: Bounty Killer (NTSC-J)" }, { "id": "BLJS10007", "name": "Blazing Angels: Squadrons of WWII (NTSC-J)" }, { "id": "BLJS10008", "name": "Spider-Man 3 (NTSC-J)" }, { "id": "BLJS10009", "name": "Makai Senki Disgaea 3 (First Print Limited Edition) (NTSC-J)" }, { "id": "BLJS10010", "name": "Time Crisis 4 (NTSC-J)" }, { "id": "BLJS10011", "name": "Makai Senki Disgaea 3 (NTSC-J)" }, { "id": "BLJS10012", "name": "Railfan: Taiwan Takatetsu (NTSC-J)" }, { "id": "BLJS10013", "name": "Call of Duty 4: Modern Warfare (NTSC-J)" }, { "id": "BLJS10014", "name": "Transformers: The Game (NTSC-J)" }, { "id": "BLJS10015", "name": "Guitar Hero III Legends of Rock (NTSC-J)" }, { "id": "BLJS10016", "name": "LEGO Star Wars: The Complete Saga (NTSC-J)" }, { "id": "BLJS10017", "name": "Trusty Bell: Chopin no Yume Reprise (NTSC-J)" }, { "id": "BLJS10018", "name": "NBA 2K8 (NTSC-J)" }, { "id": "BLJS10019", "name": "Haze (NTSC-J)" }, { "id": "BLJS10020", "name": "Dragon Ball Z: Burst Limit (NTSC-J)" }, { "id": "BLJS10021", "name": "Dark Sector (NTSC-J)" }, { "id": "BLJS10022", "name": "Enemy Territory : Quake Wars (NTSC-J)" }, { "id": "BLJS10023", "name": "The Darkness (NTSC-J)" }, { "id": "BLJS10024", "name": "Kung Fu Panda (NTSC-J)" }, { "id": "BLJS10025", "name": "Kane & Lynch: Dead Men (NTSC-J)" }, { "id": "BLJS10026", "name": "SoulCalibur IV (NTSC-J)" }, { "id": "BLJS10028", "name": "Double Clutch (NTSC-J)" }, { "id": "BLJS10030", "name": "Guitar Hero Aerosmith (NTSC-J)" }, { "id": "BLJS10031", "name": "Call of Duty 4: Modern Warfare (NTSC-J)" }, { "id": "BLJS10032", "name": "Guitar Hero III Legends of Rock (NTSC-J)" }, { "id": "BLJS10033", "name": "Guitar Hero Aerosmith (NTSC-J)" }, { "id": "BLJS10034", "name": "The Elder Scrolls IV: Oblivion (Game of the Year Edition) (NTSC-J)" }, { "id": "BLJS10037", "name": "Fracture (NTSC-J)" }, { "id": "BLJS10039", "name": "Way of the Samurai 3 (NTSC-J)" }, { "id": "BLJS10040", "name": "Fallout 3 (NTSC-J)" }, { "id": "BLJS10041", "name": "BioShock (NTSC-J)" }, { "id": "BLJS10042", "name": "LEGO Batman: The Videogame (NTSC-J)" }, { "id": "BLJS10044", "name": "Tomb Raider: Underworld (NTSC-J)" }, { "id": "BLJS10045", "name": "The King of Fighters XII (NTSC-J)" }, { "id": "BLJS10047", "name": "Katamari Damacy Tribute (NTSC-J)" }, { "id": "BLJS10048", "name": "NBA 2K9 (NTSC-J)" }, { "id": "BLJS10049", "name": "NHL 2K9 (NTSC-J)" }, { "id": "BLJS10050", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (NTSC-J)" }, { "id": "BLJS10051", "name": "Major League Baseball 2K9 (NTSC-J)" }, { "id": "BLJS10052", "name": "Top Spin 3 (NTSC-J)" }, { "id": "BLJS10053", "name": "Tales of Vesperia (NTSC-J)" }, { "id": "BLJS10054", "name": "Wanted: Weapons of Fate (NTSC-J)" }, { "id": "BLJS10056", "name": "50 Cent: Blood on the Sand (NTSC-J)" }, { "id": "BLJS10057", "name": "428: Fuusa Sareta Shibuya de (NTSC-J)" }, { "id": "BLJS10058", "name": "BioShock (Spike the Best) (NTSC-J)" }, { "id": "BLJS10059", "name": "Kane & Lynch: Dead Men (Spike the Best) (NTSC-J)" }, { "id": "BLJS10060", "name": "Janline R (NTSC-J)" }, { "id": "BLJS10062", "name": "WET (NTSC-J)" }, { "id": "BLJS10063", "name": "Makai Senki Disgaea 3 Append Disc: Raspberyl-hen Hajime Mashita (NTSC-J)" }, { "id": "BLJS10064", "name": "NBA 2K10 (NTSC-J)" }, { "id": "BLJS10065", "name": "NHL 2K10 (NTSC-J)" }, { "id": "BLJS10067", "name": "Tekken 6 (NTSC-J)" }, { "id": "BLJS10068", "name": "Fallout 3 Game of the Year Edition (NTSC-J)" }, { "id": "BLJS10070", "name": "Last Rebellion (NTSC-J)" }, { "id": "BLJS10071", "name": "Sacred 2: Fallen Angel (NTSC-J)" }, { "id": "BLJS10072", "name": "No More Heroes: Eiyuutachi no Rakuen (NTSC-J)" }, { "id": "BLJS10073", "name": "Red Seeds Profile (NTSC-J)" }, { "id": "BLJS10075", "name": "Ar Tonelico Qoga III: Sekai Shuuen No Hikigane Wa Shoujo No Uta Ga Hiku (NTSC-J)" }, { "id": "BLJS10076", "name": "Eat Lead: Matt Hazard no Gyakushuu (NTSC-J)" }, { "id": "BLJS10077", "name": "Midnight Club: Los Angeles (Spike the Best) (NTSC-J)" }, { "id": "BLJS10078", "name": "BioShock 2 (NTSC-J)" }, { "id": "BLJS10079", "name": "PachiPara 15: Super Umi Monogatari in Okinawa 2 (NTSC-J)" }, { "id": "BLJS10080", "name": "Clash of the Titans: The Video Game (NTSC-J)" }, { "id": "BLJS10081", "name": "A.C.E.: Another Century's Episode R (NTSC-J)" }, { "id": "BLJS10083", "name": "The Idolm@ster 2 (NTSC-J)" }, { "id": "BLJS10084", "name": "Naruto Shippuden: Narutimate Storm 2 (NTSC-J)" }, { "id": "BLJS10086", "name": "Red Faction: Guerrilla (Spike the Best) (NTSC-J)" }, { "id": "BLJS10087", "name": "Tomb Raider: Underworld (Spike the Best) (NTSC-J)" }, { "id": "BLJS10088", "name": "Knights Contract (NTSC-J)" }, { "id": "BLJS10089", "name": "Enslaved: Odyssey to the West (NTSC-J)" }, { "id": "BLJS10090", "name": "Major League Baseball 2K10 (NTSC-J)" }, { "id": "BLJS10091", "name": "Big 3 Gun Shooting (NTSC-J)" }, { "id": "BLJS10092", "name": "PachiPara 16: Gingira Paradise 2 (NTSC-J)" }, { "id": "BLJS10093", "name": "Tales of Graces f (NTSC-J)" }, { "id": "BLJS10094", "name": "Makai Senki Disgaea 4 (Limited Edition) (NTSC-J)" }, { "id": "BLJS10095", "name": "Makai Senki Disgaea 4 (NTSC-J)" }, { "id": "BLJS10096", "name": "Sekai Saikyou Ginsei Igo: Hybrid Monte Carlo (NTSC-J)" }, { "id": "BLJS10098", "name": "Majin to Ushinawareta Oukoku (NTSC-J)" }, { "id": "BLJS10099", "name": "428: Fuusa Sareta Shibuya de (Spike the Best) (NTSC-J)" }, { "id": "BLJS10102", "name": "Bikkuri Pachinko: Ashita no Joe: Kyoraku Collection Vol. 1 (NTSC-J)" }, { "id": "BLJS10106", "name": "Rune Factory: Oceans (NTSC-J)" }, { "id": "BLJS10107", "name": "Way of the Samurai 4 (NTSC-J)" }, { "id": "BLJS10108", "name": "Suzumiya Haruhi no Tsuisou (Tsuisou Nagato Yuki no Otoshimono Box) (NTSC-J)" }, { "id": "BLJS10109", "name": "Suzumiya Haruhi no Tsuisou (NTSC-J)" }, { "id": "BLJS10110", "name": "PachiPara 17: Shinkai Monogatari with Agnes Ram (NTSC-J)" }, { "id": "BLJS10111", "name": "Top Spin 4 (NTSC-J)" }, { "id": "BLJS10112", "name": "Major League Baseball 2K11 (NTSC-J)" }, { "id": "BLJS10114", "name": "No More Heroes: Red Zone Edition (NTSC-J)" }, { "id": "BLJS10115", "name": "SoulCalibur V (NTSC-J)" }, { "id": "BLJS10117", "name": "El Shaddai: Ascension of the Metatron (NTSC-J)" }, { "id": "BLJS10118", "name": "Sekai Saikyou Ginsei Shogi: Fuuum Ryouko Raiden (NTSC-J)" }, { "id": "BLJS10119", "name": "Homefront (NTSC-J)" }, { "id": "BLJS10120", "name": "Tales of Xillia (NTSC-J)" }, { "id": "BLJS10121", "name": "Duke Nukem Forever (NTSC-J)" }, { "id": "BLJS10122", "name": "Daisenryaku Perfect: Senjou no Hasha (NTSC-J)" }, { "id": "BLJS10123", "name": "Angel Senki (NTSC-J)" }, { "id": "BLJS10124", "name": "Angel Love Online (NTSC-J)" }, { "id": "BLJS10125", "name": "Lollipop Chainsaw (Premium Edition) (NTSC-J)" }, { "id": "BLJS10126", "name": "Red Faction Armageddon (NTSC-J)" }, { "id": "BLJS10127", "name": "Ace Combat: Assault Horizon (NTSC-J)" }, { "id": "BLJS10129", "name": "Makai Senki Disgaea 4: Fuuka & Desco-hen Hajime Mashita (Limited Edition Append Disc) (NTSC-J)" }, { "id": "BLJS10130", "name": "Makai Senki Disgaea 4: Fuuka & Desco-hen Hajime Mashita (NTSC-J)" }, { "id": "BLJS10131", "name": "Kidou Senshi Gundam Extreme Vs. (NTSC-J)" }, { "id": "BLJS10132", "name": "Dai-2-Ji Super Robot Taisen OG (NTSC-J)" }, { "id": "BLJS10133", "name": "Dai 2 Ji Super Robot Taisen Original Generations (NTSC-J)" }, { "id": "BLJS10134", "name": "Saint Seiya Senki (Limited Gold Box) (NTSC-J)" }, { "id": "BLJS10135", "name": "Dragon Ball: Ultimate Blast (NTSC-J)" }, { "id": "BLJS10137", "name": "Darkness II (Limited Edition) (NTSC-J)" }, { "id": "BLJS10138", "name": "The Idolm@ster: Gravure For You! Vol. 1 (NTSC-J)" }, { "id": "BLJS10139", "name": "The Idolm@ster: Gravure For You! Vol. 2 (NTSC-J)" }, { "id": "BLJS10140", "name": "The Idolm@ster: Gravure For You! Vol. 3 (NTSC-J)" }, { "id": "BLJS10141", "name": "The Idolm@ster: Gravure For You! Vol. 4 (NTSC-J)" }, { "id": "BLJS10142", "name": "The Idolm@ster: Gravure For You! Vol. 5 (NTSC-J)" }, { "id": "BLJS10143", "name": "The Idolm@ster: Gravure For You! Vol. 6 (NTSC-J)" }, { "id": "BLJS10144", "name": "The Idolm@ster: Gravure For You! Vol. 7 (NTSC-J)" }, { "id": "BLJS10145", "name": "The Idolm@ster: Gravure For You! Vol. 8 (NTSC-J)" }, { "id": "BLJS10146", "name": "The Idolm@ster: Gravure For You! Vol. 9 (NTSC-J)" }, { "id": "BLJS10147", "name": "The King of Fighters XIII (NTSC-J)" }, { "id": "BLJS10149", "name": "Mahjong * Dream C Club (NTSC-J)" }, { "id": "BLJS10150", "name": "Ninokuni: Shiroki Seihai no Joou (NTSC-J)" }, { "id": "BLJS10151", "name": "The Idolm@ster 2 (Anime mo Game mo Gravure mo! I-Mas @ Special Box) (NTSC-J)" }, { "id": "BLJS10152", "name": "Saint Seiya Senki (NTSC-J)" }, { "id": "BLJS10153", "name": "Daisenryaku Perfect: Senjou no Hasha (Premium Edition) (NTSC-J)" }, { "id": "BLJS10154", "name": "Kidou Senshi Gundam UC (NTSC-J)" }, { "id": "BLJS10155", "name": "Machi-ing Maker 4 (NTSC-J)" }, { "id": "BLJS10156", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (NTSC-J)" }, { "id": "BLJS10157", "name": "Meikyuu Touro Legasista (NTSC-J)" }, { "id": "BLJS10158", "name": "Shin Kamaitachi no Yoru 11 Hitome no Suspect" }, { "id": "BLJS10160", "name": "Majo to Hyakkihei (NTSC-J)" }, { "id": "BLJS10162", "name": "Moe Moe Daisensou * Gendaiban++ (Premium Edition) (NTSC-J)" }, { "id": "BLJS10163", "name": "Moe Moe Daisensou * Gendaiban++ (NTSC-J)" }, { "id": "BLJS10164", "name": "Shutsugeki!! Otometachi no Senjou 2: Yuukoku o Kakeru Koujo no Tsubasa (NTSC-J)" }, { "id": "BLJS10165", "name": "Shutsugeki!! Otometachi no Senjou 2 (Limited Edition) (NTSC-J)" }, { "id": "BLJS10167", "name": "Kidou Senshi Gundam UC (Special Edition) (NTSC-J)" }, { "id": "BLJS10168", "name": "Lollipop Chainsaw (NTSC-J)" }, { "id": "BLJS10169", "name": "Major League Baseball 2K12 (NTSC-J)" }, { "id": "BLJS10171", "name": "Spec Ops: The Line (NTSC-J)" }, { "id": "BLJS10173", "name": "Accel World: Ginyoku No Kakusei (NTSC-J)" }, { "id": "BLJS10174", "name": "Accel World: Ginyoku No Kakusei (NTSC-J)" }, { "id": "BLJS10175", "name": "Accel World: Kasoku No Chouten (NTSC-J)" }, { "id": "BLJS10176", "name": "Accel World: Kasoku No Chouten (NTSC-J)" }, { "id": "BLJS10177", "name": "Super Hero Generation (NTSC-J)" }, { "id": "BLJS10178", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu (Gouka Limited Edition) (NTSC-J)" }, { "id": "BLJS10179", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu (NTSC-J)" }, { "id": "BLJS10181", "name": "Toki to Eien Tokitowa (NTSC-J)" }, { "id": "BLJS10182", "name": "Macross 30: Ginga o Tsunagu Utagoe (30th Anniversary Edition) (NTSC-J)" }, { "id": "BLJS10184", "name": "Macross 30: Ginga o Tsunagu Utagoe (NTSC-J)" }, { "id": "BLJS10185", "name": "Ninokuni: Shiroki Seihai no Joou (NTSC-J)" }, { "id": "BLJS10186", "name": "Homefront (Spike Chunsoft the Best) (NTSC-J)" }, { "id": "BLJS10187", "name": "Tekken Tag Tournament 2 (NTSC-J)" }, { "id": "BLJS10188", "name": "Tales of Xillia 2 (NTSC-J)" }, { "id": "BLJS10189", "name": "BioShock (NTSC-J)" }, { "id": "BLJS10190", "name": "Borderlands 2 (NTSC-J)" }, { "id": "BLJS10191", "name": "Kingdoms of Amalur: Reckoning (NTSC-J)" }, { "id": "BLJS10192", "name": "Pachinko Hissatsu Shigotonin IV: Kyoraku Collection Vol. 2 (NTSC-J)" }, { "id": "BLJS10193", "name": "Taiheiyou no Arashi: Senkan Yamato, Akatsuki ni Shutsugekisu (Deluxe Limited Edition) (NTSC-J)" }, { "id": "BLJS10194", "name": "Taiheiyou no Arashi: Senkan Yamato, Akatsuki ni Shutsugekisu (NTSC-J)" }, { "id": "BLJS10195", "name": "Z/X: Zillions of enemy X - Zekkai no Crusade (NTSC-J)" }, { "id": "BLJS10196", "name": "NBA 2K13 (NTSC-J)" }, { "id": "BLJS10197", "name": "Gundam Breaker (NTSC-J)" }, { "id": "BLJS10199", "name": "Darksiders II (NTSC-J)" }, { "id": "BLJS10200", "name": "Naruto Shippuden: Narutimate Storm 3 (NTSC-J)" }, { "id": "BLJS10201", "name": "Kamisama to Unmei Kakumei no Paradox (Limited Edition) (NTSC-J)" }, { "id": "BLJS10202", "name": "Kamisama to Unmei Kakumei no Paradox (NTSC-J)" }, { "id": "BLJS10203", "name": "Dream C Club Zero: Complete Edipyon! (NTSC-J)" }, { "id": "BLJS10204", "name": "Saints Row: The Third (The Full Package) (NTSC-J)" }, { "id": "BLJS10206", "name": "Disgaea D2 (NTSC-J)" }, { "id": "BLJS10207", "name": "BioShock Infinite (NTSC-J)" }, { "id": "BLJS10208", "name": "Dream C Club Zero: Special Edipyon! (NTSC-J)" }, { "id": "BLJS10209", "name": "Chikyuu Boueigun 4 (NTSC-J)" }, { "id": "BLJS10210", "name": "Daisenryaku: Dai Toua Kouboushi - Tora Tora Tora Ware Kishuu Ni Seikou Seri (Deluxe Limited Edition) (NTSC-J)" }, { "id": "BLJS10211", "name": "Daisenryaku: Dai Toua Kouboushi - Tora Tora Tora Ware Kishuu Ni Seikou Seri (NTSC-J)" }, { "id": "BLJS10212", "name": "Daito Giken Koushiki Pachi-Slot Simulator Hihouden: Taiyou o Motomeru Monotachi (NTSC-J)" }, { "id": "BLJS10213", "name": "Lollipop Chainsaw (Valentine Edition) (NTSC-J)" }, { "id": "BLJS10215", "name": "Killer is Dead (Premium Edition) (NTSC-J)" }, { "id": "BLJS10216", "name": "Jojo no Kimyou na Bouken: All-Star Battle (Limited Edition) (NTSC-J)" }, { "id": "BLJS10217", "name": "Jojo no Kimyou na Bouken: All-Star Battle (NTSC-J)" }, { "id": "BLJS10218", "name": "Metro: Last Light (NTSC-J)" }, { "id": "BLJS10219", "name": "Kamen Rider: Battride War (Premium TV Sound Edition) (NTSC-J)" }, { "id": "BLJS10220", "name": "Kamen Rider: Battride War (NTSC-J)" }, { "id": "BLJS10221", "name": "Onechanbara Z: Kagura with NoNoNo! (NTSC-J)" }, { "id": "BLJS10222", "name": "Terraria (NTSC-J)" }, { "id": "BLJS10223", "name": "Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice (NTSC-J)" }, { "id": "BLJS10224", "name": "Arcadias no Ikusahime (NTSC-J)" }, { "id": "BLJS10225", "name": "BlazBlue: Chrono Phantasma (NTSC-J)" }, { "id": "BLJS10226", "name": "BlazBlue: Chrono Phantasma (NTSC-J)" }, { "id": "BLJS10227", "name": "XBLAZE Code: Embryo (NTSC-J)" }, { "id": "BLJS10229", "name": "Sangoku Hime 2: Kouki Houkou - Mezameshi Taiga (Limited Edition) (NTSC-J)" }, { "id": "BLJS10230", "name": "Sangoku Hime 2: Kouki Houkou - Mezameshi Taiga (NTSC-J)" }, { "id": "BLJS10231", "name": "Tales of Symphonia: Unisonant Pack (NTSC-J)" }, { "id": "BLJS10232", "name": "NBA 2K14 (NTSC-J)" }, { "id": "BLJS10233", "name": "Moe Moe Daisensou * Gendaiban++ (SystemSoft Selection) (NTSC-J)" }, { "id": "BLJS10234", "name": "Dragon Ball Z: Battle of Z (NTSC-J)" }, { "id": "BLJS10236", "name": "Saint Seiya: Brave Soldiers (NTSC-J)" }, { "id": "BLJS10237", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End (HD Comp! Box) (NTSC-J)" }, { "id": "BLJS10238", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End (NTSC-J)" }, { "id": "BLJS10240", "name": "AKB1/149: Love Election (Limited Edition) (NTSC-J)" }, { "id": "BLJS10241", "name": "AKB1/149: Love Election (NTSC-J)" }, { "id": "BLJS10242", "name": "Shutsugeki!! Otometachi no Senjou 2: Yuukoku o Kakeru Koujo no Tsubasa (SystemSoft Selection) (NTSC-J)" }, { "id": "BLJS10244", "name": "Super Heroine Chronicle: Chou Heroine Senki (NTSC-J)" }, { "id": "BLJS10245", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu (SystemSoft Selection) (NTSC-J)" }, { "id": "BLJS10246", "name": "Saints Row IV (Ultra Super Ultimate Deluxe Edition) (NTSC-J)" }, { "id": "BLJS10247", "name": "Super Robot Taisen OG Infinite Battle & Super Robot Taisen OG Dark Prison (Limited Edition) (NTSC-J)" }, { "id": "BLJS10248", "name": "Super Robot Taisen OG Infinite Battle (NTSC-J)" }, { "id": "BLJS10249", "name": "Kidou Senshi Gundam: Extreme VS Full Boost (Premium G-Sound Edition) (NTSC-J)" }, { "id": "BLJS10250", "name": "Kidou Senshi Gundam: Extreme VS Full Boost (NTSC-J)" }, { "id": "BLJS10251", "name": "Borderlands 2 (NTSC-J)" }, { "id": "BLJS10253", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu! (Super Deluxe Limited Edition) (NTSC-J)" }, { "id": "BLJS10254", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu! (NTSC-J)" }, { "id": "BLJS10256", "name": "Dai-3-Ji Super Robot Taisen Z Jigoku Hen (NTSC-J)" }, { "id": "BLJS10257", "name": "J-Stars Victory Vs (Ani-Song Sound Edition) (NTSC-J)" }, { "id": "BLJS10258", "name": "J-Stars Victory Vs (NTSC-J)" }, { "id": "BLJS10259", "name": "CV Casting Voice (NTSC-J)" }, { "id": "BLJS10260", "name": "The IdolM@ster: One for All (NTSC-J)" }, { "id": "BLJS10261", "name": "The IdolM@ster: One for All (765 Production New Producer Box) (NTSC-J)" }, { "id": "BLJS10262", "name": "Kamen Rider: Battride War II (NTSC-J)" }, { "id": "BLJS10263", "name": "Kamen Rider Battride War II (Premium TV & Movie Sound Edition) (NTSC-J)" }, { "id": "BLJS10264", "name": "Dream C Club Gogo. (NTSC-J)" }, { "id": "BLJS10265", "name": "Mato Kurenai Yuugekitai: Tokyo Twilight Ghosthunters (NTSC-J)" }, { "id": "BLJS10266", "name": "Harem Tengoku da to Omottara Yandere Jigoku Datta (NTSC-J)" }, { "id": "BLJS10267", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution (NTSC-J)" }, { "id": "BLJS10268", "name": "Natural Doctrine (NTSC-J)" }, { "id": "BLJS10269", "name": "Under Night In Birth: Exe: Late (NTSC-J)" }, { "id": "BLJS10270", "name": "Mobile Suit Gundam: Side Stories (NTSC-J)" }, { "id": "BLJS10272", "name": "One Piece: Unlimited World R (NTSC-J)" }, { "id": "BLJS10273", "name": "Natsuiro High School: Seishun Hakusho (NTSC-J)" }, { "id": "BLJS10274", "name": "Arcana Heart 3 Love Max!!!!! (NTSC-J)" }, { "id": "BLJS10275", "name": "Kamisama to Unmei Kakusei no Cross Thesis (NTSC-J)" }, { "id": "BLJS10276", "name": "Kamisama to Unmei Kakusei no Cross Thesis (Limited Edition) (NTSC-J)" }, { "id": "BLJS10278", "name": "Daisenryaku Exceed II" }, { "id": "BLJS10279", "name": "Shin Hayarigami (NTSC-J)" }, { "id": "BLJS10280", "name": "Dead Island (Double Zombie Pack) (NTSC-J)" }, { "id": "BLJS10281", "name": "Borderlands: The Pre-Sequel (NTSC-J)" }, { "id": "BLJS10283", "name": "Sacred 3 (NTSC-J)" }, { "id": "BLJS10284", "name": "Super Robot Taisen OG Saga - Masou Kishin F - Coffin of the End" }, { "id": "BLJS10285", "name": "Super Robot Taisen OG Saga: Mashou Kishin F Coffin of the End (NTSC-J)" }, { "id": "BLJS10286", "name": "Gundam Breaker 2 (NTSC-J)" }, { "id": "BLJS10288", "name": "Kamen Rider Summonride" }, { "id": "BLJS10289", "name": "Guilty Gear Xrd -SIGN- (NTSC-J)" }, { "id": "BLJS10290", "name": "Super Hero Generation (Special Sound Edition) (NTSC-J)" }, { "id": "BLJS10291", "name": "Godzilla (NTSC-J)" }, { "id": "BLJS10292", "name": "Dragon Ball: Xenoverse (NTSC-J)" }, { "id": "BLJS10293", "name": "XBLAZE: Lost Memories (NTSC-J)" }, { "id": "BLJS10295", "name": "Hajime no Ippo: The Fighting! (NTSC-J)" }, { "id": "BLJS10296", "name": "Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai All-Star Special (NTSC-J)" }, { "id": "BLJS10297", "name": "Gundam Breaker 2 (Omochidashi Pack) (NTSC-J)" }, { "id": "BLJS10299", "name": "Dai-3-Ji Super Robot Taisen Z Tengoku-hen (NTSC-J)" }, { "id": "BLJS10300", "name": "BlazBlue: Chrono Phantasma Extend (NTSC-J)" }, { "id": "BLJS10301", "name": "Ukiyo no Shishi (NTSC-J)" }, { "id": "BLJS10302", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 1 (NTSC-J)" }, { "id": "BLJS10303", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 2 (NTSC-J)" }, { "id": "BLJS10304", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 3 (NTSC-J)" }, { "id": "BLJS10305", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 4 (NTSC-J)" }, { "id": "BLJS10306", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 5 (NTSC-J)" }, { "id": "BLJS10307", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 6" }, { "id": "BLJS10308", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 7" }, { "id": "BLJS10309", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 8" }, { "id": "BLJS10310", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 9" }, { "id": "BLJS10312", "name": "Sword Art Online: Last Song (NTSC-J)" }, { "id": "BLJS10316", "name": "Mato Kurenai Yuugekitai: Daybreak Special Gigs (NTSC-J)" }, { "id": "BLJS10318", "name": "JoJo's Bizzare Adventure - Eyes of Heaven" }, { "id": "BLJS10324", "name": "Kamen Rider Battride War Sousei" }, { "id": "BLJS10329", "name": "Guilty Gear Xrd: Revelator" }, { "id": "BLJS10330", "name": "Tales of Berseria" }, { "id": "BLJS10332", "name": "BlazBlue: CentralFiction" }, { "id": "BLJS10335", "name": "Super Robot Wars OG: The Moon Dwellers (NTSC-J)" }, { "id": "BLJS10336", "name": "Shin Hayarigami 2" }, { "id": "BLJS50001", "name": "Ridge Racer 7 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50002", "name": "Gundam: Target in Sight (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50003", "name": "Ninja Gaiden Sigma (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50004", "name": "Enchant Arm (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50005", "name": "The Elder Scrolls IV: Oblivion (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50006", "name": "Makai Senki Disgaea 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50007", "name": "SoulCalibur IV (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50008", "name": "Trusty Bell: Chopin no Yume Reprise (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50009", "name": "Way of the Samurai 3 Plus (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50010", "name": "Ridge Racer 7 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50011", "name": "Gundam: Target in Sight (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLJS50012", "name": "Fallout 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50013", "name": "Katamari Damacy Tribute (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50014", "name": "Naruto Narultimate Storm (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50015", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50016", "name": "Sacred 2: Fallen Angel (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50017", "name": "Tekken 6 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50018", "name": "Ar tonelico III: Sekai Shuuen no Hikigane wa Shoujo no Uta ga Hajiku (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50019", "name": "Dragon Age: Origins (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50020", "name": "Rune Factory: Oceans (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50021", "name": "Way of the Samurai 4 Plus (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50022", "name": "Earth Defense Force: Insect Armageddon (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50023", "name": "Tales of Graces F (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50024", "name": "Tales of Vesperia (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50025", "name": "The Idolm@ster 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50026", "name": "No More Heroes: Red Zone Edition (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50027", "name": "Mobile Suit Gundam: Extreme VS (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50028", "name": "Ace Combat: Assault Horizon (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50029", "name": "Dragon Ball Z: Ultimate Blast (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50030", "name": "Naruto: Ultimate Ninja Storm 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50031", "name": "Saint Seiya Senki (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50032", "name": "Shin Kamaitachi no Yoru: 11 Hitome no Suspect (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50033", "name": "Tekken Tag Tournament 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50034", "name": "Tales of Vesperia (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50035", "name": "Tales of Graces F (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50036", "name": "Tales of Xillia (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50037", "name": "Tales of Xillia 2 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50038", "name": "Macross 30: Ginga o Tsunagu Utagoe (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50039", "name": "BlazBlue: Chrono Phantasma (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50040", "name": "The IdolM@ster: One for All (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS50041", "name": "Dai-3-Ji Super Robot Taisen Z Jigoku-hen (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLJS92001", "name": "Short Peace: Tsukigime Ranko no Ichiban Nagai Hi (NTSC-J)" }, { "id": "BLJS93001", "name": "MACROSS TRIAL FRONTIER (NTSC-J)" }, { "id": "BLJS93002", "name": "Tekken Hybrid (NTSC-J)" }, { "id": "BLJS93004", "name": "MACROSS LAST FRONTIER (NTSC-J)" }, { "id": "BLJS93005", "name": "Gekijouban Macross F: Sayonara no Tsubasa - Hybrid Pack (NTSC-J)" }, { "id": "BLJS93006", "name": "Choujikuu Yousai Macross: Ai Oboete Imasu ka (NTSC-J)" }, { "id": "BLJS93007", "name": "Choujikuu Yousai Macross: Ai Oboete Imasu ka: Hybrid Pack (NTSC-J)" }, { "id": "BLJS93008", "name": ".hack//Versus" }, { "id": "BLJS93009", "name": "Rinne no Lagrange: Kamogawa Days Game & OVA Hybrid Disc (NTSC-J)" }, { "id": "BLJS93010", "name": "Eureka Seven AO: Jungfrau no Hanabanatachi (First Print Limited Edition) (NTSC-J)" }, { "id": "BLJS93011", "name": "Eureka Seven AO: Jungfrau no Hanabanatachi (NTSC-J)" }, { "id": "BLJS93013", "name": "Nerawareta Gakuen Gekijouban Anime & Complete Setting Book Hybrid Disc (NTSC-J)" }, { "id": "BLJS93014", "name": "Gekijouban Macross F: 30th d Shudisuta b Box - Hybrid Pack (NTSC-J)" }, { "id": "BLJS93020", "name": "Tales of Zestiria (NTSC-J)" }, { "id": "BLJX94005", "name": "Fainaru Fantajī Sātīn (Trial Version) (NTSC-J)" }, { "id": "BLKS10039", "name": "Ridge Racer 7 (NTSC-K)" }, { "id": "BLKS20002", "name": "Mist of Chaos (NTSC-K)" }, { "id": "BLKS20003", "name": "Gundam Musou (NTSC-K)" }, { "id": "BLKS20008", "name": "Need for Speed: Carbon (NTSC-K)" }, { "id": "BLKS20010", "name": "Railfan (NTSC-K)" }, { "id": "BLKS20013", "name": "Tom Clancy's Rainbow Six: Vegas (NTSC-K)" }, { "id": "BLKS20015", "name": "The Orange Box (NTSC-K)" }, { "id": "BLKS20019", "name": "Transformers: The Game (NTSC-K)" }, { "id": "BLKS20021", "name": "Star Wars: The Force Unleashed (NTSC-K)" }, { "id": "BLKS20023", "name": "Harry Potter and the Order of the Phoenix (NTSC-K)" }, { "id": "BLKS20025", "name": "Fracture (NTSC-K)" }, { "id": "BLKS20028", "name": "Bladestorm: The Hundred Years' War (NTSC-K)" }, { "id": "BLKS20029", "name": "Medal of Honor: Airborne (NTSC-K)" }, { "id": "BLKS20032", "name": "Juiced 2: Hot Import Nights (NTSC-K)" }, { "id": "BLKS20034", "name": "Need for Speed: ProStreet (NTSC-K)" }, { "id": "BLKS20036", "name": "World Soccer Winning Eleven 2008 (NTSC-K)" }, { "id": "BLKS20041", "name": "Army of Two (NTSC-K)" }, { "id": "BLKS20050", "name": "Soldier of Fortune: Payback (NTSC-K)" }, { "id": "BLKS20051", "name": "Burnout Paradise (NTSC-K)" }, { "id": "BLKS20052", "name": "Shin Sangoku Musou 6 (NTSC-K)" }, { "id": "BLKS20053", "name": "Devil May Cry 4 (NTSC-K)" }, { "id": "BLKS20054", "name": "Battlefield: Bad Company 2 (NTSC-K)" }, { "id": "BLKS20055", "name": "Lost Planet: Extreme Condition (NTSC-K)" }, { "id": "BLKS20056", "name": "FIFA Street 3 (NTSC-K)" }, { "id": "BLKS20062", "name": "Alone In The Dark: Inferno (NTSC-K)" }, { "id": "BLKS20063", "name": "Record Of Agarest War (NTSC-K)" }, { "id": "BLKS20068", "name": "Dragon Ball Z: Burst Limit (NTSC-K)" }, { "id": "BLKS20070", "name": "UEFA Euro 2008 (NTSC-K)" }, { "id": "BLKS20073", "name": "Grand Theft Auto IV (NTSC-K)" }, { "id": "BLKS20076", "name": "Saints Row 2 (NTSC-K)" }, { "id": "BLKS20077", "name": "Hellboy: Science of Evil (NTSC-K)" }, { "id": "BLKS20084", "name": "Far Cry 2 (NTSC-K)" }, { "id": "BLKS20086", "name": "Spider-Man: Web of Shadows (NTSC-K)" }, { "id": "BLKS20087", "name": "Dead Space (NTSC-K)" }, { "id": "BLKS20088", "name": "007 Quantum of Solace (NTSC-K)" }, { "id": "BLKS20089", "name": "Silent Hill: Homecoming (NTSC-K)" }, { "id": "BLKS20091", "name": "Shaun White Snowboarding (NTSC-K)" }, { "id": "BLKS20092", "name": "Tom Clancy's EndWar (NTSC-K)" }, { "id": "BLKS20093", "name": "WWE SmackDown vs. RAW 2009 (NTSC-K)" }, { "id": "BLKS20094", "name": "Mirror's edge (NTSC-K)" }, { "id": "BLKS20096", "name": "Need For Speed Undercover (NTSC-K)" }, { "id": "BLKS20097", "name": "Tomb Raider: Underworld (NTSC-K)" }, { "id": "BLKS20099", "name": "WORLD SOCCER Winning Eleven 2009 (NTSC-K)" }, { "id": "BLKS20100", "name": "Prince of Persia (NTSC-K)" }, { "id": "BLKS20101", "name": "FIFA Soccer 09 (NTSC-K)" }, { "id": "BLKS20104", "name": "Assassin's Creed (NTSC-K)" }, { "id": "BLKS20107", "name": "Burnout Paradise: The Ultimate Box (NTSC-K)" }, { "id": "BLKS20108", "name": "Bionic Commando (NTSC-K)" }, { "id": "BLKS20109", "name": "Tom Clancy's Rainbow Six: Vegas 2 (Big Hit) (NTSC-K)" }, { "id": "BLKS20112", "name": "Cross Edge" }, { "id": "BLKS20119", "name": "F.E.A.R. 2: Project Origin (NTSC-K)" }, { "id": "BLKS20120", "name": "Wanted: Weapons of Fate (NTSC-K)" }, { "id": "BLKS20121", "name": "UFC Undisputed 2009 (NTSC-K)" }, { "id": "BLKS20123", "name": "Major League Baseball 2K9 (NTSC-K)" }, { "id": "BLKS20124", "name": "Monsters Vs. Aliens (NTSC-K)" }, { "id": "BLKS20126", "name": "Devil May Cry 4 (Big Hit) (NTSC-K)" }, { "id": "BLKS20133", "name": "Wolfenstein (NTSC-K)" }, { "id": "BLKS20135", "name": "Musou Orochi Z (NTSC-K)" }, { "id": "BLKS20137", "name": "Dark Void (NTSC-K)" }, { "id": "BLKS20141", "name": "The King of Fighters XII (NTSC-K)" }, { "id": "BLKS20147", "name": "Record of Agarest War Zero (NTSC-K)" }, { "id": "BLKS20154", "name": "Batman: Arkham Asylum (NTSC-K)" }, { "id": "BLKS20159", "name": "Call of Duty: Modern Warfare 2 (NTSC-K)" }, { "id": "BLKS20162", "name": "WORLD SOCCER Winning Eleven 2010 (NTSC-K)" }, { "id": "BLKS20170", "name": "Ninja Gaiden Sigma 2 (NTSC-K)" }, { "id": "BLKS20172", "name": "Singularity (NTSC-K)" }, { "id": "BLKS20184", "name": "Dante's Inferno (NTSC-K)" }, { "id": "BLKS20187", "name": "Street Fighter IV (NTSC-K)" }, { "id": "BLKS20193", "name": "Prince of Persia: The Forgotten Sands (NTSC-K)" }, { "id": "BLKS20198", "name": "Grand Theft Auto: Episodes from Liberty City (NTSC-K)" }, { "id": "BLKS20200", "name": "World Soccer Winning Eleven 2010 (PlayStation 3 BigHit series) (NTSC-K)" }, { "id": "BLKS20210", "name": "Mafia II (NTSC-K)" }, { "id": "BLKS20220", "name": "WORLD SOCCER Winning Eleven 2011 (NTSC-K)" }, { "id": "BLKS20222", "name": "Tekken 6 (NTSC-K)" }, { "id": "BLKS20229", "name": "F.E.A.R. 3 (NTSC-K)" }, { "id": "BLKS20241", "name": "Hyperdimension Neptune (NTSC-K)" }, { "id": "BLKS20271", "name": "Warriors: Legends of Troy (NTSC-K)" }, { "id": "BLKS20281", "name": "Operation Flashpoint: Red River (NTSC-K)" }, { "id": "BLKS20289", "name": "Red Faction: Armageddon (NTSC-K)" }, { "id": "BLKS20301", "name": "WORLD SOCCER Winning Eleven 2012 (NTSC-K)" }, { "id": "BLKS20315", "name": "Red Dead Redemption: Game of the Year Edition (NTSC-K)" }, { "id": "BLKS20316", "name": "Metal Gear Solid HD Collection (NTSC-K)" }, { "id": "BLKS20317", "name": "Warhammer 40,000: Space Marine (NTSC-K)" }, { "id": "BLKS20320", "name": "The Cursed Crusade (NTSC-K)" }, { "id": "BLKS20321", "name": "Assassin's Creed: Brotherhood (NTSC-K)" }, { "id": "BLKS20375", "name": "Pro Evolution Soccer 2013 (NTSC-K)" }, { "id": "BLKS20384", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version (NTSC-K)" }, { "id": "BLKS20385", "name": "Attouteki Yuugi: Mugen Souls (NTSC-K)" }, { "id": "BLKS20397", "name": "Tales of Xillia 2 (NTSC-K)" }, { "id": "BLKS20400", "name": "Dai-2-Ji Super Robot Taisen Original Generations (NTSC-K)" }, { "id": "BLKS20438", "name": "Pro Evolution Soccer 2014 (NTSC-K)" }, { "id": "BLKS20442", "name": "Grand Theft Auto V (NTSC-K)" }, { "id": "BLKS20443", "name": "Saints Row IV (NTSC-K)" }, { "id": "BLKS20449", "name": "Saint Seiya: Brave Soldiers (NTSC-K)" }, { "id": "BLKS25001", "name": "Metal Gear Solid 4: Guns of the Patriots (NTSC-K)" }, { "id": "BLMJ55040", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (PlayStation 3 the Best Reprint) (NTSC-J)" }, { "id": "BLMJ55041", "name": "Meruru no Atelier: Arland no Renkinjutsushi 3 (PlayStation 3 the Best) (NTSC-J)" }, { "id": "BLUA31169", "name": "NBA 2K13/MLB 2K13 Combo Pack" }, { "id": "BLUS00759", "name": "Guitar Hero 5 (NTSC-U)" }, { "id": "BLUS01717", "name": "Call of Duty: Black Ops II (NTSC-U)" }, { "id": "BLUS30001", "name": "Ridge Racer 7 (NTSC-U)" }, { "id": "BLUS30002", "name": "Untold Legends: Dark Kingdom (NTSC-U)" }, { "id": "BLUS30003", "name": "F.E.A.R. (NTSC-U)" }, { "id": "BLUS30004", "name": "NBA 2K7 (NTSC-U)" }, { "id": "BLUS30005", "name": "NHL 2K7 (NTSC-U)" }, { "id": "BLUS30006", "name": "Blazing Angels: Squadrons of WWII (NTSC-U)" }, { "id": "BLUS30007", "name": "The Elder Scrolls IV: Oblivion (NTSC-U)" }, { "id": "BLUS30008", "name": "Sonic the Hedgehog (NTSC-U)" }, { "id": "BLUS30009", "name": "Full Auto 2: Battlelines (NTSC-U)" }, { "id": "BLUS30010", "name": "Marvel: Ultimate Alliance (NTSC-U)" }, { "id": "BLUS30011", "name": "Tony Hawk's Project 8 (NTSC-U)" }, { "id": "BLUS30012", "name": "Call of Duty 3 (NTSC-U)" }, { "id": "BLUS30013", "name": "Tiger Woods PGA Tour '07 (NTSC-U)" }, { "id": "BLUS30014", "name": "Madden NFL '07 (NTSC-U)" }, { "id": "BLUS30016", "name": "Need for Speed: Carbon (NTSC-U)" }, { "id": "BLUS30017", "name": "Mobile Suit Gundam: Crossfire (NTSC-U)" }, { "id": "BLUS30018", "name": "Tom Clancy's Rainbow Six: Vegas (NTSC-U)" }, { "id": "BLUS30019", "name": "Fight Night: Round 3 (NTSC-U)" }, { "id": "BLUS30020", "name": "Virtua Fighter 5 (NTSC-U)" }, { "id": "BLUS30021", "name": "Virtua Tennis 3 (NTSC-U)" }, { "id": "BLUS30022", "name": "NBA Street: Homecourt (NTSC-U)" }, { "id": "BLUS30023", "name": "The Godfather: The Don's Edition (NTSC-U)" }, { "id": "BLUS30024", "name": "Def Jam: Icon (NTSC-U)" }, { "id": "BLUS30025", "name": "Major League Baseball 2K7 (NTSC-U)" }, { "id": "BLUS30026", "name": "College Hoops 2K7 (NTSC-U)" }, { "id": "BLUS30027", "name": "Armored Core 4 (NTSC-U)" }, { "id": "BLUS30028", "name": "Enchanted Arms (NTSC-U)" }, { "id": "BLUS30029", "name": "Pirates of the Caribbean: At World's End (NTSC-U)" }, { "id": "BLUS30030", "name": "Spider-Man 3 (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30031", "name": "Spider-Man 3 (NTSC-U)" }, { "id": "BLUS30032", "name": "Tom Clancy's Splinter Cell: Double Agent (NTSC-U)" }, { "id": "BLUS30033", "name": "The Bigs (NTSC-U)" }, { "id": "BLUS30034", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2 (NTSC-U)" }, { "id": "BLUS30035", "name": "The Darkness (NTSC-U)" }, { "id": "BLUS30036", "name": "Ninja Gaiden Sigma (NTSC-U)" }, { "id": "BLUS30037", "name": "Madden NFL 08 (NTSC-U)" }, { "id": "BLUS30038", "name": "FIFA Soccer 08 (NTSC-U)" }, { "id": "BLUS30039", "name": "NCAA Football '08 (NTSC-U)" }, { "id": "BLUS30040", "name": "NASCAR '08 (NTSC-U)" }, { "id": "BLUS30042", "name": "Fantastic Four: Rise of the Silver Surfer (NTSC-U)" }, { "id": "BLUS30043", "name": "Ratatouille (NTSC-U)" }, { "id": "BLUS30044", "name": "NHL 2K8 (NTSC-U)" }, { "id": "BLUS30045", "name": "Harry Potter and the Order of the Phoenix (NTSC-U)" }, { "id": "BLUS30046", "name": "Surf's Up (NTSC-U)" }, { "id": "BLUS30047", "name": "Transformers: The Game (NTSC-U)" }, { "id": "BLUS30048", "name": "Hellboy: Science of Evil (NTSC-U)" }, { "id": "BLUS30049", "name": "All-Pro Football 2K8 (NTSC-U)" }, { "id": "BLUS30050", "name": "Rock Band (NTSC-U)" }, { "id": "BLUS30051", "name": "Ninja Gaiden Sigma (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30052", "name": "Blazing Angels 2: Secret Missions of WWII (NTSC-U)" }, { "id": "BLUS30053", "name": "Tiger Woods PGA Tour 08 (NTSC-U)" }, { "id": "BLUS30055", "name": "The Orange Box (NTSC-U)" }, { "id": "BLUS30056", "name": "Mercenaries 2: World in Flames (NTSC-U)" }, { "id": "BLUS30057", "name": "Army of Two (NTSC-U)" }, { "id": "BLUS30058", "name": "Dynasty Warriors: Gundam (NTSC-U)" }, { "id": "BLUS30059", "name": "Skate (NTSC-U)" }, { "id": "BLUS30060", "name": "NBA Live 08 (NTSC-U)" }, { "id": "BLUS30061", "name": "Burnout Paradise (NTSC-U)" }, { "id": "BLUS30062", "name": "NHL '08 (NTSC-U)" }, { "id": "BLUS30063", "name": "Clive Barker's Jericho (NTSC-U)" }, { "id": "BLUS30064", "name": "DiRT (NTSC-U)" }, { "id": "BLUS30065", "name": "The Simpsons Game (NTSC-U)" }, { "id": "BLUS30066", "name": "Need for Speed: ProStreet (NTSC-U)" }, { "id": "BLUS30067", "name": "Medal of Honor: Airborne (NTSC-U)" }, { "id": "BLUS30068", "name": "Sega Rally: Revo (NTSC-U)" }, { "id": "BLUS30069", "name": "Conan (NTSC-U)" }, { "id": "BLUS30070", "name": "Bladestorm: The Hundred Years' War (NTSC-U)" }, { "id": "BLUS30071", "name": "Tony Hawk's Proving Ground (NTSC-U)" }, { "id": "BLUS30072", "name": "Call of Duty 4: Modern Warfare (NTSC-U)" }, { "id": "BLUS30073", "name": "Stuntman: Ignition (NTSC-U)" }, { "id": "BLUS30074", "name": "Guitar Hero III: Legends of Rock (NTSC-U)" }, { "id": "BLUS30075", "name": "World Series of Poker 2008: Battle for the Bracelets (NTSC-U)" }, { "id": "BLUS30076", "name": "Rapala Fishing Frenzy 2009 (NTSC-U)" }, { "id": "BLUS30077", "name": "NBA 2K8 (NTSC-U)" }, { "id": "BLUS30078", "name": "College Hoops 2K8 (NTSC-U)" }, { "id": "BLUS30079", "name": "LEGO Star Wars: The Complete Saga (NTSC-U)" }, { "id": "BLUS30080", "name": "Stranglehold (NTSC-U)" }, { "id": "BLUS30081", "name": "Stranglehold (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30082", "name": "WWE SmackDown vs. Raw 2008 (NTSC-U)" }, { "id": "BLUS30083", "name": "The Golden Compass (NTSC-U)" }, { "id": "BLUS30084", "name": "Juiced 2: Hot Import Nights (NTSC-U)" }, { "id": "BLUS30086", "name": "Unreal Tournament III (NTSC-U)" }, { "id": "BLUS30087", "name": "The Elder Scrolls IV: Oblivion (Game of the Year Edition) (NTSC-U)" }, { "id": "BLUS30088", "name": "Cars: Mater-National Championship (NTSC-U)" }, { "id": "BLUS30089", "name": "Assassin's Creed (NTSC-U)" }, { "id": "BLUS30090", "name": "TimeShift (NTSC-U)" }, { "id": "BLUS30091", "name": "Beowulf: The Game (NTSC-U)" }, { "id": "BLUS30092", "name": "Devil May Cry 4 (NTSC-U)" }, { "id": "BLUS30093", "name": "Time Crisis 4 (NTSC-U)" }, { "id": "BLUS30094", "name": "Haze (NTSC-U)" }, { "id": "BLUS30096", "name": "Assassin's Creed (Limited Edition) (NTSC-U)" }, { "id": "BLUS30097", "name": "MX vs. ATV: Untamed (NTSC-U)" }, { "id": "BLUS30098", "name": "NCAA March Madness '08 (NTSC-U)" }, { "id": "BLUS30099", "name": "FIFA Street 3 (NTSC-U)" }, { "id": "BLUS30100", "name": "NFL Tour (NTSC-U)" }, { "id": "BLUS30101", "name": "BlackSite: Area 51 (NTSC-U)" }, { "id": "BLUS30102", "name": "Kane & Lynch: Dead Men (NTSC-U)" }, { "id": "BLUS30103", "name": "History Channel: Battle for the Pacific (NTSC-U)" }, { "id": "BLUS30104", "name": "Turok (NTSC-U)" }, { "id": "BLUS30105", "name": "Soldier of Fortune: Payback (NTSC-U)" }, { "id": "BLUS30106", "name": "The Elder Scrolls IV: Shivering Isles (NTSC-U)" }, { "id": "BLUS30107", "name": "Conflict: Denied Ops (NTSC-U)" }, { "id": "BLUS30108", "name": "The Club (NTSC-U)" }, { "id": "BLUS30109", "name": "Metal Gear Solid 4: Guns of the Patriots (NTSC-U)" }, { "id": "BLUS30110", "name": "Dynasty Warriors 6 (NTSC-U)" }, { "id": "BLUS30111", "name": "Pro Evolution Soccer 2008 (NTSC-U)" }, { "id": "BLUS30112", "name": "Karaoke Revolution Presents: American Idol Encore (NTSC-U)" }, { "id": "BLUS30113", "name": "Lost Planet: Extreme Condition (NTSC-U)" }, { "id": "BLUS30114", "name": "UEFA Euro 2008 (NTSC-U)" }, { "id": "BLUS30115", "name": "Condemned 2: Bloodshot (NTSC-U)" }, { "id": "BLUS30116", "name": "Dark Sector (NTSC-U)" }, { "id": "BLUS30117", "name": "Dragon Ball Z: Burst Limit (NTSC-U)" }, { "id": "BLUS30118", "name": "Battlefield: Bad Company (NTSC-U)" }, { "id": "BLUS30119", "name": "Turning Point: Fall of Liberty (NTSC-U)" }, { "id": "BLUS30120", "name": "Lost: Via Domus (NTSC-U)" }, { "id": "BLUS30121", "name": "Battlefield: Bad Company (Gold Edition) (NTSC-U)" }, { "id": "BLUS30122", "name": "Major League Baseball 2K8 (NTSC-U)" }, { "id": "BLUS30123", "name": "Sega Superstars Tennis (NTSC-U)" }, { "id": "BLUS30124", "name": "Devil May Cry 4 (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30125", "name": "Tom Clancy's Rainbow Six: Vegas 2 (NTSC-U)" }, { "id": "BLUS30126", "name": "Vampire Rain: Altered Species (NTSC-U)" }, { "id": "BLUS30127", "name": "Grand Theft Auto IV (NTSC-U)" }, { "id": "BLUS30128", "name": "NFL Head Coach '09 (NTSC-U)" }, { "id": "BLUS30129", "name": "Viking: Battle for Asgard (NTSC-U)" }, { "id": "BLUS30130", "name": "Sid Meier's Civilization Revolution (NTSC-U)" }, { "id": "BLUS30131", "name": "Tom Clancy's Rainbow Six: Vegas 2 (Limited Edition) (NTSC-U)" }, { "id": "BLUS30132", "name": "Enemy Territory: Quake Wars (NTSC-U)" }, { "id": "BLUS30133", "name": "Guitar Hero: Aerosmith (NTSC-U)" }, { "id": "BLUS30134", "name": "Iron Man (NTSC-U)" }, { "id": "BLUS30135", "name": "NBA Ballers: Chosen One (NTSC-U)" }, { "id": "BLUS30136", "name": "Kung Fu Panda (NTSC-U)" }, { "id": "BLUS30137", "name": "Robert Ludlum's The Bourne Conspiracy (NTSC-U)" }, { "id": "BLUS30138", "name": "The Chronicles of Narnia: Prince Caspian (NTSC-U)" }, { "id": "BLUS30139", "name": "NASCAR '09 (NTSC-U)" }, { "id": "BLUS30140", "name": "Monster Madness: Grave Danger (NTSC-U)" }, { "id": "BLUS30141", "name": "LEGO Indiana Jones: The Original Adventures (NTSC-U)" }, { "id": "BLUS30142", "name": "Race Driver: GRID (NTSC-U)" }, { "id": "BLUS30143", "name": "Overlord: Raising Hell (NTSC-U)" }, { "id": "BLUS30144", "name": "Star Wars: The Force Unleashed (NTSC-U)" }, { "id": "BLUS30145", "name": "Prototype (NTSC-U)" }, { "id": "BLUS30146", "name": "Madden NFL '09 (NTSC-U)" }, { "id": "BLUS30147", "name": "Rock Band 2 (NTSC-U)" }, { "id": "BLUS30148", "name": "Metal Gear Solid 4: Guns of the Patriots (Limited Edition) (NTSC-U)" }, { "id": "BLUS30149", "name": "Grand Theft Auto IV (Special Edition) (NTSC-U)" }, { "id": "BLUS30150", "name": "Madden NFL '09 (20th Anniversary Collector's Edition) (NTSC-U)" }, { "id": "BLUS30151", "name": "WALL•E (NTSC-U)" }, { "id": "BLUS30152", "name": "The Incredible Hulk (NTSC-U)" }, { "id": "BLUS30153", "name": "Hail to the Chimp (NTSC-U)" }, { "id": "BLUS30154", "name": "Beijing 2008: The Official Video Game of the Olympic Games (NTSC-U)" }, { "id": "BLUS30155", "name": "NCAA Football '09 (NTSC-U)" }, { "id": "BLUS30156", "name": "The Chronicles of Riddick: Assault on Dark Athena (NTSC-U)" }, { "id": "BLUS30157", "name": "Top Spin 3 (NTSC-U)" }, { "id": "BLUS30158", "name": "FaceBreaker (NTSC-U)" }, { "id": "BLUS30159", "name": "Tiger Woods PGA Tour '09 (NTSC-U)" }, { "id": "BLUS30160", "name": "Soul Calibur IV (NTSC-U)" }, { "id": "BLUS30161", "name": "Eternal Sonata (NTSC-U)" }, { "id": "BLUS30162", "name": "Ferrari Challenge (NTSC-U)" }, { "id": "BLUS30164", "name": "Guitar Hero: World Tour (NTSC-U)" }, { "id": "BLUS30165", "name": "Brothers in Arms: Hell's Highway (NTSC-U)" }, { "id": "BLUS30166", "name": "BioShock (NTSC-U)" }, { "id": "BLUS30168", "name": "NHL '09 (NTSC-U)" }, { "id": "BLUS30169", "name": "Silent Hill: Homecoming (NTSC-U)" }, { "id": "BLUS30170", "name": "Madden NFL '09 (NTSC-U)" }, { "id": "BLUS30173", "name": "NBA Live '09 (NTSC-U)" }, { "id": "BLUS30174", "name": "TNA iMPACT! (NTSC-U)" }, { "id": "BLUS30175", "name": "LEGO Batman: The Videogame (NTSC-U)" }, { "id": "BLUS30176", "name": "FIFA Soccer '09 (NTSC-U)" }, { "id": "BLUS30177", "name": "Dead Space (NTSC-U)" }, { "id": "BLUS30178", "name": "Far Cry 2 (NTSC-U)" }, { "id": "BLUS30179", "name": "Mirror's Edge (NTSC-U)" }, { "id": "BLUS30180", "name": "Tom Clancy's EndWar (NTSC-U)" }, { "id": "BLUS30181", "name": "Disgaea 3: Absence of Justice (NTSC-U)" }, { "id": "BLUS30182", "name": "Pure (NTSC-U)" }, { "id": "BLUS30184", "name": "Fracture (NTSC-U)" }, { "id": "BLUS30185", "name": "Fallout 3 (NTSC-U)" }, { "id": "BLUS30186", "name": "Tom Clancy's H.A.W.X. (NTSC-U)" }, { "id": "BLUS30187", "name": "Armored Core: For Answer (NTSC-U)" }, { "id": "BLUS30188", "name": "NHL 2K9 (NTSC-U)" }, { "id": "BLUS30189", "name": "Pro Evolution Soccer 2009 (NTSC-U)" }, { "id": "BLUS30190", "name": "Midnight Club: Los Angeles (NTSC-U)" }, { "id": "BLUS30191", "name": "Baja: Edge of Control (NTSC-U)" }, { "id": "BLUS30192", "name": "Call of Duty: World at War (NTSC-U)" }, { "id": "BLUS30194", "name": "WWE SmackDown vs. Raw 2009 (NTSC-U)" }, { "id": "BLUS30195", "name": "Rock Band: Track Pack - Vol.2 (NTSC-U)" }, { "id": "BLUS30196", "name": "Valkyria Chronicles (NTSC-U)" }, { "id": "BLUS30197", "name": "NBA 2K9 (NTSC-U)" }, { "id": "BLUS30198", "name": "Quantum of Solace: The Game (NTSC-U)" }, { "id": "BLUS30199", "name": "Quantum of Solace: The Game (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30200", "name": "Naruto: Ultimate Ninja Storm (NTSC-U)" }, { "id": "BLUS30201", "name": "Saints Row 2 (NTSC-U)" }, { "id": "BLUS30203", "name": "Blitz: The League II (NTSC-U)" }, { "id": "BLUS30204", "name": "Disney's Sing It! (NTSC-U)" }, { "id": "BLUS30205", "name": "The Legend of Spyro: Dawn of the Dragon (NTSC-U)" }, { "id": "BLUS30208", "name": "WWE SmackDown vs. Raw 2009 (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30209", "name": "Golden Axe: Beast Rider (NTSC-U)" }, { "id": "BLUS30210", "name": "Legendary (NTSC-U)" }, { "id": "BLUS30211", "name": "History Channel's Civil War: Secret Missions (NTSC-U)" }, { "id": "BLUS30212", "name": "Rock Revolution (NTSC-U)" }, { "id": "BLUS30213", "name": "Monopoly (NTSC-U)" }, { "id": "BLUS30214", "name": "Prince of Persia (NTSC-U)" }, { "id": "BLUS30215", "name": "Karaoke Revolution Presents: American Idol Encore 2 (NTSC-U)" }, { "id": "BLUS30218", "name": "Spider-Man: Web of Shadows (NTSC-U)" }, { "id": "BLUS30219", "name": "Madagascar: Escape 2 Africa (NTSC-U)" }, { "id": "BLUS30220", "name": "MotoGP '08 (NTSC-U)" }, { "id": "BLUS30221", "name": "Cabela's Dangerous Hunts 2009 (NTSC-U)" }, { "id": "BLUS30223", "name": "Shaun White Snowboarding (NTSC-U)" }, { "id": "BLUS30224", "name": "Tomb Raider: Underworld (NTSC-U)" }, { "id": "BLUS30225", "name": "Shellshock 2: Blood Trails (NTSC-U)" }, { "id": "BLUS30226", "name": "Lord of the Rings: Conquest (NTSC-U)" }, { "id": "BLUS30228", "name": "Rise of the Argonauts (NTSC-U)" }, { "id": "BLUS30229", "name": "Bolt (NTSC-U)" }, { "id": "BLUS30230", "name": "Score International: Baja 1000 (NTSC-U)" }, { "id": "BLUS30231", "name": "NCAA Basketball '09 (NTSC-U)" }, { "id": "BLUS30232", "name": "Alone in the Dark: Inferno (NTSC-U)" }, { "id": "BLUS30233", "name": "Shaun White Snowboarding (NTSC-U)" }, { "id": "BLUS30234", "name": "Fallout 3 (NTSC-U)" }, { "id": "BLUS30235", "name": "Rock Band: Track Pack - AC/DC Live (NTSC-U)" }, { "id": "BLUS30236", "name": "SBK: Superbike World Championship (NTSC-U)" }, { "id": "BLUS30241", "name": "X-Blades (NTSC-U)" }, { "id": "BLUS30242", "name": "Harry Potter and the Half-Blood Prince (NTSC-U)" }, { "id": "BLUS30244", "name": "Sonic Unleashed (NTSC-U)" }, { "id": "BLUS30246", "name": "Mortal Kombat vs. DC Universe (NTSC-U)" }, { "id": "BLUS30247", "name": "Mortal Kombat vs. DC Universe (NTSC-U)" }, { "id": "BLUS30248", "name": "Need for Speed: Undercover (NTSC-U)" }, { "id": "BLUS30250", "name": "Burnout Paradise: The Ultimate Box (NTSC-U)" }, { "id": "BLUS30251", "name": "F.E.A.R. 2: Project Origin (NTSC-U)" }, { "id": "BLUS30253", "name": "Skate 2 (NTSC-U)" }, { "id": "BLUS30254", "name": "NPPL Championship Paintball 2009 (NTSC-U)" }, { "id": "BLUS30255", "name": "Bionic Commando (NTSC-U)" }, { "id": "BLUS30256", "name": "50 Cent: Blood on the Sand (NTSC-U)" }, { "id": "BLUS30257", "name": "Guitar Hero: Metallica (NTSC-U)" }, { "id": "BLUS30258", "name": "Red Faction: Guerrilla (NTSC-U)" }, { "id": "BLUS30259", "name": "Sonic's Ultimate Genesis Collection (NTSC-U)" }, { "id": "BLUS30260", "name": "Street Fighter IV (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30261", "name": "The Godfather II (NTSC-U)" }, { "id": "BLUS30262", "name": "Wheelman (NTSC-U)" }, { "id": "BLUS30264", "name": "Afro Samurai (NTSC-U)" }, { "id": "BLUS30265", "name": "Street Fighter IV (NTSC-U)" }, { "id": "BLUS30266", "name": "MLB Front Office Manager (NTSC-U)" }, { "id": "BLUS30267", "name": "Eat Lead: The Return of Matt Hazard (NTSC-U)" }, { "id": "BLUS30268", "name": "X-Men Origins: Wolverine (Uncaged Edition) (NTSC-U)" }, { "id": "BLUS30269", "name": "WWE Legends of Wrestlemania (NTSC-U)" }, { "id": "BLUS30270", "name": "Resident Evil 5 (NTSC-U)" }, { "id": "BLUS30271", "name": "Trivial Pursuit (NTSC-U)" }, { "id": "BLUS30272", "name": "Ski Doo: Snowmobile Challenge (NTSC-U)" }, { "id": "BLUS30273", "name": "Dreamworks' Monsters vs. Aliens (NTSC-U)" }, { "id": "BLUS30274", "name": "Disney's Sing It! High School Musical 3: Senior Year (NTSC-U)" }, { "id": "BLUS30275", "name": "Wanted: Weapons of Fate (NTSC-U)" }, { "id": "BLUS30276", "name": "Major League Baseball 2K9 (NTSC-U)" }, { "id": "BLUS30278", "name": "Dead to Rights: Retribution (NTSC-U)" }, { "id": "BLUS30279", "name": "Batman: Arkham Asylum (NTSC-U)" }, { "id": "BLUS30280", "name": "The Bigs 2 (NTSC-U)" }, { "id": "BLUS30281", "name": "Mafia II (NTSC-U)" }, { "id": "BLUS30282", "name": "The Beatles: Rock Band (NTSC-U)" }, { "id": "BLUS30283", "name": "Command & Conquer: Red Alert 3 (Ultimate Edition) (NTSC-U)" }, { "id": "BLUS30284", "name": "Mini Ninjas (NTSC-U)" }, { "id": "BLUS30285", "name": "Fight Night: Round 4 (NTSC-U)" }, { "id": "BLUS30286", "name": "Tiger Woods PGA Tour '10 (NTSC-U)" }, { "id": "BLUS30287", "name": "Resident Evil 5 (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30288", "name": "Dynasty Warriors: Gundam 2 (NTSC-U)" }, { "id": "BLUS30289", "name": "James Bond 007: Blood Stone (NTSC-U)" }, { "id": "BLUS30290", "name": "Guitar Hero: Smash Hits (NTSC-U)" }, { "id": "BLUS30291", "name": "Guitar Hero: Van Halen (NTSC-U)" }, { "id": "BLUS30292", "name": "Guitar Hero 5 (NTSC-U)" }, { "id": "BLUS30293", "name": "Ice Age: Dawn of the Dinosaurs (NTSC-U)" }, { "id": "BLUS30294", "name": "Marvel: Ultimate Alliance 2 (NTSC-U)" }, { "id": "BLUS30295", "name": "Blur (NTSC-U)" }, { "id": "BLUS30296", "name": "Singularity (NTSC-U)" }, { "id": "BLUS30297", "name": "Transformers: Revenge of the Fallen (NTSC-U)" }, { "id": "BLUS30298", "name": "Wolfenstein (NTSC-U)" }, { "id": "BLUS30299", "name": "UFC 2009: Undisputed (NTSC-U)" }, { "id": "BLUS30300", "name": "Split / Second (NTSC-U)" }, { "id": "BLUS30303", "name": "Shaun White Skateboarding (NTSC-U)" }, { "id": "BLUS30304", "name": "Damnation (NTSC-U)" }, { "id": "BLUS30305", "name": "Up (NTSC-U)" }, { "id": "BLUS30306", "name": "Dynasty Warriors 6: Empires (NTSC-U)" }, { "id": "BLUS30307", "name": "Ghostbusters: The Video Game (NTSC-U)" }, { "id": "BLUS30308", "name": "Heroes Over Europe (NTSC-U)" }, { "id": "BLUS30310", "name": "Brink (NTSC-U)" }, { "id": "BLUS30311", "name": "Rogue Warrior (NTSC-U)" }, { "id": "BLUS30312", "name": "Sacred 2: Fallen Angel (NTSC-U)" }, { "id": "BLUS30313", "name": "DiRT 2 (NTSC-U)" }, { "id": "BLUS30314", "name": "Fuel (NTSC-U)" }, { "id": "BLUS30316", "name": "Operation Flashpoint: Dragon Rising (NTSC-U)" }, { "id": "BLUS30317", "name": "Overlord II (NTSC-U)" }, { "id": "BLUS30318", "name": "Terminator: Salvation (NTSC-U)" }, { "id": "BLUS30319", "name": "Cars: Race-O-Rama (NTSC-U)" }, { "id": "BLUS30320", "name": "Darksiders (NTSC-U)" }, { "id": "BLUS30321", "name": "MX vs. ATV Reflex (NTSC-U)" }, { "id": "BLUS30323", "name": "Dark Void (NTSC-U)" }, { "id": "BLUS30324", "name": "Ride to Hell: Retribution (NTSC-U)" }, { "id": "BLUS30325", "name": "Tony Hawk: Ride (NTSC-U)" }, { "id": "BLUS30326", "name": "G.I. Joe: The Rise of Cobra (NTSC-U)" }, { "id": "BLUS30327", "name": "Rock Band: Track Pack - Classic Rock (NTSC-U)" }, { "id": "BLUS30328", "name": "Stormrise (NTSC-U)" }, { "id": "BLUS30330", "name": "Brutal Legend (NTSC-U)" }, { "id": "BLUS30331", "name": "Leisure Suit Larry: Box Office Bust (NTSC-U)" }, { "id": "BLUS30333", "name": "JASF: Jane's Advanced Strike Fighters (NTSC-U)" }, { "id": "BLUS30334", "name": "Backbreaker (NTSC-U)" }, { "id": "BLUS30335", "name": "Splater House (NTSC-U)" }, { "id": "BLUS30336", "name": "Katamari Forever (NTSC-U)" }, { "id": "BLUS30339", "name": "Castlevania: Lords of Shadow (NTSC-U)" }, { "id": "BLUS30340", "name": "Aliens vs. Predator (NTSC-U)" }, { "id": "BLUS30341", "name": "Alpha Protocol (NTSC-U)" }, { "id": "BLUS30342", "name": "Sonic & Sega All-Stars Racing (NTSC-U)" }, { "id": "BLUS30343", "name": "Virtua Tennis 2009 (NTSC-U)" }, { "id": "BLUS30344", "name": "Vancouver 2010: The Official Video Game of the Olympic Games (NTSC-U)" }, { "id": "BLUS30345", "name": "NHL '10 (NTSC-U)" }, { "id": "BLUS30347", "name": "Call of Juarez: Bound in Blood (NTSC-U)" }, { "id": "BLUS30348", "name": "Cross Edge (NTSC-U)" }, { "id": "BLUS30350", "name": "Green Day: Rock Band (NTSC-U)" }, { "id": "BLUS30351", "name": "Rock Band: Track Pack - Country (NTSC-U)" }, { "id": "BLUS30352", "name": "Rock Band: Metal Track Pack (NTSC-U)" }, { "id": "BLUS30353", "name": "The King of Fighters XII (NTSC-U)" }, { "id": "BLUS30354", "name": "G-Force: The Video Game (NTSC-U)" }, { "id": "BLUS30355", "name": "NCAA Football '10 (NTSC-U)" }, { "id": "BLUS30356", "name": "Bakugan Battle Brawlers (NTSC-U)" }, { "id": "BLUS30357", "name": "Transformers: War for Cybertron (NTSC-U)" }, { "id": "BLUS30359", "name": "Tekken 6 (NTSC-U)" }, { "id": "BLUS30360", "name": "Inversion (NTSC-U)" }, { "id": "BLUS30363", "name": "Cloudy with a Chance of Meatballs (NTSC-U)" }, { "id": "BLUS30364", "name": "Assassin's Creed II (NTSC-U)" }, { "id": "BLUS30365", "name": "Hannah Montana: The Movie (NTSC-U)" }, { "id": "BLUS30366", "name": "Planet 51 (NTSC-U)" }, { "id": "BLUS30367", "name": "Bayonetta (NTSC-U)" }, { "id": "BLUS30368", "name": "DJ Hero (NTSC-U)" }, { "id": "BLUS30372", "name": "Band Hero (NTSC-U)" }, { "id": "BLUS30374", "name": "James Cameron's Avatar The Game (NTSC-U)" }, { "id": "BLUS30375", "name": "Madden NFL '10 (NTSC-U)" }, { "id": "BLUS30377", "name": "Call of Duty: Modern Warfare 2 (NTSC-U)" }, { "id": "BLUS30378", "name": "Karaoke Revolution (NTSC-U)" }, { "id": "BLUS30379", "name": "F1 2010 (NTSC-U)" }, { "id": "BLUS30380", "name": "Ninja Gaiden: Sigma 2 (NTSC-U)" }, { "id": "BLUS30382", "name": "LEGO: Rock Band (NTSC-U)" }, { "id": "BLUS30385", "name": "FIFA Soccer '10 (NTSC-U)" }, { "id": "BLUS30386", "name": "Borderlands (NTSC-U)" }, { "id": "BLUS30387", "name": "Pinball Hall of Fame: The Williams Collection (NTSC-U)" }, { "id": "BLUS30389", "name": "Chaotic: Shadow Warriors (NTSC-U)" }, { "id": "BLUS30390", "name": "BlazBlue: Calamity Trigger - Limited Edition (NTSC-U)" }, { "id": "BLUS30391", "name": "Need for Speed: Shift (NTSC-U)" }, { "id": "BLUS30392", "name": "BlazBlue: Calamity Trigger (NTSC-U)" }, { "id": "BLUS30393", "name": "NBA Live '10 (NTSC-U)" }, { "id": "BLUS30394", "name": "Star Wars The Clone Wars: Republic Heroes (NTSC-U)" }, { "id": "BLUS30395", "name": "Front Mission Evolved (NTSC-U)" }, { "id": "BLUS30396", "name": "Cabela's Big Game Hunter 2010 (NTSC-U)" }, { "id": "BLUS30397", "name": "Disney Sing It: Pop Hits (NTSC-U)" }, { "id": "BLUS30398", "name": "Way of the Samurai 3 (NTSC-U)" }, { "id": "BLUS30399", "name": "Afrika (NTSC-U)" }, { "id": "BLUS30400", "name": "Just Cause 2 (NTSC-U)" }, { "id": "BLUS30402", "name": "NBA 2K10 (NTSC-U)" }, { "id": "BLUS30403", "name": "WET (NTSC-U)" }, { "id": "BLUS30404", "name": "Pro Evolution Soccer 2010 (NTSC-U)" }, { "id": "BLUS30405", "name": "Dante's Inferno (Divine Edition) (NTSC-U)" }, { "id": "BLUS30406", "name": "Hunted: The Demon's Forge (NTSC-U)" }, { "id": "BLUS30407", "name": "Saboteur (NTSC-U)" }, { "id": "BLUS30408", "name": "Army of Two: The 40th Day (NTSC-U)" }, { "id": "BLUS30409", "name": "Cabela's Outdoor Adventures (NTSC-U)" }, { "id": "BLUS30410", "name": "Marvel vs. Capcom 3 : Fate of Two Worlds (NTSC-U)" }, { "id": "BLUS30412", "name": "WWE SmackDown vs. RAW 2010 (NTSC-U)" }, { "id": "BLUS30415", "name": "Dragon Age: Origins (NTSC-U)" }, { "id": "BLUS30416", "name": "Final Fantasy XIII (NTSC-U)" }, { "id": "BLUS30417", "name": "Grand Slam Tennis 2 (NTSC-U)" }, { "id": "BLUS30418", "name": "Red Dead Redemption (NTSC-U)" }, { "id": "BLUS30420", "name": "BioShock 2 (NTSC-U)" }, { "id": "BLUS30424", "name": "IL-2 Sturmovik: Birds of Prey (NTSC-U)" }, { "id": "BLUS30427", "name": "Top Spin 4 (NTSC-U)" }, { "id": "BLUS30428", "name": "Catherine (NTSC-U)" }, { "id": "BLUS30431", "name": "Dragon Ball: Raging Blast (NTSC-U)" }, { "id": "BLUS30432", "name": "Warhammer 40000: Space Marine (NTSC-U)" }, { "id": "BLUS30433", "name": "Dance Dance Revolution: New Moves (NTSC-U)" }, { "id": "BLUS30434", "name": "Lost Planet 2 (NTSC-U)" }, { "id": "BLUS30435", "name": "Jurassic: The Hunted (NTSC-U)" }, { "id": "BLUS30436", "name": "Medal of Honor (NTSC-U)" }, { "id": "BLUS30437", "name": "LEGO Harry Potter: Years 1-4 (NTSC-U)" }, { "id": "BLUS30438", "name": "NHL 2K10 (NTSC-U)" }, { "id": "BLUS30439", "name": "Dead Rising 2 (NTSC-U)" }, { "id": "BLUS30441", "name": "Where the Wild Things Are (NTSC-U)" }, { "id": "BLUS30442", "name": "Midnight Club: Los Angeles (Complete Edition - Greatest Hits) (NTSC-U)" }, { "id": "BLUS30443", "name": "Demon's Souls (NTSC-U)" }, { "id": "BLUS30445", "name": "Star Wars: The Force Unleashed (Ultimate Sith Edition) (NTSC-U)" }, { "id": "BLUS30447", "name": "Scene It? Bright Lights! Big Screen! (NTSC-U)" }, { "id": "BLUS30451", "name": "Fallout 3 Game of the Year Edition (NTSC-U)" }, { "id": "BLUS30453", "name": "Super Street Fighter IV (NTSC-U)" }, { "id": "BLUS30456", "name": "Fairytale Fights (NTSC-U)" }, { "id": "BLUS30457", "name": "Tron: Evolution (NTSC-U)" }, { "id": "BLUS30458", "name": "Battlefield: Bad Company 2 (NTSC-U)" }, { "id": "BLUS30459", "name": "Disney Sing It: Pop Hits (NTSC-U)" }, { "id": "BLUS30461", "name": "How to Train Your Dragon (NTSC-U)" }, { "id": "BLUS30462", "name": "Star Ocean: The Last Hope - International (NTSC-U)" }, { "id": "BLUS30463", "name": "Rock Band 3 (NTSC-U)" }, { "id": "BLUS30464", "name": "Skate 3 (NTSC-U)" }, { "id": "BLUS30465", "name": "Atelier Rorona: The Alchemist of Arland (NTSC-U)" }, { "id": "BLUS30466", "name": "El Shaddai: Ascension of the Metatron (NTSC-U)" }, { "id": "BLUS30467", "name": "Prison Break: The Conspiracy (NTSC-U)" }, { "id": "BLUS30469", "name": "Legend of the Guardians: The Owls of Ga'Hoole (NTSC-U)" }, { "id": "BLUS30471", "name": "Dynasty Warriors: Strikeforce (NTSC-U)" }, { "id": "BLUS30472", "name": "Majin and the Forsaken Kingdom (NTSC-U)" }, { "id": "BLUS30474", "name": "FIFA World Cup 2010: South Africa (NTSC-U)" }, { "id": "BLUS30476", "name": "Deus Ex: Human Revolution (NTSC-U)" }, { "id": "BLUS30478", "name": "R.U.S.E. (NTSC-U)" }, { "id": "BLUS30480", "name": "Toy Story 3 (NTSC-U)" }, { "id": "BLUS30481", "name": "Nier (NTSC-U)" }, { "id": "BLUS30483", "name": "UFC Undisputed 2010 (NTSC-U)" }, { "id": "BLUS30484", "name": "Resonance of Fate (NTSC-U)" }, { "id": "BLUS30485", "name": "Rage (NTSC-U)" }, { "id": "BLUS30487", "name": "Guitar Hero: Warriors Of Rock (NTSC-U)" }, { "id": "BLUS30489", "name": "Tiger Woods PGA Tour '11 (NTSC-U)" }, { "id": "BLUS30490", "name": "3D Dot Game Heroes (NTSC-U)" }, { "id": "BLUS30491", "name": "Resident Evil 5: Gold Edition (NTSC-U)" }, { "id": "BLUS30492", "name": "Sengoku Basara: Samurai Heroes (NTSC-U)" }, { "id": "BLUS30493", "name": "Aliens vs. Predator (NTSC-U)" }, { "id": "BLUS30494", "name": "Yazuka 3 (NTSC-U)" }, { "id": "BLUS30495", "name": "Naruto Shippuden: Ultimate Ninja Storm 2 (NTSC-U)" }, { "id": "BLUS30498", "name": "Sleeping Dogs (NTSC-U)" }, { "id": "BLUS30499", "name": "Spider-Man: Shattered Dimensions (NTSC-U)" }, { "id": "BLUS30500", "name": "Fallout: New Vegas (NTSC-U)" }, { "id": "BLUS30501", "name": "Dishonored (NTSC-U)" }, { "id": "BLUS30502", "name": "Warriors: Legends of Troy (NTSC-U)" }, { "id": "BLUS30503", "name": "Trinity: Souls of Zill O'll (NTSC-U)" }, { "id": "BLUS30504", "name": "Fist of the North Star: Ken's Rage (NTSC-U)" }, { "id": "BLUS30505", "name": "Clash of the Titans: The Video Game (NTSC-U)" }, { "id": "BLUS30507", "name": "Naughty Bear (NTSC-U)" }, { "id": "BLUS30509", "name": "Dragon Age: Origins - Awakening (NTSC-U)" }, { "id": "BLUS30510", "name": "Dungeon Siege III (NTSC-U)" }, { "id": "BLUS30511", "name": "F.E.A.R. 3 (NTSC-U)" }, { "id": "BLUS30512", "name": "Last Rebellion (NTSC-U)" }, { "id": "BLUS30513", "name": "Little League World Series Baseball 2010 (NTSC-U)" }, { "id": "BLUS30514", "name": "Iron Man 2 (NTSC-U)" }, { "id": "BLUS30515", "name": "Batman: Arkham Asylum (Game of the Year Edition) (NTSC-U)" }, { "id": "BLUS30516", "name": "Armored Core V (NTSC-U)" }, { "id": "BLUS30517", "name": "Battlefield: Bad Company 2 Limited Edition (NTSC-U)" }, { "id": "BLUS30518", "name": "Megamind: Ultimate Showdown (NTSC-U)" }, { "id": "BLUS30520", "name": "MySims SkyHeroes (NTSC-U)" }, { "id": "BLUS30521", "name": "Tom Clancy's Ghost Recon: Future Soldier (NTSC-U)" }, { "id": "BLUS30522", "name": "Mortal Kombat (NTSC-U)" }, { "id": "BLUS30524", "name": "Grand Theft Auto: Episodes from Liberty City (NTSC-U)" }, { "id": "BLUS30526", "name": "DJ Hero 2 (NTSC-U)" }, { "id": "BLUS30527", "name": "Test Drive Unlimited 2 (NTSC-U)" }, { "id": "BLUS30528", "name": "Time Crisis: Razing Storm (NTSC-U)" }, { "id": "BLUS30530", "name": "Homefront (NTSC-U)" }, { "id": "BLUS30531", "name": "Spec Ops: The Line (NTSC-U)" }, { "id": "BLUS30532", "name": "Brunswick Pro Bowling (NTSC-U)" }, { "id": "BLUS30534", "name": "Star Wars: The Force Unleashed II (NTSC-U)" }, { "id": "BLUS30535", "name": "Trinity Universe (NTSC-U)" }, { "id": "BLUS30536", "name": "Driver: San Francisco (NTSC-U)" }, { "id": "BLUS30537", "name": "Assassin's Creed: Brotherhood (NTSC-U)" }, { "id": "BLUS30538", "name": "Batman: Arkham City (NTSC-U)" }, { "id": "BLUS30540", "name": "LEGO Star Wars 3: The Clone Wars (NTSC-U)" }, { "id": "BLUS30542", "name": "Tony Hawk: Shred (NTSC-U)" }, { "id": "BLUS30543", "name": "Vanquish (NTSC-U)" }, { "id": "BLUS30545", "name": "Man vs. Wild with Bear Grylls (NTSC-U)" }, { "id": "BLUS30547", "name": "Mindjack (NTSC-U)" }, { "id": "BLUS30548", "name": "Saw II: Flesh And Blood (NTSC-U)" }, { "id": "BLUS30549", "name": "CSI: Crime Scene Investigation: Fatal Conspiracy (NTSC-U)" }, { "id": "BLUS30550", "name": "Two Worlds II (NTSC-U)" }, { "id": "BLUS30551", "name": "Def Jam Rapstar (NTSC-U)" }, { "id": "BLUS30554", "name": "L.A. Noire (NTSC-U)" }, { "id": "BLUS30555", "name": "Apache: Air Assault (NTSC-U)" }, { "id": "BLUS30557", "name": "Max Payne 3 (NTSC-U)" }, { "id": "BLUS30558", "name": "Enslaved: Odyssey to the West (NTSC-U)" }, { "id": "BLUS30559", "name": "de Blob 2 (NTSC-U)" }, { "id": "BLUS30560", "name": "NCAA Football 11 (NTSC-U)" }, { "id": "BLUS30561", "name": "Monster Jam: Path of Destruction (NTSC-U)" }, { "id": "BLUS30562", "name": "Bodycount (NTSC-U)" }, { "id": "BLUS30563", "name": "Cabela's Dangerous Hunts 2011 (NTSC-U)" }, { "id": "BLUS30564", "name": "Cabela's North American Adventures (NTSC-U)" }, { "id": "BLUS30565", "name": "Silent Hill: Downpour (NTSC-U)" }, { "id": "BLUS30566", "name": "Need for Speed: Hot Pursuit (NTSC-U)" }, { "id": "BLUS30568", "name": "NHL 11 (NTSC-U)" }, { "id": "BLUS30569", "name": "You Don't Know Jack (NTSC-U)" }, { "id": "BLUS30570", "name": "Rapala Pro Bass Fishing 2010 (NTSC-U)" }, { "id": "BLUS30571", "name": "Racquet Sports (NTSC-U)" }, { "id": "BLUS30573", "name": "Green Day: Rock Band Plus (NTSC-U)" }, { "id": "BLUS30574", "name": "NBA 2K11 (NTSC-U)" }, { "id": "BLUS30575", "name": "Harry Potter the Deathly Hallows: Part 1 (NTSC-U)" }, { "id": "BLUS30576", "name": "BlazBlue: Continuum Shift (NTSC-U)" }, { "id": "BLUS30577", "name": "Bakugan: Defenders of the Core (NTSC-U)" }, { "id": "BLUS30578", "name": "Hasbro Family Game Night 3 (NTSC-U)" }, { "id": "BLUS30580", "name": "Shift 2: Unleashed (NTSC-U)" }, { "id": "BLUS30581", "name": "Dragon Ball Raging 2 (NTSC-U)" }, { "id": "BLUS30582", "name": "Knights Contract (NTSC-U)" }, { "id": "BLUS30583", "name": "DC Universe Online (NTSC-U)" }, { "id": "BLUS30585", "name": "Red Faction: Armageddon (NTSC-U)" }, { "id": "BLUS30587", "name": "Zumba Fitness (NTSC-U)" }, { "id": "BLUS30591", "name": "Call of Duty: Black Ops (NTSC-U)" }, { "id": "BLUS30592", "name": "NBA Elite 11 (NTSC-U)" }, { "id": "BLUS30593", "name": "The Lord of the Rings Aragorn's Quest (NTSC-U)" }, { "id": "BLUS30597", "name": "John Daly's ProStroke Golf (NTSC-U)" }, { "id": "BLUS30598", "name": "Mafia II (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30601", "name": "Disney Sing It: Family Hits (NTSC-U)" }, { "id": "BLUS30602", "name": "Blood Drive (NTSC-U)" }, { "id": "BLUS30603", "name": "Disney Sing It: Party Hits (NTSC-U)" }, { "id": "BLUS30604", "name": "NASCAR The Game 2011 (NTSC-U)" }, { "id": "BLUS30606", "name": "Create (NTSC-U)" }, { "id": "BLUS30607", "name": "Alice: Madness Returns (NTSC-U)" }, { "id": "BLUS30608", "name": "Fight Night Champion (NTSC-U)" }, { "id": "BLUS30609", "name": "The Sims 3 (NTSC-U)" }, { "id": "BLUS30610", "name": "Pro Evolution Soccer 2011 (NTSC-U)" }, { "id": "BLUS30611", "name": "Final Fantasy XIV Online: A Realm Reborn (NTSC-U)" }, { "id": "BLUS30612", "name": "Sonic Generations (NTSC-U)" }, { "id": "BLUS30613", "name": "Ace Combat: Assault Horizon (NTSC-U)" }, { "id": "BLUS30614", "name": "Rio (NTSC-U)" }, { "id": "BLUS30615", "name": "Duke Nukem Forever (NTSC-U)" }, { "id": "BLUS30616", "name": "Penguins of Madagascar: Dr. Blowhole Returns - Again (NTSC-U)" }, { "id": "BLUS30619", "name": "DJ Hero 2 (NTSC-U)" }, { "id": "BLUS30622", "name": "Power Gig: Rise of the Six String (NTSC-U)" }, { "id": "BLUS30623", "name": "Rock Band: Country Track Pack 2 (NTSC-U)" }, { "id": "BLUS30624", "name": "Dead Space 2 (NTSC-U)" }, { "id": "BLUS30625", "name": "Call of Duty: Black Ops (NTSC-U)" }, { "id": "BLUS30629", "name": "BioShock Infinite (NTSC-U)" }, { "id": "BLUS30630", "name": "FIFA Soccer 11 (NTSC-U)" }, { "id": "BLUS30631", "name": "Crysis 2 (NTSC-U)" }, { "id": "BLUS30633", "name": "Deadliest Catch: Sea of Chaos (NTSC-U)" }, { "id": "BLUS30634", "name": "Kung Fu Panda 2 (NTSC-U)" }, { "id": "BLUS30636", "name": "Venetica (NTSC-U)" }, { "id": "BLUS30637", "name": "Assassin's Creed: Brotherhood (NTSC-U)" }, { "id": "BLUS30638", "name": "Call of Duty: Black Ops (NTSC-U)" }, { "id": "BLUS30639", "name": "Ar Tonelico Qoga: Knell of Ar Ciel (NTSC-U)" }, { "id": "BLUS30640", "name": "Lucha Libre AAA Heroes del Ring (NTSC-U)" }, { "id": "BLUS30641", "name": "The Cursed Crusade (NTSC-U)" }, { "id": "BLUS30642", "name": "Captain America: Super Soldier (NTSC-U)" }, { "id": "BLUS30643", "name": "Yakuza 4 (NTSC-U)" }, { "id": "BLUS30645", "name": "Dragon Age II (NTSC-U)" }, { "id": "BLUS30649", "name": "Dragon Age Origins: Ultimate Edition (NTSC-U)" }, { "id": "BLUS30650", "name": "Mass Effect 2 (NTSC-U)" }, { "id": "BLUS30651", "name": "Bulletstorm (NTSC-U)" }, { "id": "BLUS30652", "name": "No More Heroes: Heroes' Paradise (NTSC-U)" }, { "id": "BLUS30653", "name": "Shadows of the Damned (NTSC-U)" }, { "id": "BLUS30654", "name": "NeverDead (NTSC-U)" }, { "id": "BLUS30656", "name": "MotoGP 10/11 (NTSC-U)" }, { "id": "BLUS30658", "name": "Rock of the Dead (NTSC-U)" }, { "id": "BLUS30661", "name": "Castlevania: Lords of Shadow (Limited Edition) (NTSC-U)" }, { "id": "BLUS30665", "name": "Nat Geo Challenge! Wild Life (NTSC-U)" }, { "id": "BLUS30666", "name": "Saints Row: The Third (NTSC-U)" }, { "id": "BLUS30667", "name": "Fit in Six (NTSC-U)" }, { "id": "BLUS30669", "name": "Child of Eden (NTSC-U)" }, { "id": "BLUS30670", "name": "Rocksmith Authentic Guitar Games (NTSC-U)" }, { "id": "BLUS30674", "name": "Green Lantern Rise of the Manhunters (NTSC-U)" }, { "id": "BLUS30675", "name": "Def Jam Rapstar (NTSC-U)" }, { "id": "BLUS30678", "name": "Rango (NTSC-U)" }, { "id": "BLUS30681", "name": "Transformers: Fall of Cybertron (NTSC-U)" }, { "id": "BLUS30682", "name": "Grand Theft Auto IV: The Complete Edition (NTSC-U)" }, { "id": "BLUS30686", "name": "Record of Agarest War Zero (NTSC-U)" }, { "id": "BLUS30687", "name": "Far Cry 3 (NTSC-U)" }, { "id": "BLUS30688", "name": "Earth Defense Force: Insect Armageddon (NTSC-U)" }, { "id": "BLUS30693", "name": "UFC Personal Trainer: The Ultimate Fitness System (NTSC-U)" }, { "id": "BLUS30694", "name": "Mayhem (NTSC-U)" }, { "id": "BLUS30695", "name": "Call of Duty: Modern Warfare Collection (NTSC-U)" }, { "id": "BLUS30696", "name": "NBA Jam (NTSC-U)" }, { "id": "BLUS30697", "name": "Michael Jackson: The Experience (NTSC-U)" }, { "id": "BLUS30700", "name": "Naughty Bear Gold Edition (NTSC-U)" }, { "id": "BLUS30701", "name": "Hyperdimension Neptunia (Special Edition) (NTSC-U)" }, { "id": "BLUS30703", "name": "Dynasty Warriors: Gundam 3 (NTSC-U)" }, { "id": "BLUS30704", "name": "Operation Flashpoint: Red River (NTSC-U)" }, { "id": "BLUS30705", "name": "EA Sports Masters (NTSC-U)" }, { "id": "BLUS30706", "name": "Supremacy MMA (NTSC-U)" }, { "id": "BLUS30707", "name": "MX vs. ATV Alive (NTSC-U)" }, { "id": "BLUS30709", "name": "Transformers: Dark of the Moon (NTSC-U)" }, { "id": "BLUS30710", "name": "Kingdoms of Amalur: Reckoning (NTSC-U)" }, { "id": "BLUS30711", "name": "Red Dead Redemption: Undead Nightmare Collection (NTSC-U)" }, { "id": "BLUS30712", "name": "Mafia II (NTSC-U)" }, { "id": "BLUS30714", "name": "Marvel vs. Capcom 3: Fate of Two Worlds (NTSC-U)" }, { "id": "BLUS30716", "name": "Days of Thunder: NASCAR Edition (NTSC-U)" }, { "id": "BLUS30717", "name": "Dead Space 2 (NTSC-U)" }, { "id": "BLUS30718", "name": "The Tomb Raider Trilogy (NTSC-U)" }, { "id": "BLUS30719", "name": "Major League Baseball 2K11 (NTSC-U)" }, { "id": "BLUS30720", "name": "Dragon's Dogma (NTSC-U)" }, { "id": "BLUS30721", "name": "Asura's Wrath (NTSC-U)" }, { "id": "BLUS30722", "name": "Street Fighter X Tekken (NTSC-U)" }, { "id": "BLUS30723", "name": "DmC: Devil May Cry (NTSC-U)" }, { "id": "BLUS30724", "name": "Colin McRae: DiRT 3 (NTSC-U)" }, { "id": "BLUS30725", "name": "Cars 2: The Video Game (NTSC-U)" }, { "id": "BLUS30726", "name": "Phineas and Ferb: Across the 2nd Dimension (NTSC-U)" }, { "id": "BLUS30727", "name": "Disgaea 4: A Promise Unforgotten (NTSC-U)" }, { "id": "BLUS30729", "name": "Binary Domain (NTSC-U)" }, { "id": "BLUS30731", "name": "Puss in Boots (NTSC-U)" }, { "id": "BLUS30732", "name": "Portal 2 (NTSC-U)" }, { "id": "BLUS30733", "name": "Deus Ex Human Evolution Augmented Edition (NTSC-U)" }, { "id": "BLUS30734", "name": "Dance On Broadway (NTSC-U)" }, { "id": "BLUS30735", "name": "Atelier Totori: The Adventurer of Arland (NTSC-U)" }, { "id": "BLUS30736", "name": "SoulCalibur V (NTSC-U)" }, { "id": "BLUS30738", "name": "UFC Undisputed Three (NTSC-U)" }, { "id": "BLUS30739", "name": "Top Gun (NTSC-U)" }, { "id": "BLUS30743", "name": "Darkness II (Limited Edition) (NTSC-U)" }, { "id": "BLUS30744", "name": "LEGO Pirates of the Caribbean: The Video Game (NTSC-U)" }, { "id": "BLUS30745", "name": "NCAA Football 12 (NTSC-U)" }, { "id": "BLUS30746", "name": "X-Men: Destiny (NTSC-U)" }, { "id": "BLUS30747", "name": "The Adventures of Tintin: The Game (NTSC-U)" }, { "id": "BLUS30748", "name": "Record of Agarest War Zero (Limited Edition) (NTSC-U)" }, { "id": "BLUS30750", "name": "Resident Evil: Operation Raccoon City (NTSC-U)" }, { "id": "BLUS30751", "name": "Duke Nukem Forever: Balls of Steel Edition (NTSC-U)" }, { "id": "BLUS30752", "name": "Tiger Woods PGA Tour 12 (NTSC-U)" }, { "id": "BLUS30753", "name": "Generator Rex Agent Of Providence (NTSC-U)" }, { "id": "BLUS30754", "name": "Prince of Persia Trilogy 3D (NTSC-U)" }, { "id": "BLUS30755", "name": "GoldenEye 007: Reloaded (NTSC-U)" }, { "id": "BLUS30756", "name": "Prototype 2 (NTSC-U)" }, { "id": "BLUS30757", "name": "Need for Speed: The Run (NTSC-U)" }, { "id": "BLUS30758", "name": "Red Dead Redemption: Game of the Year Edition (NTSC-U)" }, { "id": "BLUS30759", "name": "Rune Factory: Tides of Destiny (NTSC-U)" }, { "id": "BLUS30760", "name": "Spider Man Edge Of Time (NTSC-U)" }, { "id": "BLUS30761", "name": "Tom Clancy's Splinter Cell Trilogy (NTSC-U)" }, { "id": "BLUS30762", "name": "Battlefield 3 (NTSC-U)" }, { "id": "BLUS30763", "name": "Dead Rising 2: Off the Record (NTSC-U)" }, { "id": "BLUS30764", "name": "Devil May Cry HD Collection (NTSC-U)" }, { "id": "BLUS30765", "name": "Wipeout 2 (NTSC-U)" }, { "id": "BLUS30766", "name": "Tekken Hybrid (NTSC-U)" }, { "id": "BLUS30767", "name": "Dragon's Crown (NTSC-U)" }, { "id": "BLUS30768", "name": "Harry Potter And The Deathly Hallows Part Two (NTSC-U)" }, { "id": "BLUS30769", "name": "Bleach: Soul Resurreccion (NTSC-U)" }, { "id": "BLUS30770", "name": "Madden NFL 12 (NTSC-U)" }, { "id": "BLUS30772", "name": "F1 2011 (NTSC-U)" }, { "id": "BLUS30773", "name": "Disney Universe (NTSC-U)" }, { "id": "BLUS30774", "name": "The House of the Dead: Overkill Extended Cut (NTSC-U)" }, { "id": "BLUS30775", "name": "NFL Blitz (NTSC-U)" }, { "id": "BLUS30776", "name": "Final Fantasy XIII-2 (NTSC-U)" }, { "id": "BLUS30777", "name": "Ridge Racer Unbounded (NTSC-U)" }, { "id": "BLUS30778", "name": "The Elder Scrolls V: Skyrim (NTSC-U)" }, { "id": "BLUS30779", "name": "Skylanders Spyro's Adventure (NTSC-U)" }, { "id": "BLUS30780", "name": "The Bureau: XCOM Declassified (NTSC-U)" }, { "id": "BLUS30782", "name": "Dark Souls (NTSC-U)" }, { "id": "BLUS30783", "name": "Disgaea 4: A Promise Unforgotten (Premium Edition) (NTSC-U)" }, { "id": "BLUS30784", "name": "White Knight Chronicles II (NTSC-U)" }, { "id": "BLUS30785", "name": "Get Up And Dance (NTSC-U)" }, { "id": "BLUS30786", "name": "Grease Dance (NTSC-U)" }, { "id": "BLUS30787", "name": "Ultimate Marvel vs. Capcom 3 (NTSC-U)" }, { "id": "BLUS30790", "name": "Dead Island (NTSC-U)" }, { "id": "BLUS30791", "name": "NHL 12 (NTSC-U)" }, { "id": "BLUS30792", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (NTSC-U)" }, { "id": "BLUS30793", "name": "Super Street Fighter IV : Arcade Edition (NTSC-U)" }, { "id": "BLUS30794", "name": "LEGO Harry Potter: Years 5-7 (NTSC-U)" }, { "id": "BLUS30795", "name": "Call of Juarez: The Cartel (NTSC-U)" }, { "id": "BLUS30796", "name": "Sniper Ghost Warrior (NTSC-U)" }, { "id": "BLUS30798", "name": "Sniper Elite V2 (NTSC-U)" }, { "id": "BLUS30799", "name": "SuperStar Kartz (NTSC-U)" }, { "id": "BLUS30800", "name": "Risen 2: Dark Waters (NTSC-U)" }, { "id": "BLUS30801", "name": "Thief (NTSC-U)" }, { "id": "BLUS30802", "name": "Family Game Night 4: The Game Show (NTSC-U)" }, { "id": "BLUS30803", "name": "The Sims 3: Pets (NTSC-U)" }, { "id": "BLUS30804", "name": "Syndicate (NTSC-U)" }, { "id": "BLUS30805", "name": "Pro Evolution Soccer 2012 (NTSC-U)" }, { "id": "BLUS30806", "name": "NASCAR Unleashed (NTSC-U)" }, { "id": "BLUS30807", "name": "Dark Souls (NTSC-U)" }, { "id": "BLUS30808", "name": "Assassin's Creed: Revelations (NTSC-U)" }, { "id": "BLUS30809", "name": "FIFA Soccer 12 (NTSC-U)" }, { "id": "BLUS30810", "name": "Silent Hill: HD Collection (NTSC-U)" }, { "id": "BLUS30811", "name": "Catherine (NTSC-U)" }, { "id": "BLUS30813", "name": "Marvel Super Hero Squad Comic Combat (NTSC-U)" }, { "id": "BLUS30815", "name": "Adidas miCoach (NTSC-U)" }, { "id": "BLUS30816", "name": "Just Dance Kids Two (NTSC-U)" }, { "id": "BLUS30817", "name": "Batman: Arkham City (NTSC-U)" }, { "id": "BLUS30819", "name": "Cabela's Survival: Shadows of Katmai (NTSC-U)" }, { "id": "BLUS30821", "name": "uDraw Studio Instant Artist (NTSC-U)" }, { "id": "BLUS30822", "name": "Ben 10: Galactic Racing (NTSC-U)" }, { "id": "BLUS30823", "name": "Dragon Ball Z: Ultimate Tenkaichi (NTSC-U)" }, { "id": "BLUS30824", "name": "Family Guy: Back to the Multiverse (NTSC-U)" }, { "id": "BLUS30825", "name": "Pictionary: Ultimate Edition (NTSC-U)" }, { "id": "BLUS30826", "name": "Yakuza: Dead Souls (NTSC-U)" }, { "id": "BLUS30828", "name": "The Amazing Spider-Man (NTSC-U)" }, { "id": "BLUS30829", "name": "Darksiders II (NTSC-U)" }, { "id": "BLUS30830", "name": "NBA 2K12 (NTSC-U)" }, { "id": "BLUS30831", "name": "Birds of Steel (NTSC-U)" }, { "id": "BLUS30832", "name": "Alien: Isolation (NTSC-U)" }, { "id": "BLUS30833", "name": "Blades of Time (NTSC-U)" }, { "id": "BLUS30834", "name": "Cartoon Network: Punch Time Explosion XL (NTSC-U)" }, { "id": "BLUS30835", "name": "Hitman Absolution (NTSC-U)" }, { "id": "BLUS30836", "name": "Rayman Origins (NTSC-U)" }, { "id": "BLUS30837", "name": "LEGO Batman 2: DC Super Heroes (NTSC-U)" }, { "id": "BLUS30838", "name": "Call of Duty: Modern Warfare 3 (NTSC-U)" }, { "id": "BLUS30839", "name": "Sonic & All-Stars Racing Transformed (NTSC-U)" }, { "id": "BLUS30840", "name": "NCIS (NTSC-U)" }, { "id": "BLUS30841", "name": "WWE 12 (NTSC-U)" }, { "id": "BLUS30842", "name": "Test Drive: Ferrari Racing Legends (NTSC-U)" }, { "id": "BLUS30843", "name": "Cabela's Big Game Hunter 2012 (NTSC-U)" }, { "id": "BLUS30844", "name": "Cabela's Adventure Camp (NTSC-U)" }, { "id": "BLUS30845", "name": "The King of Fighters XIII (NTSC-U)" }, { "id": "BLUS30846", "name": "Happy Feet Two (NTSC-U)" }, { "id": "BLUS30847", "name": "Metal Gear Solid: HD Collection (NTSC-U)" }, { "id": "BLUS30849", "name": "SSX (NTSC-U)" }, { "id": "BLUS30850", "name": "Air Conflicts: Secret Wars (NTSC-U)" }, { "id": "BLUS30851", "name": "National Geographic Challenge! (NTSC-U)" }, { "id": "BLUS30852", "name": "Plants vs. Zombies (NTSC-U)" }, { "id": "BLUS30853", "name": "Mass Effect 3 (NTSC-U)" }, { "id": "BLUS30854", "name": "Tiger Woods PGA Tour 13 (NTSC-U)" }, { "id": "BLUS30855", "name": "Resident Evil 6 (NTSC-U)" }, { "id": "BLUS30856", "name": "Heavy Fire: Afghanistan (NTSC-U)" }, { "id": "BLUS30858", "name": "Top Gun: Hard Lock (NTSC-U)" }, { "id": "BLUS30859", "name": "Mass Effect 3 (N7 Collector's Edition) (NTSC-U)" }, { "id": "BLUS30862", "name": "Aliens: Colonial Marines (NTSC-U)" }, { "id": "BLUS30863", "name": "Champion Jockey: G1 Jockey & Gallop Racer (NTSC-U)" }, { "id": "BLUS30864", "name": "Rocksmith (NTSC-U)" }, { "id": "BLUS30865", "name": "Bejeweled 3 (NTSC-U)" }, { "id": "BLUS30866", "name": "The Elder Scrolls V Skyrim (NTSC-U)" }, { "id": "BLUS30867", "name": "Atelier Totori: The Adventurer of Arland (Premium Edition) (NTSC-U)" }, { "id": "BLUS30868", "name": "Metro Last Light (NTSC-U)" }, { "id": "BLUS30869", "name": "BlazBlue: Continuum Shift: Extend (NTSC-U)" }, { "id": "BLUS30873", "name": "Dynasty Warriors 7: Xtreme Legends (NTSC-U)" }, { "id": "BLUS30876", "name": "Sacred 3 (NTSC-U)" }, { "id": "BLUS30881", "name": "Record of Agarest War 2 (NTSC-U)" }, { "id": "BLUS30882", "name": "FIFA Street (NTSC-U)" }, { "id": "BLUS30886", "name": "Back to the Future: The Game (NTSC-U)" }, { "id": "BLUS30887", "name": "Call of Duty : Modern Warfare 3 (NTSC-U)" }, { "id": "BLUS30888", "name": "Fallout New Vegas: Ultimate Edition (NTSC-U)" }, { "id": "BLUS30891", "name": "Tiger Woods PGA Tour 13 The Masters (NTSC-U)" }, { "id": "BLUS30892", "name": "Tekken Hybrid (Limited Edition) (NTSC-U)" }, { "id": "BLUS30897", "name": "Jimmie Johnson's Anything With an Engine (NTSC-U)" }, { "id": "BLUS30898", "name": "L.A. Noire - The Complete Edition (NTSC-U)" }, { "id": "BLUS30899", "name": "Just Dance Three (NTSC-U)" }, { "id": "BLUS30901", "name": "Hyperdimension Neptunia mk2 (NTSC-U)" }, { "id": "BLUS30902", "name": "Mortal Kombat Komplete Edition (NTSC-U)" }, { "id": "BLUS30903", "name": "Tales of Graces F (NTSC-U)" }, { "id": "BLUS30904", "name": "Order Up (NTSC-U)" }, { "id": "BLUS30905", "name": "Assassin's Creed: Revelations (NTSC-U)" }, { "id": "BLUS30906", "name": "Metal Gear Solid HD Collection (NTSC-U)" }, { "id": "BLUS30907", "name": "Brave: The Video Game (NTSC-U)" }, { "id": "BLUS30911", "name": "Deadliest Warrior Ancient Combat (NTSC-U)" }, { "id": "BLUS30912", "name": "Street Fighter X Tekken (Special Edition) (NTSC-U)" }, { "id": "BLUS30913", "name": "Battleship (NTSC-U)" }, { "id": "BLUS30916", "name": "Ninja Gaiden 3 (NTSC-U)" }, { "id": "BLUS30917", "name": "Lollipop Chainsaw (NTSC-U)" }, { "id": "BLUS30918", "name": "SoulCalibur V (Collector's Edition) (NTSC-U)" }, { "id": "BLUS30919", "name": "Sniper: Ghost Warrior 2 (NTSC-U)" }, { "id": "BLUS30922", "name": "Men In Black: Alien Crisis (NTSC-U)" }, { "id": "BLUS30923", "name": "Wheel of Fortune (NTSC-U)" }, { "id": "BLUS30924", "name": "Jeopardy! (NTSC-U)" }, { "id": "BLUS30925", "name": "Final Fantasy XIII-2 (Limited Collector's Edition) (NTSC-U)" }, { "id": "BLUS30927", "name": "Sleeping Dogs (NTSC-U)" }, { "id": "BLUS30929", "name": "Resident Evil: Operation Raccoon City (NTSC-U)" }, { "id": "BLUS30931", "name": "Major League Baseball 2K12 (NTSC-U)" }, { "id": "BLUS30932", "name": "NASCAR The Game: Inside Line (NTSC-U)" }, { "id": "BLUS30935", "name": "Star Trek (NTSC-U)" }, { "id": "BLUS30936", "name": "Defiance (NTSC-U)" }, { "id": "BLUS30937", "name": "Zone of the Enders: HD Edition (NTSC-U)" }, { "id": "BLUS30939", "name": "Game of Thrones (NTSC-U)" }, { "id": "BLUS30940", "name": "Port Royale 3: Pirates & Merchants (NTSC-U)" }, { "id": "BLUS30941", "name": "Atelier Meruru: The Apprentice of Arland (NTSC-U)" }, { "id": "BLUS30942", "name": "Hitman HD Trilogy (NTSC-U)" }, { "id": "BLUS30943", "name": "XCOM: Enemy Unknown (NTSC-U)" }, { "id": "BLUS30945", "name": "Deadliest Warrior Ancient Combat (NTSC-U)" }, { "id": "BLUS30946", "name": "BlazBlue: Continuum Shift Extend (NTSC-U)" }, { "id": "BLUS30947", "name": "Ni No Kuni: Wrath of the White Witch (NTSC-U)" }, { "id": "BLUS30948", "name": "NCAA Football 13 (NTSC-U)" }, { "id": "BLUS30962", "name": "Epic Mickey Two The Power of Two (NTSC-U)" }, { "id": "BLUS30963", "name": "LEGO The Lord of the Rings (NTSC-U)" }, { "id": "BLUS30964", "name": "The Witch and the Hundred Knight (NTSC-U)" }, { "id": "BLUS30965", "name": "Prototype 2 (NTSC-U)" }, { "id": "BLUS30966", "name": "Dragon Ball Z Budokai HD Collection (NTSC-U)" }, { "id": "BLUS30967", "name": "Ninja Gaiden Three (NTSC-U)" }, { "id": "BLUS30969", "name": "NBA Jam (NTSC-U)" }, { "id": "BLUS30971", "name": "Dead Or Alive Five (NTSC-U)" }, { "id": "BLUS30973", "name": "Madden NFL 13 (NTSC-U)" }, { "id": "BLUS30975", "name": "Colin McRae: DiRT 3 (Complete Edition) (NTSC-U)" }, { "id": "BLUS30976", "name": "Crysis 3 (NTSC-U)" }, { "id": "BLUS30977", "name": "Disney Infinity (NTSC-U)" }, { "id": "BLUS30978", "name": "Batman: Arkham City (Game of the Year Edition) (NTSC-U)" }, { "id": "BLUS30980", "name": "Madagascar Three The Video Game (NTSC-U)" }, { "id": "BLUS30982", "name": "Borderlands 2 (NTSC-U)" }, { "id": "BLUS30983", "name": "007 Legends (NTSC-U)" }, { "id": "BLUS30985", "name": "Persona 4 Arena (NTSC-U)" }, { "id": "BLUS30990", "name": "Medal of Honor: Warfighter (NTSC-U)" }, { "id": "BLUS30991", "name": "Assassin's Creed III (NTSC-U)" }, { "id": "BLUS30996", "name": "Enemy Front (NTSC-U)" }, { "id": "BLUS30997", "name": "Dragon Age: Inquisition (NTSC-U)" }, { "id": "BLUS30998", "name": "FIFA Soccer 13 (NTSC-U)" }, { "id": "BLUS30999", "name": "Castlevania: Lords of Shadow 2 (NTSC-U)" }, { "id": "BLUS31000", "name": "Heavy Fire: Shattered Spear (NTSC-U)" }, { "id": "BLUS31002", "name": "Tekken Tag Tournament 2 (NTSC-U)" }, { "id": "BLUS31003", "name": "NHL 13 (NTSC-U)" }, { "id": "BLUS31005", "name": "Resident Evil 6 Anthology (NTSC-U)" }, { "id": "BLUS31006", "name": "Tales of Xillia (NTSC-U)" }, { "id": "BLUS31007", "name": "Mugen Souls (NTSC-U)" }, { "id": "BLUS31009", "name": "Cabela's Dangerous Hunts 2013 (NTSC-U)" }, { "id": "BLUS31010", "name": "Need for Speed: Most Wanted (NTSC-U)" }, { "id": "BLUS31011", "name": "Call of Duty: Black Ops II (NTSC-U)" }, { "id": "BLUS31012", "name": "Remember Me (NTSC-U)" }, { "id": "BLUS31014", "name": "F1 2012 (NTSC-U)" }, { "id": "BLUS31015", "name": "WWE 13 (NTSC-U)" }, { "id": "BLUS31016", "name": "Record of Agarest War 2 (NTSC-U)" }, { "id": "BLUS31017", "name": "Ben 10 Omniverse (NTSC-U)" }, { "id": "BLUS31018", "name": "Injustice: Gods Among Us (NTSC-U)" }, { "id": "BLUS31019", "name": "Damage Inc.: Pacific Squadron WWII (NTSC-U)" }, { "id": "BLUS31020", "name": "Lost Planet 3 (NTSC-U)" }, { "id": "BLUS31024", "name": "Doom 3 (NTSC-U)" }, { "id": "BLUS31025", "name": "Tom Clancy's Splinter Cell: Blacklist (NTSC-U)" }, { "id": "BLUS31026", "name": "Dead Island (NTSC-U)" }, { "id": "BLUS31028", "name": "NBA 2K13 (NTSC-U)" }, { "id": "BLUS31029", "name": "Pro Evolution Soccer 2013 (NTSC-U)" }, { "id": "BLUS31030", "name": "Cabela's Hunting Expeditions (NTSC-U)" }, { "id": "BLUS31031", "name": "Rocksmith (NTSC-U)" }, { "id": "BLUS31033", "name": "Just Dance 4 (NTSC-U)" }, { "id": "BLUS31034", "name": "NBA 2K13 (Dynasty Edition) (NTSC-U)" }, { "id": "BLUS31035", "name": "Assassin's Creed III (NTSC-U)" }, { "id": "BLUS31036", "name": "Tomb Raider (NTSC-U)" }, { "id": "BLUS31037", "name": "Street Fighter 25th Anniversary Collector's Set (NTSC-U)" }, { "id": "BLUS31039", "name": "Ni no Kuni: Wrath of the White Witch (NTSC-U)" }, { "id": "BLUS31040", "name": "Fuse (NTSC-U)" }, { "id": "BLUS31043", "name": "Damage Inc.: Pacific Squadron WWII (Collector's Edition) (NTSC-U)" }, { "id": "BLUS31045", "name": "Metal Gear Rising: Revengence (NTSC-U)" }, { "id": "BLUS31046", "name": "The Testement of Sherlock Homes (NTSC-U)" }, { "id": "BLUS31048", "name": "Toy Story Mania! (NTSC-U)" }, { "id": "BLUS31049", "name": "Skylanders Giants (NTSC-U)" }, { "id": "BLUS31050", "name": "FIFA 13 (NTSC-U)" }, { "id": "BLUS31051", "name": "Resident Evil: Revelations (NTSC-U)" }, { "id": "BLUS31052", "name": "Dead Island Riptide (NTSC-U)" }, { "id": "BLUS31053", "name": "Dead Space 3 (NTSC-U)" }, { "id": "BLUS31054", "name": "Angry Birds Trilogy (NTSC-U)" }, { "id": "BLUS31055", "name": "GRID 2 (NTSC-U)" }, { "id": "BLUS31059", "name": "Middle-earth: Shadow of Mordor (NTSC-U)" }, { "id": "BLUS31062", "name": "Saints Row The Third (NTSC-U)" }, { "id": "BLUS31063", "name": "Tiger Woods PGA Tour 14 (NTSC-U)" }, { "id": "BLUS31064", "name": "Deadly Premonition: The Director's Cut (NTSC-U)" }, { "id": "BLUS31065", "name": "The Walking Dead: Survival Instinct (NTSC-U)" }, { "id": "BLUS31066", "name": "Naruto Shippuden Ultimate Storm Ninja 3 (NTSC-U)" }, { "id": "BLUS31067", "name": "Rise of the Guardians (NTSC-U)" }, { "id": "BLUS31068", "name": "Battlefield 3 (NTSC-U)" }, { "id": "BLUS31069", "name": "Army of Two: The Devil's Cartel (NTSC-U)" }, { "id": "BLUS31075", "name": "Tiger Woods PGA Tour 14 (Masters Historic Edition) (NTSC-U)" }, { "id": "BLUS31076", "name": "Skylanders: Swap Force (NTSC-U)" }, { "id": "BLUS31079", "name": "Legends Of War Patton (NTSC-U)" }, { "id": "BLUS31080", "name": "Call of Duty: Black Ops II (Hardened Edition) (NTSC-U)" }, { "id": "BLUS31083", "name": "Midway Arcade Origins (NTSC-U)" }, { "id": "BLUS31087", "name": "Street Fighter 25th Anniversary Collector's Set (NTSC-U)" }, { "id": "BLUS31139", "name": "Mass Effect Trilogy (NTSC-U)" }, { "id": "BLUS31140", "name": "Call of Duty: Black Ops II (NTSC-U)" }, { "id": "BLUS31141", "name": "Call of Duty: Black Ops II (NTSC-U)" }, { "id": "BLUS31142", "name": "Hitman: Absolution (NTSC-U)" }, { "id": "BLUS31143", "name": "Naughty Bear: Double Trouble! (NTSC-U)" }, { "id": "BLUS31144", "name": "The Walking Dead: A Telltale Games Series (NTSC-U)" }, { "id": "BLUS31145", "name": "Assassin's Creed: Ezio Trilogy (NTSC-U)" }, { "id": "BLUS31146", "name": "Deadpool (NTSC-U)" }, { "id": "BLUS31147", "name": "Batman: Arkham Origins (NTSC-U)" }, { "id": "BLUS31148", "name": "BandFuse: Rock Legends (NTSC-U)" }, { "id": "BLUS31149", "name": "BioShock: Ultimate Rapture Edition (NTSC-U)" }, { "id": "BLUS31150", "name": "Hyperdimension Neptunia Victory (NTSC-U)" }, { "id": "BLUS31151", "name": "The Smurfs 2 (NTSC-U)" }, { "id": "BLUS31152", "name": "Atelier Ayesha: The Alchemist of Dusk (NTSC-U)" }, { "id": "BLUS31153", "name": "Fast and Furious : Showdown (NTSC-U)" }, { "id": "BLUS31155", "name": "Dragon's Dogma: Dark Arisen (NTSC-U)" }, { "id": "BLUS31156", "name": "Grand Theft Auto V (NTSC-U)" }, { "id": "BLUS31158", "name": "Arcania: The Complete Tale (NTSC-U)" }, { "id": "BLUS31159", "name": "NCAA Football 14 (NTSC-U)" }, { "id": "BLUS31160", "name": "Earth Defense Force 2025 (NTSC-U)" }, { "id": "BLUS31161", "name": "LEGO Marvel Super Heroes (NTSC-U)" }, { "id": "BLUS31162", "name": "Battlefield 4 (NTSC-U)" }, { "id": "BLUS31164", "name": "Lightning Returns: Final Fantasy XIII (NTSC-U)" }, { "id": "BLUS31166", "name": "Murdered: Soul Suspect (NTSC-U)" }, { "id": "BLUS31167", "name": "Major League Baseball 2K13 (NTSC-U)" }, { "id": "BLUS31168", "name": "WRC 3: Fia World Rally Championship (NTSC-U)" }, { "id": "BLUS31169", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-U)" }, { "id": "BLUS31170", "name": "Young Justice: Legacy (NTSC-U)" }, { "id": "BLUS31171", "name": "Turbo : Super Stunt Squad (NTSC-U)" }, { "id": "BLUS31172", "name": "Tales of Symphonia Chronicles (NTSC-U)" }, { "id": "BLUS31174", "name": "Port Royale 3: Gold Edition (NTSC-U)" }, { "id": "BLUS31175", "name": "Ninja Gaiden 3: Razor's Edge (NTSC-U)" }, { "id": "BLUS31176", "name": "Watch Dogs (NTSC-U)" }, { "id": "BLUS31178", "name": "Madden NFL 25 (NTSC-U)" }, { "id": "BLUS31179", "name": "NHL 14 (NTSC-U)" }, { "id": "BLUS31180", "name": "XCOM: Enemy Within (NTSC-U)" }, { "id": "BLUS31181", "name": "Destiny (NTSC-U)" }, { "id": "BLUS31182", "name": "Rocksmith 2014 Edition (NTSC-U)" }, { "id": "BLUS31183", "name": "Rayman Legends (NTSC-U)" }, { "id": "BLUS31184", "name": "Metro: Last Light (NTSC-U)" }, { "id": "BLUS31185", "name": "Dynasty Warriors 8: Xtreme Legends (NTSC-U)" }, { "id": "BLUS31186", "name": "Killer Is Dead (NTSC-U)" }, { "id": "BLUS31187", "name": "Hakuoki: Stories of the Shinsengumi (NTSC-U)" }, { "id": "BLUS31188", "name": "Diablo III (NTSC-U)" }, { "id": "BLUS31189", "name": "FIFA 14 (NTSC-U)" }, { "id": "BLUS31191", "name": "South Park: The Stick of Truth (NTSC-U)" }, { "id": "BLUS31193", "name": "Assassin's Creed IV: Black Flag (NTSC-U)" }, { "id": "BLUS31194", "name": "Armored Core: Verdict Day (NTSC-U)" }, { "id": "BLUS31195", "name": "Falling Skies: The Game (NTSC-U)" }, { "id": "BLUS31197", "name": "Drakengard 3 (NTSC-U)" }, { "id": "BLUS31198", "name": "El Chavo Kart (NTSC-U)" }, { "id": "BLUS31200", "name": "Hot Wheels: World's Best Driver (NTSC-U)" }, { "id": "BLUS31201", "name": "Need for Speed: Rivals (NTSC-U)" }, { "id": "BLUS31202", "name": "The Elder Scrolls V (NTSC-U)" }, { "id": "BLUS31203", "name": "Yaiba: Ninja Gaiden Z (NTSC-U)" }, { "id": "BLUS31204", "name": "NBA 2K14 (NTSC-U)" }, { "id": "BLUS31205", "name": "Saints Row IV (NTSC-U)" }, { "id": "BLUS31207", "name": "Batman: Arkham Origins (NTSC-U)" }, { "id": "BLUS31210", "name": "Air Conflicts: Pacific Carriers (NTSC-U)" }, { "id": "BLUS31211", "name": "Final Fantasy X / X-2 HD Remaster (NTSC-U)" }, { "id": "BLUS31212", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-U)" }, { "id": "BLUS31213", "name": "BlazBlue: Chrono Phantasma (NTSC-U)" }, { "id": "BLUS31214", "name": "Adventure Time: Explore the Dungeon Because I DON'T KNOW! (NTSC-U)" }, { "id": "BLUS31215", "name": "Ben 10 Omniverse 2 (NTSC-U)" }, { "id": "BLUS31216", "name": "Dead or Alive 5 Ultimate (NTSC-U)" }, { "id": "BLUS31217", "name": "Pac-Man and the Ghostly Adventures (NTSC-U)" }, { "id": "BLUS31218", "name": "Ultra Street Fighter IV (NTSC-U)" }, { "id": "BLUS31219", "name": "Payday 2 (NTSC-U)" }, { "id": "BLUS31220", "name": "Wolfenstein: The New Order (NTSC-U)" }, { "id": "BLUS31221", "name": "Diablo III (NTSC-U)" }, { "id": "BLUS31270", "name": "Call of Duty: Ghosts (NTSC-U)" }, { "id": "BLUS31273", "name": "Angry Birds Star Wars (NTSC-U)" }, { "id": "BLUS31274", "name": "Cabela's Big Game Hunter: Pro Hunts (NTSC-U)" }, { "id": "BLUS31275", "name": "Cabela's African Adventures (NTSC-U)" }, { "id": "BLUS31276", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge (NTSC-U)" }, { "id": "BLUS31277", "name": "WWE 2K14 (NTSC-U)" }, { "id": "BLUS31312", "name": "The Guided Fate Paradox (NTSC-U)" }, { "id": "BLUS31313", "name": "Disgaea D2: A Brighter Darkness (NTSC-U)" }, { "id": "BLUS31314", "name": "Dragon Ball Z: Battle of Z (NTSC-U)" }, { "id": "BLUS31315", "name": "Just Dance 2014 (NTSC-U)" }, { "id": "BLUS31319", "name": "Hatsune Miku: Project Diva F (NTSC-U)" }, { "id": "BLUS31320", "name": "Air Conflicts: Vietnam (NTSC-U)" }, { "id": "BLUS31321", "name": "AquaPazza: AquaPlus Dream Match (NTSC-U)" }, { "id": "BLUS31322", "name": "Pro Evolution Soccer 2014 (NTSC-U)" }, { "id": "BLUS31324", "name": "Transformers: Rise of the Dark Spark (NTSC-U)" }, { "id": "BLUS31343", "name": "Payday 2 (Collector's Edition) (NTSC-U)" }, { "id": "BLUS31345", "name": "Madden NFL 25 (Anniversary Edition) (NTSC-U)" }, { "id": "BLUS31350", "name": "Naruto Ultimate Ninja Storm 3 : Full Burst (NTSC-U)" }, { "id": "BLUS31351", "name": "Saints Row IV (Super Dangerous Wub Wub Edition) (NTSC-U)" }, { "id": "BLUS31352", "name": "Killer is Dead (NTSC-U)" }, { "id": "BLUS31354", "name": "Rocksmith 2014 Edition (NTSC-U)" }, { "id": "BLUS31364", "name": "Injustice: Gods Among Us - Ultimate Edition (NTSC-U)" }, { "id": "BLUS31366", "name": "Capcom Essentials (NTSC-U)" }, { "id": "BLUS31367", "name": "XBLAZE Code: Embryo (NTSC-U)" }, { "id": "BLUS31369", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-U)" }, { "id": "BLUS31370", "name": "2K Essentials Collection (NTSC-U)" }, { "id": "BLUS31372", "name": "2K Power Pack (NTSC-U)" }, { "id": "BLUS31374", "name": "The Evil Within (NTSC-U)" }, { "id": "BLUS31377", "name": "The Walking Dead (NTSC-U)" }, { "id": "BLUS31378", "name": "NASCAR '14 (NTSC-U)" }, { "id": "BLUS31381", "name": "Farming Simulator (NTSC-U)" }, { "id": "BLUS31382", "name": "The Castlevania: Lords of Shadow Collection (NTSC-U)" }, { "id": "BLUS31386", "name": "Ragnarok Odyssey ACE (NTSC-U)" }, { "id": "BLUS31387", "name": "Rambo: The Video Game (NTSC-U)" }, { "id": "BLUS31388", "name": "How to Train Your Dragon 2 (NTSC-U)" }, { "id": "BLUS31389", "name": "2014 FIFA World Cup Brazil (NTSC-U)" }, { "id": "BLUS31391", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky (NTSC-U)" }, { "id": "BLUS31392", "name": "LEGO The Hobbit (NTSC-U)" }, { "id": "BLUS31393", "name": "Far Cry Compliation (NTSC-U)" }, { "id": "BLUS31396", "name": "Deception IV: Blood Ties (NTSC-U)" }, { "id": "BLUS31397", "name": "Tales of Xillia 2 (NTSC-U)" }, { "id": "BLUS31401", "name": "Sniper Elite III (NTSC-U)" }, { "id": "BLUS31402", "name": "Dynasty Warriors 8: Xtreme Legends (NTSC-U)" }, { "id": "BLUS31405", "name": "JoJo's Bizarre Adventure: All-Star Battle (NTSC-U)" }, { "id": "BLUS31406", "name": "South Park: The Stick of Truth (NTSC-U)" }, { "id": "BLUS31410", "name": "Plants vs. Zombies Garden Warfare (NTSC-U)" }, { "id": "BLUS31411", "name": "Bound by Flame (NTSC-U)" }, { "id": "BLUS31412", "name": "Sherlock Holmes : Crimes and Punishments (NTSC-U)" }, { "id": "BLUS31414", "name": "Borderlands 2 / Dishonored Bundle (NTSC-U)" }, { "id": "BLUS31415", "name": "The Elder Scrolls V: Skyrim / BioShock Infinite Bundle (NTSC-U)" }, { "id": "BLUS31417", "name": "Mugen Souls Z (NTSC-U)" }, { "id": "BLUS31418", "name": "Disney Infinity 2.0 (NTSC-U)" }, { "id": "BLUS31420", "name": "Far Cry 4 (NTSC-U)" }, { "id": "BLUS31422", "name": "Hakuoki: Stories of the Shinsengumi (Limited Edition) (NTSC-U)" }, { "id": "BLUS31423", "name": "Fairy Fencer F (NTSC-U)" }, { "id": "BLUS31424", "name": "Arcana Heart 3: LOVE MAX!!!!! (NTSC-U)" }, { "id": "BLUS31425", "name": "Akiba’s Trip: Undead & Undressed (NTSC-U)" }, { "id": "BLUS31426", "name": "Minecraft: PlayStation 3 Edition (NTSC-U)" }, { "id": "BLUS31427", "name": "One Piece: Unlimited World Red (NTSC-U)" }, { "id": "BLUS31428", "name": "Madden NFL 15 (NTSC-U)" }, { "id": "BLUS31431", "name": "Hatsune Miku: Project F 2nd (NTSC-U)" }, { "id": "BLUS31432", "name": "Risen 3: Titan Lords (NTSC-U)" }, { "id": "BLUS31433", "name": "Escape Dead Island (NTSC-U)" }, { "id": "BLUS31434", "name": "LEGO Batman 3 (NTSC-U)" }, { "id": "BLUS31435", "name": "Teenage Mutant Ninja Turtles: Danger of the Ooze (NTSC-U)" }, { "id": "BLUS31436", "name": "NHL 15 (NTSC-U)" }, { "id": "BLUS31437", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition (NTSC-U)" }, { "id": "BLUS31440", "name": "Battlefield: Hardline (NTSC-U)" }, { "id": "BLUS31441", "name": "Digimon All-Star Rumble (NTSC-U)" }, { "id": "BLUS31443", "name": "FIFA 15 (NTSC-U)" }, { "id": "BLUS31444", "name": "Resident Evil: Revelations 2 (NTSC-U)" }, { "id": "BLUS31445", "name": "Borderlands: The Pre-Sequel (NTSC-U)" }, { "id": "BLUS31446", "name": "Call of Duty: Advanced Warfare (NTSC-U)" }, { "id": "BLUS31448", "name": "Duck Dynasty (NTSC-U)" }, { "id": "BLUS31449", "name": "Atelier Rorona Plus: The Alchemist of Arland (NTSC-U)" }, { "id": "BLUS31450", "name": "Adventure Time: The Secret of the Nameless Kingdom (NTSC-U)" }, { "id": "BLUS31452", "name": "GRID Autosport (NTSC-U)" }, { "id": "BLUS31453", "name": "Natural Doctrine (NTSC-U)" }, { "id": "BLUS31454", "name": "Just Dance 2015 (NTSC-U)" }, { "id": "BLUS31455", "name": "MX vs ATV SUPERCROSS (NTSC-U)" }, { "id": "BLUS31456", "name": "NBA 2K15 (NTSC-U)" }, { "id": "BLUS31458", "name": "Pac-Man and the Ghostly Adventures 2 (NTSC-U)" }, { "id": "BLUS31460", "name": "Kingdom Hearts 2.5 HD ReMIX (NTSC-U)" }, { "id": "BLUS31461", "name": "Class of Heroes 2G (NTSC-U)" }, { "id": "BLUS31464", "name": "WWE 2K15 (NTSC-U)" }, { "id": "BLUS31465", "name": "Assassin's Creed: Rogue (NTSC-U)" }, { "id": "BLUS31466", "name": "Call of Duty: Advanced Warfare (NTSC-U)" }, { "id": "BLUS31467", "name": "Guilty Gear Xrd SIGN (NTSC-U)" }, { "id": "BLUS31469", "name": "Persona 4 Arena Ultimax (NTSC-U)" }, { "id": "BLUS31471", "name": "F1 2014 (NTSC-U)" }, { "id": "BLUS31474", "name": "Tokyo Twilight Ghost Hunters (NTSC-U)" }, { "id": "BLUS31476", "name": "Tears to Tiara II: Heir of the Overload (NTSC-U)" }, { "id": "BLUS31478", "name": "Ar nosurge: Ode to an Unborn Star (NTSC-U)" }, { "id": "BLUS31480", "name": "Pro Evolution Soccer 2015 (NTSC-U)" }, { "id": "BLUS31485", "name": "NHL 15 (Ultimate Edition) (NTSC-U)" }, { "id": "BLUS31488", "name": "The Walking Dead: Season 2 - A Telltale Games Series (NTSC-U)" }, { "id": "BLUS31489", "name": "The Wolf Among Us (NTSC-U)" }, { "id": "BLUS31491", "name": "Metal Gear Solid V: The Phantom Pain (NTSC-U)" }, { "id": "BLUS31496", "name": "Saints Row: Gat Out of Hell (NTSC-U)" }, { "id": "BLUS31500", "name": "The Awakened Fate: Ultimatum (NTSC-U)" }, { "id": "BLUS31507", "name": "Dragon Ball: Xenoverse (NTSC-U)" }, { "id": "BLUS31509", "name": "WRC 4: FIA World Rally Championship (NTSC-U)" }, { "id": "BLUS31513", "name": "BlazBlue: Chrono Phantasma Extend (NTSC-U)" }, { "id": "BLUS31521", "name": "Madden NFL 16 (NTSC-U)" }, { "id": "BLUS31522", "name": "Disney infinity 3.0 (NTSC-U)" }, { "id": "BLUS31523", "name": "Xblaze Lost Memories (NTSC-U)" }, { "id": "BLUS31525", "name": "Atelier Shallie: Alchemists of the Dusk Sea (NTSC-U)" }, { "id": "BLUS31535", "name": "Dengeki Bunko: Fighting Climax (NTSC-U)" }, { "id": "BLUS31540", "name": "NHL Legacy (NTSC-U)" }, { "id": "BLUS31542", "name": "NBA 2K16 (NTSC-U)" }, { "id": "BLUS31543", "name": "FIFA 16 (NTSC-U)" }, { "id": "BLUS31554", "name": "Lost Dimension (NTSC-U)" }, { "id": "BLUS31560", "name": "NASCAR 15 (NTSC-U)" }, { "id": "BLUS31564", "name": "Pro Evolution Soccer 2016 (NTSC-U)" }, { "id": "BLUS31565", "name": "WWE 2K16 (NTSC-U)" }, { "id": "BLUS31566", "name": "Transformers: Devastation (NTSC-U)" }, { "id": "BLUS31568", "name": "Tony Hawks Pro Skater 5 (NTSC-U)" }, { "id": "BLUS31572", "name": "The Legend of Heroes: Trails of Cold Steel (NTSC-U)" }, { "id": "BLUS31578", "name": "LEGO Star Wars: The Force Awakens (NTSC-U)" }, { "id": "BLUS31584", "name": "Grand Theft Auto: San Andreas (NTSC-U)" }, { "id": "BLUS31586", "name": "Tales from the Borderlands (NTSC-U)" }, { "id": "BLUS31587", "name": "Aegis of Earth: Protonovus Assault (NTSC-U)" }, { "id": "BLUS31588", "name": "Guilty Gear Xrd: Revelator (NTSC-U)" }, { "id": "BLUS31589", "name": "Madden NFL 17 (NTSC-U)" }, { "id": "BLUS31591", "name": "BlazBlue: Central Fiction (NTSC-U)" }, { "id": "BLUS31593", "name": "FIFA 17 (NTSC-U)" }, { "id": "BLUS31595", "name": "Just Dance 2017 (NTSC-U)" }, { "id": "BLUS31597", "name": "The Legend of Heroes: Trails of Cold Steel II (NTSC-U)" }, { "id": "BLUS31598", "name": "Pro Evolution Soccer 2017 (NTSC-U)" }, { "id": "BLUS31599", "name": "WWE 2K17 (NTSC-U)" }, { "id": "BLUS31601", "name": "Odin Sphere Leifthrasir (NTSC-U)" }, { "id": "BLUS31604", "name": "Persona 5 (NTSC-U)" }, { "id": "BLUS31610", "name": "FIFA 18 (NTSC-U)" }, { "id": "BLUS31612", "name": "Pro Evolution Soccer 2018 (NTSC-U)" }, { "id": "BLUS31613", "name": "Just Dance 2018 (NTSC-U)" }, { "id": "BLUS31614", "name": "NBA 2K18 (NTSC-U)" }, { "id": "BLUS31617", "name": "FIFA 19 (NTSC-U)" }, { "id": "BLUS34554", "name": "Get Fit With Me! B (NTSC-U)" }, { "id": "BLUS41003", "name": "BioShock Infinite (NTSC-U)" }, { "id": "BLUS41006", "name": "Rockstar Games Collection: Edition 1 (NTSC-U)" }, { "id": "BLUS41007", "name": "Zone of the Enders HD Collection - Limited Edition (Includes demo of Metal Gear Rising: Revengence) (NTSC-U)" }, { "id": "BLUS41017", "name": "Injustice: Gods Among Us (NTSC-U)" }, { "id": "BLUS41019", "name": "Grand Theft Auto V (Special Edition) (NTSC-U)" }, { "id": "BLUS41021", "name": "Metal Gear Rising Revengeance (Limited Edition) (NTSC-U)" }, { "id": "BLUS41023", "name": "Sniper 2 Ghost Warrior (NTSC-U)" }, { "id": "BLUS41024", "name": "LEGO Harry Potter: Years 1-4 (NTSC-U)" }, { "id": "BLUS41027", "name": "Mortal Kombat vs. DC Universe (NTSC-U)" }, { "id": "BLUS41033", "name": "Metal Gear Solid: The Legacy Collection (NTSC-U)" }, { "id": "BLUS41034", "name": "Terraria (Collector's Edition) (NTSC-U)" }, { "id": "BLUS41035", "name": "Assassin's Creed IV: Black Flag (NTSC-U)" }, { "id": "BLUS41038", "name": "Dishonored (NTSC-U)" }, { "id": "BLUS41042", "name": "Magus (NTSC-U)" }, { "id": "BLUS41044", "name": "The Amazing Spider-Man 2 (NTSC-U)" }, { "id": "BLUS41045", "name": "Dark Souls II (NTSC-U)" }, { "id": "BLUS82001", "name": "Borderlands 2 (NTSC-U)" }, { "id": "BLUS83009", "name": "Metal Gear Solid: The Legacy Collection (NTSC-U)" }, { "id": "CDMAN1234", "name": "CD-Man Emulator" }, { "id": "CHET12345", "name": "Cheat Disc" }, { "id": "CNDR00001", "name": "Solar" }, { "id": "CNDR00002", "name": "Condor Updater" }, { "id": "CPCS01100", "name": "Dragon's Dogma: Dark Arisen (Special Package)" }, { "id": "CUSA01364", "name": "BlazBlue: Chrono Phantasma Extend" }, { "id": "DIENSPOOF", "name": "Spoofer" }, { "id": "ELONLOREP", "name": "Elongated Reptile" }, { "id": "EUAE00829", "name": "E-UAE: Amiga Emulator" }, { "id": "FBAN00000", "name": "FBA Next Emulator" }, { "id": "FCEU90000", "name": "FCEU Emulator" }, { "id": "GENP00001", "name": "Sega: Genesis Plus GX" }, { "id": "HBDB90000", "name": "DOSBox Emulator" }, { "id": "HBDM90000", "name": "PrBoom Doom" }, { "id": "HBFS90000", "name": "FUSE: Spectrum Emulator" }, { "id": "HBST90000", "name": "Atari Emulator" }, { "id": "HOP300606", "name": "Hakuouki: Junsouroku (Limited Edition)" }, { "id": "HTSS00003", "name": "Showtime" }, { "id": "IDPS00001", "name": "IDPS Viewer" }, { "id": "KTGS30187", "name": "Nobunaga no Yabou Online: Shinsei no Shou (Premium Box)" }, { "id": "KTGS30196", "name": "Shin Sangoku Musou 6 & Shin Sangoku Musou 6 Moushouden (Premium Box)" }, { "id": "KTGS30197", "name": "Musou Orochi 2 (Treasure Box)" }, { "id": "KTGS30212", "name": "Shin Hokuto Musou (Treasure Box)" }, { "id": "KTGS30233", "name": "Musou Orochi 2 Ultimate (Premium Box)" }, { "id": "KTGS30254", "name": "Sengoku Musou 4 (Premium Box)" }, { "id": "KTGS30255", "name": "Sengoku Musou 4 (Treasure Box)" }, { "id": "KTGS30259", "name": "Winning Post 8 (20th Anniversary Premium Box)" }, { "id": "KTGS30276", "name": "Nobunaga no Yabou Online: Kakusei no Shou (Treasure Box)" }, { "id": "KTGS30283", "name": "Sengoku Musou 4-II (Treasure Box)" }, { "id": "KTGS30295", "name": "Kagero: Mou Hitori no Princess (Premium Box)" }, { "id": "KTGS30320", "name": "Sophie no Atelier: Fushigi na Hon no Renkinjutsushi (Premium Box)" }, { "id": "LED0DISC0", "name": "LED Changer" }, { "id": "LV2LOADER", "name": "LV2 Loader" }, { "id": "MAME90000", "name": "MAME: Multiple Arcade Machine Emulator" }, { "id": "MDFN90000", "name": "Mednafen Emulator" }, { "id": "MDFN90002", "name": "Mednafen Emulator" }, { "id": "MRTC00002", "name": "Lost Planet 2" }, { "id": "MRTC00014", "name": "Mindjack" }, { "id": "NEOTRAIL1", "name": "Neo Trail" }, { "id": "NORSX0000", "name": "NORSX: A 2D Library for PSL1GHT" }, { "id": "NPBB30454", "name": "Gatling Gears" }, { "id": "NPEA00002", "name": "Gran Turismo HD Concept" }, { "id": "NPEA00004", "name": "Lemmings" }, { "id": "NPEA00006", "name": "Go! Puzzle" }, { "id": "NPEA00007", "name": "Operation Creature Feature" }, { "id": "NPEA00008", "name": "Aqua Vita" }, { "id": "NPEA00014", "name": "Super Stardust HD" }, { "id": "NPEA00015", "name": "Nucleus" }, { "id": "NPEA00016", "name": "Super Rub a Dub" }, { "id": "NPEA00017", "name": "WarHawk" }, { "id": "NPEA00019", "name": "Tekken 5: Dark Resurrection Online" }, { "id": "NPEA00020", "name": "Blast Factor" }, { "id": "NPEA00021", "name": "flOw" }, { "id": "NPEA00022", "name": "EyeCreate" }, { "id": "NPEA00028", "name": "Socom: Confrontation" }, { "id": "NPEA00029", "name": "Calling All Cars!" }, { "id": "NPEA00030", "name": "Mesmerize: Distort & Trace" }, { "id": "NPEA00036", "name": "LocoRoco Cocoreccho!" }, { "id": "NPEA00039", "name": "Go! Soduko" }, { "id": "NPEA00041", "name": "Tori-Emaki" }, { "id": "NPEA00047", "name": "High Velocity Bowling" }, { "id": "NPEA00052", "name": "Toy Home" }, { "id": "NPEA00053", "name": "PixelJunk Racers" }, { "id": "NPEA00054", "name": "Pain" }, { "id": "NPEA00055", "name": "Elefunk" }, { "id": "NPEA00057", "name": "WipEout HD" }, { "id": "NPEA00063", "name": "Riff: Everyday Shooter" }, { "id": "NPEA00065", "name": "Piyotama" }, { "id": "NPEA00066", "name": "Linger in Shadows" }, { "id": "NPEA00068", "name": "PixelJunk Monsters" }, { "id": "NPEA00071", "name": "echochrome" }, { "id": "NPEA00080", "name": "The Last Guy" }, { "id": "NPEA00088", "name": "Rachet and Clank: Quest for Booty" }, { "id": "NPEA00089", "name": "PixelJunk Eden" }, { "id": "NPEA00091", "name": "Buzz! Junior: Jungle Party" }, { "id": "NPEA00092", "name": "Buzz! Junior: Monster Rumble" }, { "id": "NPEA00093", "name": "Buzz! Junior: RoboJam" }, { "id": "NPEA00094", "name": "Flower" }, { "id": "NPEA00095", "name": "SIREN: Blood Curse" }, { "id": "NPEA00103", "name": "Rag Doll Kung Fu: Fists of Plastic" }, { "id": "NPEA00104", "name": "Savage Moon" }, { "id": "NPEA00107", "name": "Crash Commando" }, { "id": "NPEA00111", "name": "Fat Princess" }, { "id": "NPEA00112", "name": "Buzz! Junior: Dino Den" }, { "id": "NPEA00117", "name": "Warhawk (Demo)" }, { "id": "NPEA00119", "name": "Crash Commando" }, { "id": "NPEA00120", "name": "Linger in Shadows" }, { "id": "NPEA00123", "name": "Hustle Kings" }, { "id": "NPEA00124", "name": "Bejeweled 2" }, { "id": "NPEA00126", "name": "Zuma" }, { "id": "NPEA00130", "name": "Heavy Weapon: Atomic Tank" }, { "id": "NPEA00131", "name": "Peggle" }, { "id": "NPEA00132", "name": "Feeding Frenzy 2 - Shipwreck Showdown" }, { "id": "NPEA00133", "name": "Eat Them!" }, { "id": "NPEA00137", "name": ".detuned" }, { "id": "NPEA00140", "name": "SingStar Viewer" }, { "id": "NPEA00141", "name": "PixelJunk Shooter" }, { "id": "NPEA00142", "name": "Rag Doll Kung Fu: Fists of Plastic" }, { "id": "NPEA00143", "name": "Dead Nation: Complete" }, { "id": "NPEA00145", "name": "Hustle Kings" }, { "id": "NPEA00147", "name": "LittleBigPlanet (Demo)" }, { "id": "NPEA00154", "name": "Gravity Crash" }, { "id": "NPEA00181", "name": "PixelJunk Shooter 2" }, { "id": "NPEA00182", "name": "PixelJunk Racers: 2nd Lap" }, { "id": "NPEA00187", "name": "Buzz!: Quiz Player" }, { "id": "NPEA00189", "name": "Gundemonium Recollection" }, { "id": "NPEA00190", "name": "Hitogata Happa" }, { "id": "NPEA00193", "name": "Qlione" }, { "id": "NPEA00194", "name": "Buzz!: Quiz Player" }, { "id": "NPEA00196", "name": "Buzz!: Quiz Player" }, { "id": "NPEA00197", "name": "Buzz!: Quiz Player" }, { "id": "NPEA00205", "name": "Acceleration of Suguri: X Edition" }, { "id": "NPEA00206", "name": "Swords and Soldiers" }, { "id": "NPEA00207", "name": "Terrover" }, { "id": "NPEA00239", "name": "Tumble" }, { "id": "NPEA00241", "name": "LittleBigPlanet" }, { "id": "NPEA00243", "name": "Sackboy's Prehistoric Moves" }, { "id": "NPEA00247", "name": "EyePet: Move Edition" }, { "id": "NPEA00252", "name": "inFamous" }, { "id": "NPEA00255", "name": "God of War HD" }, { "id": "NPEA00256", "name": "God of War II HD" }, { "id": "NPEA00262", "name": "Qlione 2" }, { "id": "NPEA00264", "name": "Top Darts" }, { "id": "NPEA00266", "name": "DC Universe Online" }, { "id": "NPEA00271", "name": "Plants vs. Zombies" }, { "id": "NPEA00274", "name": "Slam Bolt Scrappers" }, { "id": "NPEA00275", "name": "Tokyo Jungle" }, { "id": "NPEA00278", "name": "Mag" }, { "id": "NPEA00279", "name": "ICO" }, { "id": "NPEA00280", "name": "Shadow of the Colossus HD" }, { "id": "NPEA00282", "name": "Beat Sketcher" }, { "id": "NPEA00287", "name": "Eat Them!" }, { "id": "NPEA00288", "name": "Journey" }, { "id": "NPEA00289", "name": "Sound Shapes" }, { "id": "NPEA00291", "name": "ModNation Racers" }, { "id": "NPEA00306", "name": "PixelJunk SideScroller" }, { "id": "NPEA00308", "name": "God Of War Chains Of Olympus" }, { "id": "NPEA00309", "name": "God of War: Ghost of Sparta" }, { "id": "NPEA00314", "name": "Rochard" }, { "id": "NPEA00315", "name": "MotorStorm: Apocalypse" }, { "id": "NPEA00322", "name": "Infamous: Festival of Blood" }, { "id": "NPEA00324", "name": "LittleBigPlanet 2" }, { "id": "NPEA00326", "name": "Tekken Tag Tournament HD" }, { "id": "NPEA00327", "name": "Tekken Tag Tournament 2 Prologue" }, { "id": "NPEA00331", "name": "Payday: The Heist" }, { "id": "NPEA00333", "name": "MotorStorm RC" }, { "id": "NPEA00336", "name": "RA.ONE - The Game" }, { "id": "NPEA00338", "name": "The Jak and Dexter Trilogy" }, { "id": "NPEA00339", "name": "Jak II HD" }, { "id": "NPEA00341", "name": "Sly Raccoon" }, { "id": "NPEA00342", "name": "Sly 2: Band of Thieves" }, { "id": "NPEA00343", "name": "Sly 3: Honour Among Thieves" }, { "id": "NPEA00356", "name": "Ratchet & Clank: All 4 One" }, { "id": "NPEA00357", "name": "Dare to Fly!" }, { "id": "NPEA00363", "name": "Uncharted: Drake's Fortune" }, { "id": "NPEA00365", "name": "Uncharted 2: Among Thieves" }, { "id": "NPEA00366", "name": "Malicious" }, { "id": "NPEA00368", "name": "Kite Fight" }, { "id": "NPEA00372", "name": "Best of PlayStation Network: Vol. 1" }, { "id": "NPEA00374", "name": "SingStar" }, { "id": "NPEA00375", "name": "Datura" }, { "id": "NPEA00378", "name": "Ratchet & Clank: QForce" }, { "id": "NPEA00385", "name": "Ratchet & Clank" }, { "id": "NPEA00386", "name": "Ratchet & Clank 2" }, { "id": "NPEA00387", "name": "Ratchet & Clank 3" }, { "id": "NPEA00394", "name": "Rain" }, { "id": "NPEA00395", "name": "The Unfinished Swan" }, { "id": "NPEA00413", "name": "PlayStation All-Stars Battle Royale" }, { "id": "NPEA00418", "name": "Killzone" }, { "id": "NPEA00420", "name": "DanceStar Digital" }, { "id": "NPEA00421", "name": "LittleBigPlanet Karting" }, { "id": "NPEA00423", "name": "Ratchet: Gladiator" }, { "id": "NPEA00430", "name": "Resistance: Fall of Man" }, { "id": "NPEA00433", "name": "Resogun" }, { "id": "NPEA00435", "name": "The Last of Us" }, { "id": "NPEA00438", "name": "Journey" }, { "id": "NPEA00439", "name": "Puppeteer" }, { "id": "NPEA00460", "name": "Doki Doki Universe" }, { "id": "NPEA00474", "name": "Hohokum" }, { "id": "NPEA00502", "name": "Gran Turismo 6" }, { "id": "NPEA00505", "name": "Helldivers" }, { "id": "NPEA00513", "name": "Beyond: Two Souls" }, { "id": "NPEA00514", "name": "Beyond: Two Souls" }, { "id": "NPEA00518", "name": "Entwined" }, { "id": "NPEA90001", "name": "Resistance: Fall of Man (Demo)" }, { "id": "NPEA90002", "name": "Gran Turismo HD Concept" }, { "id": "NPEA90003", "name": "Formula One: Championship Edition (Demo)" }, { "id": "NPEA90006", "name": "MotorStorm (Demo)" }, { "id": "NPEA90008", "name": "Genji: Days of the Blade (Demo)" }, { "id": "NPEA90009", "name": "Blast Factor (Demo)" }, { "id": "NPEA90011", "name": "Ridge Racer 7 (Demo)" }, { "id": "NPEA90014", "name": "Formula One: Championship Edition (Demo)" }, { "id": "NPEA90016", "name": "Heavenly Sword (Demo)" }, { "id": "NPEA90018", "name": "Uncharted: Drake's Fortune (Demo)" }, { "id": "NPEA90019", "name": "Folklore (Demo)" }, { "id": "NPEA90021", "name": "NBA 08 (Demo)" }, { "id": "NPEA90023", "name": "Everybody's Golf: 5 (Demo)" }, { "id": "NPEA90025", "name": "Echochrome (Demo)" }, { "id": "NPEA90026", "name": "PixelJunk Eden (Demo)" }, { "id": "NPEA90027", "name": "The Last Guy (Demo)" }, { "id": "NPEA90030", "name": "MotorStorm: Pacific Rift (Demo)" }, { "id": "NPEA90033", "name": "MotorStorm: Pacific Rift (Demo)" }, { "id": "NPEA90034", "name": "Killzone 2 (Demo)" }, { "id": "NPEA90036", "name": "Fat Princess (Demo)" }, { "id": "NPEA90041", "name": "Killzone 2 Behind the Bullet: Interactive Ad" }, { "id": "NPEA90043", "name": "Infamous (Demo)" }, { "id": "NPEA90044", "name": "Ghostbusters: The Video Game (Demo)" }, { "id": "NPEA90053", "name": "Heavy Rain (Demo)" }, { "id": "NPEA90055", "name": "Uncharted 2: Among Thieves (Demo)" }, { "id": "NPEA90064", "name": "Kung Fu Rider (Demo)" }, { "id": "NPEA90065", "name": "PlayStation Move: Heroes (Demo)" }, { "id": "NPEA90069", "name": "Beat Sketcher (Demo)" }, { "id": "NPEA90071", "name": "Echochrome II" }, { "id": "NPEA90076", "name": "Heavy Rain (Demo)" }, { "id": "NPEA90078", "name": "Time Crisis: Razing Storm (Demo)" }, { "id": "NPEA90084", "name": "Killzone 3 (Demo)" }, { "id": "NPEA90085", "name": "Killzone 3 Demo (3D)" }, { "id": "NPEA90086", "name": "Killzone: 3 (Open Beta)" }, { "id": "NPEA90088", "name": "Ape Escape: On the Move!" }, { "id": "NPEA90090", "name": "MotorStorm: Apocalypse (Demo)" }, { "id": "NPEA90101", "name": "God of War: Ghost of Sparta (Demo)" }, { "id": "NPEA90102", "name": "Resistance: 3 (Demo)" }, { "id": "NPEA90104", "name": "Start the Party! Save the World (Demo)" }, { "id": "NPEA90107", "name": "Move: Fitness (Demo)" }, { "id": "NPEA90111", "name": "Gran Turismo Academy 2012" }, { "id": "NPEA90112", "name": "Sorcery (Demo)" }, { "id": "NPEA90113", "name": "Sports Champions 2 (Demo)" }, { "id": "NPEA90115", "name": "God of War Ascension (Demo)" }, { "id": "NPEA90120", "name": "Sly Cooper: Thieves in Time (Demo)" }, { "id": "NPEA90123", "name": "God of War: Ascension Prison of the Damned (Demo)" }, { "id": "NPEA90124", "name": "Gran Turismo Academy 2013" }, { "id": "NPEA90127", "name": "Beyond Two Souls (Demo)" }, { "id": "NPEB00001", "name": "GripShift" }, { "id": "NPEB00002", "name": "Mortal Kombat II" }, { "id": "NPEB00003", "name": "Gauntlet II" }, { "id": "NPEB00004", "name": "Rampart" }, { "id": "NPEB00007", "name": "Championship Sprint" }, { "id": "NPEB00008", "name": "Q*bert" }, { "id": "NPEB00009", "name": "High Stakes on the Vegas Strip: Poker Edition" }, { "id": "NPEB00020", "name": "Super Puzzle Fighter II Turbo HD Remix" }, { "id": "NPEB00022", "name": "Bionic Commando Rearmed" }, { "id": "NPEB00023", "name": "Wolf of the Battlefield: Commando 3" }, { "id": "NPEB00024", "name": "Fatal Inertia" }, { "id": "NPEB00026", "name": "1942: Joint Strike" }, { "id": "NPEB00027", "name": "Metal Gear Solid 4 Database" }, { "id": "NPEB00031", "name": "Red Baron Arcade" }, { "id": "NPEB00032", "name": "Prince of Persia Classic" }, { "id": "NPEB00034", "name": "Geon" }, { "id": "NPEB00041", "name": "NovaStrike" }, { "id": "NPEB00043", "name": "Burnout Paradise" }, { "id": "NPEB00050", "name": "Dead Space" }, { "id": "NPEB00051", "name": "Dead Space" }, { "id": "NPEB00052", "name": "Mirror's Edge" }, { "id": "NPEB00059", "name": "Burn Zombie Burn" }, { "id": "NPEB00060", "name": "GTI Club+: Rally Côte d'Azur" }, { "id": "NPEB00062", "name": "Supersonic Acrobatic Rocket Powered Battle-Cars" }, { "id": "NPEB00063", "name": "Noby Noby Boy" }, { "id": "NPEB00065", "name": "Astro Tripper" }, { "id": "NPEB00066", "name": "Lumines Supernova" }, { "id": "NPEB00067", "name": "Mahjong Tables: Ancient Wisdom" }, { "id": "NPEB00068", "name": "Magic Orbz" }, { "id": "NPEB00069", "name": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode 1" }, { "id": "NPEB00070", "name": "Watchmen: The End is Nigh" }, { "id": "NPEB00071", "name": "Watchmen" }, { "id": "NPEB00072", "name": "Cuboid" }, { "id": "NPEB00073", "name": "OutRun: Online Arcade" }, { "id": "NPEB00074", "name": "Söldner-X: Himmelsstürmer" }, { "id": "NPEB00075", "name": "Cellfactor: Psychokinetic Wars" }, { "id": "NPEB00076", "name": "Bomberman Ultra" }, { "id": "NPEB00078", "name": "Flock!" }, { "id": "NPEB00079", "name": "PowerUp Forever" }, { "id": "NPEB00080", "name": "3 on 3 NHL Arcade" }, { "id": "NPEB00081", "name": "Worms" }, { "id": "NPEB00083", "name": "Texas Cheat'em" }, { "id": "NPEB00087", "name": "Marvel vs. Capcom" }, { "id": "NPEB00092", "name": "Battlefield 1943" }, { "id": "NPEB00096", "name": "Gunstar Heroes" }, { "id": "NPEB00097", "name": "Topatoi" }, { "id": "NPEB00098", "name": "The Punisher No Mercy" }, { "id": "NPEB00099", "name": "Zen Pinball" }, { "id": "NPEB00100", "name": "Trine" }, { "id": "NPEB00101", "name": "Call of Duty: Classic" }, { "id": "NPEB00104", "name": "Namco Museum Essentials" }, { "id": "NPEB00107", "name": "Invincible Tiger: The Legend of Han Tao" }, { "id": "NPEB00108", "name": "Watchmen: The End is Nigh: Part 2" }, { "id": "NPEB00110", "name": "Crystal Defenders" }, { "id": "NPEB00112", "name": "The Punisher: No Mercy" }, { "id": "NPEB00118", "name": "Shatter" }, { "id": "NPEB00119", "name": "Smash Cars" }, { "id": "NPEB00120", "name": "Mushroom Wars" }, { "id": "NPEB00122", "name": "Wakeboarding HD" }, { "id": "NPEB00123", "name": "Interpol: The Trail of Dr. Chaos" }, { "id": "NPEB00124", "name": "Command & Conquer: Red Alert 3: Commander's Challenge" }, { "id": "NPEB00128", "name": "Zombie Apocalypse" }, { "id": "NPEB00133", "name": "Matt Hazard: Blood Bath and Beyond" }, { "id": "NPEB00140", "name": "Hyperballoid HD" }, { "id": "NPEB00141", "name": "Mega Man 10" }, { "id": "NPEB00142", "name": "Comet Crash" }, { "id": "NPEB00143", "name": "Greed Corp" }, { "id": "NPEB00147", "name": "Blue Toad Murder Files: The Mysteries of Little Riddle" }, { "id": "NPEB00148", "name": "Vandal Hearts Flames of Judgement" }, { "id": "NPEB00149", "name": "Teenage Mutant Ninja Turtles: Turtles in Time: Re-Shelled" }, { "id": "NPEB00150", "name": "Braid" }, { "id": "NPEB00153", "name": "Sonic the Hedgehog 4: Episode I" }, { "id": "NPEB00157", "name": "Uno" }, { "id": "NPEB00158", "name": "Tank Battles Trial Version" }, { "id": "NPEB00160", "name": "Anarchy: Rush Hour" }, { "id": "NPEB00161", "name": "Death Track: Resurrection" }, { "id": "NPEB00162", "name": "Frogger Returns" }, { "id": "NPEB00163", "name": "Planet Minigolf" }, { "id": "NPEB00164", "name": "Blade Kitten" }, { "id": "NPEB00165", "name": "Critter Crunch" }, { "id": "NPEB00169", "name": "Hamilton's Great Adventure" }, { "id": "NPEB00170", "name": "Fret Nice" }, { "id": "NPEB00171", "name": "Brain Challenge" }, { "id": "NPEB00172", "name": "Polar Panic" }, { "id": "NPEB00173", "name": "Thexder Neo" }, { "id": "NPEB00174", "name": "Might & Magic Clash of Heroes" }, { "id": "NPEB00175", "name": "After Burner Climax" }, { "id": "NPEB00176", "name": "Top Gun" }, { "id": "NPEB00177", "name": "Söldner-X 2: Final Prototype" }, { "id": "NPEB00179", "name": "Hamster Ball" }, { "id": "NPEB00180", "name": "Catan" }, { "id": "NPEB00181", "name": "Sam & Max: The Devil's Playhouse Episode 1: The Penal Zone" }, { "id": "NPEB00183", "name": "Voodoo Dice" }, { "id": "NPEB00185", "name": "Ferrari: The Race Experience" }, { "id": "NPEB00186", "name": "Rocket Knight" }, { "id": "NPEB00191", "name": "Monkey Island: Special Edition" }, { "id": "NPEB00192", "name": "Sky Fighter" }, { "id": "NPEB00201", "name": "Lead and Gold: Gangs of the Wild West" }, { "id": "NPEB00205", "name": "Joe Danger" }, { "id": "NPEB00213", "name": "Test Yourself" }, { "id": "NPEB00214", "name": "Sam & Max: The Devil's Playhouse Episode 2: The Tomb of Sammun-M" }, { "id": "NPEB00215", "name": "Sam & Max: The Devil's Playhouse Episode 3: They Stole Max's Brain!" }, { "id": "NPEB00216", "name": "Sam & Max: The Devil's Playhouse Episode 4: Beyond the Alley o'D" }, { "id": "NPEB00218", "name": "Sam & Max: The Devil's Playhouse Episode 5: The City That Dares" }, { "id": "NPEB00220", "name": "Landit Bandit" }, { "id": "NPEB00221", "name": "TNT Racers" }, { "id": "NPEB00222", "name": "Pinballistik" }, { "id": "NPEB00223", "name": "Ricochet HD" }, { "id": "NPEB00225", "name": "DeathSpank" }, { "id": "NPEB00226", "name": "Earthworm Jim HD" }, { "id": "NPEB00239", "name": "Gotham City Imposters" }, { "id": "NPEB00242", "name": "NEOGEO STATION Magician Lord" }, { "id": "NPEB00246", "name": "Alpha Mission II" }, { "id": "NPEB00257", "name": "Machinarium" }, { "id": "NPEB00258", "name": "Scott Pilgrim vs. The World: The Game" }, { "id": "NPEB00283", "name": "Stacking" }, { "id": "NPEB00284", "name": "Costume Quest" }, { "id": "NPEB00286", "name": "My Aquarium" }, { "id": "NPEB00287", "name": "3D Ultra Minigolf Adventures 2" }, { "id": "NPEB00289", "name": "Dungeon Hunter Alliance" }, { "id": "NPEB00291", "name": "DeathSpank: Thongs of Virtue" }, { "id": "NPEB00292", "name": "Worms 2: Armageddon" }, { "id": "NPEB00293", "name": "Castle Crashers" }, { "id": "NPEB00299", "name": "Rush'n Attack Ex Patriot" }, { "id": "NPEB00300", "name": "Red Fraction: Battlegrounds" }, { "id": "NPEB00301", "name": "Spare Parts" }, { "id": "NPEB00303", "name": "Crazy Taxi" }, { "id": "NPEB00304", "name": "Sonic Adventure" }, { "id": "NPEB00305", "name": "Armageddon Riders" }, { "id": "NPEB00306", "name": "Explodemon" }, { "id": "NPEB00307", "name": "StarDrone" }, { "id": "NPEB00309", "name": "Dungeon Twister - Trial Version" }, { "id": "NPEB00310", "name": "Shank" }, { "id": "NPEB00311", "name": "Lara Croft and the Guardian of Light" }, { "id": "NPEB00315", "name": "Pac-Man Champion Edition DX" }, { "id": "NPEB00318", "name": "Dead Space: Extraction" }, { "id": "NPEB00326", "name": "Joe Danger" }, { "id": "NPEB00327", "name": "Medal of Honor: Frontline" }, { "id": "NPEB00328", "name": "Faery: Legends of Avalon" }, { "id": "NPEB00329", "name": "Flight Control HD" }, { "id": "NPEB00331", "name": "Kung-Fu Live" }, { "id": "NPEB00332", "name": "Hard Corps: Uprising" }, { "id": "NPEB00333", "name": "Galaga Legions DX" }, { "id": "NPEB00335", "name": "Kung-Fu Live" }, { "id": "NPEB00336", "name": "MicroBot" }, { "id": "NPEB00337", "name": "Crazy Machines Elements" }, { "id": "NPEB00338", "name": "Dead Space: Ignition" }, { "id": "NPEB00339", "name": "The Fancy Pants Adventures" }, { "id": "NPEB00341", "name": "Prince of Persia: The Sands of Time HD" }, { "id": "NPEB00342", "name": "Resident Evil 4 HD" }, { "id": "NPEB00347", "name": "Dead Space: Extraction" }, { "id": "NPEB00349", "name": "Funky Lab Rat" }, { "id": "NPEB00351", "name": "SEGA Bass Fishing" }, { "id": "NPEB00352", "name": "Quizball Goal" }, { "id": "NPEB00353", "name": "Red Faction: Guerrilla" }, { "id": "NPEB00365", "name": "Blacklight: Tango Down" }, { "id": "NPEB00366", "name": "Tomb Raider: Underworld" }, { "id": "NPEB00367", "name": "Magic: The Gathering - Duels of the Planeswalkers" }, { "id": "NPEB00368", "name": "TableTop Cricket" }, { "id": "NPEB00373", "name": "Blokus" }, { "id": "NPEB00374", "name": "Chime Super Deluxe" }, { "id": "NPEB00377", "name": "Hydrophobia Prophecy" }, { "id": "NPEB00378", "name": "Bang Bang Racing" }, { "id": "NPEB00379", "name": "Marvel Pinball" }, { "id": "NPEB00381", "name": "SEGA Rally Online Arcade" }, { "id": "NPEB00384", "name": "Ghostbusters: Sanctum of Slime" }, { "id": "NPEB00385", "name": "Dungeons & Dragons: Daggerdale" }, { "id": "NPEB00386", "name": "Section 8: Prejudice" }, { "id": "NPEB00388", "name": "Tales from Space: About a Blob" }, { "id": "NPEB00390", "name": "Prince of Persia - Two Thrones" }, { "id": "NPEB00393", "name": "Assassin's Creed" }, { "id": "NPEB00395", "name": "Hoard" }, { "id": "NPEB00401", "name": "Puzzle Dimension" }, { "id": "NPEB00409", "name": "Deadstorm Pirates" }, { "id": "NPEB00412", "name": "Super Hang-On" }, { "id": "NPEB00413", "name": "The Revenge of Shinobi" }, { "id": "NPEB00415", "name": "Alex Kidd In Miracle World" }, { "id": "NPEB00416", "name": "Monster World IV" }, { "id": "NPEB00435", "name": "Beyond Good & Evil HD" }, { "id": "NPEB00436", "name": "Prototype" }, { "id": "NPEB00437", "name": "Fast Draw Showdown" }, { "id": "NPEB00438", "name": "Dragon's Lair II: Time Warp" }, { "id": "NPEB00439", "name": "Space Ace" }, { "id": "NPEB00441", "name": "Puddle" }, { "id": "NPEB00445", "name": "Tetris" }, { "id": "NPEB00446", "name": "Renegade Ops" }, { "id": "NPEB00447", "name": "Back to the Future: The Game" }, { "id": "NPEB00454", "name": "Sine Mora" }, { "id": "NPEB00461", "name": "Dead Block" }, { "id": "NPEB00462", "name": "Assassin's Creed II" }, { "id": "NPEB00463", "name": "Outland" }, { "id": "NPEB00464", "name": "X-Men: The Arcade Game" }, { "id": "NPEB00466", "name": "From Dust" }, { "id": "NPEB00469", "name": "Spelunker HD" }, { "id": "NPEB00470", "name": "CellFactor: Psychokinetic Wars" }, { "id": "NPEB00473", "name": "Mercury Hg" }, { "id": "NPEB00475", "name": "Swarm" }, { "id": "NPEB00476", "name": "I Am Alive" }, { "id": "NPEB00477", "name": "Sonic the Hedgehog 2" }, { "id": "NPEB00478", "name": "Sonic the Hedgehog" }, { "id": "NPEB00479", "name": "Back to the Future - Episode 2: Get Tannen" }, { "id": "NPEB00484", "name": "Eufloria" }, { "id": "NPEB00503", "name": "Mass Effect 2" }, { "id": "NPEB00505", "name": "Worms Ultimate Mayhem" }, { "id": "NPEB00508", "name": "Streets of Rage II" }, { "id": "NPEB00509", "name": "SEGA Vintage Collection: Golden Axe" }, { "id": "NPEB00510", "name": "Gatling Gears" }, { "id": "NPEB00513", "name": "Ridge Racer 7 3D" }, { "id": "NPEB00514", "name": "Auditorium HD" }, { "id": "NPEB00515", "name": "Magic: The Gathering - Duels of the Planeswalkers 2012" }, { "id": "NPEB00516", "name": "Robot Rescue Revolution" }, { "id": "NPEB00521", "name": "Warlords" }, { "id": "NPEB00526", "name": "SEGA Vintage Collection: Altered Beast" }, { "id": "NPEB00527", "name": "Tom Clancy's Splinter Cell HD" }, { "id": "NPEB00528", "name": "Tom Clancy's Splinter Cell HD: Pandora Tomorrow" }, { "id": "NPEB00529", "name": "Burnout Crash!" }, { "id": "NPEB00530", "name": "SEGA Vintage Collection: Comix Zone" }, { "id": "NPEB00531", "name": "Star Raiders" }, { "id": "NPEB00534", "name": "De Blob 2" }, { "id": "NPEB00540", "name": "Alien Zombie Megadeath" }, { "id": "NPEB00542", "name": "Wrecked: Revenge Revisited" }, { "id": "NPEB00545", "name": "Rust Buccaneers" }, { "id": "NPEB00548", "name": "Dante's Inferno" }, { "id": "NPEB00549", "name": "Dante's Inferno" }, { "id": "NPEB00550", "name": "Dead Space 2" }, { "id": "NPEB00553", "name": "Resident Evil Code: Veronica X" }, { "id": "NPEB00554", "name": "Street Fighter III: 3rd Strike Online Edition" }, { "id": "NPEB00555", "name": "BlazeRush" }, { "id": "NPEB00556", "name": "Cubixx HD" }, { "id": "NPEB00557", "name": "Tom Clancy's Splinter: Chaos Theory HD" }, { "id": "NPEB00560", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2" }, { "id": "NPEB00563", "name": "Castlevania: Harmony of Despair" }, { "id": "NPEB00564", "name": "LIMBO" }, { "id": "NPEB00566", "name": "SkyDrift" }, { "id": "NPEB00569", "name": "Dragon Age II" }, { "id": "NPEB00570", "name": "Twisted Lands: Shadow Town" }, { "id": "NPEB00573", "name": "Dragon Age: Origins" }, { "id": "NPEB00575", "name": "Crysis" }, { "id": "NPEB00576", "name": "Zombie Apocalypse: Never Die Alone" }, { "id": "NPEB00577", "name": "EA Sports MMA" }, { "id": "NPEB00587", "name": "Need for Speed: Hot Persuit" }, { "id": "NPEB00592", "name": "Backbreaker Vengeance" }, { "id": "NPEB00593", "name": "Wizardry: Labyrinth of Lost Souls" }, { "id": "NPEB00594", "name": "Voltron: Defender of the Universe" }, { "id": "NPEB00595", "name": "Worms Crazy Golf" }, { "id": "NPEB00596", "name": "Max & the Magic Marker: Gold Edition" }, { "id": "NPEB00598", "name": "Arkedo Series - 01 Jump!" }, { "id": "NPEB00599", "name": "Far Cry 2" }, { "id": "NPEB00600", "name": "Assassin's Creed: Brotherhood" }, { "id": "NPEB00602", "name": "Mortal Kombat Arcade Kollection" }, { "id": "NPEB00612", "name": "Red Faction: Armageddon" }, { "id": "NPEB00614", "name": "Arkedo Series - 02 Swap!" }, { "id": "NPEB00615", "name": "Arkedo Series - 03 Pixel!" }, { "id": "NPEB00617", "name": "Babel Rising" }, { "id": "NPEB00620", "name": "Best Hazard Ultra" }, { "id": "NPEB00621", "name": "Okabu" }, { "id": "NPEB00622", "name": "Bulletstorm" }, { "id": "NPEB00623", "name": "Bulletstorm" }, { "id": "NPEB00630", "name": "Daytona USA" }, { "id": "NPEB00631", "name": "The Baconing" }, { "id": "NPEB00632", "name": "Driver: San Francisco" }, { "id": "NPEB00636", "name": "Warp" }, { "id": "NPEB00637", "name": "Saints Row 2" }, { "id": "NPEB00644", "name": "Scarygirl" }, { "id": "NPEB00645", "name": "Oddworld Stranger's Wrath" }, { "id": "NPEB00646", "name": "BurgerTime: World Tour" }, { "id": "NPEB00647", "name": "Pure Chess" }, { "id": "NPEB00648", "name": "Warhammer 40,000: Space Marine" }, { "id": "NPEB00649", "name": "Child of Eden" }, { "id": "NPEB00650", "name": "NBA Jam: On Fire Edition" }, { "id": "NPEB00651", "name": "Toki Toki" }, { "id": "NPEB00652", "name": "Dungeon Defenders" }, { "id": "NPEB00653", "name": "Crysis 2" }, { "id": "NPEB00654", "name": "LEGO Pirates of the Caribbean: The Video Game" }, { "id": "NPEB00668", "name": "Trine 2" }, { "id": "NPEB00669", "name": "Rock Of Ages" }, { "id": "NPEB00670", "name": "Awesomenauts" }, { "id": "NPEB00673", "name": "Red Johnson's Chronicles" }, { "id": "NPEB00677", "name": "CastleStorm" }, { "id": "NPEB00681", "name": "Metal Slug 2" }, { "id": "NPEB00684", "name": "Metal Gear Solid HD Collection" }, { "id": "NPEB00686", "name": "Metal Gear Solid: Peace Walker - HD Edition" }, { "id": "NPEB00687", "name": "Resident Evil 5: Gold Edition" }, { "id": "NPEB00688", "name": "FIFA 12" }, { "id": "NPEB00715", "name": "Bodycount" }, { "id": "NPEB00716", "name": "BloodRayne: Betrayal" }, { "id": "NPEB00717", "name": "Sonic the Hedgehog 4 - Episode II" }, { "id": "NPEB00720", "name": "Greg Hastings Paintball 2" }, { "id": "NPEB00721", "name": "Dead Island" }, { "id": "NPEB00722", "name": "Rocketbirds: Hardboiled Chicken" }, { "id": "NPEB00723", "name": "Battlefield 3" }, { "id": "NPEB00726", "name": "Darksiders" }, { "id": "NPEB00727", "name": "The Simpsons Arcade Game" }, { "id": "NPEB00731", "name": "Call of Duty: Modern Warfare 2" }, { "id": "NPEB00754", "name": "Real Steel" }, { "id": "NPEB00761", "name": "Red Johnson's Chronicles: One Against All" }, { "id": "NPEB00765", "name": "Smash 'N' Survive" }, { "id": "NPEB00767", "name": "Shoot Many Robots" }, { "id": "NPEB00768", "name": "Amy" }, { "id": "NPEB00769", "name": "Ion Assault HD" }, { "id": "NPEB00771", "name": "BioShock 2" }, { "id": "NPEB00774", "name": "Prince of Persia: The Forgotten Sands" }, { "id": "NPEB00777", "name": "Dust" }, { "id": "NPEB00787", "name": "Sonic CD" }, { "id": "NPEB00791", "name": "Deus Ex: Human Revolution" }, { "id": "NPEB00792", "name": "Deus Ex: Human Revolution" }, { "id": "NPEB00793", "name": "Deus Ex: Human Revolution" }, { "id": "NPEB00794", "name": "Under Siege" }, { "id": "NPEB00802", "name": "Assassin's Creed Embers" }, { "id": "NPEB00811", "name": "Zombie Driver HD" }, { "id": "NPEB00814", "name": "Shank 2" }, { "id": "NPEB00816", "name": "Resident Evil: The Darkside Chronicles" }, { "id": "NPEB00817", "name": "Resident Evil: The Umbrella Chronicles" }, { "id": "NPEB00818", "name": "Rayman Origins" }, { "id": "NPEB00821", "name": "Pool Nation" }, { "id": "NPEB00822", "name": "FIFA Street" }, { "id": "NPEB00828", "name": "Duke Nukem Forever" }, { "id": "NPEB00829", "name": "Mafia II" }, { "id": "NPEB00831", "name": "Hell Yeah! Wrath of the Dead Rabbit" }, { "id": "NPEB00833", "name": "Red Dead Redemption" }, { "id": "NPEB00838", "name": "Tiger Woods PGA Tour 13" }, { "id": "NPEB00839", "name": "Hitman: Blood Money HD" }, { "id": "NPEB00840", "name": "Hitman: Silent Assassin" }, { "id": "NPEB00841", "name": "Hitman: Contracts HD" }, { "id": "NPEB00847", "name": "Mortal Kombat" }, { "id": "NPEB00848", "name": "DiRT 3" }, { "id": "NPEB00850", "name": "L.A. Noire" }, { "id": "NPEB00851", "name": "Need for Speed: The Run" }, { "id": "NPEB00865", "name": "Mass Effect 3" }, { "id": "NPEB00866", "name": "Judge Dee - The City God Case" }, { "id": "NPEB00867", "name": "Hitman: Sniper Challenge" }, { "id": "NPEB00869", "name": "Marvel vs Capcom: Origins" }, { "id": "NPEB00870", "name": "Vampire Resurrection" }, { "id": "NPEB00872", "name": "Adam's Venture Chronicles" }, { "id": "NPEB00875", "name": "Catherine" }, { "id": "NPEB00876", "name": "Fuel Overdose" }, { "id": "NPEB00879", "name": "Rayman 3 HD" }, { "id": "NPEB00880", "name": "Assassin's Creed: Revelations" }, { "id": "NPEB00882", "name": "Grand Theft Auto IV" }, { "id": "NPEB00886", "name": "Mad Riders" }, { "id": "NPEB00888", "name": "Saints Row: The Third" }, { "id": "NPEB00890", "name": "Saints Row: The Third" }, { "id": "NPEB00891", "name": "Unearthed: Trail of Ibn Battuta - Episode 1" }, { "id": "NPEB00892", "name": "Tom Clancy's Ghost Recon Future Soldier" }, { "id": "NPEB00894", "name": "The Pinball Arcade" }, { "id": "NPEB00897", "name": "Captain Morgane and the Golden Turtle" }, { "id": "NPEB00900", "name": "Okami HD" }, { "id": "NPEB00902", "name": "Darksiders 2" }, { "id": "NPEB00904", "name": "Anomaly: Warzone Earth" }, { "id": "NPEB00906", "name": "Orc Attack: Flatulent Rebellion" }, { "id": "NPEB00907", "name": "Grand Theft Auto: Episodes from Liberty City" }, { "id": "NPEB00910", "name": "Skullgirls" }, { "id": "NPEB00913", "name": "Virtua Fighter 5: Final Showdown" }, { "id": "NPEB00914", "name": "Hitman: Absolution" }, { "id": "NPEB00915", "name": "Binary Domain" }, { "id": "NPEB00916", "name": "Rune Factory Oceans" }, { "id": "NPEB00923", "name": "The Expendables 2 Videogame" }, { "id": "NPEB00924", "name": "Jet Set Radio" }, { "id": "NPEB00925", "name": "MUD: FIM Motocross World Championship" }, { "id": "NPEB00934", "name": "The Darkness II" }, { "id": "NPEB00945", "name": "Crazy Strike Bowling" }, { "id": "NPEB00947", "name": "BIT.TRIP Presents...Runner2: Future Legend of Rhythm Alien" }, { "id": "NPEB00948", "name": "Michael Jackson: The Experience" }, { "id": "NPEB00949", "name": "Order Up!!" }, { "id": "NPEB00956", "name": "JoJo's Bizarre Adventure HD Trial" }, { "id": "NPEB00957", "name": "The Walking Dead" }, { "id": "NPEB00959", "name": "Feeding Frenzy 2: Shipwreck Showdown" }, { "id": "NPEB00964", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPEB00965", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPEB00966", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPEB00967", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPEB00968", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPEB00977", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPEB00978", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPEB00980", "name": "Capcom Arcade Cabinet" }, { "id": "NPEB00981", "name": "Blood Knights" }, { "id": "NPEB00984", "name": "Resident Evil: Operation Raccoon City" }, { "id": "NPEB00985", "name": "Resident Evil: Operation Raccoon City" }, { "id": "NPEB00986", "name": "Spec Ops: The Line" }, { "id": "NPEB00988", "name": "Rock Band Blitz" }, { "id": "NPEB00989", "name": "Far Cry Classic" }, { "id": "NPEB00992", "name": "Hitman: Absolution" }, { "id": "NPEB00993", "name": "Hitman: Absolution" }, { "id": "NPEB00997", "name": "The Amazing Spider-Man" }, { "id": "NPEB00999", "name": "International Snooker" }, { "id": "NPEB01009", "name": "Sniper Elite V2" }, { "id": "NPEB01017", "name": "007 Legends" }, { "id": "NPEB01018", "name": "007 Legends" }, { "id": "NPEB01019", "name": "SBK Generations" }, { "id": "NPEB01020", "name": "DmC: Devil May Cry" }, { "id": "NPEB01027", "name": "Wicked Monster BLAST!" }, { "id": "NPEB01028", "name": "Tony Hawk's Pro Skater HD" }, { "id": "NPEB01032", "name": "LEGO Batman 2: DC Super Heroes" }, { "id": "NPEB01033", "name": "Transformers: Fall of Cybertron" }, { "id": "NPEB01036", "name": "Girl Fight Trial" }, { "id": "NPEB01037", "name": "Max Payne 3" }, { "id": "NPEB01041", "name": "Knytt Underground" }, { "id": "NPEB01042", "name": "Need for Speed: Most Wanted" }, { "id": "NPEB01044", "name": "Worms Revolution" }, { "id": "NPEB01046", "name": "Sleeping Dogs" }, { "id": "NPEB01052", "name": "Defenders of Ardania" }, { "id": "NPEB01055", "name": "Kingdoms of Amalur: Reckoning" }, { "id": "NPEB01056", "name": "Pid" }, { "id": "NPEB01061", "name": "Ice Age 4: Continental Drift: Arctic Games" }, { "id": "NPEB01072", "name": "WRC 3" }, { "id": "NPEB01082", "name": "Legasista" }, { "id": "NPEB01086", "name": "Ridge Racer: Unbounded" }, { "id": "NPEB01088", "name": "Alien Rage" }, { "id": "NPEB01093", "name": "Test Drive: Ferrari Racing Legends" }, { "id": "NPEB01096", "name": "Far Cry 3" }, { "id": "NPEB01097", "name": "Night Into Dreams..." }, { "id": "NPEB01098", "name": "Game Of Thrones" }, { "id": "NPEB01099", "name": "Assassin's Creed III" }, { "id": "NPEB01107", "name": "F1 2012" }, { "id": "NPEB01109", "name": "Papo & Yo" }, { "id": "NPEB01110", "name": "Voodoo Chronicles: The First Sign" }, { "id": "NPEB01111", "name": "Dishonored" }, { "id": "NPEB01119", "name": "Birds of Steel" }, { "id": "NPEB01121", "name": "SSX" }, { "id": "NPEB01124", "name": "F1 Race Stars" }, { "id": "NPEB01127", "name": "A-Men" }, { "id": "NPEB01129", "name": "Dead or Alive 5" }, { "id": "NPEB01131", "name": "The Testament of Sherlock Holmes" }, { "id": "NPEB01133", "name": "Vanquish" }, { "id": "NPEB01134", "name": "Bayonetta" }, { "id": "NPEB01137", "name": "Worms" }, { "id": "NPEB01138", "name": "Worms Ultimate Mayhem" }, { "id": "NPEB01139", "name": "Worms 2: Armageddon" }, { "id": "NPEB01140", "name": "Tekken Tag Tournament 2" }, { "id": "NPEB01141", "name": "Guacamelee!" }, { "id": "NPEB01146", "name": "Dead Space 3" }, { "id": "NPEB01152", "name": "Cartoon Network: Punch Time Explosion XL" }, { "id": "NPEB01156", "name": "Batman: Arkham Asylum" }, { "id": "NPEB01158", "name": "Ni no Kuni: Wrath of the White Witch" }, { "id": "NPEB01160", "name": "Zuma's Revenge!" }, { "id": "NPEB01162", "name": "Sonic The Fighters" }, { "id": "NPEB01164", "name": "Fighting Vipers" }, { "id": "NPEB01166", "name": "Retro City Rampage" }, { "id": "NPEB01167", "name": "Joe Danger 2: The Movie" }, { "id": "NPEB01173", "name": "Shaun White Snowboarding" }, { "id": "NPEB01174", "name": "Persona 4 Arena" }, { "id": "NPEB01175", "name": "Demolition Inc" }, { "id": "NPEB01186", "name": "Zone of the Enders HD Collection" }, { "id": "NPEB01188", "name": "Devil May Cry HD Collection" }, { "id": "NPEB01195", "name": "Mass Effect" }, { "id": "NPEB01201", "name": "Brothers A Tale Of Two Sons" }, { "id": "NPEB01202", "name": "Demon's Souls" }, { "id": "NPEB01204", "name": "Call of Duty: Black Ops II" }, { "id": "NPEB01205", "name": "Call of Duty: Black Ops II" }, { "id": "NPEB01206", "name": "Call of Duty: Black Ops II" }, { "id": "NPEB01210", "name": "A-Men 2" }, { "id": "NPEB01212", "name": "Sacred Citadel" }, { "id": "NPEB01214", "name": "Call of Juarez: Gunslinger" }, { "id": "NPEB01217", "name": "Army of TWO: The Devil's Cartel" }, { "id": "NPEB01218", "name": "Magic: Duels of the Planeswalkers 2014" }, { "id": "NPEB01219", "name": "Bang! The Official Video Game" }, { "id": "NPEB01220", "name": "Scourge: Outbreak" }, { "id": "NPEB01222", "name": "GRID 2" }, { "id": "NPEB01233", "name": "Doodle God" }, { "id": "NPEB01234", "name": "Crysis 3" }, { "id": "NPEB01235", "name": "Angry Birds Trilogy" }, { "id": "NPEB01237", "name": "The Cave" }, { "id": "NPEB01238", "name": "Urban Trial Freestyle" }, { "id": "NPEB01244", "name": "Dynasty Warriors 7: Xtreme Legends" }, { "id": "NPEB01245", "name": "Dynasty Warriors 7" }, { "id": "NPEB01247", "name": "Dynasty Warriors 6 Empires" }, { "id": "NPEB01251", "name": "Champion Jockey: G1 Jockey & Gallop Racer" }, { "id": "NPEB01256", "name": "NASCAR The Game: Inside Line" }, { "id": "NPEB01268", "name": "Dragon's Dogma: Dark Arisen" }, { "id": "NPEB01269", "name": "Strength of the Sword 3" }, { "id": "NPEB01270", "name": "Terraria" }, { "id": "NPEB01275", "name": "Dungeons & Dragons: Chronicles of Mystara" }, { "id": "NPEB01280", "name": "Magrunner: Dark Pulse" }, { "id": "NPEB01283", "name": "Grand Theft Auto V" }, { "id": "NPEB01284", "name": "Atomic Ninjas" }, { "id": "NPEB01287", "name": "DuckTales Remastered" }, { "id": "NPEB01289", "name": "Air Conflicts: Pacific Carriers" }, { "id": "NPEB01290", "name": "BioShock Infinite" }, { "id": "NPEB01297", "name": "Strider" }, { "id": "NPEB01301", "name": "Mars War Logs" }, { "id": "NPEB01303", "name": "Battlefield 4" }, { "id": "NPEB01306", "name": "Q.U.B.E.: Director's Cut" }, { "id": "NPEB01308", "name": "Hunter's Trophy 2 - Australia" }, { "id": "NPEB01309", "name": "Hunter's Trophy 2 - America" }, { "id": "NPEB01316", "name": "Superfrog HD" }, { "id": "NPEB01321", "name": "Lightning Returns: Final Fantasy XIII" }, { "id": "NPEB01322", "name": "Far Cry 3: Blood Dragon" }, { "id": "NPEB01323", "name": "Deathmatch Village" }, { "id": "NPEB01324", "name": "WRC Powerslide" }, { "id": "NPEB01327", "name": "Ninja Gaiden 3: Razor's Edge" }, { "id": "NPEB01328", "name": "The Last Bounty Hunter" }, { "id": "NPEB01332", "name": "Farming Simulator" }, { "id": "NPEB01336", "name": "Earth Defense Force 2025" }, { "id": "NPEB01337", "name": "Thomas was Alone" }, { "id": "NPEB01340", "name": "NHL 14" }, { "id": "NPEB01341", "name": "Hotline Miami" }, { "id": "NPEB01347", "name": "Sonic Unleashed" }, { "id": "NPEB01348", "name": "Resonance of Fate" }, { "id": "NPEB01353", "name": "Luftrausers" }, { "id": "NPEB01356", "name": "Rayman Legends" }, { "id": "NPEB01357", "name": "Telltale Games' Poker Night 2" }, { "id": "NPEB01358", "name": "Stealth Inc.: A Clone in the Dark" }, { "id": "NPEB01361", "name": "Frozen Synapse Prime" }, { "id": "NPEB01363", "name": "SoulCalibur V" }, { "id": "NPEB01367", "name": "Rugby Challenge 2: The Lions Tour Edition" }, { "id": "NPEB01371", "name": "Hakuoki: Stories of the Shinsengumi" }, { "id": "NPEB01373", "name": "Narco Terror" }, { "id": "NPEB01378", "name": "LEGO Marvel: Super Heroes" }, { "id": "NPEB01380", "name": "Thunder Wolves" }, { "id": "NPEB01383", "name": "MotoGP 13" }, { "id": "NPEB01384", "name": "FIFA 14" }, { "id": "NPEB01386", "name": "Assassin's Creed: Liberty HD" }, { "id": "NPEB01387", "name": "How to Survive" }, { "id": "NPEB01388", "name": "Tales of Symphonia: Dawn of the New World HD" }, { "id": "NPEB01389", "name": "Tales of Symphonia HD" }, { "id": "NPEB01391", "name": "Final Fantasy X / X-2 HD Remaster" }, { "id": "NPEB01393", "name": "Hatsune Miku: Project Diva F" }, { "id": "NPEB01396", "name": "Assassin's Creed IV: Black Flag" }, { "id": "NPEB01400", "name": "Arcania: The Complete Tale" }, { "id": "NPEB01404", "name": "Saints Row IV" }, { "id": "NPEB01406", "name": "Tekken Revolution" }, { "id": "NPEB01407", "name": "Drakengard 3" }, { "id": "NPEB01408", "name": "Yaiba: Ninja Gaiden Z" }, { "id": "NPEB01409", "name": "Final Exam" }, { "id": "NPEB01410", "name": "Ibb & Obb" }, { "id": "NPEB01412", "name": "Need for Speed: Rivals" }, { "id": "NPEB01416", "name": "The Smurfs 2" }, { "id": "NPEB01417", "name": "Flashback HD" }, { "id": "NPEB01419", "name": "Spelunky" }, { "id": "NPEB01421", "name": "Proteus" }, { "id": "NPEB01424", "name": "Lone Survivor" }, { "id": "NPEB01425", "name": "Teenage Mutant Ninja Turtles: Out of the Shadows" }, { "id": "NPEB01427", "name": "Castle of Illusion: Starring Mickey Mouse" }, { "id": "NPEB01428", "name": "Armored Core: Verdict Day" }, { "id": "NPEB01432", "name": "Murdered: Soul Suspect" }, { "id": "NPEB01433", "name": "Watch Dogs" }, { "id": "NPEB01434", "name": "Castlevania: Lords of Shadow 2" }, { "id": "NPEB01437", "name": "Ms.Germinator" }, { "id": "NPEB01438", "name": "Ben 10 Omniverse 2" }, { "id": "NPEB01440", "name": "Pac-Man and the Ghostly Adventures" }, { "id": "NPEB01441", "name": "Castlevania Lords of Shadow - Mirrors of Vain HD" }, { "id": "NPEB01784", "name": "Payday 2" }, { "id": "NPEB01785", "name": "Cabela's Big Game Hunter: Pro Hunts" }, { "id": "NPEB01786", "name": "Dead or Alive 5 Ultimate" }, { "id": "NPEB01787", "name": "Battle of Tiles EX" }, { "id": "NPEB01789", "name": "Wolfenstein: The New Order" }, { "id": "NPEB01792", "name": "Street Fighter X Tekken" }, { "id": "NPEB01793", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge" }, { "id": "NPEB01795", "name": "One Piece: Pirate Warriors 2" }, { "id": "NPEB01796", "name": "Divekick" }, { "id": "NPEB01797", "name": "The Evil Within" }, { "id": "NPEB01801", "name": "NBA 2K14" }, { "id": "NPEB01804", "name": "Diablo III" }, { "id": "NPEB01805", "name": "Deus Ex: Human Revolution - Director's Cut" }, { "id": "NPEB01809", "name": "Pro Evolution Soccer 2014" }, { "id": "NPEB01814", "name": "Saint Seiya: Brave Soldiers" }, { "id": "NPEB01815", "name": "WWE 2K14" }, { "id": "NPEB01816", "name": "Air Conflicts: Vietnam" }, { "id": "NPEB01819", "name": "The Guided Fate Paradox" }, { "id": "NPEB01823", "name": "Dragon Ball Z: Battle of Z" }, { "id": "NPEB01824", "name": "Tales from Space: Mutant Blobs Attack" }, { "id": "NPEB01825", "name": "Angry Birds: Star Wars" }, { "id": "NPEB01826", "name": "R-Type Dimensions" }, { "id": "NPEB01827", "name": "SoulCalibur: Lost Swords" }, { "id": "NPEB01828", "name": "SoulCalibur II HD Online" }, { "id": "NPEB01832", "name": "Call of Duty: Ghosts" }, { "id": "NPEB01835", "name": "Call of Duty: Ghosts" }, { "id": "NPEB01836", "name": "Dragon's Crown" }, { "id": "NPEB01838", "name": "Truck Racer" }, { "id": "NPEB01839", "name": "Ace Combat Infinity" }, { "id": "NPEB01841", "name": "Bound by Flame" }, { "id": "NPEB01843", "name": "Just Dance 2014" }, { "id": "NPEB01844", "name": "Anna" }, { "id": "NPEB01853", "name": "Dark Souls 2" }, { "id": "NPEB01857", "name": "Adventure Time: Explore The Dungeon Because I DON'T KNOW!" }, { "id": "NPEB01858", "name": "Tales of Xillia 2" }, { "id": "NPEB01859", "name": "Rambo: The Video Game" }, { "id": "NPEB01861", "name": "Contrast" }, { "id": "NPEB01862", "name": "The LEGO Movie Videogame" }, { "id": "NPEB01863", "name": "R.U.S.E." }, { "id": "NPEB01864", "name": "Visualizer" }, { "id": "NPEB01865", "name": "Cabela's African Adventures" }, { "id": "NPEB01872", "name": "Aabs Animals" }, { "id": "NPEB01875", "name": "Vessel" }, { "id": "NPEB01878", "name": "Dustforce" }, { "id": "NPEB01881", "name": "The Wolf Among Us" }, { "id": "NPEB01882", "name": "Duke Nukem 3D: Megaton Edition" }, { "id": "NPEB01887", "name": "Carnivores HD: Dinosaur Hunter" }, { "id": "NPEB01888", "name": "Pacific Rim: The Video Game" }, { "id": "NPEB01889", "name": "Metal Gear Solid V: Ground Zeroes" }, { "id": "NPEB01892", "name": "Pac-Man Museum" }, { "id": "NPEB01893", "name": "FEZ" }, { "id": "NPEB01894", "name": "Backgammon Blitz" }, { "id": "NPEB01897", "name": "The Raven: Legacy of a Master Thief" }, { "id": "NPEB01899", "name": "Minecraft: PlayStation 3 Edition" }, { "id": "NPEB01900", "name": "NASCAR '14" }, { "id": "NPEB01901", "name": "Blood Knights" }, { "id": "NPEB01904", "name": "Best of Board Games" }, { "id": "NPEB01909", "name": "Valiant Hearts: The Great War" }, { "id": "NPEB01910", "name": "Abyss Odyssey" }, { "id": "NPEB01911", "name": "The Walking Dead: Season 2" }, { "id": "NPEB01912", "name": "Thief" }, { "id": "NPEB01914", "name": "Kick-Ass 2" }, { "id": "NPEB01915", "name": "MXGP: The Official Motocross Videogame" }, { "id": "NPEB01917", "name": "Chaos Code" }, { "id": "NPEB01921", "name": "Alien: Isolation" }, { "id": "NPEB01922", "name": "JoJo's Bizarre Adventure: All-Star Battle" }, { "id": "NPEB01926", "name": "Ragnarok Odyssey ACE" }, { "id": "NPEB01927", "name": "The Cube" }, { "id": "NPEB01928", "name": "Teslagrad" }, { "id": "NPEB01929", "name": "Oddworld: New 'n' Tasty!" }, { "id": "NPEB01933", "name": "Masquerade: The Baubles of Doom" }, { "id": "NPEB01934", "name": "Child of Light" }, { "id": "NPEB01938", "name": "MotoGP 13 Compact" }, { "id": "NPEB01945", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky" }, { "id": "NPEB01946", "name": "IHF Handball Challenge 14" }, { "id": "NPEB01947", "name": "2014 FIFA World Cup Brazil" }, { "id": "NPEB01952", "name": "MotoGP 14" }, { "id": "NPEB01959", "name": "Sherlock Holmes: Crimes and Punishments" }, { "id": "NPEB01964", "name": "Master Reboot" }, { "id": "NPEB01965", "name": "How to Train Your Dragon 2" }, { "id": "NPEB01968", "name": "Batman: Arkham Origins: Blackgate: Deluxe Edition" }, { "id": "NPEB01969", "name": "Short Peace: Ranko Tsukigime's Longest Day" }, { "id": "NPEB01976", "name": "Syberia" }, { "id": "NPEB01978", "name": "BlazBlue: Chrono Phantasma" }, { "id": "NPEB01979", "name": "Assassin's Creed IV: Black Flag: Freedom Cry" }, { "id": "NPEB01986", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution" }, { "id": "NPEB01996", "name": "Sportsfrieds" }, { "id": "NPEB01997", "name": "Plants vs. Zombies: Garden Warfare" }, { "id": "NPEB01998", "name": "Mugen Souls Z" }, { "id": "NPEB01999", "name": "Fairy Fencer F" }, { "id": "NPEB02001", "name": "Battle Princess of Arcadias" }, { "id": "NPEB02007", "name": "Hotline Miami 2: Wrong Number" }, { "id": "NPEB02009", "name": "Tiny Troopers Joint Ops" }, { "id": "NPEB02010", "name": "Yu-Gi-Oh! Millennium Duels" }, { "id": "NPEB02013", "name": "Hatsune Miku: Project Diva F 2nd" }, { "id": "NPEB02016", "name": "Syberia 2" }, { "id": "NPEB02017", "name": "Alien Shooter" }, { "id": "NPEB02021", "name": "Destiny" }, { "id": "NPEB02026", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition" }, { "id": "NPEB02027", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition" }, { "id": "NPEB02029", "name": "Invokers Tournament" }, { "id": "NPEB02032", "name": "Another World" }, { "id": "NPEB02036", "name": "Yakuza 4" }, { "id": "NPEB02037", "name": "Rogue Legacy" }, { "id": "NPEB02040", "name": "Cel Damage HD" }, { "id": "NPEB02048", "name": "Sacra Terra: Kiss of Death" }, { "id": "NPEB02052", "name": "Warriors Orochi 3 Ultimate" }, { "id": "NPEB02060", "name": "Dynasty Warriors: Gundam Reborn" }, { "id": "NPEB02061", "name": "Borderlands: The Pre-Sequel" }, { "id": "NPEB02076", "name": "Resident Evil" }, { "id": "NPEB02082", "name": "The Legend of Korra" }, { "id": "NPEB02086", "name": "Toybox Turbos" }, { "id": "NPEB02088", "name": "Call of Duty: Advanced Warfare" }, { "id": "NPEB02096", "name": "Dragon Fin Soup" }, { "id": "NPEB02100", "name": "Deadfall Adventures: Heart of Atlantis" }, { "id": "NPEB02102", "name": "Eiyuu Senki: The World Conquest" }, { "id": "NPEB02118", "name": "King Oddball" }, { "id": "NPEB02123", "name": "Dragon Ball Xenoverse" }, { "id": "NPEB02127", "name": "Race the Sun" }, { "id": "NPEB02128", "name": "Resident Evil Revelations 2 Trial" }, { "id": "NPEB02130", "name": "JUJU" }, { "id": "NPEB02133", "name": "Aaru's Awakening" }, { "id": "NPEB02140", "name": "Metal Gear Solid V: The Phantom Pain" }, { "id": "NPEB02150", "name": "Unmechanical: Extended" }, { "id": "NPEB02162", "name": "Badland: Game of the Year Edition" }, { "id": "NPEB02163", "name": "Costume Quest 2" }, { "id": "NPEB02164", "name": "A Boy and His Blob" }, { "id": "NPEB02190", "name": "Cosmophony" }, { "id": "NPEB02194", "name": "MotoGP 14 Compact" }, { "id": "NPEB02197", "name": "Life is Strange - Episode 1" }, { "id": "NPEB02199", "name": "Tower of Guns" }, { "id": "NPEB02203", "name": "Dead or Alive 5: Last Round" }, { "id": "NPEB02223", "name": "Kung Fu Panda: Showdown of Legendary Legends" }, { "id": "NPEB02225", "name": "Paranormal Pursuit: The Gifted Ones Collector's Edition" }, { "id": "NPEB02226", "name": "Resident Evil 0" }, { "id": "NPEB02228", "name": "Yakuza 5" }, { "id": "NPEB02239", "name": "Extreme Exorcism" }, { "id": "NPEB02245", "name": "Weird Park: The Final Show" }, { "id": "NPEB02246", "name": "Teenage Mutant Ninja Turtles: Mutants in Manhattan" }, { "id": "NPEB02250", "name": "XBLAZE Code: Embryo" }, { "id": "NPEB02251", "name": "Starwhal" }, { "id": "NPEB02252", "name": "Metal Slug 3" }, { "id": "NPEB02265", "name": "WRC 5" }, { "id": "NPEB02266", "name": "Call of Duty: Black Ops 3" }, { "id": "NPEB02282", "name": "The Swindle" }, { "id": "NPEB02285", "name": "Nova-111" }, { "id": "NPEB02288", "name": "Frozen Free Fall Snowball Fight" }, { "id": "NPEB02294", "name": "Minecraft Story Mode" }, { "id": "NPEB02301", "name": "King's Quest" }, { "id": "NPEB02315", "name": "Doodle Devil" }, { "id": "NPEB02316", "name": "Doodle Kingdom" }, { "id": "NPEB02321", "name": "Goat Simulator" }, { "id": "NPEB02323", "name": "Adam's Venture: Chronicles" }, { "id": "NPEB02346", "name": "Never Alone" }, { "id": "NPEB02365", "name": "Attack on Titan - Wings of Freedom" }, { "id": "NPEB02389", "name": "The Walking Dead: Michonne" }, { "id": "NPEB02398", "name": "Amplitude" }, { "id": "NPEB02404", "name": "Just Dance 2017" }, { "id": "NPEB02428", "name": "Barnanza" }, { "id": "NPEB02436", "name": "Persona 5" }, { "id": "NPEB02443", "name": "Steredenn" }, { "id": "NPEB30333", "name": "Microbot" }, { "id": "NPEB90003", "name": "Gripshift" }, { "id": "NPEB90006", "name": "The Darkness (Demo)" }, { "id": "NPEB90008", "name": "Ninja Gaiden Sigma (Demo)" }, { "id": "NPEB90009", "name": "Armored Core 4 (Demo)" }, { "id": "NPEB90016", "name": "Tom Clancy's Ghost Recon: Advanced Warfare 2 (Demo)" }, { "id": "NPEB90017", "name": "Harry Potter and the Order of the Phoenix (Demo)" }, { "id": "NPEB90018", "name": "Sega Rally Revo (Demo)" }, { "id": "NPEB90019", "name": "Clive Barker's Jericho (Demo)" }, { "id": "NPEB90020", "name": "Tony Hawk's Proving Ground (Demo)" }, { "id": "NPEB90021", "name": "Colin McRae: DiRT (Demo)" }, { "id": "NPEB90022", "name": "NBA Live 08 (Demo)" }, { "id": "NPEB90023", "name": "FIFA 08 (Demo)" }, { "id": "NPEB90024", "name": "Tiger Woods PGA Tour 08 (Demo)" }, { "id": "NPEB90025", "name": "Pro Evolution Soccer 2008 (Demo)" }, { "id": "NPEB90027", "name": "Bladestorm: The Hundred Years' War (Demo)" }, { "id": "NPEB90028", "name": "Stuntman Ignition (Demo)" }, { "id": "NPEB90029", "name": "The Simpsons Game (Demo)" }, { "id": "NPEB90030", "name": "Dynasty Warriors: Gundam (Demo)" }, { "id": "NPEB90031", "name": "Skate (Demo)" }, { "id": "NPEB90032", "name": "Juiced 2: Hot Import Nights (Demo)" }, { "id": "NPEB90033", "name": "The Club (Demo)" }, { "id": "NPEB90036", "name": "TimeShift (Demo)" }, { "id": "NPEB90038", "name": "Turok (Demo)" }, { "id": "NPEB90042", "name": "Need for Speed ProStreet (Demo)" }, { "id": "NPEB90044", "name": "Strangehold, John Woo Presents (Demo)" }, { "id": "NPEB90045", "name": "Kane and Lynch (Demo)" }, { "id": "NPEB90046", "name": "MX vs. ATV: Untamed (Demo)" }, { "id": "NPEB90047", "name": "Conan (Demo)" }, { "id": "NPEB90048", "name": "Burnout Paradise (Demo)" }, { "id": "NPEB90053", "name": "NBA 2K8 (Demo)" }, { "id": "NPEB90054", "name": "FIFA Street 3 (Demo)" }, { "id": "NPEB90055", "name": "Conflict Denied Ops (Demo)" }, { "id": "NPEB90059", "name": "Devil May Cry 4 (Demo)" }, { "id": "NPEB90060", "name": "UEFA Euro 2008 (Demo)" }, { "id": "NPEB90063", "name": "Enemy Territory: Quake Wars (Demo)" }, { "id": "NPEB90065", "name": "Sega Superstars Tennis (Demo)" }, { "id": "NPEB90066", "name": "The Bourne Conspiracy (Demo)" }, { "id": "NPEB90067", "name": "Condemned 2: Bloodshot (Demo)" }, { "id": "NPEB90068", "name": "Haze (Demo)" }, { "id": "NPEB90069", "name": "Dark Sector (Demo)" }, { "id": "NPEB90070", "name": "Racedriver: Grid (Demo)" }, { "id": "NPEB90071", "name": "Iron Man (Demo)" }, { "id": "NPEB90072", "name": "Overlord: Raising Hell (Demo)" }, { "id": "NPEB90073", "name": "Battlefield: Bad Company (Demo)" }, { "id": "NPEB90074", "name": "Dragon Ball Z Burst Limit (Demo)" }, { "id": "NPEB90075", "name": "Wolf of the Battlefield: Commando 3 (Demo)" }, { "id": "NPEB90076", "name": "Monster Madness: Grave Danger (Demo)" }, { "id": "NPEB90077", "name": "Sid Meier's Civilization Revolution (Demo)" }, { "id": "NPEB90079", "name": "1942: Joint Strike (Demo)" }, { "id": "NPEB90080", "name": "Naruto Shippuden: Ultimate Ninja: Storm (Demo)" }, { "id": "NPEB90083", "name": "FaceBreaker (Demo)" }, { "id": "NPEB90085", "name": "Top Spin 3 (Demo)" }, { "id": "NPEB90088", "name": "NBA Live 09 (Demo)" }, { "id": "NPEB90089", "name": "NHL 09 (Demo)" }, { "id": "NPEB90091", "name": "Fracture (Demo)" }, { "id": "NPEB90092", "name": "Pure (Demo)" }, { "id": "NPEB90093", "name": "Hail to the Chimp (Demo)" }, { "id": "NPEB90094", "name": "Star Wars: The Force Unleashed (Demo)" }, { "id": "NPEB90095", "name": "Tiger Woods PGA Tour 09 (Demo)" }, { "id": "NPEB90096", "name": "FIFA 09 (Demo)" }, { "id": "NPEB90097", "name": "Beijing 2008: The Official Game of the 2008 Summer Olympics (Demo)" }, { "id": "NPEB90098", "name": "NHL 2K9 (Demo)" }, { "id": "NPEB90099", "name": "Soul Calibur IV (Demo)" }, { "id": "NPEB90101", "name": "Brothers In Arms: Hell's Highway (Demo)" }, { "id": "NPEB90102", "name": "BioShock (Demo)" }, { "id": "NPEB90104", "name": "NBA 2K9 (Demo)" }, { "id": "NPEB90105", "name": "WWE Smackdown! vs. RAW 2009 (Demo)" }, { "id": "NPEB90106", "name": "Valkyria Chronicles (Demo)" }, { "id": "NPEB90109", "name": "Mercenaries 2: World in Flames (Demo)" }, { "id": "NPEB90111", "name": "Pro Evolution Soccer 2009 (Demo)" }, { "id": "NPEB90113", "name": "Tom Clancy's H.A.W.X (Demo)" }, { "id": "NPEB90114", "name": "Mirror's Edge (Demo)" }, { "id": "NPEB90115", "name": "LEGO Batman: The Video Game (Demo)" }, { "id": "NPEB90116", "name": "Metal Gear Solid 4 (Demo)" }, { "id": "NPEB90117", "name": "Alone in the Dark: Inferno (Demo)" }, { "id": "NPEB90118", "name": "Tom Clancy's EndWar (Demo)" }, { "id": "NPEB90120", "name": "GTI Club + Rally Cote D'Azur (Demo)" }, { "id": "NPEB90122", "name": "Metal Gear Online (Demo)" }, { "id": "NPEB90123", "name": "Dead Space: Dismemberment (Demo)" }, { "id": "NPEB90124", "name": "Resident Evil 5 (Demo)" }, { "id": "NPEB90130", "name": "The Lord of the Rings: Conquest (Demo)" }, { "id": "NPEB90131", "name": "Skate 2 (Demo)" }, { "id": "NPEB90132", "name": "Sonic Unleashed (Demo)" }, { "id": "NPEB90133", "name": "The Chronicles of Riddick: Assault on Dark Athena (Demo)" }, { "id": "NPEB90137", "name": "WWE: Legends of Wrestlemania (Demo)" }, { "id": "NPEB90138", "name": "Wanted: Weapons of Fate (Demo)" }, { "id": "NPEB90140", "name": "Wheelman (Demo)" }, { "id": "NPEB90141", "name": "Fight Night Round 4 (Demo)" }, { "id": "NPEB90146", "name": "Red Faction: Guerrilla (Demo)" }, { "id": "NPEB90148", "name": "Overlord II (Demo)" }, { "id": "NPEB90149", "name": "UFC: Undisputed 2009 (Demo)" }, { "id": "NPEB90150", "name": "Disney Pixar's Up: The Video Game (Demo)" }, { "id": "NPEB90151", "name": "Zen Pinball (Demo)" }, { "id": "NPEB90152", "name": "Tiger Woods PGA Tour 10 (Demo)" }, { "id": "NPEB90154", "name": "X Men Origins: Wolverine (Demo)" }, { "id": "NPEB90156", "name": "Mini Ninjas (Demo)" }, { "id": "NPEB90157", "name": "Crystal Defenders (Demo)" }, { "id": "NPEB90159", "name": "Marvel vs. Capcom 2 (Demo)" }, { "id": "NPEB90167", "name": "IL 2 Sturmovik: Birds of Prey (Demo)" }, { "id": "NPEB90169", "name": "Call of Juarez: Bound in Blood (Demo)" }, { "id": "NPEB90170", "name": "Batman: Arkham Asylum (Demo)" }, { "id": "NPEB90171", "name": "Fuel (Demo)" }, { "id": "NPEB90174", "name": "Brütal Legend (Demo)" }, { "id": "NPEB90175", "name": "NHL 10 (Demo)" }, { "id": "NPEB90176", "name": "Colin McRae: DiRT 2 (Demo)" }, { "id": "NPEB90177", "name": "Star Wars: The Clone Wars: Republic Heroes (Demo)" }, { "id": "NPEB90178", "name": "FIFA 10 (Demo)" }, { "id": "NPEB90179", "name": "The Punisher: No Mercy (Demo)" }, { "id": "NPEB90183", "name": "NBA Live 10 (Demo)" }, { "id": "NPEB90184", "name": "F.E.A.R 2 (Demo)" }, { "id": "NPEB90185", "name": "Katamari Forever (Demo)" }, { "id": "NPEB90186", "name": "Wet (Demo)" }, { "id": "NPEB90187", "name": "Ninja Gaiden Sigma 2 (Demo)" }, { "id": "NPEB90189", "name": "Lost Planet 2 (Demo)" }, { "id": "NPEB90190", "name": "Pro Evolution Soccer 2010 (Demo)" }, { "id": "NPEB90191", "name": "Darksiders (Demo)" }, { "id": "NPEB90192", "name": "Dragon Ball: Raging Blast (Demo)" }, { "id": "NPEB90193", "name": "Bayonetta (Demo)" }, { "id": "NPEB90194", "name": "Need for Speed: Shift (Demo)" }, { "id": "NPEB90196", "name": "NBA 2K10 (Demo)" }, { "id": "NPEB90198", "name": "Dark Void (Demo)" }, { "id": "NPEB90200", "name": "Trine (Demo)" }, { "id": "NPEB90201", "name": "Army of Two: The 40th Day (Demo)" }, { "id": "NPEB90202", "name": "MX vs. ATV: Reflex (Demo)" }, { "id": "NPEB90203", "name": "Smash Cars (Demo)" }, { "id": "NPEB90204", "name": "Mushroom Wars (Demo)" }, { "id": "NPEB90206", "name": "Dante's Inferno (Demo)" }, { "id": "NPEB90208", "name": "Fairytale Fights (Demo)" }, { "id": "NPEB90209", "name": "Topatoi: Spinning Through the Worlds (Demo)" }, { "id": "NPEB90210", "name": "Comet Crash (Demo)" }, { "id": "NPEB90212", "name": "Battlefield: Bad Company 2 (Multiplayer Demo)" }, { "id": "NPEB90213", "name": "LEGO Indiana Jones 2: The Adventure Continues (Demo)" }, { "id": "NPEB90215", "name": "Inferno Pool (Demo)" }, { "id": "NPEB90216", "name": "Alien vs. Predator 2 (Multiplayer Demo)" }, { "id": "NPEB90218", "name": "Mafia II" }, { "id": "NPEB90225", "name": "Thexder Neo" }, { "id": "NPEB90227", "name": "Söldner-X 2: Final Prototype" }, { "id": "NPEB90229", "name": "Sonic & SEGA All-Stars Racing (Demo)" }, { "id": "NPEB90231", "name": "Digger HD (Demo)" }, { "id": "NPEB90232", "name": "LEGO Harry Potter Years 1-4 (Demo)" }, { "id": "NPEB90233", "name": "Kane and Lynch 2: Dog Days (Demo)" }, { "id": "NPEB90234", "name": "Wakeboarding HD (Demo)" }, { "id": "NPEB90238", "name": "Majin and the Forsaken Kingdom" }, { "id": "NPEB90246", "name": "Tom Clancy's H.A.W.X 2 (Demo)" }, { "id": "NPEB90250", "name": "Blur (Multiplayer Demo)" }, { "id": "NPEB90251", "name": "Star Wars: The Force Unleashed II (Demo)" }, { "id": "NPEB90253", "name": "AquaPanic! (Demo)" }, { "id": "NPEB90255", "name": "Death Track: Resurrection (Demo)" }, { "id": "NPEB90260", "name": "NBA 2k11 (Demo)" }, { "id": "NPEB90261", "name": "Castlevania: Lords of Shadow (Demo)" }, { "id": "NPEB90263", "name": "Call of Duty: Modern Warfare 2 (Demo)" }, { "id": "NPEB90270", "name": "Vanquish" }, { "id": "NPEB90274", "name": "FIFA 11 (Demo)" }, { "id": "NPEB90277", "name": "Dead Space 2 (Demo)" }, { "id": "NPEB90279", "name": "Pro Evolution Soccer 2011 Euro (Demo)" }, { "id": "NPEB90284", "name": "Winter Sports 2011 (Demo)" }, { "id": "NPEB90285", "name": "Fist of the North Star: Ken's Rage" }, { "id": "NPEB90286", "name": "Sky Fighter" }, { "id": "NPEB90287", "name": "Dragon Ball: Raging Blast 2" }, { "id": "NPEB90293", "name": "Need for Speed: Hot Pursuit" }, { "id": "NPEB90295", "name": "Fight Night Champion (Demo)" }, { "id": "NPEB90304", "name": "LEGO Star Wars III: The Clone Wars" }, { "id": "NPEB90308", "name": "MotoGP 10/11 (Demo)" }, { "id": "NPEB90309", "name": "Bulletstorm (Demo)" }, { "id": "NPEB90318", "name": "Trinity: Souls of Zill O'll" }, { "id": "NPEB90319", "name": "Bionic Commando Rearmed 2" }, { "id": "NPEB90320", "name": "Crysis 2 (Multiplayer Demo)" }, { "id": "NPEB90321", "name": "No More Heroes: Hero's Paradise (Demo)" }, { "id": "NPEB90325", "name": "Virtua Tennis 4 (Demo)" }, { "id": "NPEB90327", "name": "Mortal Kombat (Demo)" }, { "id": "NPEB90328", "name": "El Shaddai: Ascension of the Metatron (Demo)" }, { "id": "NPEB90332", "name": "LEGO Pirates Of The Carribean The Video Game" }, { "id": "NPEB90334", "name": "Duke Nukem Forever (Demo)" }, { "id": "NPEB90343", "name": "Sonic Generations (Demo)" }, { "id": "NPEB90346", "name": "Apache: Air Assault 2010 (Demo)" }, { "id": "NPEB90357", "name": "FIFA 12 (Demo)" }, { "id": "NPEB90359", "name": "Final Fantasy: XIII-2 (Demo)" }, { "id": "NPEB90366", "name": "Dragon's Dogma (Demo)" }, { "id": "NPEB90373", "name": "LEGO Harry Potter Years 5-7 (Demo)" }, { "id": "NPEB90378", "name": "FIFA Street (Demo)" }, { "id": "NPEB90379", "name": "Happy Feet 2" }, { "id": "NPEB90385", "name": "Kingdoms of Amalur: Reckoning (Demo)" }, { "id": "NPEB90386", "name": "Top Gun: Hard Lock (Demo)" }, { "id": "NPEB90391", "name": "Rage (Demo)" }, { "id": "NPEB90392", "name": "SSX (Demo)" }, { "id": "NPEB90394", "name": "The King of Fighters XIII (Demo)" }, { "id": "NPEB90395", "name": "The Darkness: II (Demo)" }, { "id": "NPEB90404", "name": "Sniper Elite: V2 (Demo)" }, { "id": "NPEB90405", "name": "Batman: Arkham City (Demo)" }, { "id": "NPEB90408", "name": "DiRT: Showdown (Demo)" }, { "id": "NPEB90409", "name": "Spec Ops: The Line (Demo)" }, { "id": "NPEB90410", "name": "Summer Stars: 2012 (Demo)" }, { "id": "NPEB90418", "name": "MUD: FIM: Motorcross World Championships (Demo)" }, { "id": "NPEB90429", "name": "Ninja Gaiden: 3 (Demo)" }, { "id": "NPEB90430", "name": "Ridge Racer: Unbounded (Demo)" }, { "id": "NPEB90433", "name": "Disney Epic Mickey 2: The Power of Two (Demo)" }, { "id": "NPEB90434", "name": "LEGO Batman 2: DC Super Heroes (Demo)" }, { "id": "NPEB90444", "name": "FIFA 13" }, { "id": "NPEB90452", "name": "Ni no Kuni: Wrath of the White Witch - Journey to Another World (Demo)" }, { "id": "NPEB90453", "name": "NBA 2K13 (Demo)" }, { "id": "NPEB90455", "name": "Dead Space 3 (Demo)" }, { "id": "NPEB90462", "name": "Metal Gear Rising Revengance" }, { "id": "NPEB90464", "name": "Resident Evil: 6 (Demo)" }, { "id": "NPEB90469", "name": "Air Conflicts: Pacific Carriers" }, { "id": "NPEB90471", "name": "Sonic & All-Stars Racing Transformed (Demo)" }, { "id": "NPEB90473", "name": "DmC: Devil May Cry (Demo)" }, { "id": "NPEB90474", "name": "Naruto Shippuden: Ultimate Ninja Storm 3" }, { "id": "NPEB90478", "name": "Resident Evil Revelations (Demo)" }, { "id": "NPEB90482", "name": "Oddworld: Stranger's Wrath (Demo)" }, { "id": "NPEB90487", "name": "Page Chronica (Demo)" }, { "id": "NPEB90495", "name": "Injustice: Gods Among Us (Demo)" }, { "id": "NPEB90500", "name": "LEGO Marvel Super Heroes (Demo)" }, { "id": "NPEB90502", "name": "Saints Row IV Inauguration Station" }, { "id": "NPEB90505", "name": "Rayman Legends (Demo)" }, { "id": "NPEB90506", "name": "FIFA 14" }, { "id": "NPEB90520", "name": "Grid 2 (Demo)" }, { "id": "NPEB90521", "name": "Do Not Fall (Demo)" }, { "id": "NPEB90523", "name": "WRC4 FIA World Rally Championship (Demo)" }, { "id": "NPEB90527", "name": "Ethan: Meteor Hunter (Demo)" }, { "id": "NPEB90542", "name": "FIFA 15" }, { "id": "NPEB90553", "name": "Destiny (Demo)" }, { "id": "NPEB90557", "name": "Motorcycle Club (Demo)" }, { "id": "NPEB90560", "name": "LEGO Marvel's Avengers (Demo)" }, { "id": "NPEB90569", "name": "Pro Evolution Soccer 2018 (Demo)" }, { "id": "NPED00023", "name": "Eternal Quest" }, { "id": "NPED00027", "name": "Deadly Strike" }, { "id": "NPED00032", "name": "Dirt Track Devils" }, { "id": "NPED00050", "name": "Disney Princess: Enchanted Journey" }, { "id": "NPED00052", "name": "God Hand" }, { "id": "NPED00063", "name": "Grand Theft Auto 3" }, { "id": "NPED00075", "name": "Deus Ex" }, { "id": "NPED00099", "name": "Baroque" }, { "id": "NPED00347", "name": "Dead Space: Extraction" }, { "id": "NPEE00006", "name": "MediEvil" }, { "id": "NPEE00030", "name": "Kula World" }, { "id": "NPEE00039", "name": "Destruction Derby" }, { "id": "NPEE00040", "name": "Cool Boarders 2" }, { "id": "NPEE00051", "name": "G Police" }, { "id": "NPEF00005", "name": "Judge Dredd" }, { "id": "NPEF00021", "name": "Driver" }, { "id": "NPEF00029", "name": "Command & Conquer" }, { "id": "NPEF00042", "name": "Command and Conquer: Retaliation" }, { "id": "NPEF00047", "name": "Hercules" }, { "id": "NPEF00060", "name": "Guilty Gear" }, { "id": "NPEF00062", "name": "Future Cop: L.A.P.D." }, { "id": "NPEF00069", "name": "Final Fantasy VII" }, { "id": "NPEF00070", "name": "Final Fantasy VIII" }, { "id": "NPEF00071", "name": "Final Fantasy IX" }, { "id": "NPEF00082", "name": "Party Time with Winnie the Pooh" }, { "id": "NPEF00083", "name": "Vagrant Story" }, { "id": "NPEF00084", "name": "Lilo & Stitch: Trouble in Paradise" }, { "id": "NPEF00109", "name": "Tekken 2" }, { "id": "NPEF00112", "name": "Fear Effect 2: Retro Helix" }, { "id": "NPEF00114", "name": "Fighting Force 2" }, { "id": "NPEF00148", "name": "40 Winks" }, { "id": "NPEF00150", "name": "Parasite Eve: II" }, { "id": "NPEF00197", "name": "Fear Effect" }, { "id": "NPEF00203", "name": "Mickey's Wild Adventure" }, { "id": "NPEG00008", "name": "Super Stardust HD" }, { "id": "NPEG00009", "name": "Riff: Everyday Shooter" }, { "id": "NPEG90007", "name": "Echochrome (Demo)" }, { "id": "NPEG90015", "name": "PixelJunk Monsters Deluxe (Demo)" }, { "id": "NPEG90019", "name": "LittleBigPlanet (Demo)" }, { "id": "NPEG90026", "name": "ModNation Racers (Demo)" }, { "id": "NPEH00003", "name": "Brain Challenge" }, { "id": "NPEH00017", "name": "Final Fantasy: Crystal Defenders" }, { "id": "NPEH00020", "name": "Uno" }, { "id": "NPEH00031", "name": "James Cameron's Avatar: The Game" }, { "id": "NPEH00134", "name": "Final Fantasy III" }, { "id": "NPEH90009", "name": "Dynasty Warriors: Strikeforce" }, { "id": "NPEH90022", "name": "Final Fantasy: Crystal Defenders (Demo)" }, { "id": "NPEH90028", "name": "Army of Two: The 40th Day (Demo)" }, { "id": "NPEH90051", "name": "Hoard (Demo)" }, { "id": "NPEJ00062", "name": "Hitman: Absolution" }, { "id": "NPEJ00127", "name": "Sega Vintage Collection: ToeJam & Earl" }, { "id": "NPEJ00168", "name": "Watch Dogs" }, { "id": "NPEJ00180", "name": "Watch Dogs (Deluxe Edition)" }, { "id": "NPEJ00215", "name": "Castle of Illusion: Starring Mickey Mouse" }, { "id": "NPEJ00236", "name": "Batman: Arkham Collection" }, { "id": "NPEJ00275", "name": "Tales of Symphonia Chronicles" }, { "id": "NPEJ00305", "name": "Child of Light" }, { "id": "NPEJ00314", "name": "2014 FIFA World Cup Brazil" }, { "id": "NPEJ00326", "name": "The Amazing Spider-Man 2" }, { "id": "NPEJ00330", "name": "Cel Damage HD" }, { "id": "NPEJ00384", "name": "Dragon Fantasy Book I" }, { "id": "NPEK00076", "name": "inFamous" }, { "id": "NPEK00086", "name": "PAIN" }, { "id": "NPEK00107", "name": "Everybody's Golf: World Tour" }, { "id": "NPEK00117", "name": "echochrome" }, { "id": "NPEK00155", "name": "Killzone 2" }, { "id": "NPEK00160", "name": "Flower" }, { "id": "NPEK00161", "name": "Rag Doll Kung Fu: Fists of Plastic" }, { "id": "NPEK00165", "name": "God of War III" }, { "id": "NPEK00166", "name": "Uncharted 2: Among Thieves" }, { "id": "NPEK00168", "name": "DC Universe Online" }, { "id": "NPEK00182", "name": "MAG" }, { "id": "NPEK00184", "name": "ModNation Racers" }, { "id": "NPEK00188", "name": "Gravity Crash" }, { "id": "NPEK00191", "name": "Hustle Kings" }, { "id": "NPEK00192", "name": "PixelJunk Shooter" }, { "id": "NPEK00227", "name": "Uncharted 3: Drake's Deception" }, { "id": "NPEL00074", "name": "Mirror's Edge" }, { "id": "NPEL00079", "name": "Prince of Persia" }, { "id": "NPEL00095", "name": "FIFA Soccer 09" }, { "id": "NPEL00111", "name": "Tekken 6" }, { "id": "NPEL00120", "name": "Final Fantasy XIII" }, { "id": "NPEL00123", "name": "Burnout Paradise: The Ultimate Box" }, { "id": "NPEL00124", "name": "Lumines Supernova" }, { "id": "NPEL00125", "name": "F.E.A.R. 2: Project Origin" }, { "id": "NPEL00126", "name": "Watchmen: The End is Nigh" }, { "id": "NPEL00127", "name": "Battlefield 1943" }, { "id": "NPEL00128", "name": "Split Second" }, { "id": "NPEL00129", "name": "R.U.S.E." }, { "id": "NPEL00133", "name": "Batman: Arkham Asylum" }, { "id": "NPEL00137", "name": "Red Dead Redemption" }, { "id": "NPEL00146", "name": "Front Mission Evolved" }, { "id": "NPEL00158", "name": "Trine" }, { "id": "NPEL00162", "name": "Shatter" }, { "id": "NPEL00167", "name": "Just Cause 2" }, { "id": "NPEL00172", "name": "Planet 51: The Game" }, { "id": "NPEL00182", "name": "Mushroom Wars" }, { "id": "NPEL00183", "name": "Digger HD" }, { "id": "NPEL00188", "name": "Yakuza 3" }, { "id": "NPEL00288", "name": "Final Fantasy XIII-2" }, { "id": "NPEL00560", "name": "Brothers: A Tale of Two Sons" }, { "id": "NPEL00594", "name": "Disney Castle of Illusion starring Mickey Mouse" }, { "id": "NPEO00051", "name": "LittleBigPlanet" }, { "id": "NPEO50012", "name": "Crash Commando" }, { "id": "NPEO50015", "name": "Rag Doll Kung Fu: Fists of Plastic" }, { "id": "NPEO50024", "name": "PixelJunk Shooter" }, { "id": "NPEP00170", "name": "Tales of Graces f Theme" }, { "id": "NPEP50025", "name": "Command & Conquer: Red Alert 3" }, { "id": "NPEP50029", "name": "Topatoi: Spinning Through the Worlds" }, { "id": "NPEP50032", "name": "The Punisher: No Mercy" }, { "id": "NPEP50033", "name": "Zen Pinball Theme" }, { "id": "NPEZ00011", "name": "BreakQuest" }, { "id": "NPEZ00021", "name": "Pinball Dreams" }, { "id": "NPEZ00023", "name": "Bubble Trubble" }, { "id": "NPEZ00024", "name": "Freekscape: Escape from Hell" }, { "id": "NPEZ00026", "name": "Championship Manager 2010" }, { "id": "NPEZ00029", "name": "Zombie Tycoon" }, { "id": "NPEZ00041", "name": "Blast Off" }, { "id": "NPEZ00043", "name": "Aero Racer" }, { "id": "NPEZ00044", "name": "Age of Zombies" }, { "id": "NPEZ00093", "name": "Tetris" }, { "id": "NPEZ00103", "name": "Zombie Tycoon" }, { "id": "NPEZ00115", "name": "Alien Zombie Death" }, { "id": "NPEZ00117", "name": "DynoGems" }, { "id": "NPEZ00128", "name": "Telegraph Crosswords" }, { "id": "NPEZ00134", "name": "Young Thor" }, { "id": "NPEZ00137", "name": "Flick Sports Fishing" }, { "id": "NPEZ00141", "name": "Retro Cave Flyer" }, { "id": "NPEZ00143", "name": "Manic Monkey Mayhem" }, { "id": "NPEZ00158", "name": "Hysteria Project" }, { "id": "NPEZ00174", "name": "5-in-1 Arcade Hits" }, { "id": "NPEZ00184", "name": "Apache Overkill" }, { "id": "NPEZ00199", "name": "Enigmo" }, { "id": "NPEZ00205", "name": "4x4 Jam" }, { "id": "NPEZ00212", "name": "Fly Fu" }, { "id": "NPEZ00222", "name": "N.O.V.A.: Near Orbit Vanguard Alliance" }, { "id": "NPEZ00232", "name": "Angry Birds" }, { "id": "NPEZ00235", "name": "Mini Squadron" }, { "id": "NPEZ00243", "name": "Edge" }, { "id": "NPEZ00250", "name": "Zenonia" }, { "id": "NPEZ00320", "name": "Me Monstar: Hear Me Roar!" }, { "id": "NPEZ00321", "name": "I Must Run!" }, { "id": "NPEZ00322", "name": "A Space Shooter for 2 Bucks!" }, { "id": "NPEZ00325", "name": "Dr. Mini Games" }, { "id": "NPEZ00327", "name": "Mad Blocker Alpha: Revenge of the Fuzzies" }, { "id": "NPEZ00344", "name": "One Epic Game" }, { "id": "NPHA00001", "name": "Gran Turismo HD" }, { "id": "NPHA80001", "name": "Go! Sudoku" }, { "id": "NPHA80002", "name": "WarHawk" }, { "id": "NPHA80003", "name": "Super Stardust HD" }, { "id": "NPHA80009", "name": "Piyotama" }, { "id": "NPHA80029", "name": "Toy Home" }, { "id": "NPHA80030", "name": "Dark Mist" }, { "id": "NPHA80035", "name": "PAIN" }, { "id": "NPHA80038", "name": "Elefunk" }, { "id": "NPHA80041", "name": "echochrome" }, { "id": "NPHA80043", "name": "Lair" }, { "id": "NPHA80044", "name": "The Last Guy" }, { "id": "NPHA80047", "name": "SOCOM: U.S. Navy SEALs - Confrontation" }, { "id": "NPHA80049", "name": "Super Rub'a'Dub" }, { "id": "NPHA80050", "name": "The Last Guy (Demo)" }, { "id": "NPHA80053", "name": "Crash Commando" }, { "id": "NPHA80054", "name": "WarHawk (Demo)" }, { "id": "NPHA80055", "name": "Rag Doll Kung Fu: Fists of Plastic" }, { "id": "NPHA80056", "name": "Savage Moon" }, { "id": "NPHA80057", "name": "Everybody's Putter Golf with Toro" }, { "id": "NPHA80058", "name": "Trash Box" }, { "id": "NPHA80060", "name": "Killzone 2 (Demo)" }, { "id": "NPHA80066", "name": "Fat Princess" }, { "id": "NPHA80067", "name": "LittleBigPlanet (Demo)" }, { "id": "NPHA80068", "name": "inFamous (Demo)" }, { "id": "NPHA80075", "name": "Hustle Kings" }, { "id": "NPHA80079", "name": "Ratchet & Clank Future: A Crack in Time Clank (Demo)" }, { "id": "NPHA80086", "name": "Heavy Rain" }, { "id": "NPHA80094", "name": "Sports Champions" }, { "id": "NPHA80117", "name": "MAG (Beta)" }, { "id": "NPHA80133", "name": "PlayStation Move Heroes (Demo)" }, { "id": "NPHA80140", "name": "Killzone 3 (Single Player Demo)" }, { "id": "NPHA80153", "name": "Resistance 3 (Demo)" }, { "id": "NPHA80160", "name": "Medieval Moves: Deadmund's Quest (Demo)" }, { "id": "NPHA80186", "name": "Move Fitness (Demo)" }, { "id": "NPHA80206", "name": "The Last of Us (Demo)" }, { "id": "NPHA80264", "name": "Lost in the rain" }, { "id": "NPHB00010", "name": "High Stakes on the Vegas Strip: Poker Edition" }, { "id": "NPHB00014", "name": "SEGA Rally Revo (Demo)" }, { "id": "NPHB00017", "name": "Stranglehold: John Woo Presents (Demo)" }, { "id": "NPHB00025", "name": "PixelJunk Monsters Encore (Demo)" }, { "id": "NPHB00026", "name": "Burnout Paradise (Demo)" }, { "id": "NPHB00027", "name": "Devil May Cry (Demo)" }, { "id": "NPHB00033", "name": "Armored Core for Answer (Demo)" }, { "id": "NPHB00034", "name": "Bionic Commando: Rearmed" }, { "id": "NPHB00035", "name": "Battle Fantasia (Demo)" }, { "id": "NPHB00036", "name": "Fatal Inertia: EX (Demo)" }, { "id": "NPHB00038", "name": "PixelJunk Eden (Demo)" }, { "id": "NPHB00040", "name": "Wolf of the Battlefield: Commando 3 (Demo)" }, { "id": "NPHB00042", "name": "1942: Joint Strike (Demo)" }, { "id": "NPHB00045", "name": "FIFA 09 (Demo)" }, { "id": "NPHB00052", "name": "Burnout Paradise" }, { "id": "NPHB00056", "name": "Eternal Sonata (Demo)" }, { "id": "NPHB00057", "name": "Mirror's Edge (Demo)" }, { "id": "NPHB00059", "name": "Lumines Supernova" }, { "id": "NPHB00065", "name": "Metal Gear Solid 4: Guns of the Patriots (Demo)" }, { "id": "NPHB00067", "name": "Metal Gear Solid 4: Guns of the Patriots (Demo)" }, { "id": "NPHB00070", "name": "Resident Evil 5 (Demo)" }, { "id": "NPHB00072", "name": "World Soccer: Winning Eleven 2009 (Demo)" }, { "id": "NPHB00073", "name": "Flock!" }, { "id": "NPHB00080", "name": "Skate 2 (Demo)" }, { "id": "NPHB00083", "name": "The Lord of the Rings: Conquest (Demo)" }, { "id": "NPHB00088", "name": "Mahjong Tales: Ancient Wisdom" }, { "id": "NPHB00089", "name": "Magic Orbz" }, { "id": "NPHB00090", "name": "Cuboid" }, { "id": "NPHB00091", "name": "Spelunker HD" }, { "id": "NPHB00092", "name": "Catan" }, { "id": "NPHB00093", "name": "Catan" }, { "id": "NPHB00094", "name": "Catan" }, { "id": "NPHB00097", "name": "Watchmen: The End is Nigh" }, { "id": "NPHB00098", "name": "Battlefield 1943 (Demo)" }, { "id": "NPHB00099", "name": "Watchmen: The End is Nigh Part 2 (Demo)" }, { "id": "NPHB00107", "name": "Red Faction: Guerrilla (Demo)" }, { "id": "NPHB00108", "name": "Marvel vs. Capcom" }, { "id": "NPHB00110", "name": "Fight Night Round 4 (Demo)" }, { "id": "NPHB00119", "name": "Tiger Woods PGA Tour 10 (Demo)" }, { "id": "NPHB00122", "name": "Madden NFL 10 (Demo)" }, { "id": "NPHB00123", "name": "Topatoi: Spinning Through the Worlds" }, { "id": "NPHB00125", "name": "Bejeweled 2 (Demo)" }, { "id": "NPHB00126", "name": "Zuma (Demo)" }, { "id": "NPHB00131", "name": "FIFA 10 (Demo)" }, { "id": "NPHB00134", "name": "Teenage Mutant Ninja Turtles: Turtles in Time Re-Shelled (Demo)" }, { "id": "NPHB00135", "name": "NBA Live 10 (Demo)" }, { "id": "NPHB00145", "name": "Mushroom Wars" }, { "id": "NPHB00147", "name": "Brütal Legend (Demo)" }, { "id": "NPHB00153", "name": "Need for Speed: Shift (Demo)" }, { "id": "NPHB00176", "name": "Spelunker Black" }, { "id": "NPHB00185", "name": "Dante's Inferno (Demo)" }, { "id": "NPHB00186", "name": "Battlefield: Bad Company 2 (Demo)" }, { "id": "NPHB00188", "name": "Söldner-X 2: Final Prototype" }, { "id": "NPHB00191", "name": "PixelJunk Shooter (Demo)" }, { "id": "NPHB00194", "name": "Peggle" }, { "id": "NPHB00256", "name": "Swords & Soldiers" }, { "id": "NPHB00272", "name": "MicroBot" }, { "id": "NPHB00277", "name": "DeathSpank: Thongs of Virtue" }, { "id": "NPHB00285", "name": "Dungeon Hunter Alliance" }, { "id": "NPHB00305", "name": "The Fancy Pants Adventures" }, { "id": "NPHB00307", "name": "Plants vs. Zombies" }, { "id": "NPHB00317", "name": "Top Spin 4 (Demo)" }, { "id": "NPHB00325", "name": "Tetris" }, { "id": "NPHB00331", "name": "Red Faction: Battlegrounds" }, { "id": "NPHB00334", "name": "Tales from Space: About a Blob (Demo)" }, { "id": "NPHB00344", "name": "Hard Corps: Uprising" }, { "id": "NPHB00356", "name": "Burnout Crash!" }, { "id": "NPHB00369", "name": "Sonic Generations (Demo)" }, { "id": "NPHB00374", "name": "LIMBO" }, { "id": "NPHB00410", "name": "Rochard" }, { "id": "NPHB00453", "name": "The House of the Dead III" }, { "id": "NPHB00456", "name": "Vampire Resurrection" }, { "id": "NPHB00499", "name": "Invincible Knight" }, { "id": "NPHB00522", "name": "E.X. Troopers (Demo)" }, { "id": "NPHB00525", "name": "Chaos Code" }, { "id": "NPHB00575", "name": "Final Fantasy X / X-2 HD Remaster" }, { "id": "NPHB00668", "name": "Eiyuu Densetsu: Sen no Kiseki" }, { "id": "NPHB00704", "name": "Eiyuu Densetsu: Sen no Kiseki II" }, { "id": "NPHB00708", "name": "Persona4 the ULTIMAX Ultra Suplex Hold" }, { "id": "NPHG00005", "name": "echochrome" }, { "id": "NPHG00035", "name": "LittleBigPlanet (Demo)" }, { "id": "NPHG00080", "name": "ModNation Racers" }, { "id": "NPHH00061", "name": "FIFA 10" }, { "id": "NPHJ00004", "name": "Dino Crisis" }, { "id": "NPHJ00227", "name": "Final Fantasy V" }, { "id": "NPHK80050", "name": "GripShift" }, { "id": "NPHK80055", "name": "Cash, Guns and Chaos DLX" }, { "id": "NPHK80057", "name": "Championship Sprint" }, { "id": "NPHK80061", "name": "Gauntlet II" }, { "id": "NPHK80070", "name": "Calling All Cars!" }, { "id": "NPHK80079", "name": "Go! Sports Skydiving" }, { "id": "NPHK80087", "name": "Photo Gallery" }, { "id": "NPHK80090", "name": "inFamous" }, { "id": "NPHK80091", "name": "Trash Box" }, { "id": "NPHK80114", "name": "Home: Loco Island Personal Space Teaser" }, { "id": "NPHK80117", "name": "Fat Princess: Fistful of Cake" }, { "id": "NPHL00021", "name": "Casino Royale" }, { "id": "NPHL00029", "name": "Surf's Up" }, { "id": "NPHL00030", "name": "Spider-Man 3" }, { "id": "NPHL00051", "name": "Sammi Show Mi 2007" }, { "id": "NPHL00088", "name": "Tekken 6" }, { "id": "NPHL00119", "name": "Final Fantasy XIII" }, { "id": "NPHP00039", "name": "Last Rebellion" }, { "id": "NPHY00008", "name": "Tenchu 3 Portable" }, { "id": "NPIA00005", "name": "PlayStation Home" }, { "id": "NPIA00006", "name": "Photo Gallery" }, { "id": "NPJA00001", "name": "Everyday Together" }, { "id": "NPJA00002", "name": "Blast Factor" }, { "id": "NPJA00003", "name": "Go! Puzzle" }, { "id": "NPJA00004", "name": "Oiedeyo LocoRoco!! Boo Boo Cocoreccho!" }, { "id": "NPJA00005", "name": "Lemmings" }, { "id": "NPJA00006", "name": "Go! Sudoku" }, { "id": "NPJA00007", "name": "flOw" }, { "id": "NPJA00008", "name": "Warhawk" }, { "id": "NPJA00009", "name": "Go! Sports Ski (Demo)" }, { "id": "NPJA00010", "name": "Gran Turismo HD Concept" }, { "id": "NPJA00011", "name": "Calling All Cars!" }, { "id": "NPJA00012", "name": "Star Strike HD" }, { "id": "NPJA00013", "name": "Super Rub'a'Dub" }, { "id": "NPJA00014", "name": "Dark Mist" }, { "id": "NPJA00017", "name": "Piyotama" }, { "id": "NPJA00018", "name": "Bacterius" }, { "id": "NPJA00020", "name": "Boku no Natsuyasumi 3 (Demo)" }, { "id": "NPJA00021", "name": "Gran Turismo 5 Prologue Spec III" }, { "id": "NPJA00022", "name": "Snakeball" }, { "id": "NPJA00026", "name": "Shiki-tei" }, { "id": "NPJA00027", "name": "echochrome" }, { "id": "NPJA00029", "name": "The Last Guy" }, { "id": "NPJA00030", "name": "Elefunk" }, { "id": "NPJA00032", "name": "Mr. PAIN" }, { "id": "NPJA00034", "name": "SOCOM: U.S. Navy SEALs Confrontation" }, { "id": "NPJA00035", "name": "The Last Guy" }, { "id": "NPJA00036", "name": "Linger in Shadows" }, { "id": "NPJA00038", "name": "Rag Doll Kung Fu: Fists of Plastic" }, { "id": "NPJA00039", "name": "Flower" }, { "id": "NPJA00042", "name": "Gomibako" }, { "id": "NPJA00043", "name": "Qruton" }, { "id": "NPJA00044", "name": "Super Rub'a'Dub" }, { "id": "NPJA00045", "name": ".detuned" }, { "id": "NPJA00046", "name": "Shuukan Toro Station" }, { "id": "NPJA00047", "name": "Gravity Crash" }, { "id": "NPJA00048", "name": "Fat Princess" }, { "id": "NPJA00049", "name": "Hustle Kings" }, { "id": "NPJA00055", "name": "Free! Free! Bowling" }, { "id": "NPJA00067", "name": "God of War: Rakujitsu no Hisoukyoku HD" }, { "id": "NPJA00075", "name": "Tokyo Jungle" }, { "id": "NPJA00076", "name": "Datura" }, { "id": "NPJA00080", "name": "Sorcery" }, { "id": "NPJA00081", "name": "Sound Shapes" }, { "id": "NPJA00087", "name": "The Unfinished Swan" }, { "id": "NPJA00088", "name": "PlayStation All-Stars Battle Royale" }, { "id": "NPJA00092", "name": "Sports Champions 2" }, { "id": "NPJA00097", "name": "Beyond: Two Souls" }, { "id": "NPJA00103", "name": "Aquanaut's Holiday: Kakusareta Kiroku" }, { "id": "NPJA00104", "name": "White Knight Chronicles II" }, { "id": "NPJA00109", "name": "Doki Doki Universe" }, { "id": "NPJA00113", "name": "Gran Turismo 6" }, { "id": "NPJA00127", "name": "Destiny" }, { "id": "NPJA40001", "name": "Ratchet & Clank 1-2-3: Ginga * Saikyou Gorgeous Pack" }, { "id": "NPJA90006", "name": "Blast Factor (Demo)" }, { "id": "NPJA90009", "name": "Lemmings" }, { "id": "NPJA90020", "name": "Minna no Golf 5" }, { "id": "NPJA90024", "name": "Minna no Golf 5 (Demo)" }, { "id": "NPJA90025", "name": "MotorStorm" }, { "id": "NPJA90061", "name": "Gran Turismo 5: Prologue (Demo)" }, { "id": "NPJA90063", "name": "Uncharted: Drake's Fortune (Demo)" }, { "id": "NPJA90067", "name": "echochrome (Demo)" }, { "id": "NPJA90068", "name": "Siren: Blood Curse (Demo)" }, { "id": "NPJA90070", "name": "Siren: New Translation" }, { "id": "NPJA90071", "name": "The Last Guy (Demo)" }, { "id": "NPJA90074", "name": "LittleBigPlanet (Beta)" }, { "id": "NPJA90077", "name": "Aquanaut's Holiday" }, { "id": "NPJA90086", "name": "Killzone 2" }, { "id": "NPJA90092", "name": "Killzone 2 (Demo)" }, { "id": "NPJA90097", "name": "LittleBigPlanet (Demo)" }, { "id": "NPJA90104", "name": "MAG (Beta)" }, { "id": "NPJA90107", "name": "Rag Doll Kung Fu: Fists of Plastic (Demo)" }, { "id": "NPJA90119", "name": "Heavy Rain" }, { "id": "NPJA90120", "name": "Fat Princess" }, { "id": "NPJA90130", "name": "MAG" }, { "id": "NPJA90172", "name": "Bleach Soul Ignition" }, { "id": "NPJA90185", "name": "Eat Them! (Demo)" }, { "id": "NPJA90220", "name": "Carnival Island" }, { "id": "NPJA90259", "name": "Beyond: Two Souls (Demo)" }, { "id": "NPJB00001", "name": "Tekken 5: Dark Resurrection" }, { "id": "NPJB00003", "name": "PixelJunk Monsters" }, { "id": "NPJB00004", "name": "Fatal Inertia EX" }, { "id": "NPJB00005", "name": "PachiPara DL: Hyper Umi in Carib" }, { "id": "NPJB00006", "name": "Noby Noby Boy" }, { "id": "NPJB00007", "name": "PixelJunk Eden" }, { "id": "NPJB00008", "name": "Bionic Commando Rearmed" }, { "id": "NPJB00009", "name": "Angel Love Online" }, { "id": "NPJB00011", "name": "Burnout Paradise" }, { "id": "NPJB00012", "name": "Namco Museum.comm" }, { "id": "NPJB00013", "name": "Lumines Supernova" }, { "id": "NPJB00014", "name": "Puzzle Quest: Challenge of the Warlords" }, { "id": "NPJB00015", "name": "Catan" }, { "id": "NPJB00016", "name": "Brain Challenge" }, { "id": "NPJB00017", "name": "Simple 500 Series Vol. 1: The Mahjong: Tsuushin Taikyoku Kinoudzuke" }, { "id": "NPJB00018", "name": "Bomberman Ultra" }, { "id": "NPJB00019", "name": "3 on 3 NHL Arcade" }, { "id": "NPJB00021", "name": "Puzzle Quest: Galactrix" }, { "id": "NPJB00022", "name": "Texas Cheat 'Em" }, { "id": "NPJB00023", "name": "Crystal Defenders" }, { "id": "NPJB00024", "name": "GTI Club+: Rally Côte d'Azur" }, { "id": "NPJB00025", "name": "Marvel vs. Capcom 2: New Age of Heroes" }, { "id": "NPJB00026", "name": "Evangelion (Demo)" }, { "id": "NPJB00027", "name": "Battlefield 1943" }, { "id": "NPJB00032", "name": "Angel Senki" }, { "id": "NPJB00034", "name": "RayStorm HD" }, { "id": "NPJB00035", "name": "Sonic the Hedgehog 4: Episode I" }, { "id": "NPJB00036", "name": "Matt Hazard: Blood Bath and Beyond" }, { "id": "NPJB00038", "name": "Vandal Hearts: Flames of Judgement" }, { "id": "NPJB00039", "name": "Wizardry: The Labyrinth of Lost Souls" }, { "id": "NPJB00040", "name": "Madden NFL Arcade" }, { "id": "NPJB00041", "name": "Frogger Returns" }, { "id": "NPJB00043", "name": "RockMan 10: Uchuukara no Kyoui!!" }, { "id": "NPJB00046", "name": "After Burner: Climax" }, { "id": "NPJB00047", "name": "Hatsune Miku: Project Diva Dreamy Theater" }, { "id": "NPJB00057", "name": "Mahjong World" }, { "id": "NPJB00058", "name": "Trine" }, { "id": "NPJB00059", "name": "PachiPara 15: Super Umi Monogatari in Okinawa 2" }, { "id": "NPJB00060", "name": "Daikoukai Jidai Online" }, { "id": "NPJB00063", "name": "PixelJunk Racers: 2nd Lap" }, { "id": "NPJB00065", "name": "Elemental Monster" }, { "id": "NPJB00066", "name": "Blue Oasis: Sakana no Iyashi Kuukan" }, { "id": "NPJB00069", "name": "Voodoo Dice" }, { "id": "NPJB00070", "name": "Malicious" }, { "id": "NPJB00071", "name": "Battle Fantasia" }, { "id": "NPJB00072", "name": "Ikki Online" }, { "id": "NPJB00073", "name": "Braid" }, { "id": "NPJB00074", "name": "Astro Tripper" }, { "id": "NPJB00075", "name": "Greed Corp" }, { "id": "NPJB00076", "name": "Dark Awake: The King Has No Name" }, { "id": "NPJB00077", "name": "Lara Croft and the Guardian of Light" }, { "id": "NPJB00078", "name": "PachiPara 16: Gingira Paradise 2" }, { "id": "NPJB00079", "name": "Pac-Man Championship Edition DX/Galaga Legions DX" }, { "id": "NPJB00081", "name": "Hard Corps: Uprising" }, { "id": "NPJB00084", "name": "BioHazard 4 HD" }, { "id": "NPJB00087", "name": "Crazy Taxi" }, { "id": "NPJB00088", "name": "Lead and Gold: Gangs of the Wild West" }, { "id": "NPJB00089", "name": "Castle Crashers" }, { "id": "NPJB00093", "name": "Super Hang-On" }, { "id": "NPJB00094", "name": "Sega Ages Online: Alex Kidd no Miracle World" }, { "id": "NPJB00097", "name": "MicroBot" }, { "id": "NPJB00099", "name": "Wizardry: Torawareshi Bourei no Machi" }, { "id": "NPJB00100", "name": "Moon Diver" }, { "id": "NPJB00103", "name": "Blokus" }, { "id": "NPJB00104", "name": "Sekai Saikyou Ginsei Igo: Hybrid Monte Carlo" }, { "id": "NPJB00105", "name": "Comet Crash" }, { "id": "NPJB00108", "name": "PixelJunk Shooter 2" }, { "id": "NPJB00110", "name": "Flight Control HD" }, { "id": "NPJB00113", "name": "The Fancy Pants Adventures" }, { "id": "NPJB00114", "name": "PachiPara 17: Shinkai Monogatari with Agnes Ram" }, { "id": "NPJB00115", "name": "Earthworm Jim HD" }, { "id": "NPJB00116", "name": "Planet Minigolf" }, { "id": "NPJB00119", "name": "The Misshitsukara no Dasshutsu (Simple 500 Series Vol. 2)" }, { "id": "NPJB00120", "name": "Swarm" }, { "id": "NPJB00123", "name": "Metal Gear Solid: Peace Walker HD Edition" }, { "id": "NPJB00124", "name": "Red Faction: Battlegrounds" }, { "id": "NPJB00127", "name": "Sonic the Hedgehog 2" }, { "id": "NPJB00128", "name": "Comix Zone" }, { "id": "NPJB00130", "name": "Bare Knuckle II: Shitou e no Chinkon Uta" }, { "id": "NPJB00131", "name": "Altered Beast" }, { "id": "NPJB00134", "name": "Hatsune Miku: Project Diva - Dreamy Theater 2nd" }, { "id": "NPJB00135", "name": "BioHazard Code: Veronica Kanzenban" }, { "id": "NPJB00136", "name": "Tetris" }, { "id": "NPJB00138", "name": "Castlevania: Harmony of Despair" }, { "id": "NPJB00139", "name": "Burnout CRASH!" }, { "id": "NPJB00142", "name": "Magic: The Gathering - Duels of the Planeswalkers 2012" }, { "id": "NPJB00146", "name": "Street Fighter III: Third Strike Online Edition" }, { "id": "NPJB00149", "name": "Bakuretsu Gundan Renegade: Renegade Operations" }, { "id": "NPJB00150", "name": "Crysis" }, { "id": "NPJB00153", "name": "Joe Danger" }, { "id": "NPJB00154", "name": "Black Knight Sword" }, { "id": "NPJB00155", "name": "LIMBO" }, { "id": "NPJB00156", "name": "Metal Gear Solid 3: Snake Eater HD Edition" }, { "id": "NPJB00159", "name": "Elevator Action Deluxe" }, { "id": "NPJB00160", "name": "Bulletstorm" }, { "id": "NPJB00161", "name": "Daytona USA" }, { "id": "NPJB00164", "name": "Sonic the Hedgehog 4: Episode II" }, { "id": "NPJB00165", "name": "Gladiator VS" }, { "id": "NPJB00167", "name": "Joysound Dive" }, { "id": "NPJB00169", "name": "Real Steel" }, { "id": "NPJB00171", "name": "The Misshitsukara no Dasshutsu: Tsukiyo no Mansion-Hen (Simple 500 Series Vol. 3)" }, { "id": "NPJB00172", "name": "Tom Clancy's H.A.W.X. (Demo)" }, { "id": "NPJB00173", "name": "BioHazard: The Darkside Chronicles" }, { "id": "NPJB00174", "name": "BioHazard: Umbrella Chronicles" }, { "id": "NPJB00176", "name": "Lumines Supernova (Promo)" }, { "id": "NPJB00177", "name": "Magic: The Gathering - Duels of the Planeswalkers 2013" }, { "id": "NPJB00178", "name": "Mobile Suit Gundam: Battle Operation" }, { "id": "NPJB00179", "name": "Moe Moe Daisensou * Gendaiban++" }, { "id": "NPJB00181", "name": "Red Johnson's Chronicles" }, { "id": "NPJB00185", "name": "Need for Speed: The Run" }, { "id": "NPJB00186", "name": "Colin McRae: DiRT 3 (Complete Edition)" }, { "id": "NPJB00187", "name": "Minna de Spelunker" }, { "id": "NPJB00189", "name": "Shutsugeki!! Otometachi no Senjou 2: Yuukoku o Kakeru Koujo no Tsubasa" }, { "id": "NPJB00190", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu" }, { "id": "NPJB00191", "name": "PixelJunk 4am" }, { "id": "NPJB00193", "name": "Anubis: Zone of the Enders HD Edition" }, { "id": "NPJB00195", "name": "Okami Zekkeihan" }, { "id": "NPJB00201", "name": "Hatsune Miku: Project Diva - Dreamy Theater Extend" }, { "id": "NPJB00202", "name": "Battlefield 3" }, { "id": "NPJB00203", "name": "BioHazard 5: Alternative Edition" }, { "id": "NPJB00207", "name": "Jojo no Kimyou na Bouken: Miraihe no Isan HD Ver." }, { "id": "NPJB00208", "name": "Quantum Conundrum" }, { "id": "NPJB00210", "name": "Capcom Arcade Cabinet" }, { "id": "NPJB00212", "name": "Taiheiyou no Arashi: Senkan Yamato, Akatsuki ni Shutsugekisu" }, { "id": "NPJB00213", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2" }, { "id": "NPJB00215", "name": "BioHazard: Operation Raccoon City" }, { "id": "NPJB00218", "name": "Jigoku da Suki! Hell Yeah!" }, { "id": "NPJB00220", "name": "Heavy Fire: Afghanistan" }, { "id": "NPJB00227", "name": "Gal*Gun" }, { "id": "NPJB00229", "name": "The King of Fighters XIII" }, { "id": "NPJB00233", "name": "Daisenryaku Perfect: Senjou no Hasha" }, { "id": "NPJB00234", "name": "Ao no Eiyuu: Birds of Steel" }, { "id": "NPJB00235", "name": "E.X. Troopers" }, { "id": "NPJB00236", "name": "Tekken Tag Tournament 2" }, { "id": "NPJB00239", "name": "F1 2012" }, { "id": "NPJB00240", "name": "SSX" }, { "id": "NPJB00246", "name": "Bayonetta" }, { "id": "NPJB00248", "name": "Musou Orochi 2" }, { "id": "NPJB00252", "name": "Fighting Vipers" }, { "id": "NPJB00253", "name": "Sangokushi 12" }, { "id": "NPJB00254", "name": "Absolute: Supercars" }, { "id": "NPJB00261", "name": "Shin Sangoku Musou 5 Empires" }, { "id": "NPJB00264", "name": "Bladestorm: Hyakunen Sensou" }, { "id": "NPJB00265", "name": "Nobunaga no Yabou: Tendou with Power-Up Kit" }, { "id": "NPJB00266", "name": "Shin Sangoku Musou MultiRaid Special" }, { "id": "NPJB00269", "name": "Champion Jockey: G1 Jockey & Gallop Racer" }, { "id": "NPJB00271", "name": "Sengoku Musou 3 Empires" }, { "id": "NPJB00273", "name": "Lollipop Chainsaw" }, { "id": "NPJB00274", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version" }, { "id": "NPJB00275", "name": "Binary Domain" }, { "id": "NPJB00277", "name": "Shin Sangoku Musou 6 Empires" }, { "id": "NPJB00278", "name": "DmC: Devil May Cry" }, { "id": "NPJB00280", "name": "Yakuza 1 & 2 HD Edition" }, { "id": "NPJB00281", "name": "Metal Gear Rising: Revengeance" }, { "id": "NPJB00286", "name": "YouTube" }, { "id": "NPJB00287", "name": "Hatsune Miku: Project Diva F" }, { "id": "NPJB00288", "name": "XBLAZE Code: Embryo" }, { "id": "NPJB00289", "name": "Spelunker Collection" }, { "id": "NPJB00292", "name": "Eiyuu Densetsu: Sora no Kiseki FC Kai HD Edition" }, { "id": "NPJB00294", "name": "Ace Combat: Assault Horizon" }, { "id": "NPJB00297", "name": "R-Type Dimensions" }, { "id": "NPJB00298", "name": "Magic: Duels of the Planeswalkers 2014" }, { "id": "NPJB00301", "name": "Monster Hunter Frontier G" }, { "id": "NPJB00302", "name": "Max Anarchy" }, { "id": "NPJB00305", "name": "Battle of Tiles EX" }, { "id": "NPJB00309", "name": "Persona 4: The Ultimate in Mayonaka Arena" }, { "id": "NPJB00310", "name": "BioHazard Revelations: Unveiled Edition" }, { "id": "NPJB00312", "name": "Vampire Resurrection" }, { "id": "NPJB00314", "name": "Muv-Luv Alternative: Total Eclipse" }, { "id": "NPJB00316", "name": "Shin Hokuto Musou" }, { "id": "NPJB00317", "name": "Unmei no Doukutsu: The Cave" }, { "id": "NPJB00318", "name": "Daisenryaku: Dai Toua Kouboushi - Tora Tora Tora Ware Kishuu Ni Seikou Seri" }, { "id": "NPJB00319", "name": "BioHazard 6" }, { "id": "NPJB00321", "name": "Cyber Troopers Virtual On" }, { "id": "NPJB00322", "name": "Skullgirls" }, { "id": "NPJB00323", "name": "Daito Giken Koushiki Pachi-Slot Simulator Hihouden: Taiyou o Motomeru Monotachi" }, { "id": "NPJB00326", "name": "The Amazing Spider Man 2" }, { "id": "NPJB00327", "name": "Winning Post 7 2013" }, { "id": "NPJB00328", "name": "One Piece: Kaizoku Musou 2" }, { "id": "NPJB00330", "name": "Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition" }, { "id": "NPJB00331", "name": "Jojo no Kimyou na Bouken: All-Star Battle" }, { "id": "NPJB00332", "name": "Army of Two: The Devil's Cartel" }, { "id": "NPJB00335", "name": "Dragon's Dogma: Dark Arisen" }, { "id": "NPJB00337", "name": "The Idolm@ster 2" }, { "id": "NPJB00341", "name": "Clannad" }, { "id": "NPJB00346", "name": "Dream C Club: Complete Edipyon!" }, { "id": "NPJB00347", "name": "Dream C Club Zero: Special Edipyon!" }, { "id": "NPJB00348", "name": "Akiba's Trip 2" }, { "id": "NPJB00349", "name": "Strider Hiryu" }, { "id": "NPJB00350", "name": "Kamisama to Unmei Kakumei no Paradox" }, { "id": "NPJB00352", "name": "Z/X: Zillions of enemy X - Zekkai no Crusade" }, { "id": "NPJB00354", "name": "BlazBlue: Chrono Phantasma" }, { "id": "NPJB00357", "name": "Gundam breaker" }, { "id": "NPJB00359", "name": "Eiyuu Densetsu: Sora no Kiseki the 3rd Kai HD Edition" }, { "id": "NPJB00361", "name": "Ninja Gaiden 3: Razor's Edge" }, { "id": "NPJB00362", "name": "Attouteki Yuugi: Mugen Souls Z" }, { "id": "NPJB00363", "name": "BioShock Infinite" }, { "id": "NPJB00365", "name": "Makai Senki Disgaea 3" }, { "id": "NPJB00366", "name": "Chaos Code" }, { "id": "NPJB00368", "name": "Shin Sangoku Musou 6 (PlayStation 3 the Best)" }, { "id": "NPJB00369", "name": "Shin Sangoku Musou 6 Moushouden (PlayStation 3 the Best)" }, { "id": "NPJB00370", "name": "Monster Hunter Portable 3rd HD Ver." }, { "id": "NPJB00371", "name": "Onechanbara Z: Kagura with NoNoNo!" }, { "id": "NPJB00372", "name": "Chikyuu Boueigun 4" }, { "id": "NPJB00377", "name": "Battlefield 4" }, { "id": "NPJB00379", "name": "Ketsui: Kizuna Jigoku Tachi Extra" }, { "id": "NPJB00383", "name": "Terraria" }, { "id": "NPJB00384", "name": "Vividred Operation: Hyper Intimate Power" }, { "id": "NPJB00386", "name": "Vividred Operation: Mayonnaise Operation with Akane!" }, { "id": "NPJB00389", "name": "White Album 2: Shiawase no Mukougawa" }, { "id": "NPJB00390", "name": "Date A Live: Rinne Utopia" }, { "id": "NPJB00391", "name": "Arcadias no Ikusahime" }, { "id": "NPJB00394", "name": "Call of Juarez: Gunslinger" }, { "id": "NPJB00398", "name": "Maji de Watashi ni Koi Shinasai! R" }, { "id": "NPJB00403", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi" }, { "id": "NPJB00404", "name": "Tekken Revolution" }, { "id": "NPJB00405", "name": "Watch Dogs" }, { "id": "NPJB00407", "name": "Dungeons & Dragons: Mystara Eiyuu Senki" }, { "id": "NPJB00408", "name": "Assassin's Creed IV: Black Flag" }, { "id": "NPJB00409", "name": "Eiyuu Densetsu: Sen no Kiseki" }, { "id": "NPJB00411", "name": "Dead or Alive 5 Ultimate" }, { "id": "NPJB00412", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End" }, { "id": "NPJB00415", "name": "Farming Simulator" }, { "id": "NPJB00416", "name": "Tales of Symphonia: Unisonant Pack" }, { "id": "NPJB00418", "name": "Sangoku Hime 2: Kouki Houkou - Mezameshi Taiga" }, { "id": "NPJB00422", "name": "Sengoku Basara 4" }, { "id": "NPJB00424", "name": "Disorder 6" }, { "id": "NPJB00425", "name": "Nobunaga no Yabou Online: Tenka Mugen no Shou" }, { "id": "NPJB00426", "name": "Yaiba: Ninja Gaiden Z" }, { "id": "NPJB00427", "name": "Eiyuu * Senki" }, { "id": "NPJB00428", "name": "FIFA 14: World Class Soccer" }, { "id": "NPJB00431", "name": "BioShock" }, { "id": "NPJB00432", "name": "BioShock 2" }, { "id": "NPJB00433", "name": "Need for Speed: Rivals" }, { "id": "NPJB00435", "name": "Hatsune Miku: Project DIVA F 2nd" }, { "id": "NPJB00436", "name": "Zone of the Enders HD Edition" }, { "id": "NPJB00437", "name": "Sangokushi 12 Taisenban" }, { "id": "NPJB00438", "name": "Sangokushi 12 with Power-Up Kit" }, { "id": "NPJB00440", "name": "Kazoku Keikaku: Re:Tsumugu Ito" }, { "id": "NPJB00442", "name": "Jikkyou Powerful Pro Yakyuu 2013" }, { "id": "NPJB00443", "name": "Musou Orochi 2 Ultimate" }, { "id": "NPJB00445", "name": "Castle of Illusion: Starring Mickey Mouse" }, { "id": "NPJB00446", "name": "Air Conflicts: Vietnam" }, { "id": "NPJB00448", "name": "Dragon Ball Z: Battle of Z" }, { "id": "NPJB00453", "name": "Final Fantasy XIV Online: Shinsei Eorzea" }, { "id": "NPJB00454", "name": "Fairy Fencer F" }, { "id": "NPJB00456", "name": "AKB1/149: Love Election" }, { "id": "NPJB00458", "name": "Final Fantasy X / X-2 HD Remaster" }, { "id": "NPJB00460", "name": "Borderlands 2" }, { "id": "NPJB00461", "name": "Batman: Arkham Origins" }, { "id": "NPJB00462", "name": "Puyo Puyo Tetris" }, { "id": "NPJB00464", "name": "Sengoku Musou 2 Empires HD Version" }, { "id": "NPJB00465", "name": "Super Heroine Chronicle: Chou Heroine Senki" }, { "id": "NPJB00466", "name": "SoulCalibur: Lost Swords" }, { "id": "NPJB00468", "name": "Rozen Maiden: Wechseln Sie Welt ab" }, { "id": "NPJB00470", "name": "Urban Trial Freestyle" }, { "id": "NPJB00471", "name": "Sengoku Musou 2 with Moushouden & Empires HD Version" }, { "id": "NPJB00475", "name": "Blazing Angels 2: Secret Missions of WWII" }, { "id": "NPJB00479", "name": "Phantom Breaker: Extra" }, { "id": "NPJB00481", "name": "Ace Combat Infinity" }, { "id": "NPJB00486", "name": "iM@s Channel" }, { "id": "NPJB00487", "name": "Winning Post 8" }, { "id": "NPJB00488", "name": "&: Sora no Mukou de Saki Masuyou ni" }, { "id": "NPJB00489", "name": "Shin Koihime Musou: Otome Taisen * Sangokushi Engi" }, { "id": "NPJB00491", "name": "Kaihou Shoujo SIN" }, { "id": "NPJB00492", "name": "Aabs Animals" }, { "id": "NPJB00509", "name": "Shin Rorona no Atelier: Hajimari no Monogatari - Arland no Renkinjutsushi" }, { "id": "NPJB00512", "name": "Kidou Senshi Gundam: Extreme VS Full Boost" }, { "id": "NPJB00516", "name": "Grand Theft Auto V" }, { "id": "NPJB00519", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu!" }, { "id": "NPJB00520", "name": "Dai-3-Ji Super Robot Taisen Z Jigoku-hen" }, { "id": "NPJB00521", "name": "Super Robot Taisen OG Dark Prison" }, { "id": "NPJB00523", "name": "Rainbow Moon" }, { "id": "NPJB00527", "name": "Call of Duty: Ghosts" }, { "id": "NPJB00528", "name": "Call of Duty: Ghosts" }, { "id": "NPJB00529", "name": "Motto! SoniComi" }, { "id": "NPJB00530", "name": "Infinite Stratos 2: Ignition Hearts" }, { "id": "NPJB00533", "name": "Shin Gundam Musou" }, { "id": "NPJB00534", "name": "Sengoku Musou 4" }, { "id": "NPJB00535", "name": "Sonic & All-Stars Racing Transformed" }, { "id": "NPJB00537", "name": "Pacific Rim: The Video Game" }, { "id": "NPJB00540", "name": "Arcana Heart 3: LOVEMAX!!!!!" }, { "id": "NPJB00542", "name": "Mato Kurenai Yuugekitai: Tokyo Twilight Ghosthunters" }, { "id": "NPJB00546", "name": "Final Exam" }, { "id": "NPJB00551", "name": "Saints Row IV (Ultra Super Ultimate Deluxe Edition)" }, { "id": "NPJB00560", "name": "Assassin's Creed III" }, { "id": "NPJB00561", "name": "Child of Light" }, { "id": "NPJB00562", "name": "Assassin's Creed III: Lady Liberty HD" }, { "id": "NPJB00566", "name": "AquaPazza: AquaPlus Dream Match" }, { "id": "NPJB00568", "name": "Brothers: Futari no Musuko no Monogatari" }, { "id": "NPJB00570", "name": "Lost Dimension" }, { "id": "NPJB00572", "name": "Shin Sangoku Musou Online Z" }, { "id": "NPJB00573", "name": "Ar Nosurge: Umareizeru Hoshi E Inoru Uta" }, { "id": "NPJB00574", "name": "2014 FIFA World Cup Brazil" }, { "id": "NPJB00575", "name": "Alien Rage" }, { "id": "NPJB00576", "name": "Harem Tengoku da to Omottara Yandere Jigoku Datta" }, { "id": "NPJB00577", "name": "Kamen Rider: Battride War II" }, { "id": "NPJB00579", "name": "Wolfenstein: The New Order" }, { "id": "NPJB00580", "name": "Dengeki Bunko: Fighting Climax" }, { "id": "NPJB00582", "name": "Dream C Club Gogo." }, { "id": "NPJB00584", "name": "Contrast" }, { "id": "NPJB00586", "name": "Assassin's Creed IV: Black Flag: Freedom Cry" }, { "id": "NPJB00589", "name": "World Soccer Winning Eleven 2014: Aoki Samurai no Chousen" }, { "id": "NPJB00593", "name": "Muv-Luv: photonflowers*" }, { "id": "NPJB00601", "name": "One Piece: Unlimited World R" }, { "id": "NPJB00606", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution" }, { "id": "NPJB00609", "name": "BloodRayne: Crimson Slayer" }, { "id": "NPJB00611", "name": "The IdolM@ster: One for All" }, { "id": "NPJB00612", "name": "Fukumen Toushi: Masked Warrior" }, { "id": "NPJB00615", "name": "Psycho Break" }, { "id": "NPJB00619", "name": "Shallie no Atelier: Tasogare no Umi no Renkinjutsushi" }, { "id": "NPJB00620", "name": "To Heart 2 DX Plus" }, { "id": "NPJB00632", "name": "Diablo III: Ultimate Evil Edition" }, { "id": "NPJB00645", "name": "Borderlands: The Pre-Sequel" }, { "id": "NPJB00646", "name": "Magical Beat" }, { "id": "NPJB00648", "name": "Super Robot Taisen OG Saga - Masou Kishin F - Coffin of the End" }, { "id": "NPJB00653", "name": "Biohazard HD Remaster" }, { "id": "NPJB00667", "name": "World Soccer Winning Eleven 2015" }, { "id": "NPJB00674", "name": "XBLAZE: Lost Memories" }, { "id": "NPJB00680", "name": "Sengoku Hime 5: Senkatatsu Haoh no Keifu" }, { "id": "NPJB00683", "name": "Bladestorm: Hyakunen Sensou & Nightmare" }, { "id": "NPJB00686", "name": "White Album 2: Shiawase no Mukougawa (AquaPrice 2800)" }, { "id": "NPJB00687", "name": "Nitroplus Blasterz: Heroines Infinite Duel" }, { "id": "NPJB00688", "name": "Sengoku Basara 4: Sumeragi" }, { "id": "NPJB00692", "name": "Dai-3-Ji Super Robot Taisen Z Tengoku-hen" }, { "id": "NPJB00695", "name": "JOYSOUND.TV Plus" }, { "id": "NPJB00705", "name": "Rewrite" }, { "id": "NPJB00706", "name": "Sengoku Musou 4-II" }, { "id": "NPJB00712", "name": "One Piece: Kaizoku Musou 3" }, { "id": "NPJB00717", "name": "Dragon Quest Heroes: Anryuu to Sekaiju no Shiro" }, { "id": "NPJB00720", "name": "Kagero: Mou Hitori no Princess" }, { "id": "NPJB00722", "name": "Daisenryaku: Dai Toua Kouboushi - Dainijisekaitaisen Boppatsu - Suujiku Sentai Rengougun Zensekaisen" }, { "id": "NPJB00727", "name": "Star Ocean 5: Integrity and Faithlessness" }, { "id": "NPJB00738", "name": "Angel Senki (Rerelease)" }, { "id": "NPJB00744", "name": "Mato Kurenai Yuugekitai: Daybreak Special Gigs" }, { "id": "NPJB00749", "name": "Gundam Battle Operation Next" }, { "id": "NPJB00764", "name": "Sophie no Atelier: Fushigi na Hon no Renkinjutsushi" }, { "id": "NPJB00769", "name": "Persona 5" }, { "id": "NPJB00785", "name": "Dengeki Bunko: Fighting Climax" }, { "id": "NPJB00813", "name": "Shin Sangoku Musou: Eiketsuden" }, { "id": "NPJB00818", "name": "Berserk Musou" }, { "id": "NPJB00823", "name": "Asdivine Hearts" }, { "id": "NPJB00832", "name": "Jikkyou Powerful Pro Yakyuu Championship 2017" }, { "id": "NPJB60001", "name": "Monster Hunter Portable 2nd G Monster Data Chishikisho" }, { "id": "NPJB60076", "name": "Binary Domain" }, { "id": "NPJB60148", "name": "Nerawareta Gakuen Kanzenban Shiryoushuu" }, { "id": "NPJB60188", "name": "Gekijouban Macross F Digital Archives" }, { "id": "NPJB70001", "name": "NEOGEO STATION Fatal Fury: King Of Fighters" }, { "id": "NPJB90001", "name": "Ridge Racer 7 (Demo)" }, { "id": "NPJB90011", "name": "Ninja Gaiden Sigma (Demo)" }, { "id": "NPJB90021", "name": "Bladestorm: The Hundred Years' War (Demo)" }, { "id": "NPJB90030", "name": "Imabi Kisou (Demo)" }, { "id": "NPJB90042", "name": "G1 Jockey 4 2007 - (Demo)" }, { "id": "NPJB90043", "name": "Agarest Senki (Demo)" }, { "id": "NPJB90053", "name": "Metal Gear Online (Demo)" }, { "id": "NPJB90061", "name": "World Soccer: Winning Eleven 2008 (Demo)" }, { "id": "NPJB90062", "name": "FIFA 08 (Demo)" }, { "id": "NPJB90064", "name": "Vampire Rain: Altered Species (Demo)" }, { "id": "NPJB90066", "name": "Burnout Paradise (Demo)" }, { "id": "NPJB90067", "name": "Armored Core: For Answer (Demo)" }, { "id": "NPJB90068", "name": "Need for Speed: ProStreet (Demo)" }, { "id": "NPJB90071", "name": "Ryu ga Gotoku Kenzan! - Demo 1" }, { "id": "NPJB90072", "name": "Ryu ga Gotoku Kenzan! - Demo 2" }, { "id": "NPJB90076", "name": "Sega Rally Revo (Demo)" }, { "id": "NPJB90085", "name": "Devil May Cry 4 (Demo)" }, { "id": "NPJB90100", "name": "Haze (Demo)" }, { "id": "NPJB90105", "name": "Battle Fantasia (Demo)" }, { "id": "NPJB90107", "name": "Dark Sector (Demo)" }, { "id": "NPJB90112", "name": "Battlefield: Bad Company (Demo)" }, { "id": "NPJB90119", "name": "Dragon Ball Z: Burst Limit (Demo)" }, { "id": "NPJB90130", "name": "SoulCalibur IV (Demo)" }, { "id": "NPJB90132", "name": "Eternal Sonata (Demo)" }, { "id": "NPJB90139", "name": "FIFA 09 (Demo)" }, { "id": "NPJB90140", "name": "Mirror's Edge (Demo)" }, { "id": "NPJB90144", "name": "World Soccer: Winning Eleven 2009 (Demo)" }, { "id": "NPJB90147", "name": "Fallout 3" }, { "id": "NPJB90149", "name": "Metal Gear Solid 4: Guns of the Patriots (Demo)" }, { "id": "NPJB90150", "name": "World Soccer: Winning Eleven 2009" }, { "id": "NPJB90152", "name": "BioHazard 5 (Demo)" }, { "id": "NPJB90154", "name": "Yakuza 3" }, { "id": "NPJB90156", "name": "Valkyria Chronicles (Demo)" }, { "id": "NPJB90159", "name": "BioShock (Demo)" }, { "id": "NPJB90160", "name": "Naruto Shippuden: Ultimate Ninja Storm (Demo)" }, { "id": "NPJB90162", "name": "Sonic Unleashed (Demo)" }, { "id": "NPJB90163", "name": "WWE: Legends of Wrestlemania (Demo)" }, { "id": "NPJB90167", "name": "Crystal Defenders (Demo)" }, { "id": "NPJB90172", "name": "Tom Clancy's H.A.W.X. (Demo)" }, { "id": "NPJB90176", "name": "Lumines Supernova (Promo)" }, { "id": "NPJB90177", "name": "Crystal Defenders" }, { "id": "NPJB90178", "name": "X Blades" }, { "id": "NPJB90183", "name": "End of Eternity: Battle" }, { "id": "NPJB90185", "name": "Tales of Vesperia" }, { "id": "NPJB90187", "name": "UFC Undisputed 2009 (Demo)" }, { "id": "NPJB90196", "name": "The King of Fighters XII (Demo)" }, { "id": "NPJB90205", "name": "FIFA 10 (Demo)" }, { "id": "NPJB90207", "name": "Ninja Gaiden Sigma 2 (Demo)" }, { "id": "NPJB90212", "name": "Bayonetta (Demo)" }, { "id": "NPJB90223", "name": "End of Eternity: Playable t.A.B. (Demo)" }, { "id": "NPJB90227", "name": "UNO" }, { "id": "NPJB90233", "name": "PixelJunk Shooter (Demo)" }, { "id": "NPJB90235", "name": "Fallout 3" }, { "id": "NPJB90237", "name": "Thexder Neo" }, { "id": "NPJB90253", "name": "Naruto Shippuden: Ultimate Ninja Storm 2 (Demo)" }, { "id": "NPJB90257", "name": "Majin and the Forsaken Kingdom" }, { "id": "NPJB90277", "name": "Space Invaders: Infinity Gene" }, { "id": "NPJB90295", "name": "Trinity: Zill Ol'll Zero (Demo) 2" }, { "id": "NPJB90302", "name": "Tales of Graces" }, { "id": "NPJB90310", "name": "Trinity: Zill Ol'll Zero (Demo) 1" }, { "id": "NPJB90317", "name": "Catherine (Demo)" }, { "id": "NPJB90342", "name": "Nail'd" }, { "id": "NPJB90346", "name": "Final Fantasy XIII-2" }, { "id": "NPJB90434", "name": "SSX" }, { "id": "NPJB90534", "name": "E.X. Troopers (Demo)" }, { "id": "NPJB90541", "name": "BioHazard 6 (Demo)" }, { "id": "NPJB90576", "name": "Spelunker HD (Demo)" }, { "id": "NPJB90591", "name": "One Piece: Pirate Warriors 2 (Demo)" }, { "id": "NPJB90614", "name": "Puyo Puyo Tetris" }, { "id": "NPJB90626", "name": "Hanasaku Manimani" }, { "id": "NPJB90690", "name": "Yakuza Ishin - (Demo)" }, { "id": "NPJB90717", "name": "Double Dragon Neon" }, { "id": "NPJB90797", "name": "Arslan The Warriors Of Legend (Demo)" }, { "id": "NPJC00012", "name": "Saru! Get You! 3" }, { "id": "NPJD00001", "name": "BioHazard Code: Veronica Kanzenban" }, { "id": "NPJD00004", "name": "Contra: Shattered Solider" }, { "id": "NPJD00005", "name": "Dragon Force" }, { "id": "NPJD00009", "name": "Dynamite Cop" }, { "id": "NPJD00010", "name": "Castlevania: Lament of Innocence" }, { "id": "NPJD00011", "name": "Dead or Alive 2: Hardcore" }, { "id": "NPJD00015", "name": "Capcom vs. SNK 2: Millionaire Fighting 2001" }, { "id": "NPJD00029", "name": "Capcom Fighting Jam" }, { "id": "NPJG00116", "name": "ModNation Racers" }, { "id": "NPJG90019", "name": "echochrome" }, { "id": "NPJG90078", "name": "The Eye of Judgement" }, { "id": "NPJH90065", "name": "R-Type Tactics 2: Operation Bitter Chocolate" }, { "id": "NPJH90087", "name": "Shinsengumi Portable" }, { "id": "NPJH90088", "name": "Tenchu Kurenai Portable" }, { "id": "NPJI00001", "name": "Arc the Lad" }, { "id": "NPJI00018", "name": "Arc the Lad II" }, { "id": "NPJI00032", "name": "Saru! Get You!" }, { "id": "NPJI00044", "name": "Alundra" }, { "id": "NPJI00050", "name": "Arc the Lad III" }, { "id": "NPJI00055", "name": "Addie no Okurimono: To Moze from Addie" }, { "id": "NPJI00072", "name": "AirAssault" }, { "id": "NPJJ00005", "name": "Bishi Bashi Special" }, { "id": "NPJJ00011", "name": "The Adventure of Puppet Princess: Marl Oukoku no Ningyou Hime" }, { "id": "NPJJ00015", "name": "A. IV Evolution Global" }, { "id": "NPJJ00024", "name": "Arcade Hits: Raiden (Major Wave)" }, { "id": "NPJJ00028", "name": "A5: A-Ressha de Ikou 5" }, { "id": "NPJJ00037", "name": "Bakumatsu Rouman: Gekka no Kenshi" }, { "id": "NPJJ00062", "name": "AI Mahjong Selection (MajorWave 1500)" }, { "id": "NPJJ00071", "name": "Chippoke Ralph no Daibouken: The Adventure of Little Ralph" }, { "id": "NPJJ00072", "name": "AI Shogi Selection (Major Wave 1500)" }, { "id": "NPJJ00080", "name": "Athena ~Awakening from the ordinary life~" }, { "id": "NPJJ00107", "name": "Arcade Hits: Frisky Tom" }, { "id": "NPJJ00108", "name": "Moon Cresta (Major Wave Arcade Hits)" }, { "id": "NPJJ00114", "name": "Seirei Hata RayBlade" }, { "id": "NPJJ00129", "name": "BioHazard 2" }, { "id": "NPJJ00132", "name": "Athena no Kateiban: Family Game" }, { "id": "NPJJ00135", "name": "Wai Wai Kusayakyuu" }, { "id": "NPJJ00141", "name": "Baroque Syndrome" }, { "id": "NPJJ00151", "name": "Arcade Hits: Shienryu (MajorWave Series)" }, { "id": "NPJJ00165", "name": "Acid" }, { "id": "NPJJ00172", "name": "Brave Fencer Musashiden" }, { "id": "NPJJ00178", "name": "B.L.U.E.: Legend of Water" }, { "id": "NPJJ00179", "name": "Aquanaut no Kyuujitsu: Memories of Summer 1996" }, { "id": "NPJJ00187", "name": "Arkanoid Returns" }, { "id": "NPJJ00188", "name": "Aquanaut no Kyuujitsu 2" }, { "id": "NPJJ00191", "name": "Beltlogger 9" }, { "id": "NPJJ00255", "name": "Advanced V.G." }, { "id": "NPJJ00260", "name": "Final Fantasy VII International" }, { "id": "NPJJ00265", "name": "Final Fantasy Tactics" }, { "id": "NPJJ00277", "name": "Gaia Seed: Project Seed Trap" }, { "id": "NPJJ00291", "name": "Epica Stella" }, { "id": "NPJJ00328", "name": "Sentimental Graffiti" }, { "id": "NPJJ00345", "name": "Simple 1500 Series Vol. 32: The Boxing" }, { "id": "NPJJ00401", "name": "0 Kara no Mahjong: Mahjong Youchien - Tamago Gumi" }, { "id": "NPJJ00419", "name": "Battle Sugoroku: Hunter (SuperLite 1500 Series)" }, { "id": "NPJJ00422", "name": "Simple 1500 Series Vol. 95: The Hikouki" }, { "id": "NPJJ00426", "name": "Hooockey!! (SuperLite 1500 Series)" }, { "id": "NPJJ00432", "name": "0 Kara no Shogi: Shogi Youchien - Ayumi Kumi" }, { "id": "NPJJ00434", "name": "Anoko Doko Noko" }, { "id": "NPJJ00444", "name": "Chocobo's Dungeon 2" }, { "id": "NPJJ00447", "name": "Akagawa Jirou: Yasoukyoku" }, { "id": "NPJJ00449", "name": "Akagawa Jirou: Yasoukyoku 2" }, { "id": "NPJJ00453", "name": "Angolmois 99 (SuperLite 1500 Series)" }, { "id": "NPJJ00458", "name": "Battle Athletess: Daiundoukai Alternative" }, { "id": "NPJJ00472", "name": "Favorite Dear: Enkan no Monogatari" }, { "id": "NPJJ00488", "name": "Favorite Dear: Junpaku no Yogensha" }, { "id": "NPJJ00489", "name": "Akumajou Dracula X: Gekka no Yasoukyoku" }, { "id": "NPJJ00491", "name": "Asuka 120% Special: Burning Fest Special" }, { "id": "NPJJ00503", "name": "Akagawa Jirou: Majotachi no Nemuri: Fukkatsusai" }, { "id": "NPJJ00510", "name": "CyberBots: Full Metal Madness" }, { "id": "NPJJ00523", "name": "Asuka 120% Excellent: Burning Fest. Excellent" }, { "id": "NPJJ00524", "name": "First Queen IV: Varcia Senki" }, { "id": "NPJJ00546", "name": "Chrono Trigger" }, { "id": "NPJJ00564", "name": "Aero Dive" }, { "id": "NPJJ00596", "name": "'99 Kosuhien" }, { "id": "NPJJ00609", "name": "Dungeon Shoutenkai: Densetsu no Ken Hajimemashita" }, { "id": "NPJJ00615", "name": "Blaster Master" }, { "id": "NPJJ00631", "name": "Action Bass" }, { "id": "NPJJ00643", "name": "The Bistro" }, { "id": "NPJJ00680", "name": "Neo Planet" }, { "id": "NPJJ00682", "name": "Abe a Go Go" }, { "id": "NPJJ00684", "name": "Abe '99" }, { "id": "NPJJ00685", "name": "Heroine Dream" }, { "id": "NPJJ00686", "name": "Heroine Dream 2" }, { "id": "NPJJ00696", "name": "Smash Court 2" }, { "id": "NPJJ00704", "name": "Akumajou Nendaiki: Akumajo Dracula" }, { "id": "NPJJ30001", "name": "Bomberman '94" }, { "id": "NPJJ30002", "name": "Sengoku Mahjong" }, { "id": "NPJJ30003", "name": "Devil Crash" }, { "id": "NPJJ30004", "name": "Takahashi Meijin no Shin Bouken Jima" }, { "id": "NPJJ30005", "name": "Joshoken Necromancer" }, { "id": "NPJJ30006", "name": "Super Star Soldier" }, { "id": "NPJJ30007", "name": "Dungeon Explorer" }, { "id": "NPJJ30009", "name": "Power Sports" }, { "id": "NPJJ30010", "name": "Power League 4" }, { "id": "NPJJ30011", "name": "Gate of Thunder" }, { "id": "NPJJ30012", "name": "PC Genjin" }, { "id": "NPJJ30013", "name": "Dungeon Explorer II" }, { "id": "NPJJ30014", "name": "PC Genjin 2" }, { "id": "NPJJ30015", "name": "Winds of Thunder" }, { "id": "NPJJ30016", "name": "Blazing Lazers" }, { "id": "NPJJ30017", "name": "PC Genjin 3" }, { "id": "NPJJ30018", "name": "The Kung Fu" }, { "id": "NPJJ30019", "name": "Alien Crush" }, { "id": "NPJJ30020", "name": "Dai Makai-Mura" }, { "id": "NPJJ30021", "name": "Gradius" }, { "id": "NPJJ30022", "name": "Soldier Blade" }, { "id": "NPJJ30024", "name": "Detana!! TwinBee" }, { "id": "NPJJ30025", "name": "Battle Ace" }, { "id": "NPJJ30026", "name": "Victory Run: Eikou no 13,000KM" }, { "id": "NPJJ30027", "name": "Neutopia: Frey no Shou" }, { "id": "NPJJ30028", "name": "Neutopia II" }, { "id": "NPJJ30029", "name": "Tengai Makyou: Ziria" }, { "id": "NPJJ30030", "name": "Salamander" }, { "id": "NPJJ30031", "name": "Gradius II: Gofer no Yabou" }, { "id": "NPJJ30033", "name": "Mugen Senshi Valis" }, { "id": "NPJJ30034", "name": "Valis II" }, { "id": "NPJJ30035", "name": "Benkei Gaiden" }, { "id": "NPJJ30036", "name": "Tengai Makyou II: Manji Maru" }, { "id": "NPJJ30038", "name": "Ys I + II" }, { "id": "NPJJ30039", "name": "Ys III: Wanderers from Ys" }, { "id": "NPJJ30040", "name": "Ys IV: The Dawn of Ys" }, { "id": "NPJJ30041", "name": "Aldynes: The Mission Code for Rage Crisis" }, { "id": "NPJJ30043", "name": "Cho Aniki" }, { "id": "NPJJ30044", "name": "Moto Roader II" }, { "id": "NPJJ30045", "name": "Double Dungeons" }, { "id": "NPJJ30046", "name": "Kaizou Chounin Shubibinman" }, { "id": "NPJJ30047", "name": "Kaizou Chounin Shubibinman 2: Atanaru Teki" }, { "id": "NPJJ30048", "name": "Langrisser: Hikari no Matsuei" }, { "id": "NPJJ30051", "name": "Galaga '88" }, { "id": "NPJJ30052", "name": "Splatterhouse" }, { "id": "NPJJ30054", "name": "Chiki Chiki Boys" }, { "id": "NPJJ30055", "name": "R-Type" }, { "id": "NPJJ30059", "name": "Kaizou Chounin Shubibinman 3: Ikai no Princess" }, { "id": "NPJK00001", "name": "Xamd: Lost Memories" }, { "id": "NPJY90007", "name": "Yuusha 30: Princess 30" }, { "id": "NPUA00073", "name": "PAIN" }, { "id": "NPUA30002", "name": "Bejeweled 2" }, { "id": "NPUA30003", "name": "Zuma" }, { "id": "NPUA30004", "name": "Heavy Weapon: Atomic Tank" }, { "id": "NPUA30005", "name": "Peggle" }, { "id": "NPUA30006", "name": "Feeding Frenzy 2: Shipwreck Showdown" }, { "id": "NPUA30013", "name": "Switchball" }, { "id": "NPUA30014", "name": "Groovin' Blocks" }, { "id": "NPUA30016", "name": "Revenge of the Wounded Dragons" }, { "id": "NPUA30029", "name": "Gundemonium Recollection" }, { "id": "NPUA30030", "name": "Hitogata Happa" }, { "id": "NPUA30031", "name": "GundeadliGne - Gundemonium Collection" }, { "id": "NPUA30032", "name": "Crescent Pale Mist" }, { "id": "NPUA30033", "name": "Qlione" }, { "id": "NPUA30035", "name": "Swords and Soldiers" }, { "id": "NPUA30036", "name": "Akimi Village" }, { "id": "NPUA30037", "name": "TerRover" }, { "id": "NPUA30054", "name": "Qlione 2" }, { "id": "NPUA30060", "name": "Slam Bolt Scrappers" }, { "id": "NPUA30061", "name": "Rochard" }, { "id": "NPUA30066", "name": "Sideway" }, { "id": "NPUA30073", "name": "Payday: The Heist" }, { "id": "NPUA30373", "name": "LIMBO" }, { "id": "NPUA70004", "name": "MLB 08 The Show (Demo)" }, { "id": "NPUA70006", "name": "NBA 09 The Inside" }, { "id": "NPUA70021", "name": "PixelJunk Eden (Demo)" }, { "id": "NPUA70032", "name": "MLB 09 The Show (Demo)" }, { "id": "NPUA70034", "name": "Killzone 2" }, { "id": "NPUA70046", "name": "inFamous (Demo)" }, { "id": "NPUA70060", "name": "SingStar Viewer" }, { "id": "NPUA70080", "name": "God of War 3 E3 (Demo)" }, { "id": "NPUA70088", "name": "Heavy Rain (Demo)" }, { "id": "NPUA70096", "name": "ModNation Racers (QORE Demo)" }, { "id": "NPUA70102", "name": "Kung Fu Rider (Demo)" }, { "id": "NPUA70107", "name": "Beat Sketcher (Demo)" }, { "id": "NPUA70112", "name": "Heavy Rain (Demo)" }, { "id": "NPUA70140", "name": "MotorStorm: Apocalypse (Demo)" }, { "id": "NPUA70153", "name": "Uncharted 3 Drake's Deception Beta" }, { "id": "NPUA70175", "name": "Resistance 3 - Haven (Demo)" }, { "id": "NPUA70180", "name": "Uncharted 3: Drake's Deception Subway" }, { "id": "NPUA70181", "name": "Ratchet & Clank: All 4 One - (Demo)" }, { "id": "NPUA70192", "name": "Twisted Metal" }, { "id": "NPUA70196", "name": "GT Academy 2012" }, { "id": "NPUA70216", "name": "God of War: Ascension Multiplayer Beta" }, { "id": "NPUA70218", "name": "Journey: Collector's Edition" }, { "id": "NPUA70257", "name": "The Last of Us (Demo)" }, { "id": "NPUA72074", "name": "Beyond: Two Souls (Demo)" }, { "id": "NPUA80001", "name": "flOw" }, { "id": "NPUA80002", "name": "Blast Factor" }, { "id": "NPUA80008", "name": ".detuned" }, { "id": "NPUA80009", "name": "Linger in Shadows" }, { "id": "NPUA80011", "name": "Go! Sudoku" }, { "id": "NPUA80012", "name": "Lemmings" }, { "id": "NPUA80018", "name": "NBA 07 (Demo)" }, { "id": "NPUA80019", "name": "Gran Turismo HD Concept" }, { "id": "NPUA80022", "name": "Go! Puzzle" }, { "id": "NPUA80025", "name": "Blast Factor" }, { "id": "NPUA80026", "name": "Super Rub'a'Dub" }, { "id": "NPUA80034", "name": "Lemmings (Demo)" }, { "id": "NPUA80044", "name": "High Velocity Bowling" }, { "id": "NPUA80063", "name": "Super Rub 'a' Dub" }, { "id": "NPUA80064", "name": "Nucleus" }, { "id": "NPUA80068", "name": "Super Stardust HD" }, { "id": "NPUA80069", "name": "LocoRoco Cocoreccho!" }, { "id": "NPUA80070", "name": "Go! Sports Ski" }, { "id": "NPUA80072", "name": "Snakeball" }, { "id": "NPUA80073", "name": "Pain" }, { "id": "NPUA80075", "name": "Gran Turismo 5 Prologue" }, { "id": "NPUA80077", "name": "WarHawk" }, { "id": "NPUA80083", "name": "Flower" }, { "id": "NPUA80088", "name": "Calling All Cars!" }, { "id": "NPUA80091", "name": "Piyotama" }, { "id": "NPUA80092", "name": "Go! Sports Skydiving" }, { "id": "NPUA80093", "name": "WarHawk" }, { "id": "NPUA80095", "name": "EyeCreate" }, { "id": "NPUA80098", "name": "Everyday Shooter" }, { "id": "NPUA80100", "name": "PixelJunk Racers" }, { "id": "NPUA80103", "name": "Heavenly Sword (Demo)" }, { "id": "NPUA80104", "name": "Toy Home" }, { "id": "NPUA80105", "name": "WipEout HD" }, { "id": "NPUA80108", "name": "PixelJunk Monsters Encore" }, { "id": "NPUA80112", "name": "NBA 08 (Demo)" }, { "id": "NPUA80127", "name": "Aquatopia" }, { "id": "NPUA80128", "name": "The Trials of Topoq" }, { "id": "NPUA80129", "name": "Operation Creature Feature" }, { "id": "NPUA80132", "name": "Mesmerize" }, { "id": "NPUA80133", "name": "Tori-Emaki" }, { "id": "NPUA80134", "name": "echochrome" }, { "id": "NPUA80136", "name": "SIREN: Blood Curse" }, { "id": "NPUA80137", "name": "Wheel of Fortune" }, { "id": "NPUA80139", "name": "Fat Princess" }, { "id": "NPUA80145", "name": "Ratchet & Clank Future - Quest For Booty" }, { "id": "NPUA80154", "name": "The Last Guy" }, { "id": "NPUA80157", "name": "Elefunk" }, { "id": "NPUA80160", "name": "PixelJunk Eden" }, { "id": "NPUA80216", "name": "Crash Commando" }, { "id": "NPUA80217", "name": "Rad Doll Kung Fu" }, { "id": "NPUA80219", "name": "Xamd: Lost Memories" }, { "id": "NPUA80227", "name": "Jeopardy!" }, { "id": "NPUA80228", "name": "Savage Moon" }, { "id": "NPUA80230", "name": "Buzz! Junior: Jungle Party" }, { "id": "NPUA80231", "name": "Buzz! Junior: Monster Rally" }, { "id": "NPUA80232", "name": "Buzz! Junior: RoboJam" }, { "id": "NPUA80253", "name": "PixelJunk Shooter" }, { "id": "NPUA80275", "name": "Journey" }, { "id": "NPUA80291", "name": "Hustle Kings" }, { "id": "NPUA80292", "name": "Gravity Crash" }, { "id": "NPUA80316", "name": "PlayStation All-Stars Battle Royale" }, { "id": "NPUA80319", "name": "NUMBLAST" }, { "id": "NPUA80358", "name": "Dead Nation: Road of Devastation" }, { "id": "NPUA80395", "name": "PixelJunk Racers 2nd Lap" }, { "id": "NPUA80470", "name": "Tumble" }, { "id": "NPUA80472", "name": "LittleBigPlanet" }, { "id": "NPUA80473", "name": "Echochrome II" }, { "id": "NPUA80479", "name": "Sackboy's Prehistoric Moves" }, { "id": "NPUA80480", "name": "inFamous" }, { "id": "NPUA80483", "name": "Buzz! Quiz Player" }, { "id": "NPUA80488", "name": "Eat Them!" }, { "id": "NPUA80490", "name": "God of War HD" }, { "id": "NPUA80491", "name": "God of War II HD" }, { "id": "NPUA80499", "name": "Motorstorm 3D Rift" }, { "id": "NPUA80523", "name": "Tokyo Jungle" }, { "id": "NPUA80535", "name": "ModNation Racers" }, { "id": "NPUA80538", "name": "PixelJunk 4am - Live Viewer" }, { "id": "NPUA80543", "name": "Sound Shapes" }, { "id": "NPUA80618", "name": "Jak and Dexter Collection" }, { "id": "NPUA80636", "name": "God of War: Ghost of Sparta HD" }, { "id": "NPUA80637", "name": "God of War: Chains of Olympus HD" }, { "id": "NPUA80638", "name": "InFamous 2" }, { "id": "NPUA80642", "name": "Ratchet & Clank: QForce" }, { "id": "NPUA80643", "name": "Ratchet & Clank" }, { "id": "NPUA80646", "name": "Ratchet: Deadlocked" }, { "id": "NPUA80657", "name": "inFamous 2: Festival of Blood" }, { "id": "NPUA80661", "name": "MotorStorm: Apocalypse" }, { "id": "NPUA80662", "name": "LittleBigPlanet 2" }, { "id": "NPUA80676", "name": "ICO" }, { "id": "NPUA80677", "name": "Shadow of the Colossus" }, { "id": "NPUA80694", "name": "Datura" }, { "id": "NPUA80695", "name": "Ratchet & Clank: All 4 One" }, { "id": "NPUA80697", "name": "Uncharted: Drake's Fortune" }, { "id": "NPUA80698", "name": "Uncharted 2: Among Thieves" }, { "id": "NPUA80706", "name": "Jak and Daxter: The Precursor Legacy" }, { "id": "NPUA80707", "name": "Jak II HD" }, { "id": "NPUA80719", "name": "Rain" }, { "id": "NPUA80754", "name": "When Vikings Attack" }, { "id": "NPUA80765", "name": "Hot Shot Golf: Out of Bounds Complete Collection" }, { "id": "NPUA80783", "name": "Hohokum" }, { "id": "NPUA80788", "name": "Grave Diggers" }, { "id": "NPUA80789", "name": "Duke War!!" }, { "id": "NPUA80790", "name": "Nostril Shot" }, { "id": "NPUA80797", "name": "Malicious" }, { "id": "NPUA80848", "name": "LittleBigPlanet Karting" }, { "id": "NPUA80853", "name": "Everybody Dance" }, { "id": "NPUA80856", "name": "Killzone" }, { "id": "NPUA80864", "name": "Hot Shots Golf: World Invitational" }, { "id": "NPUA80870", "name": "CounterSpy" }, { "id": "NPUA80875", "name": "Sly Cooper: Thieves in Time Full Game Trial" }, { "id": "NPUA80882", "name": "Bentley's Hackpack" }, { "id": "NPUA80900", "name": "Resogun" }, { "id": "NPUA80930", "name": "Helldivers" }, { "id": "NPUA80966", "name": "Ratchet & Clank Future: A Crack In Time" }, { "id": "NPUA80969", "name": "MLB 14: The Show" }, { "id": "NPUA80982", "name": "MLB 13: The Show Home Run Derby Edition" }, { "id": "NPUA81049", "name": "Gran Turismo 6" }, { "id": "NPUA81051", "name": "Entwined" }, { "id": "NPUA81052", "name": "Doki Doki Universe" }, { "id": "NPUA81087", "name": "Beyond: Two Souls" }, { "id": "NPUA81116", "name": "LittleBigPlanet 3" }, { "id": "NPUA98103", "name": "Uncharted: Drake's Fortune (Demo)" }, { "id": "NPUA98153", "name": "Ratchet & Clank Future: Tools of Destruction (Demo)" }, { "id": "NPUA98202", "name": "The Unfinished Swan" }, { "id": "NPUB02299", "name": "Pumped BMX +" }, { "id": "NPUB30001", "name": "Cash, Guns and Chaos DLX" }, { "id": "NPUB30002", "name": "GripShift" }, { "id": "NPUB30003", "name": "Rampage World Tour" }, { "id": "NPUB30004", "name": "Mortal Kombat 2" }, { "id": "NPUB30006", "name": "Gauntlet II" }, { "id": "NPUB30007", "name": "Championship Sprint" }, { "id": "NPUB30009", "name": "Tekken 5 Dark Resurrection" }, { "id": "NPUB30010", "name": "Q*bert" }, { "id": "NPUB30016", "name": "High Stakes on the Vegas Strip: Poker Edition" }, { "id": "NPUB30017", "name": "Super Puzzle Fighter II Turbo HD Remix" }, { "id": "NPUB30018", "name": "Rocketman: Axis of Evil" }, { "id": "NPUB30021", "name": "Wolf of the Battlefield: Commando 3" }, { "id": "NPUB30022", "name": "Bionic Commando Rearmed" }, { "id": "NPUB30023", "name": "Fatal Inertia EX" }, { "id": "NPUB30024", "name": "1942: Joint Strike" }, { "id": "NPUB30025", "name": "NovaStrike" }, { "id": "NPUB30028", "name": "Assault Heroes" }, { "id": "NPUB30030", "name": "Red Baron Arcade" }, { "id": "NPUB30031", "name": "Prince of Persia Classic" }, { "id": "NPUB30032", "name": "Noby Noby Boy" }, { "id": "NPUB30033", "name": "Age of Booty" }, { "id": "NPUB30034", "name": "Super Street Fighter 2 Turbo HD" }, { "id": "NPUB30035", "name": "Supersonic Acrobatic Rocket-Powered Battle-Cars" }, { "id": "NPUB30036", "name": "Mega Man 9" }, { "id": "NPUB30039", "name": "Soldner-X Himmelssturmer" }, { "id": "NPUB30040", "name": "Burnout Paradise" }, { "id": "NPUB30041", "name": "Puzzle Quest: Challenge of the Warlords" }, { "id": "NPUB30042", "name": "CellFactor: Psychokinetic Wars" }, { "id": "NPUB30043", "name": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode 1" }, { "id": "NPUB30044", "name": "GTI Club+: Rally Côte d'Azur" }, { "id": "NPUB30045", "name": "Mahjong Tales: Ancient Wisdom" }, { "id": "NPUB30046", "name": "Burn Zombie Burn!" }, { "id": "NPUB30047", "name": "Magic Orbz" }, { "id": "NPUB30048", "name": "Lumines Supernova" }, { "id": "NPUB30050", "name": "Watchmen: The End is Nigh" }, { "id": "NPUB30051", "name": "Bomberman Ultra" }, { "id": "NPUB30052", "name": "Flock!" }, { "id": "NPUB30054", "name": "Cuboid" }, { "id": "NPUB30056", "name": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode 2" }, { "id": "NPUB30057", "name": "Droplitz" }, { "id": "NPUB30058", "name": "3 on 3 NHL Arcade" }, { "id": "NPUB30059", "name": "Critter Crunch" }, { "id": "NPUB30061", "name": "Comet Crash" }, { "id": "NPUB30062", "name": "Astro Tripper" }, { "id": "NPUB30063", "name": "Topatoi: Spinning Through the Worlds" }, { "id": "NPUB30064", "name": "Texas Cheat 'Em" }, { "id": "NPUB30065", "name": "Call of Duty: Classic" }, { "id": "NPUB30066", "name": "Diner Dash" }, { "id": "NPUB30067", "name": "Military Madness: Nectaris" }, { "id": "NPUB30068", "name": "Marvel vs. Capcom 2: New Age of Heroes" }, { "id": "NPUB30069", "name": "Zombie Apocalypse" }, { "id": "NPUB30070", "name": "The Punisher: No Mercy" }, { "id": "NPUB30071", "name": "Watchmen The End Is Nigh" }, { "id": "NPUB30072", "name": "Puzzle Quest: Galactrix" }, { "id": "NPUB30073", "name": "Invincible Tiger: The Legend of Han Tao" }, { "id": "NPUB30074", "name": "Wolfenstein 3D" }, { "id": "NPUB30077", "name": "Battlefield 1943 Online" }, { "id": "NPUB30078", "name": "Gunstar Heroes" }, { "id": "NPUB30084", "name": "Star Trek: D-A-C" }, { "id": "NPUB30086", "name": "Namco Museum Essentials" }, { "id": "NPUB30087", "name": "Final Fight: Double Impact" }, { "id": "NPUB30089", "name": "Digger HD" }, { "id": "NPUB30091", "name": "Shatter" }, { "id": "NPUB30092", "name": "Crystal Defenders" }, { "id": "NPUB30093", "name": "Hasbro Family Game Night" }, { "id": "NPUB30096", "name": "Hard Corps: Uprising" }, { "id": "NPUB30097", "name": "Smash Cars" }, { "id": "NPUB30098", "name": "Wakeboarding HD" }, { "id": "NPUB30099", "name": "Mushroom Wars" }, { "id": "NPUB30100", "name": "Interpol: The Trail of Dr. Chaos" }, { "id": "NPUB30101", "name": "Hamster Ball" }, { "id": "NPUB30102", "name": "Matt Hazard: Blood Bath and Beyond" }, { "id": "NPUB30104", "name": "Inferno Pool" }, { "id": "NPUB30105", "name": "Soldner X-2: Final Prototype" }, { "id": "NPUB30106", "name": "Anarchy: Rush Hour" }, { "id": "NPUB30107", "name": "Teenage Mutant Ninja Turtles: Turtles In Time Re-Shelled" }, { "id": "NPUB30110", "name": "Pinballistik" }, { "id": "NPUB30112", "name": "Rush'N Attack Ex-Patriot" }, { "id": "NPUB30113", "name": "Polar Panic" }, { "id": "NPUB30114", "name": "Mega Man 10" }, { "id": "NPUB30116", "name": "Top Gun" }, { "id": "NPUB30118", "name": "Frogger Returns" }, { "id": "NPUB30120", "name": "Earthworm Jim HD" }, { "id": "NPUB30123", "name": "Rocket Knight" }, { "id": "NPUB30125", "name": "Puzzlegeddon" }, { "id": "NPUB30126", "name": "BattleFantasia" }, { "id": "NPUB30127", "name": "Sonic the Hedgehog 4: Episode I" }, { "id": "NPUB30130", "name": "Greed Corp" }, { "id": "NPUB30131", "name": "Bionic Commando Rearmed 2" }, { "id": "NPUB30133", "name": "Braid" }, { "id": "NPUB30134", "name": "Madden NFL Arcade" }, { "id": "NPUB30140", "name": "Days of Thunder: NASCAR Edition" }, { "id": "NPUB30141", "name": "Alien Breed: Impact" }, { "id": "NPUB30142", "name": "Record of Agarest War" }, { "id": "NPUB30144", "name": "Sky Fighter" }, { "id": "NPUB30145", "name": "Death Track: Resurrection" }, { "id": "NPUB30146", "name": "NBA Unrivaled" }, { "id": "NPUB30147", "name": "Fret Nice" }, { "id": "NPUB30148", "name": "Super Stacker Party" }, { "id": "NPUB30151", "name": "After Burner Climax" }, { "id": "NPUB30152", "name": "Spelunker HD" }, { "id": "NPUB30154", "name": "Tank Battles" }, { "id": "NPUB30155", "name": "TV Show King" }, { "id": "NPUB30156", "name": "3D Ultra Mini Golf Adventures 2" }, { "id": "NPUB30158", "name": "Brain Challenge" }, { "id": "NPUB30159", "name": "Blue Toad Murder Files: The Mysteries of Little Riddle" }, { "id": "NPUB30160", "name": "UNO" }, { "id": "NPUB30161", "name": "Section 8" }, { "id": "NPUB30162", "name": "Scott Pilgrim vs. the World: The Game" }, { "id": "NPUB30165", "name": "DeathSpank" }, { "id": "NPUB30167", "name": "The Price is Right" }, { "id": "NPUB30172", "name": "Ricochet" }, { "id": "NPUB30174", "name": "Might & Magic: Clash of Heroes" }, { "id": "NPUB30181", "name": "Castle Crashers" }, { "id": "NPUB30182", "name": "Marvel Pinball" }, { "id": "NPUB30183", "name": "Kickbeat" }, { "id": "NPUB30185", "name": "Sam & Max: The Devil's Playhouse Episode 1: The Penal Zone" }, { "id": "NPUB30186", "name": "Voodoo Dice" }, { "id": "NPUB30188", "name": "Family Feud" }, { "id": "NPUB30189", "name": "Hyperballoid HD" }, { "id": "NPUB30192", "name": "Dream Chronicles" }, { "id": "NPUB30203", "name": "Aqua Panic!" }, { "id": "NPUB30206", "name": "Joe Danger" }, { "id": "NPUB30210", "name": "Storm" }, { "id": "NPUB30217", "name": "Dragon's Lair" }, { "id": "NPUB30219", "name": "Sam & Max: The Devil's Playhouse Episode 2: The Tomb of Sammun-M" }, { "id": "NPUB30220", "name": "Sam & Max: The Devil's Playhouse Episode 3: They Stole Max's Brain!" }, { "id": "NPUB30221", "name": "Sam & Max: The Devil's Playhouse Episode 4: Beyond the Alley o'D" }, { "id": "NPUB30222", "name": "Sam & Max: The Devil's Playhouse Episode 5: The City That Dares" }, { "id": "NPUB30223", "name": "Test Yourself" }, { "id": "NPUB30224", "name": "Blacklight Tango Down Online" }, { "id": "NPUB30225", "name": "Lara Croft and the Guardian of Light" }, { "id": "NPUB30226", "name": "Tetris" }, { "id": "NPUB30227", "name": "Dungeon Hunter Alliance" }, { "id": "NPUB30228", "name": "Lead and Gold: Gangs of the Wild West" }, { "id": "NPUB30230", "name": "Worms 2: Armageddon" }, { "id": "NPUB30231", "name": "Kick-Ass: The Game" }, { "id": "NPUB30232", "name": "Shank" }, { "id": "NPUB30233", "name": "Hydrophobia Prophecy" }, { "id": "NPUB30235", "name": "Labyrinth Legends" }, { "id": "NPUB30242", "name": "Crazy Taxi" }, { "id": "NPUB30243", "name": "Tecmo Bowl Throwback" }, { "id": "NPUB30245", "name": "Auditorium HD" }, { "id": "NPUB30248", "name": "Elemental Monster: Online Card Game" }, { "id": "NPUB30249", "name": "Sonic Adventure" }, { "id": "NPUB30250", "name": "Faery: Legends of Avalon" }, { "id": "NPUB30251", "name": "Dungeon Defenders" }, { "id": "NPUB30252", "name": "Gotham City Imposters" }, { "id": "NPUB30253", "name": "Blade Kitten" }, { "id": "NPUB30255", "name": "My Aquarium" }, { "id": "NPUB30257", "name": "NEOGEO STATION League Bowling" }, { "id": "NPUB30258", "name": "Metal Slug NEOGEO" }, { "id": "NPUB30259", "name": "NEOGEO STATION Super Sidekicks" }, { "id": "NPUB30260", "name": "Fatal Fury: King of Fighters" }, { "id": "NPUB30261", "name": "Art of Fighting" }, { "id": "NPUB30262", "name": "Baseball Stars Professional" }, { "id": "NPUB30263", "name": "Alpha Mission II" }, { "id": "NPUB30264", "name": "Magician Lord" }, { "id": "NPUB30265", "name": "Samurai Shodown" }, { "id": "NPUB30266", "name": "NEOGEO STATION The King Of Fighters '94" }, { "id": "NPUB30267", "name": "Costume Quest" }, { "id": "NPUB30268", "name": "Modern Combat: Domination" }, { "id": "NPUB30269", "name": "Dead Space: Ignition" }, { "id": "NPUB30275", "name": "Absolute Supercars" }, { "id": "NPUB30278", "name": "TNT Racers" }, { "id": "NPUB30280", "name": "Retro/Grade" }, { "id": "NPUB30283", "name": "Tales of Monkey Island 1: Launch of the Screaming Narwhal" }, { "id": "NPUB30284", "name": "Tales of Monkey Island 2: The Siege of Spinner Cay" }, { "id": "NPUB30285", "name": "Tales of Monkey Island 3: Lair of the Leviathan" }, { "id": "NPUB30286", "name": "Tales of Monkey Island 4: The Trial and Execution of Guybrush Threepwood" }, { "id": "NPUB30287", "name": "Tales of Monkey Island 5: Rise of the Pirate God" }, { "id": "NPUB30288", "name": "Medal of Honor: Frontline" }, { "id": "NPUB30290", "name": "Stacking" }, { "id": "NPUB30292", "name": "DeathSpank: Thongs of Virtue" }, { "id": "NPUB30295", "name": "Red Faction: Guerrilla" }, { "id": "NPUB30296", "name": "Red Faction: Battlegrounds" }, { "id": "NPUB30297", "name": "The UnderGarden" }, { "id": "NPUB30301", "name": "Street Fighter III: Third Strike Online Edition" }, { "id": "NPUB30302", "name": "Crysis" }, { "id": "NPUB30303", "name": "Prince of Persia: The Sands of Time HD" }, { "id": "NPUB30304", "name": "Pac-Man Championship Edition DX" }, { "id": "NPUB30305", "name": "Space Invaders Infinity Game" }, { "id": "NPUB30308", "name": "All Zombies Must Die!" }, { "id": "NPUB30309", "name": "Deadliest Warrior: The Game" }, { "id": "NPUB30310", "name": "Spare Parts" }, { "id": "NPUB30311", "name": "Tales from Space: About a Blob" }, { "id": "NPUB30312", "name": "Resident Evil 4 HD" }, { "id": "NPUB30314", "name": "Dead Space: Extraction" }, { "id": "NPUB30315", "name": "Joe Danger" }, { "id": "NPUB30318", "name": "Dungeons & Dragons: Daggerdale" }, { "id": "NPUB30320", "name": "X-Men - The Arcade Game" }, { "id": "NPUB30321", "name": "Galaga Legions DX" }, { "id": "NPUB30323", "name": "Alex Kidd In Miracle World" }, { "id": "NPUB30324", "name": "Monster World IV" }, { "id": "NPUB30326", "name": "Super Hang-On" }, { "id": "NPUB30327", "name": "Wonder Boy in Monster World" }, { "id": "NPUB30330", "name": "Magic: The Gathering - Duels of the Planeswalkers" }, { "id": "NPUB30331", "name": "Trine 2" }, { "id": "NPUB30333", "name": "MicroBot" }, { "id": "NPUB30335", "name": "Alien Breed 2: Assault" }, { "id": "NPUB30336", "name": "Alien Breed 3: Descent" }, { "id": "NPUB30337", "name": "Dead Space: Extraction" }, { "id": "NPUB30338", "name": "Superstars V8 Racing" }, { "id": "NPUB30339", "name": "Funky Lab Rat" }, { "id": "NPUB30340", "name": "Dungeon Twister" }, { "id": "NPUB30343", "name": "The Fancy Pants Adventures" }, { "id": "NPUB30345", "name": "Moon Diver" }, { "id": "NPUB30346", "name": "Swarm" }, { "id": "NPUB30347", "name": "4 Elements HD" }, { "id": "NPUB30350", "name": "Cubixx HD" }, { "id": "NPUB30352", "name": "SEGA Bass Fishing" }, { "id": "NPUB30358", "name": "Batman: Arkham City" }, { "id": "NPUB30365", "name": "Ghostbusters: Sanctum of Slime" }, { "id": "NPUB30367", "name": "Blokus" }, { "id": "NPUB30368", "name": "Jeremy McGrath's Offroad" }, { "id": "NPUB30370", "name": "Tomb Raider: Underworld" }, { "id": "NPUB30372", "name": "Chime Super Deluxe" }, { "id": "NPUB30373", "name": "LIMBO" }, { "id": "NPUB30375", "name": "SEGA Rally Online Arcade" }, { "id": "NPUB30376", "name": "Kung-Fu Live" }, { "id": "NPUB30377", "name": "BloodRayne: Betrayal" }, { "id": "NPUB30378", "name": "Hollywood Squares" }, { "id": "NPUB30382", "name": "Ferrari: The Race Experience" }, { "id": "NPUB30383", "name": "I Am Alive" }, { "id": "NPUB30384", "name": "BurgerTime: World Tour" }, { "id": "NPUB30385", "name": "Worms Crazy Golf" }, { "id": "NPUB30386", "name": "Space Ace" }, { "id": "NPUB30387", "name": "Prince of Persia: The Two Thrones" }, { "id": "NPUB30388", "name": "Prince of Persia - Warrior Within" }, { "id": "NPUB30389", "name": "Prototype" }, { "id": "NPUB30390", "name": "Dragon's Lair II: Time Warp" }, { "id": "NPUB30391", "name": "RISK Factions" }, { "id": "NPUB30392", "name": "BioShock 2" }, { "id": "NPUB30395", "name": "StrongBad's Cool Game For Attractive People - Episode 1: Homestar Ruiner" }, { "id": "NPUB30401", "name": "Back to the Future: The Game - Episode 1: It's About Time" }, { "id": "NPUB30403", "name": "StarDrone" }, { "id": "NPUB30408", "name": "Magic: The Gathering - Duels of the Planeswalkers 2012" }, { "id": "NPUB30409", "name": "Back to the Future: The Game - Episode 2: Get Tannen" }, { "id": "NPUB30410", "name": "Back to the Future: The Game - Episode 3: Citizen Brown" }, { "id": "NPUB30411", "name": "Back to the Future: The Game - Episode 4: Double Visions" }, { "id": "NPUB30412", "name": "Back to the Future: The Game - Episode 5: OUTATIME" }, { "id": "NPUB30413", "name": "Borderlands" }, { "id": "NPUB30417", "name": "Tetris" }, { "id": "NPUB30418", "name": "From Dust" }, { "id": "NPUB30419", "name": "Mercury Hg" }, { "id": "NPUB30420", "name": "Star Raiders" }, { "id": "NPUB30422", "name": "Hoard" }, { "id": "NPUB30423", "name": "Assassin's Creed II" }, { "id": "NPUB30424", "name": "Prince of Persia" }, { "id": "NPUB30425", "name": "Arcana Heart 3" }, { "id": "NPUB30426", "name": "Red Johnson's Chronicles" }, { "id": "NPUB30428", "name": "Elevator Action Deluxe" }, { "id": "NPUB30431", "name": "Warlords" }, { "id": "NPUB30433", "name": "Crazy Machines Elements" }, { "id": "NPUB30434", "name": "Rainbow Moon" }, { "id": "NPUB30439", "name": "Puddle" }, { "id": "NPUB30441", "name": "SEGA Vintage Collection: Golden Axe" }, { "id": "NPUB30442", "name": "Sonic the Hedgehog" }, { "id": "NPUB30443", "name": "Sonic the Hedgehog 2" }, { "id": "NPUB30444", "name": "Streets of Rage II" }, { "id": "NPUB30446", "name": "Wanted Corp." }, { "id": "NPUB30448", "name": "Nelson Tethers: Puzzle Agent" }, { "id": "NPUB30449", "name": "Pure" }, { "id": "NPUB30450", "name": "Split Second" }, { "id": "NPUB30451", "name": "Assassin's Creed" }, { "id": "NPUB30452", "name": "Wizardry: Labyrinth of Lost Souls" }, { "id": "NPUB30453", "name": "Eufloria" }, { "id": "NPUB30454", "name": "Gatling Gears" }, { "id": "NPUB30455", "name": "Tom Clancy's Splinter Cell: Pandora Tomorrow HD" }, { "id": "NPUB30456", "name": "Tom Clancy's Splinter Cell HD" }, { "id": "NPUB30457", "name": "Ridge Racer 7 3D" }, { "id": "NPUB30458", "name": "Hamilton's Great Adventure" }, { "id": "NPUB30459", "name": "SEGA Vintage Collection: Altered Beast" }, { "id": "NPUB30460", "name": "SEGA Vintage Collection: Comix Zone" }, { "id": "NPUB30461", "name": "Learning With the PooYoos: Episode 1" }, { "id": "NPUB30463", "name": "Apples to Apples" }, { "id": "NPUB30464", "name": "Burnout CRASH!" }, { "id": "NPUB30466", "name": "De Blob 2" }, { "id": "NPUB30467", "name": "Resident Evil Code: Veronica X HD" }, { "id": "NPUB30468", "name": "Mortal Kombat Arcade Kollection" }, { "id": "NPUB30470", "name": "Battle: Los Angeles" }, { "id": "NPUB30471", "name": "Midnight Club: Los Angeles" }, { "id": "NPUB30473", "name": "Warhammer 40,000: Kill Team" }, { "id": "NPUB30474", "name": "Time Machine: Rogue Pilot" }, { "id": "NPUB30475", "name": "Dragon Age: Origins" }, { "id": "NPUB30476", "name": "Dragon Age II" }, { "id": "NPUB30477", "name": "Dead Space 2" }, { "id": "NPUB30478", "name": "Dante's Inferno" }, { "id": "NPUB30480", "name": "Twisted Land: Shadow Town" }, { "id": "NPUB30481", "name": "Mix Superstar" }, { "id": "NPUB30482", "name": "Dead Block" }, { "id": "NPUB30483", "name": "Sine Mora" }, { "id": "NPUB30484", "name": "SkyDrift" }, { "id": "NPUB30490", "name": "Deadliest Warrior: Legends" }, { "id": "NPUB30491", "name": "Ugly Americans: Apocalypsegeddon" }, { "id": "NPUB30493", "name": "Daytona USA" }, { "id": "NPUB30494", "name": "Wonder Boy in Monster Land" }, { "id": "NPUB30498", "name": "Sam & Max: Beyond Time and Space Episode 1: Ice Station Santa" }, { "id": "NPUB30499", "name": "Jurassic Park The Game - Episode 1" }, { "id": "NPUB30502", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2" }, { "id": "NPUB30503", "name": "Tom Clancy's Rainbow Six: Vegas 2" }, { "id": "NPUB30505", "name": "Castlevania: Harmony of Despair" }, { "id": "NPUB30506", "name": "Zombie Apocalypse: Never Die Alone" }, { "id": "NPUB30509", "name": "EA Sports MMA" }, { "id": "NPUB30510", "name": "Armageddon Riders" }, { "id": "NPUB30513", "name": "The Baconing" }, { "id": "NPUB30514", "name": "Okabu" }, { "id": "NPUB30515", "name": "Machinarium" }, { "id": "NPUB30517", "name": "Sam & Max: Beyond Time and Space Episode 2: Moai Better Blues" }, { "id": "NPUB30518", "name": "Sam & Max: Beyond Time and Space Episode 3: Night of the Raving" }, { "id": "NPUB30519", "name": "Sam & Max: Beyond Time and Space Episode 4: Chariots of the Dogs" }, { "id": "NPUB30520", "name": "Sam & Max: Beyond Time and Space Episode 5: What's New Beelzebub" }, { "id": "NPUB30521", "name": "Need for Speed: Hot Pursuit" }, { "id": "NPUB30522", "name": "Assassin's Creed: Brotherhood" }, { "id": "NPUB30523", "name": "Far Cry 2" }, { "id": "NPUB30524", "name": "Voltron: Defender of the Universe" }, { "id": "NPUB30525", "name": "Puzzle Dimension" }, { "id": "NPUB30528", "name": "Tiger Woods PGA Tour 12: The Masters" }, { "id": "NPUB30532", "name": "Deep Black" }, { "id": "NPUB30534", "name": "Scene It? Movie Night" }, { "id": "NPUB30536", "name": "Babel Rising" }, { "id": "NPUB30537", "name": "CastleStorm" }, { "id": "NPUB30539", "name": "Shift 2: Unleashed" }, { "id": "NPUB30543", "name": "Warp" }, { "id": "NPUB30544", "name": "Bulletstorm" }, { "id": "NPUB30545", "name": "Alice: Madness Returns" }, { "id": "NPUB30547", "name": "NCAA Football 12" }, { "id": "NPUB30552", "name": "Beat Hazard Ultra" }, { "id": "NPUB30555", "name": "Toy Story 3" }, { "id": "NPUB30556", "name": "Bolt" }, { "id": "NPUB30557", "name": "Cars 2" }, { "id": "NPUB30558", "name": "NBA Jam: On Fire Edition" }, { "id": "NPUB30560", "name": "LEGO Pirates of the Caribbean: The Video Game" }, { "id": "NPUB30562", "name": "Max & the Magic Marker: Gold Edition" }, { "id": "NPUB30563", "name": "The Simpsons Arcade Game" }, { "id": "NPUB30564", "name": "Resident Evil 5: Gold Edition" }, { "id": "NPUB30565", "name": "Brothers in Arms: Hell's Highway" }, { "id": "NPUB30566", "name": "James Cameron's Avatar The Game" }, { "id": "NPUB30569", "name": "Dead Space" }, { "id": "NPUB30570", "name": "FIFA 12" }, { "id": "NPUB30571", "name": "Hasbro Family Game Night 3" }, { "id": "NPUB30572", "name": "Homefront" }, { "id": "NPUB30573", "name": "Zen Pinball 2" }, { "id": "NPUB30575", "name": "Saints Row 2" }, { "id": "NPUB30576", "name": "Warhammer 40,000: Space Marine" }, { "id": "NPUB30577", "name": "Awesomenauts" }, { "id": "NPUB30578", "name": "Frogger Hyper Arcade Edition" }, { "id": "NPUB30579", "name": "Sonic Adventure 2 HD Trial" }, { "id": "NPUB30580", "name": "The House of the Dead III" }, { "id": "NPUB30581", "name": "Sonic the Hedgehog 4 - Episode II" }, { "id": "NPUB30582", "name": "Red Johnson's Chronicles" }, { "id": "NPUB30583", "name": "Battlefield: Bad Company 2" }, { "id": "NPUB30584", "name": "Call of Duty: Black Ops" }, { "id": "NPUB30588", "name": "Call of Duty 4: Modern Warfare" }, { "id": "NPUB30589", "name": "Counter Strike: Global Offensive" }, { "id": "NPUB30590", "name": "Tekken Tag Tournament HD" }, { "id": "NPUB30591", "name": "Tekken Tag Tournament 2 Prologue" }, { "id": "NPUB30592", "name": "Monopoly Streets" }, { "id": "NPUB30593", "name": "Darksiders" }, { "id": "NPUB30594", "name": "Mortal Kombat vs. DC Universe" }, { "id": "NPUB30597", "name": "Rocketbirds: Hardboiled Chicken" }, { "id": "NPUB30600", "name": "Shoot Many Robots" }, { "id": "NPUB30601", "name": "Quantum Conundrum" }, { "id": "NPUB30603", "name": "The House of the Dead 4" }, { "id": "NPUB30605", "name": "Real Steel" }, { "id": "NPUB30606", "name": "Just Cause 2" }, { "id": "NPUB30612", "name": "Learning With the PooYoos: Episode 2" }, { "id": "NPUB30613", "name": "AMY" }, { "id": "NPUB30614", "name": "Orc Attack: Flatulent Rebellion" }, { "id": "NPUB30616", "name": "Bang Bang Racing" }, { "id": "NPUB30617", "name": "Tales from Space: Mutant Blobs Attack" }, { "id": "NPUB30619", "name": "Choplifter HD" }, { "id": "NPUB30620", "name": "Papo & Yo" }, { "id": "NPUB30621", "name": "Bellator: MMA Onslaught" }, { "id": "NPUB30623", "name": "JAM Live Music Arcade" }, { "id": "NPUB30624", "name": "Sonic CD" }, { "id": "NPUB30625", "name": "Virtua Fighter 5: Final Showdown" }, { "id": "NPUB30626", "name": "Planets Under Attack" }, { "id": "NPUB30627", "name": "Magic: The Gathering - Duels of the Planeswalkers 2013" }, { "id": "NPUB30630", "name": "Red Johnson's Chronicles - One Against All" }, { "id": "NPUB30631", "name": "Phineas and Ferb Across the 2nd Dimension" }, { "id": "NPUB30632", "name": "Prince of Persia: The Forgotten Sands" }, { "id": "NPUB30637", "name": "Call of Juarez: Bound in Blood" }, { "id": "NPUB30638", "name": "Red Dead Redemption" }, { "id": "NPUB30639", "name": "Red Dead Redemption: Undead Nightmare" }, { "id": "NPUB30643", "name": "Dust 514" }, { "id": "NPUB30645", "name": "Skullgirls Trial" }, { "id": "NPUB30648", "name": "Resident Evil: The Darkside Chronicles" }, { "id": "NPUB30649", "name": "Super Street Fighter 4" }, { "id": "NPUB30650", "name": "Resident Evil: Umbrella Chronicles" }, { "id": "NPUB30656", "name": "Mafia II" }, { "id": "NPUB30657", "name": "Crazy Strike Bowling" }, { "id": "NPUB30660", "name": "World Gone Sour" }, { "id": "NPUB30661", "name": "Rayman Origins" }, { "id": "NPUB30662", "name": "Crysis 2: Maximum Edition" }, { "id": "NPUB30664", "name": "Need for Speed: The Run" }, { "id": "NPUB30665", "name": "NFL Blitz" }, { "id": "NPUB30666", "name": "Darkstalkers Resurrection" }, { "id": "NPUB30671", "name": "Mad Dog McCree" }, { "id": "NPUB30672", "name": "Guacamelee!" }, { "id": "NPUB30674", "name": "Foosball 2012" }, { "id": "NPUB30676", "name": "The Cave" }, { "id": "NPUB30680", "name": "DiRT 3" }, { "id": "NPUB30681", "name": "Zack Zero" }, { "id": "NPUB30682", "name": "Dead Rising 2: Off The Record" }, { "id": "NPUB30685", "name": "Kane & Lynch 2: Dog Days" }, { "id": "NPUB30686", "name": "Mini Ninjas" }, { "id": "NPUB30692", "name": "Clan of Champions" }, { "id": "NPUB30696", "name": "Ion Assault HD" }, { "id": "NPUB30698", "name": "Catherine" }, { "id": "NPUB30699", "name": "Scarygirl" }, { "id": "NPUB30700", "name": "Saints Row: The Third" }, { "id": "NPUB30707", "name": "Assassin's Creed: Revelations" }, { "id": "NPUB30708", "name": "Warriors Orochi 3" }, { "id": "NPUB30709", "name": "Rotastic" }, { "id": "NPUB30712", "name": "Mad Riders" }, { "id": "NPUB30713", "name": "The Pinball Arcade" }, { "id": "NPUB30714", "name": "Rayman 3 HD" }, { "id": "NPUB30718", "name": "The Expendables 2 Videogame" }, { "id": "NPUB30719", "name": "Black Knight Sword" }, { "id": "NPUB30720", "name": "Okami HD" }, { "id": "NPUB30722", "name": "Closure" }, { "id": "NPUB30724", "name": "Bayonetta" }, { "id": "NPUB30729", "name": "Wheels of Destruction" }, { "id": "NPUB30733", "name": "BIT.TRIP Presents...Runner2: Future Legend of Rhythm Alien" }, { "id": "NPUB30736", "name": "Girl Fight" }, { "id": "NPUB30737", "name": "Far Cry Classic Trial" }, { "id": "NPUB30741", "name": "The Walking Dead" }, { "id": "NPUB30742", "name": "Battlefield 3" }, { "id": "NPUB30743", "name": "Toki Tori" }, { "id": "NPUB30744", "name": "Hitman: Absolution" }, { "id": "NPUB30745", "name": "Binary Domain" }, { "id": "NPUB30746", "name": "Spartacus Legends" }, { "id": "NPUB30747", "name": "Tiger Woods PGA Tour 13" }, { "id": "NPUB30749", "name": "Rock Band Blitz" }, { "id": "NPUB30750", "name": "Hell Yeah! Wrath of the Dead Rabbit" }, { "id": "NPUB30751", "name": "Doctor Who: The Eternity Clock" }, { "id": "NPUB30753", "name": "NCAA Football 13" }, { "id": "NPUB30754", "name": "Batman: Arkham City" }, { "id": "NPUB30755", "name": "Way of the Samurai 4" }, { "id": "NPUB30757", "name": "Crysis 3" }, { "id": "NPUB30759", "name": "Medal of Honor: Warfighter" }, { "id": "NPUB30761", "name": "NHL 12" }, { "id": "NPUB30764", "name": "Double Dragon Neon" }, { "id": "NPUB30765", "name": "Doc Clock - The Toasted Sandwich of Time" }, { "id": "NPUB30766", "name": "Dragon Age: Inquisition" }, { "id": "NPUB30768", "name": "JoJo's Bizarre Adventure HD" }, { "id": "NPUB30769", "name": "Capcom Arcade Cabinet" }, { "id": "NPUB30771", "name": "Record of Agarest War 2" }, { "id": "NPUB30773", "name": "Bejeweled 3" }, { "id": "NPUB30776", "name": "Record of Agarest War Zero" }, { "id": "NPUB30778", "name": "Michael Jackson: The Experience" }, { "id": "NPUB30779", "name": "Hitman Contracts HD" }, { "id": "NPUB30780", "name": "Hitman 2: Slient Assassin HD" }, { "id": "NPUB30781", "name": "Hitman: Blood Money HD" }, { "id": "NPUB30783", "name": "Pure Chess" }, { "id": "NPUB30784", "name": "Tom Clancy's Ghost Recon: Future Soldier" }, { "id": "NPUB30786", "name": "Spec Ops: The Line" }, { "id": "NPUB30787", "name": "Call of Duty: Modern Warfare 3" }, { "id": "NPUB30789", "name": "Need for Speed: Most Wanted" }, { "id": "NPUB30793", "name": "Realms of Ancient War" }, { "id": "NPUB30796", "name": "ToeJam and Earl" }, { "id": "NPUB30797", "name": "ToeJam and Earl in Panic on Funkotron" }, { "id": "NPUB30798", "name": "NiGHTS into dreams..." }, { "id": "NPUB30800", "name": "Psych Yourself" }, { "id": "NPUB30801", "name": "Prototype 2" }, { "id": "NPUB30802", "name": "Madagascar 3: The Video Game" }, { "id": "NPUB30804", "name": "Two Worlds II GOTY" }, { "id": "NPUB30806", "name": "CSI: Fatal Conspiracy" }, { "id": "NPUB30807", "name": "LEGO Batman 2: DC Super Heroes" }, { "id": "NPUB30808", "name": "Doom Classic Complete" }, { "id": "NPUB30809", "name": "Brave: The Video Game" }, { "id": "NPUB30815", "name": "Air Conflicts: Secret Wars" }, { "id": "NPUB30817", "name": "Worms Revolution" }, { "id": "NPUB30818", "name": "Sleeping Dogs" }, { "id": "NPUB30819", "name": "Big Sky Infinity" }, { "id": "NPUB30820", "name": "Knytt Underground" }, { "id": "NPUB30824", "name": "Transformers: Fall of Cybertron" }, { "id": "NPUB30825", "name": "Far Cry 3" }, { "id": "NPUB30826", "name": "Assassin's Creed III" }, { "id": "NPUB30828", "name": "Naughty Bear: Panic in Paradise" }, { "id": "NPUB30829", "name": "Jet Set Radio" }, { "id": "NPUB30830", "name": "DmC: Devil May Cry" }, { "id": "NPUB30832", "name": "The Amazing Spider-Man" }, { "id": "NPUB30834", "name": "Anomaly Warzone Earth" }, { "id": "NPUB30835", "name": "FIFA 13" }, { "id": "NPUB30836", "name": "One Piece: Pirate Warriors" }, { "id": "NPUB30837", "name": "The King of Fighters XIII" }, { "id": "NPUB30838", "name": "Mirror's Edge" }, { "id": "NPUB30839", "name": "Retro City Rampage" }, { "id": "NPUB30840", "name": "Guardians of the Middle-Earth" }, { "id": "NPUB30843", "name": "Champion Jockey: G1 Jockey & Gallop Racer" }, { "id": "NPUB30845", "name": "Dynasty Warriors 6 Empires" }, { "id": "NPUB30846", "name": "Dynasty Warriors 7 Empires" }, { "id": "NPUB30847", "name": "Dynasty Warriors 7: Xtreme Legends" }, { "id": "NPUB30849", "name": "Fist of the North Star: Ken's Rage 2" }, { "id": "NPUB30851", "name": "Ninja Gaiden Sigma" }, { "id": "NPUB30856", "name": "Dyad" }, { "id": "NPUB30857", "name": "Disney Epic Mickey 2: The Power of Two" }, { "id": "NPUB30859", "name": "Zombie Tycoon 2 Brainhov Revenge" }, { "id": "NPUB30860", "name": "Legasista" }, { "id": "NPUB30861", "name": "American Mensa Academy" }, { "id": "NPUB30863", "name": "Alien Rage" }, { "id": "NPUB30864", "name": "Sacred Citadel" }, { "id": "NPUB30865", "name": "Dance Magic" }, { "id": "NPUB30867", "name": "Adam's Venture Chronicles" }, { "id": "NPUB30869", "name": "Carnivores HD: Dinosaur Hunter" }, { "id": "NPUB30872", "name": "Zeno Clash II" }, { "id": "NPUB30874", "name": "Fuse" }, { "id": "NPUB30876", "name": "Alien Spidy" }, { "id": "NPUB30878", "name": "A-Men" }, { "id": "NPUB30881", "name": "Zuma's Revenge!" }, { "id": "NPUB30882", "name": "Germinator" }, { "id": "NPUB30886", "name": "Family Guy Back To The Multiverse" }, { "id": "NPUB30888", "name": "Dishonored" }, { "id": "NPUB30892", "name": "SSX" }, { "id": "NPUB30898", "name": "Borderlands 2" }, { "id": "NPUB30899", "name": "Tekken Tag Tournament 2" }, { "id": "NPUB30902", "name": "Max Payne 3" }, { "id": "NPUB30903", "name": "Yu-Gi-Oh! 5D's Decade Duels Plus" }, { "id": "NPUB30905", "name": "Pid" }, { "id": "NPUB30906", "name": "Dead Space 3" }, { "id": "NPUB30910", "name": "Demon's Souls" }, { "id": "NPUB30911", "name": "Rune Factory - Tides of Destiny" }, { "id": "NPUB30913", "name": "Tom Clancy's EndWar" }, { "id": "NPUB30916", "name": "Heavy Fire: Afghanistan" }, { "id": "NPUB30919", "name": "Mountain Crime: Requital" }, { "id": "NPUB30920", "name": "Batman: Arkham Asylum" }, { "id": "NPUB30922", "name": "Zombie Driver HD" }, { "id": "NPUB30923", "name": "Persona 4 Arena" }, { "id": "NPUB30926", "name": "Derrick The Deadfin" }, { "id": "NPUB30927", "name": "Sonic the Fighters" }, { "id": "NPUB30929", "name": "Fighting Vipers" }, { "id": "NPUB30930", "name": "F1 Race Stars" }, { "id": "NPUB30932", "name": "Ni no Kuni: Wrath of the White Witch" }, { "id": "NPUB30933", "name": "Magic: Duels of the Planeswalkers 2014" }, { "id": "NPUB30934", "name": "Mamorukun Curse!" }, { "id": "NPUB30935", "name": "Oddworld: Munch's Oddysee HD" }, { "id": "NPUB30938", "name": "Dollar Da$h" }, { "id": "NPUB30940", "name": "Mad Dog II: The Lost Gold" }, { "id": "NPUB30943", "name": "Terraria" }, { "id": "NPUB30957", "name": "Guilty Gear XX A Core Plus" }, { "id": "NPUB30958", "name": "Ibb & Obb" }, { "id": "NPUB30966", "name": "Page Choronica" }, { "id": "NPUB30977", "name": "Voodoo Chronicles: The First Sign" }, { "id": "NPUB30978", "name": "LEGO The Lord of the Rings" }, { "id": "NPUB30981", "name": "Jeopardy!" }, { "id": "NPUB30982", "name": "Wheel of Fortune" }, { "id": "NPUB30985", "name": "LEGO Harry Potter: Years 5-7" }, { "id": "NPUB30987", "name": "Army of TWO: The Devil's Cartel" }, { "id": "NPUB30988", "name": "Devil May Cry HD Collection" }, { "id": "NPUB30989", "name": "Brothers: A Tale of Two Sons" }, { "id": "NPUB30993", "name": "Dog Fights 1942" }, { "id": "NPUB31052", "name": "Mass Effect" }, { "id": "NPUB31053", "name": "The Walking Dead: Survival Instinct" }, { "id": "NPUB31054", "name": "Call of Duty: Black Ops 2" }, { "id": "NPUB31062", "name": "Under Defeat HD: Deluxe Edition" }, { "id": "NPUB31064", "name": "Joe Danger 2" }, { "id": "NPUB31067", "name": "Naughty Bear: Gold Edition" }, { "id": "NPUB31069", "name": "Deadpool" }, { "id": "NPUB31071", "name": "Aliens: Colonial Marines" }, { "id": "NPUB31075", "name": "GRID 2" }, { "id": "NPUB31078", "name": "Karateka" }, { "id": "NPUB31079", "name": "Call of Juarez: Gunslinger" }, { "id": "NPUB31083", "name": "Final Fantasy XIII-2" }, { "id": "NPUB31085", "name": "Alien Breed" }, { "id": "NPUB31092", "name": "Urban Trial Freestyle" }, { "id": "NPUB31096", "name": "Anarchy Reigns" }, { "id": "NPUB31097", "name": "Jetpack Joyride" }, { "id": "NPUB31099", "name": "Castle of Illusion: Starring Mickey Mouse" }, { "id": "NPUB31105", "name": "Racquet Sports" }, { "id": "NPUB31117", "name": "Dragon's Dogma: Dark Arisen" }, { "id": "NPUB31118", "name": "Dragon Fantasy Book I" }, { "id": "NPUB31126", "name": "DuckTales Remastered" }, { "id": "NPUB31127", "name": "Dungeons & Dragons: Chronicles of Mystara" }, { "id": "NPUB31129", "name": "Magrunner: Dark Pulse" }, { "id": "NPUB31132", "name": "Star Wars Pinball" }, { "id": "NPUB31133", "name": "Tales of Graces f" }, { "id": "NPUB31134", "name": "Motorbike" }, { "id": "NPUB31136", "name": "Tales of Xillia" }, { "id": "NPUB31139", "name": "Strider" }, { "id": "NPUB31140", "name": "God Mode" }, { "id": "NPUB31142", "name": "Far Cry 3: Blood Dragon" }, { "id": "NPUB31144", "name": "Sniper: Ghost Warrior 2" }, { "id": "NPUB31145", "name": "Dead Island: Riptide" }, { "id": "NPUB31147", "name": "Heavy Fire: Shattered Spear" }, { "id": "NPUB31148", "name": "Battlefield 4" }, { "id": "NPUB31150", "name": "Mars: War Logs" }, { "id": "NPUB31154", "name": "Grand Theft Auto V" }, { "id": "NPUB31155", "name": "Earth Defense Force: Insect Armageddon" }, { "id": "NPUB31160", "name": "The Smurfs 2" }, { "id": "NPUB31161", "name": "Do Not Fall" }, { "id": "NPUB31164", "name": "Earth Defense Force 2025" }, { "id": "NPUB31165", "name": "Serious Sam 3: BFE" }, { "id": "NPUB31177", "name": "Cloudberry Kingdom" }, { "id": "NPUB31179", "name": "Deadly Premonition: The Director's Cut" }, { "id": "NPUB31180", "name": "Castle of Illusion: Starring Mickey Mouse" }, { "id": "NPUB31181", "name": "Injustice: Gods Among Us" }, { "id": "NPUB31183", "name": "Madden NFL 25" }, { "id": "NPUB31184", "name": "Ninja Gaiden 3: Razor's Edge" }, { "id": "NPUB31186", "name": "Eat Lead: The Return of Matt Hazard" }, { "id": "NPUB31188", "name": "Killer Is Dead" }, { "id": "NPUB31189", "name": "Time and Eternity" }, { "id": "NPUB31191", "name": "Hunter's Trophy 2 - America" }, { "id": "NPUB31192", "name": "Hunter's Trophy 2 - Australia" }, { "id": "NPUB31193", "name": "Tales of Symphonia HD" }, { "id": "NPUB31194", "name": "Tales of Symphonia: Dawn of the New World HD" }, { "id": "NPUB31197", "name": "Deathmatch Village" }, { "id": "NPUB31198", "name": "XCOM: Enemy Within Commander Edition" }, { "id": "NPUB31199", "name": "Luftrausers" }, { "id": "NPUB31200", "name": "Hotline Miami" }, { "id": "NPUB31202", "name": "Destiny" }, { "id": "NPUB31204", "name": "Sonic Unleashed" }, { "id": "NPUB31207", "name": "NHL 14" }, { "id": "NPUB31209", "name": "Sanctum 2" }, { "id": "NPUB31210", "name": "Telltale Games' Poker Night 2" }, { "id": "NPUB31217", "name": "Teenage Mutant Ninja Turtles: Out of the Shadows" }, { "id": "NPUB31219", "name": "Metro: Last Light" }, { "id": "NPUB31221", "name": "RIPD The Game" }, { "id": "NPUB31223", "name": "FIFA 14" }, { "id": "NPUB31224", "name": "Fast & Furious: Showdown" }, { "id": "NPUB31225", "name": "Narco Terror" }, { "id": "NPUB31226", "name": "Hakuoki: Stories of the Shinsengumi" }, { "id": "NPUB31227", "name": "Beer Pong!" }, { "id": "NPUB31230", "name": "Ride to Hell: Retribution" }, { "id": "NPUB31231", "name": "Farming Simulator" }, { "id": "NPUB31233", "name": "Wolfenstein 3D" }, { "id": "NPUB31235", "name": "Dragon's Crown" }, { "id": "NPUB31236", "name": "LEGO Marvel: Super Heroes" }, { "id": "NPUB31240", "name": "How to Survive" }, { "id": "NPUB31241", "name": "Hatsune Miku: Project Diva F" }, { "id": "NPUB31243", "name": "Thomas was Alone" }, { "id": "NPUB31244", "name": "Assassin's Creed: Liberation HD" }, { "id": "NPUB31245", "name": "Armored Core: Verdict Day" }, { "id": "NPUB31246", "name": "Assassin's Creed IV: Black Flag" }, { "id": "NPUB31247", "name": "Final Fantasy X/X-2 HD Remaster" }, { "id": "NPUB31248", "name": "Tom Clancy's Splinter Cell: Blacklist" }, { "id": "NPUB31249", "name": "Arcania: The Complete Tale" }, { "id": "NPUB31250", "name": "Tekken Revolution" }, { "id": "NPUB31251", "name": "Drakengard 3" }, { "id": "NPUB31252", "name": "Need for Speed: Rivals" }, { "id": "NPUB31254", "name": "Watch Dogs" }, { "id": "NPUB31255", "name": "Final Fantasy XIV Online: A Realm Reborn" }, { "id": "NPUB31256", "name": "Yaiba: Ninja Gaiden Z" }, { "id": "NPUB31257", "name": "Saints Row IV" }, { "id": "NPUB31258", "name": "Final Exam" }, { "id": "NPUB31259", "name": "Painkiller: Hell & Damnation" }, { "id": "NPUB31260", "name": "Stealth Inc: A Clone in the Dark" }, { "id": "NPUB31261", "name": "Batman: Arkham Origins" }, { "id": "NPUB31262", "name": "Hot Wheels: World's Best Driver" }, { "id": "NPUB31265", "name": "Flashback" }, { "id": "NPUB31266", "name": "The Bureau: XCOM Declassified" }, { "id": "NPUB31270", "name": "Shake Spears!" }, { "id": "NPUB31271", "name": "Atomic Ninjas" }, { "id": "NPUB31272", "name": "Giana Sisters: Twisted Dreams" }, { "id": "NPUB31277", "name": "BlazBlue: Chrono Phantasma" }, { "id": "NPUB31278", "name": "Marvel Puzzle Quest" }, { "id": "NPUB31279", "name": "Divekick" }, { "id": "NPUB31282", "name": "Adventure Time: Explore The Dungeon Because I DON'T KNOW!" }, { "id": "NPUB31283", "name": "Ben 10 Omniverse 2" }, { "id": "NPUB31284", "name": "Thunder Wolves" }, { "id": "NPUB31285", "name": "Murdered: Soul Suspect" }, { "id": "NPUB31287", "name": "Battle of Tiles EX" }, { "id": "NPUB31288", "name": "Spelunky" }, { "id": "NPUB31289", "name": "Dead or Alive 5 Ultimate" }, { "id": "NPUB31290", "name": "Pac-Man and the Ghostly Adventures" }, { "id": "NPUB31291", "name": "Sniper Elite V2" }, { "id": "NPUB31293", "name": "Air Conflicts: Pacific Carriers" }, { "id": "NPUB31294", "name": "Payday 2" }, { "id": "NPUB31295", "name": "One Piece: Pirate Warriors 2" }, { "id": "NPUB31297", "name": "Wolfenstein: The New Order" }, { "id": "NPUB31298", "name": "Stick It To The Man" }, { "id": "NPUB31299", "name": "Diablo III" }, { "id": "NPUB31301", "name": "Call of Duty: Ghosts" }, { "id": "NPUB31306", "name": "South Park: The Stick of Truth" }, { "id": "NPUB31307", "name": "Angry Birds: Star Wars" }, { "id": "NPUB31308", "name": "Cabela's Big Game Hunter: Pro Hunts" }, { "id": "NPUB31309", "name": "Cabela's African Adventures" }, { "id": "NPUB31310", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge" }, { "id": "NPUB31311", "name": "NBA 2K14" }, { "id": "NPUB31313", "name": "Zone of the Enders HD Edition" }, { "id": "NPUB31314", "name": "Zone of the Enders: The 2nd Runner HD Edition" }, { "id": "NPUB31317", "name": "Dragon Fantasy Book II" }, { "id": "NPUB31319", "name": "Splice" }, { "id": "NPUB31320", "name": "The Guided Fate Paradox" }, { "id": "NPUB31322", "name": "Dragon Ball Z: Battle of Z" }, { "id": "NPUB31323", "name": "Just Dance 2014" }, { "id": "NPUB31325", "name": "Lone Survivor: The Director's Cut" }, { "id": "NPUB31335", "name": "Air Conflicts: Vietnam" }, { "id": "NPUB31336", "name": "AquaPazza: AquaPlus Dream Match" }, { "id": "NPUB31339", "name": "Transformers: Rise of the Dark Spark" }, { "id": "NPUB31340", "name": "Chaos Code" }, { "id": "NPUB31341", "name": "Super Motherload" }, { "id": "NPUB31343", "name": "WWE 2K14" }, { "id": "NPUB31345", "name": "SoulCalibur: Lost Swords" }, { "id": "NPUB31346", "name": "R-Type Dimensions" }, { "id": "NPUB31347", "name": "Ace Combat Infinity" }, { "id": "NPUB31350", "name": "Defense Technica (Trial)" }, { "id": "NPUB31351", "name": "The Amazing Spider-Man 2" }, { "id": "NPUB31352", "name": "Castlevania: Lords of Shadow - Mirror of Fate HD" }, { "id": "NPUB31354", "name": "Anna - Extended Edition" }, { "id": "NPUB31358", "name": "Dark Souls 2" }, { "id": "NPUB31359", "name": "Kung Fu Rabbit" }, { "id": "NPUB31364", "name": "Contrast" }, { "id": "NPUB31365", "name": "Aabs Animals" }, { "id": "NPUB31366", "name": "Soul Calibur II HD Online" }, { "id": "NPUB31367", "name": "Tiny Brains" }, { "id": "NPUB31368", "name": "Dustforce" }, { "id": "NPUB31371", "name": "Raiden IV: OverKill" }, { "id": "NPUB31372", "name": "Castlevania: Lords of Shadow 2" }, { "id": "NPUB31375", "name": "Dynasty Warriors 7" }, { "id": "NPUB31378", "name": "Duke Nukem 3D: Megaton Edition" }, { "id": "NPUB31382", "name": "XBLAZE Code: Embryo" }, { "id": "NPUB31383", "name": "Pac-Man Museum" }, { "id": "NPUB31384", "name": "Young Justice: Legacy" }, { "id": "NPUB31385", "name": "Ethan: Meteor Hunter" }, { "id": "NPUB31387", "name": "Pacific Rim: The Video Game" }, { "id": "NPUB31389", "name": "Hyperdimension Neptunia Victory" }, { "id": "NPUB31391", "name": "JoJo's Bizarre Adventure: All-Star Battle" }, { "id": "NPUB31392", "name": "The Evil Within" }, { "id": "NPUB31394", "name": "Blood Knights" }, { "id": "NPUB31395", "name": "NASCAR '14" }, { "id": "NPUB31396", "name": "Velocity Ultra" }, { "id": "NPUB31397", "name": "Abyss Odyssey" }, { "id": "NPUB31400", "name": "Valiant Hearts: The Great War" }, { "id": "NPUB31401", "name": "The Raven: Legacy of a Master Thief" }, { "id": "NPUB31404", "name": "The Walking Dead: Season 2" }, { "id": "NPUB31406", "name": "Ragnarok Odyssey ACE" }, { "id": "NPUB31407", "name": "Forest Legends: the Call of Love" }, { "id": "NPUB31410", "name": "Slender - The Arrival" }, { "id": "NPUB31413", "name": "Best of Arcade Games" }, { "id": "NPUB31414", "name": "Oddworld: New 'n' Tasty!" }, { "id": "NPUB31415", "name": "Mutant Mudds Deluxe" }, { "id": "NPUB31416", "name": "Rambo: The Video Game" }, { "id": "NPUB31417", "name": "How to Train Your Dragon 2" }, { "id": "NPUB31419", "name": "Minecraft: PlayStation 3 Edition" }, { "id": "NPUB31420", "name": "Ace Combat Infinity" }, { "id": "NPUB31421", "name": "2014 FIFA World Cup Brazil" }, { "id": "NPUB31423", "name": "Backgammon Blitz" }, { "id": "NPUB31424", "name": "The Swapper" }, { "id": "NPUB31425", "name": "Titan Attacks!" }, { "id": "NPUB31428", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky" }, { "id": "NPUB31430", "name": "Child of Light" }, { "id": "NPUB31436", "name": "Middle-earth: Shadow of Mordor" }, { "id": "NPUB31440", "name": "Alien: Isolation" }, { "id": "NPUB31441", "name": "Batman: Arkham Origins: Blackgate: Deluxe Edition" }, { "id": "NPUB31443", "name": "Tales of Xillia 2" }, { "id": "NPUB31445", "name": "Skullgirls Encore" }, { "id": "NPUB31447", "name": "Vessel" }, { "id": "NPUB31448", "name": "FEZ" }, { "id": "NPUB31450", "name": "Assassin's Creed IV: Black Flag: Freedom Cry" }, { "id": "NPUB31453", "name": "Ultratron" }, { "id": "NPUB31455", "name": "Yu-Gi-Oh! Millennium Duels" }, { "id": "NPUB31459", "name": "Bound by Flame" }, { "id": "NPUB31462", "name": "Master Reboot" }, { "id": "NPUB31464", "name": "Mugen Souls Z" }, { "id": "NPUB31466", "name": "Cel Damage HD" }, { "id": "NPUB31467", "name": "R.B.I. Baseball 14" }, { "id": "NPUB31468", "name": "Syberia" }, { "id": "NPUB31471", "name": "Jimmie Johnson's Anything With an Engine" }, { "id": "NPUB31472", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution" }, { "id": "NPUB31473", "name": "Fairy Fencer F" }, { "id": "NPUB31476", "name": "Pier Solar And The Great Architects" }, { "id": "NPUB31479", "name": "One Piece Unlimited World Red" }, { "id": "NPUB31481", "name": "Hotline Miami 2: Wrong Number" }, { "id": "NPUB31483", "name": "Tiny Troopers Joint Ops" }, { "id": "NPUB31486", "name": "Battle Princess of Arcadias" }, { "id": "NPUB31489", "name": "El Chavo Kart" }, { "id": "NPUB31493", "name": "Blood of the Werewolf" }, { "id": "NPUB31494", "name": "Cartoon Network: Punch Time Explosion XL" }, { "id": "NPUB31496", "name": "Escape Dead Island" }, { "id": "NPUB31497", "name": "The Treasures of Montezuma 4 Trial" }, { "id": "NPUB31500", "name": "Teenage Mutant Ninja Turtles Danger of the Ooze" }, { "id": "NPUB31502", "name": "Diablo III: Ultimate Evil Edition" }, { "id": "NPUB31505", "name": "Warriors Orochi 3 Ultimate" }, { "id": "NPUB31506", "name": "Constant C" }, { "id": "NPUB31510", "name": "Yakuza 4" }, { "id": "NPUB31511", "name": "Battlefield: Hardline" }, { "id": "NPUB31514", "name": "MouseCraft" }, { "id": "NPUB31518", "name": "Resident Evil Revelations 2 Trial" }, { "id": "NPUB31519", "name": "Borderlands: The Pre-Sequel" }, { "id": "NPUB31522", "name": "Atelier Rorona Plus: The Alchemist of Arland" }, { "id": "NPUB31523", "name": "Adventure Time: The Secret of the Nameless Kingdom" }, { "id": "NPUB31529", "name": "Just Dance 2015" }, { "id": "NPUB31531", "name": "Dynasty Warriors: Gundam Reborn" }, { "id": "NPUB31532", "name": "Race the Sun" }, { "id": "NPUB31538", "name": "Chariot" }, { "id": "NPUB31541", "name": "Class of Heroes 2G" }, { "id": "NPUB31544", "name": "Geometry Wars³: Dimensions Evolved" }, { "id": "NPUB31546", "name": "WWE 2K15" }, { "id": "NPUB31547", "name": "Assassin's Creed: Rogue" }, { "id": "NPUB31552", "name": "Resident Evil HD Remaster" }, { "id": "NPUB31553", "name": "Call of Duty: Advanced Warfare (Day Zero Edition)" }, { "id": "NPUB31554", "name": "Super Mega Baseball" }, { "id": "NPUB31556", "name": "The Voice: I Want You" }, { "id": "NPUB31560", "name": "Toybox Turbos" }, { "id": "NPUB31564", "name": "Samurai Warriors 4" }, { "id": "NPUB31573", "name": "Tokyo Twilight Ghost Hunters" }, { "id": "NPUB31579", "name": "Ar Nosurge: Ode to an Unborn Star" }, { "id": "NPUB31580", "name": "OlliOlli" }, { "id": "NPUB31589", "name": "Deadfall Adventure Heart of Atlantis" }, { "id": "NPUB31590", "name": "Don't Starve: Giant Edition" }, { "id": "NPUB31592", "name": "The Bridge" }, { "id": "NPUB31595", "name": "Frozen Synapse Prime" }, { "id": "NPUB31596", "name": "Motorcycle Club" }, { "id": "NPUB31597", "name": "Legend of Kay Anniversary" }, { "id": "NPUB31604", "name": "Saints Row: Gat Out of Hell" }, { "id": "NPUB31605", "name": "Unmechanical: Extended" }, { "id": "NPUB31613", "name": "The Awakened Fate: Ultimatum" }, { "id": "NPUB31617", "name": "Hyper Void" }, { "id": "NPUB31623", "name": "Dragon Ball: Xenoverse" }, { "id": "NPUB31626", "name": "JUJU" }, { "id": "NPUB31630", "name": "Badland: Game of the Year Edition" }, { "id": "NPUB31632", "name": "Stealth Inc 2: A Game of Clones" }, { "id": "NPUB31633", "name": "Metal Gear Solid 4: Guns of the Patriots" }, { "id": "NPUB31636", "name": "Life is Strange" }, { "id": "NPUB31637", "name": "King's Quest" }, { "id": "NPUB31640", "name": "Sparkle 2" }, { "id": "NPUB31647", "name": "J-STARS Victory VS+" }, { "id": "NPUB31651", "name": "King Oddball" }, { "id": "NPUB31652", "name": "Dragon Fin Soup" }, { "id": "NPUB31655", "name": "Crimsonland" }, { "id": "NPUB31658", "name": "Yakuza 5" }, { "id": "NPUB31660", "name": "World Hunter" }, { "id": "NPUB31664", "name": "Adventure Time: Finn and Jake Investigations (Demo)" }, { "id": "NPUB31670", "name": "Krinkle Krusher" }, { "id": "NPUB31672", "name": "Tennis in the Face" }, { "id": "NPUB31682", "name": "Shovel Knight" }, { "id": "NPUB31686", "name": "Monster Jam Battlegrounds" }, { "id": "NPUB31689", "name": "Resident Evil 0" }, { "id": "NPUB31702", "name": "Sparkle Unleashed Trial" }, { "id": "NPUB31705", "name": "Five Star Wrestling" }, { "id": "NPUB31719", "name": "NOVA-111" }, { "id": "NPUB31726", "name": "Frozen Free Fall - Snowball Fight" }, { "id": "NPUB31732", "name": "Back To Bed" }, { "id": "NPUB31733", "name": "Mighty No. 9" }, { "id": "NPUB31742", "name": "Goosebumps: The Game" }, { "id": "NPUB31743", "name": "WWE 2K16" }, { "id": "NPUB31752", "name": "Deception IV: The Nightmare Princess" }, { "id": "NPUB31774", "name": "Doodle Kingdom" }, { "id": "NPUB31795", "name": "Battle Trivia Knockout" }, { "id": "NPUB31798", "name": "Eiyuu Senki: The World Conquest" }, { "id": "NPUB31805", "name": "Aegis of Earth: Protonovus Assault" }, { "id": "NPUB31813", "name": "Sky Force Anniversary" }, { "id": "NPUB31817", "name": "Just Dance 2017" }, { "id": "NPUB31836", "name": "The Legend of Heroes: Trails of Cold Steel II" }, { "id": "NPUB31837", "name": "Pro Evolution Soccer 2017" }, { "id": "NPUB31838", "name": "WWE 2K17" }, { "id": "NPUB31842", "name": "Vidas 99" }, { "id": "NPUB31845", "name": "Batman: The Telltale Series" }, { "id": "NPUB31847", "name": "Tokyo Twilight Ghost Hunters: Daybreak Special Gigs" }, { "id": "NPUB31848", "name": "Persona 5" }, { "id": "NPUB31858", "name": "Cars 3: Driven to Win" }, { "id": "NPUB31863", "name": "Revenant Saga" }, { "id": "NPUB31868", "name": "UNDER NIGHT IN-BIRTH Exe:Late[st]" }, { "id": "NPUB50001", "name": "Dragon's Lair Trilogy" }, { "id": "NPUB50021", "name": "Call of Duty: Ghosts" }, { "id": "NPUB50042", "name": "Watch Dogs (Gold Edition)" }, { "id": "NPUB50101", "name": "Tales of Symphonia Chronicles" }, { "id": "NPUB50108", "name": "Call of Duty: Ghosts: Gold Edition" }, { "id": "NPUB50143", "name": "Call of Duty: Advanced Warfare (Digital Pro Edition)" }, { "id": "NPUB50203", "name": "Pro Evolution Soccer 2015" }, { "id": "NPUB90001", "name": "Cash, Guns and Chaos DLX" }, { "id": "NPUB90002", "name": "GripShift" }, { "id": "NPUB90004", "name": "Def Jam: Icon" }, { "id": "NPUB90025", "name": "Dynasty Warriors: Gundam" }, { "id": "NPUB90029", "name": "NBA 08 Live (Demo)" }, { "id": "NPUB90033", "name": "Need for Speed ProStreet (Demo)" }, { "id": "NPUB90035", "name": "All Pro Football 2K8" }, { "id": "NPUB90041", "name": "Super Puzzle Fighter II Turbo HD Remix" }, { "id": "NPUB90042", "name": "Colin McRae: DiRT" }, { "id": "NPUB90043", "name": "Clive Barker's Jericho (Demo)" }, { "id": "NPUB90051", "name": "Bourne (Demo)" }, { "id": "NPUB90053", "name": "Juiced 2: Hot Import Nights (Demo)" }, { "id": "NPUB90060", "name": "NBA 2k8 (Demo)" }, { "id": "NPUB90062", "name": "Burnout Paradise (Demo)" }, { "id": "NPUB90070", "name": "Battlefield: Bad Company (Demo)" }, { "id": "NPUB90074", "name": "Devil May Cry 4 (Demo)" }, { "id": "NPUB90084", "name": "Condemned 2 (Demo)" }, { "id": "NPUB90092", "name": "Enemy Territory Quake Wars (Demo)" }, { "id": "NPUB90102", "name": "Grid (Demo)" }, { "id": "NPUB90104", "name": "1942: Joint Strike" }, { "id": "NPUB90105", "name": "Wolf of the Battlefield: Commando 3" }, { "id": "NPUB90120", "name": "NASCAR 09 (Demo)" }, { "id": "NPUB90121", "name": "F.E.A.R. 2: Project Origin (Demo)" }, { "id": "NPUB90126", "name": "Metal Gear Solid 4: Guns of the Patriots Database" }, { "id": "NPUB90127", "name": "Top Spin 3" }, { "id": "NPUB90128", "name": "LEGO Indiana Jones The Original Adventures" }, { "id": "NPUB90129", "name": "Wall-E" }, { "id": "NPUB90133", "name": "Call of Duty World At War CO-OP (Demo)" }, { "id": "NPUB90138", "name": "Madden 09 (Demo)" }, { "id": "NPUB90139", "name": "NBA Live 09 (Demo)" }, { "id": "NPUB90158", "name": "NBA 2k9 (Demo)" }, { "id": "NPUB90169", "name": "Supersonic Acrobatic Rocket-Powered Battle-Cars" }, { "id": "NPUB90170", "name": "LEGO Batman: The Videogame" }, { "id": "NPUB90175", "name": "Alone in the Dark (Demo)" }, { "id": "NPUB90183", "name": "GTI Club+ Rally Cote D'Azur" }, { "id": "NPUB90194", "name": "Sonic Unleashed (Demo)" }, { "id": "NPUB90198", "name": "The Punisher: No Mercy (Demo)" }, { "id": "NPUB90199", "name": "Chronicles of Riddick Assault On Dark Athena (Demo)" }, { "id": "NPUB90207", "name": "Mafia II (Demo)" }, { "id": "NPUB90215", "name": "Afro Samurai (Demo)" }, { "id": "NPUB90220", "name": "Watchmen: The End is Nigh" }, { "id": "NPUB90225", "name": "Aliens vs. Predator" }, { "id": "NPUB90227", "name": "Katamari Forever (Demo)" }, { "id": "NPUB90239", "name": "ZEN Pinball (Demo)" }, { "id": "NPUB90248", "name": "Wolfenstein DEMO" }, { "id": "NPUB90253", "name": "Mini Ninjas" }, { "id": "NPUB90268", "name": "Brutal Legend" }, { "id": "NPUB90274", "name": "Ninja Gaiden Sigma 2 (Demo)" }, { "id": "NPUB90281", "name": "Fuel (Demo)" }, { "id": "NPUB90289", "name": "NBA Live 10 (Demo)" }, { "id": "NPUB90296", "name": "Dark Void (Demo)" }, { "id": "NPUB90310", "name": "WET (Demo)" }, { "id": "NPUB90320", "name": "NBA 2k10 (Demo)" }, { "id": "NPUB90323", "name": "Dragon Ball Raging Blast (Demo)" }, { "id": "NPUB90342", "name": "topatoi (Demo)" }, { "id": "NPUB90345", "name": "Comet Crash (Demo)" }, { "id": "NPUB90347", "name": "Battlefield Bad Company 2" }, { "id": "NPUB90350", "name": "LEGO Indiana Jones 2 The Adventure Continues" }, { "id": "NPUB90359", "name": "Just Cause 2 (Demo)" }, { "id": "NPUB90361", "name": "Dynasty Warriors: Strikeforce (Demo)" }, { "id": "NPUB90363", "name": "Thexder Neo (Demo)" }, { "id": "NPUB90365", "name": "UFC Undisputed 2010" }, { "id": "NPUB90375", "name": "Skate 3 (Demo)" }, { "id": "NPUB90393", "name": "Wakeboarding HD (Demo)" }, { "id": "NPUB90417", "name": "Death Track: Resurrection" }, { "id": "NPUB90418", "name": "Hamster Ball" }, { "id": "NPUB90425", "name": "Shank" }, { "id": "NPUB90438", "name": "DJ Hero 2 (Demo)" }, { "id": "NPUB90448", "name": "Apache Air Assault (Demo)" }, { "id": "NPUB90455", "name": "Warriors: Legends of Troy" }, { "id": "NPUB90478", "name": "Vanquish" }, { "id": "NPUB90488", "name": "Need for Speed Hot Pursuit (Demo)" }, { "id": "NPUB90506", "name": "Mass Effect 2 (Demo)" }, { "id": "NPUB90530", "name": "Ace Combat Assault Horizon" }, { "id": "NPUB90542", "name": "Top Spin 4" }, { "id": "NPUB90578", "name": "Mortal Kombat (Demo)" }, { "id": "NPUB90616", "name": "Binary Domain (Demo)" }, { "id": "NPUB90632", "name": "Saints Row: The Third - Initiation Station" }, { "id": "NPUB90645", "name": "Catherine (Demo)" }, { "id": "NPUB90651", "name": "Rage (Demo)" }, { "id": "NPUB90655", "name": "Bodycount" }, { "id": "NPUB90677", "name": "NBA 2k12 (Demo)" }, { "id": "NPUB90732", "name": "SSX (Demo)" }, { "id": "NPUB90734", "name": "Winter Stars (Demo)" }, { "id": "NPUB90746", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (Demo)" }, { "id": "NPUB90767", "name": "Blades of Time" }, { "id": "NPUB90772", "name": "Resident Evil 6 (Demo)" }, { "id": "NPUB90789", "name": "Lego Batman 2 DC Super Heroes" }, { "id": "NPUB90811", "name": "F1 2012 (Demo)" }, { "id": "NPUB90844", "name": "Dead Space 3" }, { "id": "NPUB90846", "name": "Ni no Kuni: Wrath of the White Witch - Journey to Another World (Demo)" }, { "id": "NPUB90864", "name": "Resident Evil 6 (Demo)" }, { "id": "NPUB90925", "name": "Metal Gear Rising: Revengeance (Demo)" }, { "id": "NPUB90930", "name": "Metal Gear Rising: Revengeance (Demo)" }, { "id": "NPUB90936", "name": "NCAA Football 14" }, { "id": "NPUB90938", "name": "Resident Evil Revelations" }, { "id": "NPUB90939", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (Demo)" }, { "id": "NPUB90941", "name": "Oddworld: Stranger's Wrath (Demo)" }, { "id": "NPUB90950", "name": "Ninja Gaiden 3 Razors Edge (Demo)" }, { "id": "NPUB90955", "name": "Injustice: Gods Among Us (Demo)" }, { "id": "NPUB90958", "name": "Hatsune Miku: Project DIVA F (Demo)" }, { "id": "NPUB90964", "name": "LEGO Marvel Super Heroes (Demo)" }, { "id": "NPUB90969", "name": "Rayman Legends (Demo)" }, { "id": "NPUB90983", "name": "Dragon Ball Z: Battle of Z (Demo)" }, { "id": "NPUB90984", "name": "Castlevania: Lords of Shadow 2" }, { "id": "NPUB90991", "name": "The LEGO Movie Videogame (Demo)" }, { "id": "NPUB90994", "name": "LEGO The Hobbit (Demo)" }, { "id": "NPUB91001", "name": "Zombeer (Demo)" }, { "id": "NPUB91011", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution" }, { "id": "NPUB91022", "name": "LEGO Jurassic World (Demo)" }, { "id": "NPUB91024", "name": "Motorcycle Club (Demo)" }, { "id": "NPUB91026", "name": "LEGO Marvel's Avengers (Demo)" }, { "id": "NPUB91029", "name": "NASCAR '15 (Demo)" }, { "id": "NPUB91036", "name": "FIFA 17 (Demo)" }, { "id": "NPUB91037", "name": "Pro Evolution Soccer 2017 (Demo)" }, { "id": "NPUD20461", "name": "Blood Rayne 2" }, { "id": "NPUD20666", "name": "Disgaea: Hour of Darkness" }, { "id": "NPUD20862", "name": "Blood Rayne 2" }, { "id": "NPUD21269", "name": "Bully" }, { "id": "NPUD21397", "name": "Disgaea 2: Cursed Memories" }, { "id": "NPUD21717", "name": "Dora the Explorer: Dora Saves the Mermaids" }, { "id": "NPUD21718", "name": "Go Diego Go! Safari Rescue" }, { "id": "NPUD21794", "name": "Go Diego Go! Great Dinosaur Rescue" }, { "id": "NPUD21796", "name": "Dora the Explorer: Dora Saves the Snow Princess" }, { "id": "NPUD21923", "name": "Dora the Explorer: Dora Saves the Crystal Kingdom" }, { "id": "NPUF30005", "name": "Tall Unlimited: Japan Import" }, { "id": "NPUF30008", "name": "Alien Crush" }, { "id": "NPUF30009", "name": "Neutopia" }, { "id": "NPUF30010", "name": "Super Star Soldier" }, { "id": "NPUF30012", "name": "Bonk's Adventure" }, { "id": "NPUF30014", "name": "New Adventure Island" }, { "id": "NPUF30016", "name": "Soldier Blade" }, { "id": "NPUF30025", "name": "Yakiniku Bugyou" }, { "id": "NPUF30060", "name": "Sarara's Little Shop" }, { "id": "NPUF30062", "name": "Neo Planet" }, { "id": "NPUF30063", "name": "Heroine Dream 2" }, { "id": "NPUF30064", "name": "Heroine Dream" }, { "id": "NPUG80086", "name": "flOw" }, { "id": "NPUH90032", "name": "Unbound Saga: Between the Panels Issue 3" }, { "id": "NPUI94103", "name": "Jumping Flash!" }, { "id": "NPUI94108", "name": "Jumping Flash! 2" }, { "id": "NPUI94154", "name": "Crash Bandicoot 2: Cortex Strikes Back" }, { "id": "NPUI94227", "name": "MediEvil" }, { "id": "NPUI94244", "name": "Crash Bandicoot: Warped" }, { "id": "NPUI94426", "name": "Crash Team Racing" }, { "id": "NPUI94476", "name": "Hot Shots Golf 2" }, { "id": "NPUI94508", "name": "2Xtreme" }, { "id": "NPUI94900", "name": "Crash Bandicoot" }, { "id": "NPUJ00027", "name": "Blood Omen: Legacy of Kain" }, { "id": "NPUJ00042", "name": "Gex" }, { "id": "NPUJ00067", "name": "Castlevania: Symphony of the Night" }, { "id": "NPUJ00433", "name": "Fighting Force" }, { "id": "NPUJ00553", "name": "Alundra" }, { "id": "NPUJ00585", "name": "Klonoa: Door to Phantomile" }, { "id": "NPUJ00594", "name": "Metal Gear Solid" }, { "id": "NPUJ00693", "name": "Dead in the Water" }, { "id": "NPUJ00708", "name": "Legacy of Kain: Soul Reaver" }, { "id": "NPUJ00806", "name": "Gex 3: Deep Cover Gecko" }, { "id": "NPUJ00843", "name": "Reel Fishing II" }, { "id": "NPUJ00879", "name": "Final Fantasy V" }, { "id": "NPUJ00892", "name": "Final Fantasy VIII" }, { "id": "NPUJ00900", "name": "Final Fantasy VI" }, { "id": "NPUJ00922", "name": "Dino Crisis" }, { "id": "NPUJ01013", "name": "Legend of Mana" }, { "id": "NPUJ01041", "name": "Chrono Cross" }, { "id": "NPUJ01115", "name": "Harvest Moon: Back to Nature" }, { "id": "NPUJ01212", "name": "Metal Slug X" }, { "id": "NPUJ01224", "name": "Arc the Lad" }, { "id": "NPUJ01251", "name": "Final Fantasy IX" }, { "id": "NPUJ01252", "name": "Arc the Lad II" }, { "id": "NPUJ01253", "name": "Arc the Lad III" }, { "id": "NPUJ01255", "name": "Arc Arena Monster Tournament" }, { "id": "NPUJ01279", "name": "Dino Crisis 2" }, { "id": "NPUJ01301", "name": "Ford Racing" }, { "id": "NPUJ01324", "name": "Breath of Fire IV" }, { "id": "NPUJ01363", "name": "Chrono Trigger" }, { "id": "NPUJ01384", "name": "Castlevania Chronicles" }, { "id": "NPUJ01509", "name": "Jigsaw Madness" }, { "id": "NPUJ01541", "name": "Final Fantasy Origins" }, { "id": "NPUJ94163", "name": "Final Fantasy VII" }, { "id": "NPUJ94199", "name": "Bloody Roar" }, { "id": "NPUJ94221", "name": "Final Fantasy Tactics" }, { "id": "NPUJ94424", "name": "Bloody Roar II" }, { "id": "NPUJ94457", "name": "Grandia" }, { "id": "NPUJ94646", "name": "Lilo & Stitch" }, { "id": "NPUL00128", "name": "Incubus: Love Hurts" }, { "id": "NPUL00129", "name": "Tenacious D: The Complete Masterworks" }, { "id": "NPUL00148", "name": "Hulk vs. Thor" }, { "id": "NPUL00149", "name": "Hulk vs. Wolverine" }, { "id": "NPUL00161", "name": "Watchmen: The End is Nigh" }, { "id": "NPUL00170", "name": "Watchmen: Black Freighter" }, { "id": "NPUL00174", "name": "Yes Man: Jim Carrey, Extreme Yes Man" }, { "id": "NPUL00180", "name": "Year One" }, { "id": "NPUP00046", "name": "Hulu Plus" }, { "id": "NPUP10028", "name": "YouTube" }, { "id": "NPUX80405", "name": "Earth Shield" }, { "id": "NPUZ00004", "name": "Let's Golf" }, { "id": "NPUZ00005", "name": "Hero of Sparta" }, { "id": "NPUZ00010", "name": "Bloons" }, { "id": "NPUZ00013", "name": "Freekscape: Escape From Hell" }, { "id": "NPUZ00014", "name": "Fieldrunners" }, { "id": "NPUZ00021", "name": "Blast Off" }, { "id": "NPUZ00022", "name": "Echoes" }, { "id": "NPUZ00023", "name": "Aero Racer" }, { "id": "NPUZ00024", "name": "Age of Zombies" }, { "id": "NPUZ00030", "name": "Kahoots" }, { "id": "NPUZ00031", "name": "Break Quest" }, { "id": "NPUZ00036", "name": "Dyno Gems" }, { "id": "NPUZ00046", "name": "Dracula: Undead Awakening" }, { "id": "NPUZ00069", "name": "Alien Zombie Death" }, { "id": "NPUZ00072", "name": "Hysteria Project" }, { "id": "NPUZ00091", "name": "Ice Road Truckers" }, { "id": "NPUZ00104", "name": "4x4 Jam" }, { "id": "NPUZ00190", "name": "A Space Shooter for 2 Bucks!" }, { "id": "NPUZ00193", "name": "Karimogi" }, { "id": "NPUZ00197", "name": "Enigmo" }, { "id": "NPUZ00210", "name": "Mad Blocker Alpha: Revenge of the Fuzzies" }, { "id": "NPUZ00212", "name": "Duael Invaders" }, { "id": "NPUZ00231", "name": "Me Monstar: Hear Me Roar!" }, { "id": "NPUZ00243", "name": "Edge" }, { "id": "XCES00001", "name": "Ratchet & Clank: QForce (PAL)" }, { "id": "XCES00008", "name": "Ratchet & Clank: Into the Nexus (PAL)" }, { "id": "XCUS00001", "name": "Ratchet and Clank: Full Frontal Assault (NTSC-U)" }, { "id": "NPJA00073", "name": "ICO®" }, { "id": "NPJA00074", "name": "ワンダと巨像®" } ], "version": 0 } ================================================ FILE: titledb.json ================================================ {"db": [{"id": "ASIA00048", "name": "Ultimate Shooter Pack: Resistance 3 / Killzone 3"}, {"id": "ASIA00049", "name": "Square Enix Adventure Pack: Tomb Raider / Sleeping Dogs"}, {"id": "ASIA00050", "name": "Ultimate Adventure Pack: Uncharted 3: Drake's Deception / God of War III"}, {"id": "ASIA00051", "name": "PS3 Best Hit Collection Vol. 1: Uncharted 3: Drake's Deception / LittleBigPlanet 2"}, {"id": "ASIA00052", "name": "PS3 Best Hit Collection Vol. 2: Resistance 3 / God of War III"}, {"id": "ASIA00074", "name": "Ultimate Uncharted Pack"}, {"id": "ATS201009", "name": "Catherine Best Selection"}, {"id": "BCAS01594", "name": "Ratchet & Clank: QForce (NTSC-A)"}, {"id": "BCAS20001", "name": "Ridge Racer 7 (NTSC-A)"}, {"id": "BCAS20002", "name": "Genji: Kamui Souran (NTSC-A)"}, {"id": "BCAS20003", "name": "Resistance : Fall of Man (NTSC-A)"}, {"id": "BCAS20004", "name": "MotorStorm (NTSC-A)"}, {"id": "BCAS20005", "name": "Armored Core 4 (NTSC-A)"}, {"id": "BCAS20006", "name": "NBA '07 (NTSC-A)"}, {"id": "BCAS20007", "name": "Railfan (NTSC-A)"}, {"id": "BCAS20008", "name": "Enchant Arm (NTSC-A)"}, {"id": "BCAS20009", "name": "Formula One Championship Edition (NTSC-A)"}, {"id": "BCAS20010", "name": "MLB 07: The Show (NTSC-A)"}, {"id": "BCAS20012", "name": "Ninja Gaiden Sigma (NTSC-A)"}, {"id": "BCAS20013", "name": "Folklore (NTSC-A)"}, {"id": "BCAS20014", "name": "Lair (NTSC-A)"}, {"id": "BCAS20015", "name": "Warhawk (NTSC-A)"}, {"id": "BCAS20016", "name": "Heavenly Sword (NTSC-A)"}, {"id": "BCAS20018", "name": "Railfan Taiwan High Speed Rail (NTSC-A)"}, {"id": "BCAS20019", "name": "Everybody's Golf 5 (NTSC-A)"}, {"id": "BCAS20020", "name": "Wangan Midnight (NTSC-A)"}, {"id": "BCAS20021", "name": "The Eye of Judgement (NTSC-A)"}, {"id": "BCAS20022", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (NTSC-A)"}, {"id": "BCAS20023", "name": "Ratchet & Clank: A Crack in Time (NTSC-A)"}, {"id": "BCAS20024", "name": "Uncharted: Drake's Fortune (NTSC-A)"}, {"id": "BCAS20025", "name": "NBA 08 (NTSC-A)"}, {"id": "BCAS20026", "name": "Time Crisis 4 (with GunCon 3) (NTSC-A)"}, {"id": "BCAS20027", "name": "Gran Turismo 5: Prologue (NTSC-A)"}, {"id": "BCAS20028", "name": "Beowolf: The Game (NTSC-A)"}, {"id": "BCAS20029", "name": "Brothers in Arms: Hell's Highway (NTSC-A)"}, {"id": "BCAS20030", "name": "Haze (NTSC-A)"}, {"id": "BCAS20031", "name": "Makai Senki Disgaea 3 (NTSC-A)"}, {"id": "BCAS20032", "name": "Trusty Bell: Chopin no Yume Reprise (NTSC-A)"}, {"id": "BCAS20033", "name": "Lost: Via Domus (NTSC-A)"}, {"id": "BCAS20034", "name": "Armored Core: For Answer (NTSC-A)"}, {"id": "BCAS20035", "name": "Motorstorm Complete (NTSC-A)"}, {"id": "BCAS20036", "name": "Dark Sector (NTSC-A)"}, {"id": "BCAS20037", "name": "Resistance: Fall of Man (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20038", "name": "FolksSoul: Ushinawareta Denshou / Folklore (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20039", "name": "Ridge Racer 7 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20040", "name": "Ninja Gaiden Sigma (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20041", "name": "Hot Shots Golf : Out of Bounds (NTSC-A)"}, {"id": "BCAS20042", "name": "MLB 08 : The Show (NTSC-A)"}, {"id": "BCAS20043", "name": "Battle Fantasia (NTSC-A)"}, {"id": "BCAS20044", "name": "MotorStorm II (NTSC-A)"}, {"id": "BCAS20045", "name": "Ratchet & Clank: Tools of Destruction (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20046", "name": "Tears to Tiara : Kakan no Daichi (NTSC-A)"}, {"id": "BCAS20047", "name": "SIREN: New Translation (NTSC-A)"}, {"id": "BCAS20048", "name": "SoulCalibur IV (NTSC-A)"}, {"id": "BCAS20049", "name": "Vampire Rain : Altered Species (NTSC-A)"}, {"id": "BCAS20050", "name": "Hakuna Matata (NTSC-A)"}, {"id": "BCAS20051", "name": "SOCOM: U.S. Navy SEALs Confrontation (NTSC-A)"}, {"id": "BCAS20052", "name": "Ratchet & Clank: Quest for Booty (NTSC-A)"}, {"id": "BCAS20053", "name": "Disgaea 3: Absence of Justice (NTSC-A)"}, {"id": "BCAS20054", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-A)"}, {"id": "BCAS20055", "name": "Resistance 2 (NTSC-A)"}, {"id": "BCAS20056", "name": "X Edge (NTSC-A)"}, {"id": "BCAS20057", "name": "Warhawk (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20058", "name": "LittleBigPlanet (NTSC-A)"}, {"id": "BCAS20059", "name": "The Elder Scrolls IV: Oblivion (Game of the Year Edition) (NTSC-A)"}, {"id": "BCAS20060", "name": "NBA 09 The Inside (NTSC-A)"}, {"id": "BCAS20061", "name": "Fallout 3 (NTSC-A)"}, {"id": "BCAS20062", "name": "Hakuna Matata (NTSC-A)"}, {"id": "BCAS20063", "name": "Way of the Samurai 3 (NTSC-A)"}, {"id": "BCAS20064", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-A)"}, {"id": "BCAS20065", "name": "SBK 08 : Superbike World Championship (NTSC-A)"}, {"id": "BCAS20066", "name": "Killzone 2 (NTSC-A)"}, {"id": "BCAS20068", "name": "Brain Challenge (NTSC-A)"}, {"id": "BCAS20070", "name": "PixelJunk 3-in-1 Pack (NTSC-A)"}, {"id": "BCAS20071", "name": "Demon's Souls (NTSC-A)"}, {"id": "BCAS20072", "name": "MLB 09 : The Show (NTSC-A)"}, {"id": "BCAS20073", "name": "The Last Guy (NTSC-A)"}, {"id": "BCAS20074", "name": "inFamous (NTSC-A)"}, {"id": "BCAS20075", "name": "Agarest Senki Zero (NTSC-A)"}, {"id": "BCAS20076", "name": "Rorona no Atelier: Arland no Renkinjutsushi (NTSC-A)"}, {"id": "BCAS20077", "name": "BlazBlue: Calamity Trigger (NTSC-A)"}, {"id": "BCAS20078", "name": "LittleBigPlanet (Game of the Year Edition) (NTSC-A)"}, {"id": "BCAS20079", "name": "Uncharted: Drake's Fortune (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20080", "name": "Katamari Damacy Tribute (NTSC-A)"}, {"id": "BCAS20081", "name": "MAG (NTSC-A)"}, {"id": "BCAS20082", "name": "SIREN: New Translation (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20083", "name": "Minna no Golf 5 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20084", "name": "Tears to Tiara : Kakan no Daichi (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20085", "name": "Soul Calibur IV (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20086", "name": "Trinity Universe (NTSC-A)"}, {"id": "BCAS20087", "name": "Toro! Let's Party! (NTSC-A)"}, {"id": "BCAS20088", "name": "Trusty Bell: Chopin no Yume Reprise (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20089", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (NTSC-A)"}, {"id": "BCAS20090", "name": "Hakuna Matata (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20091", "name": "LittleBigPlanet (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20092", "name": "WET (NTSC-A)"}, {"id": "BCAS20093", "name": "Tales of Vesperia (NTSC-A)"}, {"id": "BCAS20094", "name": "Tears to Tiara Gaiden : Avalon no Nazo (NTSC-A)"}, {"id": "BCAS20095", "name": "Katamari Forever (NTSC-A)"}, {"id": "BCAS20097", "name": "Uncharted 2: Among Thieves (NTSC-A)"}, {"id": "BCAS20098", "name": "Ratchet & Clank Future: A Crack in Time (NTSC-A)"}, {"id": "BCAS20099", "name": "Rogue Warrior (NTSC-A)"}, {"id": "BCAS20100", "name": "Wipeout HD Fury (NTSC-A)"}, {"id": "BCAS20101", "name": "Way of the Samurai 3 Plus (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20102", "name": "God of War Collection (NTSC-A)"}, {"id": "BCAS20103", "name": "EyePet (Bundle with PlayStation3 Eye) (NTSC-A)"}, {"id": "BCAS20104", "name": "EyePet (Bundle with PlayStation3 Eye) (NTSC-A)"}, {"id": "BCAS20105", "name": "ModNation Racers (NTSC-A)"}, {"id": "BCAS20106", "name": "3D Dot Game Heroes (NTSC-A)"}, {"id": "BCAS20107", "name": "Heavy Rain (NTSC-A)"}, {"id": "BCAS20108", "name": "Gran Turismo 5 (NTSC-A)"}, {"id": "BCAS20109", "name": "Last Rebellion (NTSC-A)"}, {"id": "BCAS20110", "name": "Resistance 2 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20111", "name": "Star Ocean: The Last Hope International (NTSC-A)"}, {"id": "BCAS20112", "name": "No More Heroes: Eiyuutachi no Rakuen (NTSC-A)"}, {"id": "BCAS20113", "name": "LittleBigPlanet 2 (NTSC-A)"}, {"id": "BCAS20114", "name": "Last Rebellion (NTSC-A)"}, {"id": "BCAS20115", "name": "Demon's Souls (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20116", "name": "BlazBlue : Calamity Trigger (PlayStation3 the Best) (NTSC-A)"}, {"id": "BCAS20117", "name": "Lair (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20118", "name": "Red Seeds Profile (NTSC-A)"}, {"id": "BCAS20119", "name": "MLB 10 The Show (NTSC-A)"}, {"id": "BCAS20120", "name": "NieR RepliCant (NTSC-A)"}, {"id": "BCAS20121", "name": "SOCOM 4: U.S. Navy SEALS (NTSC-A)"}, {"id": "BCAS20122", "name": "NieR (NTSC-A)"}, {"id": "BCAS20123", "name": "Front Mission Evolved (NTSC-A)"}, {"id": "BCAS20124", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (NTSC-A)"}, {"id": "BCAS20125", "name": "Sports Champions (NTSC-A)"}, {"id": "BCAS20126", "name": "BlazBlue: Continuum Shift (NTSC-A)"}, {"id": "BCAS20128", "name": "TV Superstars (NTSC-A)"}, {"id": "BCAS20129", "name": "Chou Jigen Game: Neptune (NTSC-A)"}, {"id": "BCAS20131", "name": "Toro! Let's Party! (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20132", "name": "Kung Fu Rider (NTSC-A)"}, {"id": "BCAS20133", "name": "echochrome ii (NTSC-A)"}, {"id": "BCAS20134", "name": "The Shoot (NTSC-A)"}, {"id": "BCAS20135", "name": "Start the Party! (NTSC-A)"}, {"id": "BCAS20137", "name": "Front Mission Evolved (NTSC-A)"}, {"id": "BCAS20138", "name": "Brunswick Pro Bowling (NTSC-A)"}, {"id": "BCAS20139", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20140", "name": "EyePet (Move Edition) (NTSC-A)"}, {"id": "BCAS20141", "name": "The Fight (NTSC-A)"}, {"id": "BCAS20142", "name": "Uncharted 2: Among Thieves (Game of the Year Edition) (NTSC-A)"}, {"id": "BCAS20143", "name": "Fallout: New Vegas (NTSC-A)"}, {"id": "BCAS20144", "name": "Beat Sketch! (NTSC-A)"}, {"id": "BCAS20146", "name": "Atelier Rorona: The Alchemist of Arland (NTSC-A)"}, {"id": "BCAS20147", "name": "Agarest Senki 2 (NTSC-A)"}, {"id": "BCAS20149", "name": "Sly Cooper Collection (NTSC-A)"}, {"id": "BCAS20150", "name": "The ICO & Shadow of the Colossus Collection (NTSC-A)"}, {"id": "BCAS20151", "name": "Gran Turismo 5 (First Print Limited Edition) (NTSC-A)"}, {"id": "BCAS20153", "name": "SingStar Dance (Party Pack) (NTSC-A)"}, {"id": "BCAS20154", "name": "Gran Turismo 5 (Collector's Edition) (NTSC-A)"}, {"id": "BCAS20156", "name": "Furi Furi! Saru Get You (NTSC-A)"}, {"id": "BCAS20157", "name": "Killzone 2 (PlayStation3 the Best) (NTSC-A)"}, {"id": "BCAS20159", "name": "Ape Escape On the Move! (NTSC-A)"}, {"id": "BCAS20160", "name": "MotorStorm 3 Apocalypse (NTSC-A)"}, {"id": "BCAS20161", "name": "Mindjack (NTSC-A)"}, {"id": "BCAS20162", "name": "Arcana Heart 3 (NTSC-A)"}, {"id": "BCAS20163", "name": "Playstation Move Heroes (NTSC-A)"}, {"id": "BCAS20164", "name": "Gran Turismo 5 (Dual Shock 3 bundle Pack) or (Collector's Pack 2nd Edition) (NTSC-A)"}, {"id": "BCAS20165", "name": "Hyperdimension Neptunia (NTSC-A)"}, {"id": "BCAS20166", "name": "Catherine (NTSC-A)"}, {"id": "BCAS20167", "name": "Way of the Samurai 4 (NTSC-A)"}, {"id": "BCAS20168", "name": "Makai Senki Disgaea 4 (NTSC-A)"}, {"id": "BCAS20169", "name": "MLB 11: The Show (NTSC-A)"}, {"id": "BCAS20173", "name": "El Shaddai: Ascension of the Metatron (NTSC-A)"}, {"id": "BCAS20174", "name": "Man vs. Wild with Bear Grylls (NTSC-A)"}, {"id": "BCAS20175", "name": "God of War : Origins Collection (NTSC-A)"}, {"id": "BCAS20176", "name": "NieR RepliCant (Ultimate Hits) (NTSC-A)"}, {"id": "BCAS20177", "name": "Star Ocean: The Last Hope International (Ultimate Hits) (NTSC-A)"}, {"id": "BCAS20178", "name": "Brink (NTSC-A)"}, {"id": "BCAS20180", "name": "inFamous (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20181", "name": "inFamous 2 (NTSC-A)"}, {"id": "BCAS20182", "name": "Atelier Meruru: The Alchemist of Arland 3 (NTSC-A)"}, {"id": "BCAS20183", "name": "Hunted: The Demon's Forge (NTSC-A)"}, {"id": "BCAS20184", "name": "Cars 2: The Video Game (NTSC-A)"}, {"id": "BCAS20185", "name": "Disgaea 4: A Promise Unforgotten (NTSC-A)"}, {"id": "BCAS20186", "name": "Bleach: Soul Ignition (NTSC-A)"}, {"id": "BCAS20189", "name": "No More Heroes: Red Zone Edition (NTSC-A)"}, {"id": "BCAS20192", "name": "Split/Second (NTSC-A)"}, {"id": "BCAS20193", "name": "Toy Story 3 (NTSC-A)"}, {"id": "BCAS20195", "name": "Chou Jigen Game Neptune Mk2 (NTSC-A)"}, {"id": "BCAS20196", "name": "Final Fantasy XIII-2 (NTSC-A)"}, {"id": "BCAS20200", "name": "Ratchet & Clank: All 4 One (NTSC-A)"}, {"id": "BCAS20201", "name": "LittleBigPlanet 2 (Annual Special Edition) (NTSC-A)"}, {"id": "BCAS20202", "name": "ICO (NTSC-A)"}, {"id": "BCAS20203", "name": "Wander to Kyozou (NTSC-A)"}, {"id": "BCAS20204", "name": "Medieval Moves: Deadmund's Quest (NTSC-A)"}, {"id": "BCAS20205", "name": "LittleBigPlanet Karting (NTSC-A)"}, {"id": "BCAS20206", "name": "Disgaea 4: A Promise Unforgotten (NTSC-A)"}, {"id": "BCAS20208", "name": "Minna no Golf 5 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20209", "name": "Atelier Totori: The Adventurer of Arland (NTSC-A)"}, {"id": "BCAS20210", "name": "Carnival Island (NTSC-A)"}, {"id": "BCAS20211", "name": "To Heart 2 DX Plus (NTSC-A)"}, {"id": "BCAS20212", "name": "EyePet & Friends (NTSC-A)"}, {"id": "BCAS20213", "name": "Start the Party 2! Save the World (NTSC-A)"}, {"id": "BCAS20215", "name": "Disney Universe (NTSC-A)"}, {"id": "BCAS20218", "name": "Ninokuni: Shiroki Seihai no Joou (NTSC-A)"}, {"id": "BCAS20219", "name": "Move Fitness (NTSC-A)"}, {"id": "BCAS20221", "name": "Cartoon Network: Punch Time Explosion XL (NTSC-A)"}, {"id": "BCAS20222", "name": "Jak & Daxter Collection (NTSC-A)"}, {"id": "BCAS20223", "name": "Final Fantasy XIII-2 Lightning Edition Ver.2 Bundle (NTSC-A)"}, {"id": "BCAS20224", "name": "Final Fantasy XIII-2 (NTSC-A)"}, {"id": "BCAS20225", "name": "Final Fantasy XIII-2 (NTSC-A)"}, {"id": "BCAS20226", "name": "All About PlayStation Game Hits Vol. 1 (NTSC-A)"}, {"id": "BCAS20227", "name": "BlazBlue: Continuum Shift: Extend (NTSC-A)"}, {"id": "BCAS20228", "name": "Wizardry Perfect Pack (NTSC-A)"}, {"id": "BCAS20229", "name": "Gran Turismo 5 Spec II (NTSC-A)"}, {"id": "BCAS20230", "name": "Twisted Metal (NTSC-A)"}, {"id": "BCAS20233", "name": "Tokyo Jungle (NTSC-A)"}, {"id": "BCAS20234", "name": "BlazBlue: Continuum Shift Extend (NTSC-A)"}, {"id": "BCAS20236", "name": "Attouteki Yuugi: Mugen Souls (NTSC-A)"}, {"id": "BCAS20237", "name": "MLB 12 The Show (NTSC-A)"}, {"id": "BCAS20242", "name": "Brave: The Video Game (NTSC-A)"}, {"id": "BCAS20243", "name": "Lollipop Chainsaw (NTSC-A)"}, {"id": "BCAS20244", "name": "Chou Jigen Game Neptune mk2 (NTSC-A)"}, {"id": "BCAS20245", "name": "AquaPazza: AquaPlus Dream Match (NTSC-A)"}, {"id": "BCAS20246", "name": "The Ratchet & Clank Trilogy: Classics HD (NTSC-A)"}, {"id": "BCAS20248", "name": "Tales of Vesperia (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS20249", "name": "Damage Inc.: Pacific Squadron WWII (NTSC-A)"}, {"id": "BCAS20250", "name": "Sleeping Dogs (NTSC-A)"}, {"id": "BCAS20251", "name": "Persona 4: The Ultimate in Mayonaka Arena (NTSC-A)"}, {"id": "BCAS20252", "name": "Kami Jigen Game Neptune V (NTSC-A)"}, {"id": "BCAS20253", "name": "PlayStation All-Stars Battle Royale (NTSC-A)"}, {"id": "BCAS20254", "name": "Sports Champions 2 (NTSC-A)"}, {"id": "BCAS20255", "name": "Sleeping Dogs (NTSC-A)"}, {"id": "BCAS20258", "name": "Muv-Luv (NTSC-A)"}, {"id": "BCAS20259", "name": "Toy Story Mania (NTSC-A)"}, {"id": "BCAS20261", "name": "Dream C Club: Complete Edipyon! (NTSC-A)"}, {"id": "BCAS20266", "name": "Kamisama to Unmei Kakumei no Paradox (NTSC-A)"}, {"id": "BCAS20267", "name": "Gran Turismo 5: 2013 Edition (NTSC-A)"}, {"id": "BCAS20268", "name": "Dream C Club Zero: Special Edipyon! (NTSC-A)"}, {"id": "BCAS20272", "name": "Tomb Raider (NTSC-A)"}, {"id": "BCAS20273", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-A)"}, {"id": "BCAS20274", "name": "Disgea Dimension 2 (NTSC-A)"}, {"id": "BCAS20275", "name": "MLB 13: The Show (NTSC-A)"}, {"id": "BCAS20276", "name": "Minna no Golf 6 (NTSC-A)"}, {"id": "BCAS20277", "name": "Attouteki Yuugi: Mugen Souls Z (NTSC-A)"}, {"id": "BCAS20278", "name": "Best of PlayStation Network Vol. 1 (NTSC-A)"}, {"id": "BCAS20279", "name": "Lightning Returns: Final Fantasy XIII (NTSC-A)"}, {"id": "BCAS20280", "name": "Z/X: Zillions of enemy X - Zekkai no Crusade (NTSC-A)"}, {"id": "BCAS20281", "name": "Puppeteer (NTSC-A)"}, {"id": "BCAS20283", "name": "Final Fantasy XIII-2 (Ultimate Hits) (NTSC-A)"}, {"id": "BCAS20284", "name": "XBLAZE Code: Embryo (NTSC-A)"}, {"id": "BCAS20285", "name": "Time and Eternity (NTSC-A)"}, {"id": "BCAS20289", "name": "Final Fantasy X/X-2 HD Remaster (NTSC-A)"}, {"id": "BCAS20290", "name": "Dragon's Crown (NTSC-A)"}, {"id": "BCAS20291", "name": "Killer is Dead (Premium Edition) (NTSC-A)"}, {"id": "BCAS20292", "name": "Killer is Dead (NTSC-A)"}, {"id": "BCAS20294", "name": "Arcadias no Ikusahime (NTSC-A)"}, {"id": "BCAS20295", "name": "Diablo III (NTSC-A)"}, {"id": "BCAS20296", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-A)"}, {"id": "BCAS20297", "name": "Fairy Fencer F (NTSC-A)"}, {"id": "BCAS20298", "name": "Dragon's Crown (NTSC-A)"}, {"id": "BCAS20299", "name": "Drag-On Dragoon 3 (NTSC-A)"}, {"id": "BCAS20301", "name": "Disgaea D2: A Brighter Darkness (NTSC-J)"}, {"id": "BCAS20302", "name": "Disgaea D2: A Brighter Darkness (NTSC-A)"}, {"id": "BCAS20303", "name": "BlazBlue: Chrono Phantasma (NTSC-A)"}, {"id": "BCAS20304", "name": "Akiba's Trip 2 (NTSC-A)"}, {"id": "BCAS20308", "name": "Lightning Returns: Final Fantasy XIII (NTSC-A)"}, {"id": "BCAS20309", "name": "Final Fantasy X / X-2 HD Remaster (NTSC-A)"}, {"id": "BCAS20310", "name": "Akiba's Trip 2 (NTSC-A)"}, {"id": "BCAS20311", "name": "Drag-On Dragoon 3 (NTSC-A)"}, {"id": "BCAS20312", "name": "Lightning Returns: Final Fantasy XIII (NTSC-A)"}, {"id": "BCAS20315", "name": "Final Fantasy X / X-2 HD Remaster (English Version) (NTSC-A)"}, {"id": "BCAS20316", "name": "Natural Doctrine (NTSC-A)"}, {"id": "BCAS20317", "name": "Ragnarok Odyssey ACE (NTSC-A)"}, {"id": "BCAS20318", "name": "Drakengard 3 (NTSC-A)"}, {"id": "BCAS20319", "name": "Lost in the Rain (NTSC-A)"}, {"id": "BCAS20320", "name": "MLB 14: The Show (NTSC-A)"}, {"id": "BCAS20322", "name": "LittleBigPlanet 3 (NTSC-A)"}, {"id": "BCAS20325", "name": "Diablo III: Reaper of Souls (Ultimate Evil Edition) (NTSC-A)"}, {"id": "BCAS20327", "name": "Akiba's Trip: Undead & Undressed (NTSC-A)"}, {"id": "BCAS20328", "name": "Kamisama to Unmei Kakusei no Cross Thesis (NTSC-A)"}, {"id": "BCAS20330", "name": "Kingdom Hearts HD 1.5 + 2.5 ReMIX (Limited Edition) (NTSC-A)"}, {"id": "BCAS20333", "name": "The Evil Within (NTSC-J)"}, {"id": "BCAS20336", "name": "Natural Doctrine (NTSC-A)"}, {"id": "BCAS20338", "name": "Guilty Gear Xrd -SIGN- (NTSC-A)"}, {"id": "BCAS20519", "name": "Gran Turismo 6 (Anniversary Edition) (NTSC-A)"}, {"id": "BCAS20520", "name": "Gran Turismo 6 (Anniversary Edition) (NTSC-A)"}, {"id": "BCAS20521", "name": "Gran Turismo 6 (Collector's Edition) (NTSC-A)"}, {"id": "BCAS25001", "name": "Fainaru Fantajī Sātīn (NTSC-A)"}, {"id": "BCAS25002", "name": "Final Fantasy XIII (PS3 Lightning Edition) (NTSC-A)"}, {"id": "BCAS25003", "name": "God of War III (NTSC-A)"}, {"id": "BCAS25004", "name": "Final Fantasy XIII (NTSC-A)"}, {"id": "BCAS25005", "name": "Final Fantasy XIII (NTSC-A)"}, {"id": "BCAS25006", "name": "Heavy Rain (Move Edition) (NTSC-A)"}, {"id": "BCAS25007", "name": "God of War III (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BCAS25008", "name": "Killzone 3 (NTSC-A)"}, {"id": "BCAS25009", "name": "Uncharted 3: Drake's Deception (NTSC-A)"}, {"id": "BCAS25011", "name": "Final Fantasy XIII (Ultimate Hits) (NTSC-A)"}, {"id": "BCAS25012", "name": "Resistance 3 (NTSC-A)"}, {"id": "BCAS25014", "name": "Uncharted 3: Drake's Deception (Game of the Year Edition) (NTSC-A)"}, {"id": "BCAS25016", "name": "God of War: Ascension (NTSC-A)"}, {"id": "BCAS25017", "name": "Beyond: Two Souls (NTSC-A)"}, {"id": "BCAS25018", "name": "Gran Turismo 6 (NTSC-J)"}, {"id": "BCAS25019", "name": "Gran Turismo 6 (15th Anniversary Limited Edition) (NTSC-A)"}, {"id": "BCAS50693", "name": "Hatsune Miku: Project Diva F 2nd (NTSC-A)"}, {"id": "BCAS80001", "name": "Phineas and Ferb: Across the Second Dimension (NTSC-A)"}, {"id": "BCAS85001", "name": "Tekken Hybrid (NTSC-A)"}, {"id": "BCAX90003", "name": "Playstation Three Big Hit Titles Demo Collection"}, {"id": "BCED00060", "name": "Official PlayStation Magazine Volume 7"}, {"id": "BCED00084", "name": "Official PlayStation Magazine Volume 8"}, {"id": "BCED00085", "name": "Official PlayStation Magazine Volume 9"}, {"id": "BCED00086", "name": "Official PlayStation Magazine Volume 10"}, {"id": "BCED00087", "name": "Official PlayStation Magazine Volume 11"}, {"id": "BCED00088", "name": "Official PlayStation Magazine Volume 12"}, {"id": "BCED00181", "name": "Official PlayStation Magazine Volume 13"}, {"id": "BCED00204", "name": "Official PlayStation Magazine Volume 16"}, {"id": "BCED00205", "name": "Official PlayStation Magazine Volume 17"}, {"id": "BCED00206", "name": "Official PlayStation Magazine Volume 18"}, {"id": "BCED00207", "name": "Official PlayStation Magazine Volume 19"}, {"id": "BCED00208", "name": "Official PlayStation Magazine Volume 20"}, {"id": "BCED00210", "name": "Official PlayStation Magazine Volume 22"}, {"id": "BCED00212", "name": "Official PlayStation Magazine Volume 24"}, {"id": "BCED00213", "name": "Official PlayStation Magazine Volume 25"}, {"id": "BCED00214", "name": "Official PlayStation Magazine Volume 26"}, {"id": "BCED00428", "name": "Official PlayStation Magazine Volume 29"}, {"id": "BCED00429", "name": "Official PlayStation Magazine Volume 30"}, {"id": "BCED00435", "name": "Official PlayStation Magazine Volume 36"}, {"id": "BCED00437", "name": "Official PlayStation Magazine Volume 15"}, {"id": "BCED00439", "name": "Official PlayStation Magazine Volume 40"}, {"id": "BCED00804", "name": "Official PlayStation Magazine Volume 42"}, {"id": "BCED00806", "name": "Official PlayStation Magazine Volume 44"}, {"id": "BCED00808", "name": "Official PlayStation Magazine Volume 46"}, {"id": "BCED00812", "name": "Official PlayStation Magazine Volume 50"}, {"id": "BCED00813", "name": "Official PlayStation Magazine Volume 51"}, {"id": "BCED01063", "name": "PlayStation Move Starter Disc"}, {"id": "BCED01571", "name": "Official PlayStation Magazine Volume 76"}, {"id": "BCES00001", "name": "Resistance: Fall of Man (PAL)"}, {"id": "BCES00002", "name": "Genji: Days of the Blade (PAL)"}, {"id": "BCES00004", "name": "Lair (PAL)"}, {"id": "BCES00005", "name": "Formula One: Championship Edition (PAL)"}, {"id": "BCES00006", "name": "MotorStorm (PAL)"}, {"id": "BCES00007", "name": "The Eye of Judgment (PAL)"}, {"id": "BCES00008", "name": "Warhawk (PAL)"}, {"id": "BCES00009", "name": "Ridge Racer 7 (PAL)"}, {"id": "BCES00011", "name": "SingStar (PAL)"}, {"id": "BCES00013", "name": "SingStar (PAL)"}, {"id": "BCES00029", "name": "SingStar Pop Edition (PAL)"}, {"id": "BCES00030", "name": "SingStar (PAL)"}, {"id": "BCES00031", "name": "SingStar (PAL)"}, {"id": "BCES00032", "name": "SingStar (PAL)"}, {"id": "BCES00049", "name": "SingStar Queen (PAL)"}, {"id": "BCES00050", "name": "Folklore (PAL)"}, {"id": "BCES00051", "name": "SingStar (PAL)"}, {"id": "BCES00052", "name": "Ratchet & Clank: Tools of Destruction (PAL)"}, {"id": "BCES00057", "name": "Time Crisis 4 (PAL)"}, {"id": "BCES00065", "name": "Uncharted: Drake's Fortune (PAL)"}, {"id": "BCES00068", "name": "Everybody's Golf: World Tour (PAL)"}, {"id": "BCES00069", "name": "EyeCreate (PAL)"}, {"id": "BCES00078", "name": "Heavenly Sword (PAL)"}, {"id": "BCES00081", "name": "Killzone 2 (PAL)"}, {"id": "BCES00096", "name": "PlayTV (PAL)"}, {"id": "BCES00098", "name": "Buzz! Quiz TV (PAL)"}, {"id": "BCES00099", "name": "Buzz! Quiz TV (PAL)"}, {"id": "BCES00104", "name": "Gran Turismo 5: Prologue (PAL)"}, {"id": "BCES00112", "name": "NBA 08 (PAL)"}, {"id": "BCES00123", "name": "Heavenly Sword (PAL)"}, {"id": "BCES00129", "name": "MotorStorm: Pacific Rift (PAL)"}, {"id": "BCES00141", "name": "LittleBigPlanet (PAL)"}, {"id": "BCES00173", "name": "SOCOM Confrontation (PAL)"}, {"id": "BCES00185", "name": "SingStar Volume 2 (PAL)"}, {"id": "BCES00195", "name": "Buzz! Quiz TV (PAL)"}, {"id": "BCES00216", "name": "SingStar Volume 3 (PAL)"}, {"id": "BCES00220", "name": "inFamous (PAL)"}, {"id": "BCES00225", "name": "White Knight Chronicles (PAL)"}, {"id": "BCES00226", "name": "Resistance 2 (PAL)"}, {"id": "BCES00233", "name": "SingStar Volume 2 (PAL)"}, {"id": "BCES00234", "name": "SingStar Volume 2 (PAL)"}, {"id": "BCES00235", "name": "SingStar Vol. 2 (PAL)"}, {"id": "BCES00264", "name": "SingStar Hits (PAL)"}, {"id": "BCES00265", "name": "SingStar Vol. 3 (PAL)"}, {"id": "BCES00266", "name": "SingStar Vol. 3 (PAL)"}, {"id": "BCES00267", "name": "SingStar Volume 3 (PAL)"}, {"id": "BCES00293", "name": "SingStar Pop (PAL)"}, {"id": "BCES00294", "name": "Siren Blood Curse (PAL)"}, {"id": "BCES00301", "name": "Ratchet & Clank: Quest for Booty (PAL)"}, {"id": "BCES00303", "name": "Buzz!: Quiz TV (Special Edition) (PAL)"}, {"id": "BCES00304", "name": "Buzz! Quiz TV (PAL)"}, {"id": "BCES00305", "name": "Buzz! Quiz TV (PAL)"}, {"id": "BCES00341", "name": "SingStar: Pop Edition (PAL)"}, {"id": "BCES00342", "name": "SingStar Pop Edition (PAL)"}, {"id": "BCES00343", "name": "SingStar Pop (PAL)"}, {"id": "BCES00344", "name": "SingStar Pop (PAL)"}, {"id": "BCES00345", "name": "SingStar Pop (PAL)"}, {"id": "BCES00346", "name": "SingStar Hits 2 (PAL)"}, {"id": "BCES00347", "name": "Buzz! Brain of the UK (PAL)"}, {"id": "BCES00348", "name": "Buzz! Le Plus Malin Des Français (PAL)"}, {"id": "BCES00349", "name": "Buzz! Il Quizzone Nazionale (PAL)"}, {"id": "BCES00350", "name": "Buzz! Deutschland Superquiz (PAL)"}, {"id": "BCES00351", "name": "Buzz! ¿Qué sabes de tu País? (PAL)"}, {"id": "BCES00363", "name": "Buzz! Brain of Oz (PAL)"}, {"id": "BCES00364", "name": "Buzz! De Slimste Van Nederland (PAL)"}, {"id": "BCES00365", "name": "Buzz! Brain of Switzerland (PAL)"}, {"id": "BCES00366", "name": "Buzz! Brain of the UK (PAL)"}, {"id": "BCES00367", "name": "Buzz! Polskie Łanigłówki (PAL)"}, {"id": "BCES00381", "name": "SingStar: ABBA (PAL)"}, {"id": "BCES00423", "name": "SingStar ABBA (PAL)"}, {"id": "BCES00440", "name": "Buzz! Quiz World (PAL)"}, {"id": "BCES00458", "name": "Heavy Rain (PAL)"}, {"id": "BCES00459", "name": "Buzz! Quem é o Génio Português? (PAL)"}, {"id": "BCES00463", "name": "The Shoot (PAL)"}, {"id": "BCES00483", "name": "EyePet (PAL)"}, {"id": "BCES00484", "name": "MotorStorm Apocalypse (PAL)"}, {"id": "BCES00494", "name": "SingStar: Queen (PAL)"}, {"id": "BCES00509", "name": "Uncharted 2: Among Thieves (PAL)"}, {"id": "BCES00510", "name": "God of War III (PAL)"}, {"id": "BCES00511", "name": "Ratchet & Clank: A Crack in Time (PAL)"}, {"id": "BCES00516", "name": "God of War III (PAL)"}, {"id": "BCES00518", "name": "SingStar Morangos Com Açúcar (PAL)"}, {"id": "BCES00519", "name": "SingStar: Mallorca Party (PAL)"}, {"id": "BCES00520", "name": "SingStar Studio 100 (PAL)"}, {"id": "BCES00531", "name": "SingStar Polskie Hity (PAL)"}, {"id": "BCES00548", "name": "Pain (PAL)"}, {"id": "BCES00558", "name": "MAG (PAL)"}, {"id": "BCES00569", "name": "Gran Turismo 5 (PAL)"}, {"id": "BCES00583", "name": "SingStar Mecano (PAL)"}, {"id": "BCES00591", "name": "inFamous (PAL)"}, {"id": "BCES00594", "name": "Agarest: Generations of War (PAL)"}, {"id": "BCES00596", "name": "SingStar Motown (PAL)"}, {"id": "BCES00598", "name": "TV Superstars (PAL)"}, {"id": "BCES00607", "name": "SingStar: Take That (PAL)"}, {"id": "BCES00609", "name": "inFamous (PAL)"}, {"id": "BCES00611", "name": "LittleBigPlanet (Game of the Year Edition) (PAL)"}, {"id": "BCES00614", "name": "SingStar: Made in Germany (PAL)"}, {"id": "BCES00617", "name": "SingStar Starter Pack (PAL)"}, {"id": "BCES00621", "name": "SingStar Starter Pack (PAL)"}, {"id": "BCES00622", "name": "SingStar (PAL)"}, {"id": "BCES00624", "name": "SingStar Starter Pack (PAL)"}, {"id": "BCES00625", "name": "SingStar Starter Pack (PAL)"}, {"id": "BCES00634", "name": "SingStar The Wiggles (PAL)"}, {"id": "BCES00640", "name": "SingStar: Chartbreaker (PAL)"}, {"id": "BCES00642", "name": "Ghostbusters: The Videogame & The Blu-Ray Movie (PAL)"}, {"id": "BCES00644", "name": "Buzz!: Quiz World (PAL)"}, {"id": "BCES00645", "name": "Buzz! Quiz World (PAL)"}, {"id": "BCES00646", "name": "Buzz! Quiz World (PAL)"}, {"id": "BCES00647", "name": "Buzz! Quiz World (PAL)"}, {"id": "BCES00664", "name": "Wipeout HD Fury (PAL)"}, {"id": "BCES00701", "name": "ModNation Racers (PAL)"}, {"id": "BCES00722", "name": "SingStar Vasco (PAL)"}, {"id": "BCES00726", "name": "Ratchet & Clank: A Crack in Time (PAL)"}, {"id": "BCES00727", "name": "Uncharted 2: Among Thieves (PAL)"}, {"id": "BCES00737", "name": "Heavy Rain (PAL)"}, {"id": "BCES00747", "name": "Start the Party (PAL)"}, {"id": "BCES00748", "name": "Ratchet & Clank: A Crack in Time (PAL)"}, {"id": "BCES00757", "name": "Uncharted 2: Among Thieves (PAL)"}, {"id": "BCES00764", "name": "ModNation Racers (PAL)"}, {"id": "BCES00773", "name": "Battlefield: Bad Company 2 (PAL)"}, {"id": "BCES00791", "name": "God of War Collection (PAL)"}, {"id": "BCES00795", "name": "Sports Champions (PAL)"}, {"id": "BCES00797", "name": "Heavy Rain (PAL)"}, {"id": "BCES00799", "name": "God of War III (PAL)"}, {"id": "BCES00800", "name": "God of War Collection (PAL)"}, {"id": "BCES00802", "name": "Heavy Rain (Move Edition) (PAL)"}, {"id": "BCES00816", "name": "Resident Evil 5: Gold Edition (PAL)"}, {"id": "BCES00818", "name": "MAG (PAL)"}, {"id": "BCES00819", "name": "Sorcery (PAL)"}, {"id": "BCES00828", "name": "Buzz! The Ultimate Music Quiz (PAL)"}, {"id": "BCES00829", "name": "Buzz! The Ultimate Music Quiz (PAL)"}, {"id": "BCES00830", "name": "Buzz! The Ultimate Music Quiz (PAL)"}, {"id": "BCES00831", "name": "Buzz! The Ultimate Music Quiz (PAL)"}, {"id": "BCES00835", "name": "SingStar Guitar (PAL)"}, {"id": "BCES00846", "name": "SingStar Chart Hits (PAL)"}, {"id": "BCES00847", "name": "SingStar SuomiHitit (PAL)"}, {"id": "BCES00850", "name": "LittleBigPlanet 2 (PAL)"}, {"id": "BCES00852", "name": "SingStar Kent (PAL)"}, {"id": "BCES00856", "name": "SingStar Polskie Hity 2 (PAL)"}, {"id": "BCES00864", "name": "EyePet Move Edition (PAL)"}, {"id": "BCES00865", "name": "EyePet & Friends (PAL)"}, {"id": "BCES00869", "name": "SingStar: Fussball Hits (PAL)"}, {"id": "BCES00871", "name": "SingStar Portugal Hits (PAL)"}, {"id": "BCES00873", "name": "SingStar Patito Feo (PAL)"}, {"id": "BCES00874", "name": "The Fight (PAL)"}, {"id": "BCES00894", "name": "SingStar: Dance (PAL)"}, {"id": "BCES00907", "name": "StarHawk (PAL)"}, {"id": "BCES00908", "name": "Kung Fu Rider (PAL)"}, {"id": "BCES00935", "name": "Puppeteer (PAL)"}, {"id": "BCES00938", "name": "SOCOM: Special Forces (PAL)"}, {"id": "BCES00939", "name": "SOCOM: Special Forces (PAL)"}, {"id": "BCES00956", "name": "PlayStation Move Heroes (PAL)"}, {"id": "BCES00968", "name": "The Sly Trilogy (PAL)"}, {"id": "BCES00969", "name": "Start the Party (PAL)"}, {"id": "BCES00970", "name": "Start The Party (PAL)"}, {"id": "BCES00979", "name": "SingStar Guitar (PAL)"}, {"id": "BCES00980", "name": "SingStar Guitar (PAL)"}, {"id": "BCES00981", "name": "SingStar Guitar (PAL)"}, {"id": "BCES00982", "name": "The Sly Trilogy (PAL)"}, {"id": "BCES01007", "name": "Killzone 3 (PAL)"}, {"id": "BCES01010", "name": "Twisted Metal (PAL)"}, {"id": "BCES01012", "name": "Sports Champions (PAL)"}, {"id": "BCES01023", "name": "SingStar Cantautori Italiani (PAL)"}, {"id": "BCES01024", "name": "SingStar: Après-Ski Party 2 (PAL)"}, {"id": "BCES01029", "name": "Kung Fu Rider (PAL)"}, {"id": "BCES01048", "name": "DC Universe Online (PAL)"}, {"id": "BCES01049", "name": "SingStar Dance (PAL)"}, {"id": "BCES01070", "name": "Time Crisis: Razing Storm (PAL)"}, {"id": "BCES01072", "name": "The Fight (PAL)"}, {"id": "BCES01077", "name": "TV Superstars (PAL)"}, {"id": "BCES01083", "name": "SingStar Afrikaanse Treffers (PAL)"}, {"id": "BCES01085", "name": "White Knight Chronicles II (PAL)"}, {"id": "BCES01086", "name": "LittleBigPlanet 2 (PAL)"}, {"id": "BCES01097", "name": "The ICO & Shadow of the Colossus Collection (PAL)"}, {"id": "BCES01103", "name": "SingStar Danske Hits (PAL)"}, {"id": "BCES01104", "name": "MotorStorm Apocalypse (PAL)"}, {"id": "BCES01111", "name": "Start the Party (PAL)"}, {"id": "BCES01115", "name": "The ICO & Shadow of the Colossus Collection (PAL)"}, {"id": "BCES01118", "name": "Resistance 3 (PAL)"}, {"id": "BCES01121", "name": "Beyond: Two Souls (PAL)"}, {"id": "BCES01122", "name": "Beyond: Two Souls (PAL)"}, {"id": "BCES01123", "name": "Beyond: Two Souls (PAL)"}, {"id": "BCES01141", "name": "Ratchet & Clank: All 4 One (PAL)"}, {"id": "BCES01142", "name": "Ratchet & Clank: All for One (PAL)"}, {"id": "BCES01143", "name": "inFamous 2 (PAL)"}, {"id": "BCES01144", "name": "inFamous 2 (PAL)"}, {"id": "BCES01160", "name": "De Blob 2 (PAL)"}, {"id": "BCES01175", "name": "Uncharted 3: Drake's Deception (PAL)"}, {"id": "BCES01176", "name": "Uncharted 3: Drake's Deception (PAL)"}, {"id": "BCES01180", "name": "PlayStation Move Heroes (PAL)"}, {"id": "BCES01186", "name": "Ape Escape (PAL)"}, {"id": "BCES01229", "name": "inFamous 2 (PAL)"}, {"id": "BCES01234", "name": "StarHawk (PAL)"}, {"id": "BCES01247", "name": "DanceStar Party (PAL)"}, {"id": "BCES01255", "name": "SingStar SuomiSuosikit (PAL)"}, {"id": "BCES01257", "name": "SingStar: Back to the 80s (PAL)"}, {"id": "BCES01258", "name": "SingStar Grandes Éxitos (PAL)"}, {"id": "BCES01273", "name": "Start The Party! Save the World (PAL)"}, {"id": "BCES01274", "name": "Start the Party! Save the World (PAL)"}, {"id": "BCES01277", "name": "God of War Collection Volume II (PAL)"}, {"id": "BCES01278", "name": "God of War Collection Volume II (PAL)"}, {"id": "BCES01279", "name": "Medieval Moves (PAL)"}, {"id": "BCES01284", "name": "Sly Cooper: Thieves in Time (PAL)"}, {"id": "BCES01289", "name": "Puppeteer (PAL)"}, {"id": "BCES01325", "name": "Jak & Daxter The Trilogy (PAL)"}, {"id": "BCES01334", "name": "Move Mind Benders (PAL)"}, {"id": "BCES01335", "name": "After Hours Athletes (PAL)"}, {"id": "BCES01336", "name": "Medieval Moves (PAL)"}, {"id": "BCES01337", "name": "Move Fitness (PAL)"}, {"id": "BCES01345", "name": "LittleBigPlanet 2 (PAL)"}, {"id": "BCES01346", "name": "LittleBigPlanet 2 (PAL)"}, {"id": "BCES01353", "name": "Resistance 3 (PAL)"}, {"id": "BCES01360", "name": "DanceStar Party (PAL)"}, {"id": "BCES01361", "name": "DanceStar Party (PAL)"}, {"id": "BCES01369", "name": "Carnival Island (PAL)"}, {"id": "BCES01370", "name": "Carnival Island (PAL)"}, {"id": "BCES01400", "name": "Twisted Metal (PAL)"}, {"id": "BCES01422", "name": "LittleBigPlanet Karting (PAL)"}, {"id": "BCES01435", "name": "PlayStation All-Stars Battle Royale (PAL)"}, {"id": "BCES01436", "name": "PlayStation All-Stars Battle Royale (PAL)"}, {"id": "BCES01454", "name": "Tekken Hybrid (PAL)"}, {"id": "BCES01482", "name": "Move Fitness (PAL)"}, {"id": "BCES01491", "name": "EyePet & Friends (PAL)"}, {"id": "BCES01498", "name": "Move Street Cricket (PAL)"}, {"id": "BCES01503", "name": "The Ratchet & Clank Trilogy (PAL)"}, {"id": "BCES01505", "name": "DanceStar Party Hits (PAL)"}, {"id": "BCES01531", "name": "Wonderbook: Book of Spells (PAL)"}, {"id": "BCES01556", "name": "Until Dawn (PAL)"}, {"id": "BCES01584", "name": "The Last of US (PAL)"}, {"id": "BCES01585", "name": "The Last of US (PAL)"}, {"id": "BCES01594", "name": "Ratchet & Clank: QForce (PAL)"}, {"id": "BCES01598", "name": "Sports Champions 2 (PAL)"}, {"id": "BCES01626", "name": "Ratchet & Clank: QForce (PAL)"}, {"id": "BCES01645", "name": "Doctor Who: The Eternity Clock (PAL)"}, {"id": "BCES01663", "name": "LittleBigPlanet 3 (PAL)"}, {"id": "BCES01670", "name": "Uncharted 3: Drake's Deception (Game of the Year Edition) (PAL)"}, {"id": "BCES01692", "name": "Uncharted 3: Drake's Deception (Game of the Year Edition) (PAL)"}, {"id": "BCES01693", "name": "LittleBigPlanet 2 Extras Edition (PAL)"}, {"id": "BCES01694", "name": "LittleBigPlanet 2 (Extras Edition) (PAL)"}, {"id": "BCES01695", "name": "Move Street Cricket II (PAL)"}, {"id": "BCES01700", "name": "Invizimals: The Lost Kingdom (PAL)"}, {"id": "BCES01725", "name": "Wonderbook Diggs: Nightcrawler (PAL)"}, {"id": "BCES01735", "name": "SingStar SuomiHuiput (PAL)"}, {"id": "BCES01740", "name": "Journey Collector's Edition (PAL)"}, {"id": "BCES01741", "name": "God of War: Ascension (PAL)"}, {"id": "BCES01742", "name": "God of War: Ascension (PAL)"}, {"id": "BCES01743", "name": "Killzone (PAL)"}, {"id": "BCES01806", "name": "Wonderbook: Walking with Dinosaurs (PAL)"}, {"id": "BCES01866", "name": "Wonderbook: Book of Potions (PAL)"}, {"id": "BCES01888", "name": "Beyond: Two Souls (PAL)"}, {"id": "BCES01893", "name": "Gran Turismo 6 (PAL)"}, {"id": "BCES01905", "name": "Gran Turismo 6 (PAL)"}, {"id": "BCES01908", "name": "Ratchet & Clank: Into the Nexus (PAL)"}, {"id": "BCES01915", "name": "SingStar SuomiHelmet (PAL)"}, {"id": "BCES01949", "name": "Ratchet & Clank: Into the Nexus (PAL)"}, {"id": "BCES01953", "name": "Wonderbook: Walking with Dinosaurs (PAL)"}, {"id": "BCES02025", "name": "SingStar: Ultimate Party (PAL)"}, {"id": "BCES02043", "name": "SingStar Ultimate Party (PAL)"}, {"id": "BCES02068", "name": "LittleBigPlanet 3 (PAL)"}, {"id": "BCES02112", "name": "SingStar Frozen (PAL)"}, {"id": "BCES02113", "name": "SingStar Frozen (PAL)"}, {"id": "BCES50000", "name": "Saint Seiya: Sanctuary Battle (PAL)"}, {"id": "BCET70033", "name": "Resistance 3 Online Beta"}, {"id": "BCET70034", "name": "Uncharted 3: Drake's Deception Beta"}, {"id": "BCJN29601", "name": "LittleBigPlanet (w/Dual Shock 3 - Clear Black)"}, {"id": "BCJN29602", "name": "LittleBigPlanet (w/Dual Shock 3 - Ceramic White)"}, {"id": "BCJN29603", "name": "LittleBigPlanet (w/Dual Shock 3 - Satin Silver)"}, {"id": "BCJS30001", "name": "Gran Turismo 5 (First Print Limited Edition) (NTSC-J)"}, {"id": "BCJS30002", "name": "Genji: Kamui Souran (NTSC-J)"}, {"id": "BCJS30003", "name": "Resistance: Jinrui Botsuraku no Hi (NTSC-J)"}, {"id": "BCJS30004", "name": "MotorStorm (NTSC-J)"}, {"id": "BCJS30005", "name": "Formula One Championship Edition (NTSC-J)"}, {"id": "BCJS30007", "name": "The Eye of Judgement (NTSC-J)"}, {"id": "BCJS30009", "name": "FolksSoul: Ushinawareta Denshou (NTSC-J)"}, {"id": "BCJS30010", "name": "Boku no Natsuyasumi 3 (NTSC-J)"}, {"id": "BCJS30011", "name": "Everybody's Golf 5 (NTSC-J)"}, {"id": "BCJS30012", "name": "Rise from Lair (NTSC-J)"}, {"id": "BCJS30014", "name": "Ratchet & Clank: Future : Tools of Destruction (NTSC-J)"}, {"id": "BCJS30015", "name": "Uncharted: El Dorado no Hihou (NTSC-J)"}, {"id": "BCJS30016", "name": "Heavenly Sword (NTSC-J)"}, {"id": "BCJS30017", "name": "Gran Turismo 5: Prologue (NTSC-J)"}, {"id": "BCJS30018", "name": "LittleBigPlanet (NTSC-J)"}, {"id": "BCJS30020", "name": "SIREN: New Translation (NTSC-J)"}, {"id": "BCJS30021", "name": "Afrika (NTSC-J)"}, {"id": "BCJS30022", "name": "Demon's Souls (NTSC-J)"}, {"id": "BCJS30023", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-J)"}, {"id": "BCJS30025", "name": "SOCOM: Confrontation (NTSC-J)"}, {"id": "BCJS30027", "name": "MotorStorm II (NTSC-J)"}, {"id": "BCJS30029", "name": "Resistance 2 (NTSC-J)"}, {"id": "BCJS30030", "name": "White Knight Chronicles (NTSC-J)"}, {"id": "BCJS30031", "name": "Gran Turismo 5 Prologue Spec III (NTSC-J)"}, {"id": "BCJS30032", "name": "Killzone 2 (NTSC-J)"}, {"id": "BCJS30033", "name": "The Last Guy (NTSC-J)"}, {"id": "BCJS30034", "name": "Toro to Morimori (NTSC-J)"}, {"id": "BCJS30035", "name": "Uncharted: Ougontou to Kieta Sendan (NTSC-J)"}, {"id": "BCJS30036", "name": "MAG: Massive Action Game (NTSC-J)"}, {"id": "BCJS30037", "name": "inFamous (NTSC-J)"}, {"id": "BCJS30038", "name": "Ratchet & Clank: Future - A Crack in Time (NTSC-J)"}, {"id": "BCJS30039", "name": "Shirokishi Monogatari: Inishie no Kodou (EX Edition) (NTSC-J)"}, {"id": "BCJS30040", "name": "Heavy Rain (NTSC-J)"}, {"id": "BCJS30041", "name": "ModNation: Mugen no Kart Oukoku (NTSC-J)"}, {"id": "BCJS30042", "name": "Shirokishi Monogatari: Hikari to Yami no Kakusei (NTSC-J)"}, {"id": "BCJS30050", "name": "Gran Turismo 5 (NTSC-J)"}, {"id": "BCJS30052", "name": "SOCOM 4: U.S. Navy SEALS (NTSC-J)"}, {"id": "BCJS30053", "name": "Sports Champions (NTSC-J)"}, {"id": "BCJS30054", "name": "Furi Furi! Saru Get You (NTSC-J)"}, {"id": "BCJS30055", "name": "Machi Suberi (NTSC-J)"}, {"id": "BCJS30056", "name": "Move de Party (NTSC-J)"}, {"id": "BCJS30057", "name": "Me & My Pet (NTSC-J)"}, {"id": "BCJS30058", "name": "LittleBigPlanet 2 (NTSC-J)"}, {"id": "BCJS30059", "name": "Beat Sketch! (NTSC-J)"}, {"id": "BCJS30060", "name": "Studio shooting (NTSC-J)"}, {"id": "BCJS30061", "name": "Sly Cooper Collection (NTSC-J)"}, {"id": "BCJS30062", "name": "Nikudan (NTSC-J)"}, {"id": "BCJS30063", "name": "TV Superstars (NTSC-J)"}, {"id": "BCJS30064", "name": "MotorStorm 3 (NTSC-J)"}, {"id": "BCJS30065", "name": "Mugen Kairou: Hikari to Kage no Hako (NTSC-J)"}, {"id": "BCJS30066", "name": "Killzone 3 (NTSC-J)"}, {"id": "BCJS30068", "name": "Tsumiki Bloq (NTSC-J)"}, {"id": "BCJS30069", "name": "Tokyo Jungle (NTSC-J)"}, {"id": "BCJS30070", "name": "ICO (NTSC-J)"}, {"id": "BCJS30071", "name": "Wander to Kyozou (NTSC-J)"}, {"id": "BCJS30072", "name": "Gachinko Heroes (NTSC-J)"}, {"id": "BCJS30073", "name": "ICO / Wander to Kyozou (Limited Box) (NTSC-J)"}, {"id": "BCJS30075", "name": "inFamous 2 (NTSC-J)"}, {"id": "BCJS30077", "name": "Bleach: Soul Ignition (NTSC-J)"}, {"id": "BCJS30078", "name": "Puppeteer (NTSC-J)"}, {"id": "BCJS30080", "name": "God of War: Rakujitsu no Hisoukyoku & Koutan no Kokuin HD Collection (NTSC-J)"}, {"id": "BCJS30081", "name": "Ratchet & Clank: All 4 One (NTSC-J)"}, {"id": "BCJS30084", "name": "Ratchet & Clank 1-2-3: Ginga * Saikyou Gorgeous Pack (NTSC-J)"}, {"id": "BCJS30085", "name": "LittleBigPlanet Karting (NTSC-J)"}, {"id": "BCJS30086", "name": "Sports Champions 2 (NTSC-J)"}, {"id": "BCJS30087", "name": "Wonderbook: Book of Spells (NTSC-J)"}, {"id": "BCJS30088", "name": "PlayStation All-Stars Battle Royale (NTSC-J)"}, {"id": "BCJS30093", "name": "Rain (NTSC-J)"}, {"id": "BCJS30094", "name": "Ratchet & Clank: Ginga Saikyou Tri-Star Pack (NTSC-J)"}, {"id": "BCJS30095", "name": "LittleBigPlanet 3 (NTSC-J)"}, {"id": "BCJS30100", "name": "Gran Turismo 5 Spec II (NTSC-J)"}, {"id": "BCJS35001", "name": "Destiny (NTSC-J)"}, {"id": "BCJS35002", "name": "Destiny: Furitachi Jashin - Legendary Edition (NTSC-J)"}, {"id": "BCJS37001", "name": "God of War III (NTSC-J)"}, {"id": "BCJS37002", "name": "God of War Trilogy (NTSC-J)"}, {"id": "BCJS37003", "name": "Killzone 3 (NTSC-J)"}, {"id": "BCJS37004", "name": "Uncharted 3: Sabaku ni Nemuru Atlantis (NTSC-J)"}, {"id": "BCJS37009", "name": "Beyond: Two Souls (NTSC-J)"}, {"id": "BCJS37011", "name": "Beyond: Two Souls (NTSC-J)"}, {"id": "BCJS37016", "name": "Gran Turismo 6 (NTSC-J)"}, {"id": "BCJS70001", "name": "Resistance: Jinrui Botsuraku no Hi (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70002", "name": "FolksSoul: Ushinawareta Denshou / Folklore (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70003", "name": "Boku no Natsuyasumi 3 (NTSC-J)"}, {"id": "BCJS70004", "name": "Ratchet & Clank Future: Tools of Destruction (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70005", "name": "Minna no Golf 5 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70006", "name": "SIREN: New Translation (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70007", "name": "Uncharted: El Dorado no Hihou (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70008", "name": "Afrika (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70009", "name": "LittleBigPlanet (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70010", "name": "Resistance: Jinrui Botsuraku no Hi (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BCJS70011", "name": "FolksSoul: Ushinawareta Denshou / Folklore (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BCJS70012", "name": "Ratchet & Clank: Tools of Destruction (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BCJS70013", "name": "Demon's Souls (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70014", "name": "Rise from Lair (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70016", "name": "Killzone 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70017", "name": "Heavy Rain (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70018", "name": "inFamous (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70019", "name": "Shirokishi Monogatari: Hikari to Yami no Kakusei (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70020", "name": "Minna no Golf 5 (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BCJS70021", "name": "Uncharted: Ougontou to Kieta Sendan (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70022", "name": "Resistance 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70023", "name": "inFamous 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70024", "name": "LittleBigPlanet 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70025", "name": "Bleach: Soul Ignition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70026", "name": "MAG: Massive Action Game (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70027", "name": "Tokyo Jungle (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS70028", "name": "Minna no Golf 6 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS75001", "name": "God of War III (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS75002", "name": "Killzone 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJS75003", "name": "Uncharted 3: Sabaku ni Nemuru Atlantis (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BCJX96001", "name": "Gran Turismo HD Install Disc"}, {"id": "BCJX96003", "name": "PlayStation 3 Special Demo Disc"}, {"id": "BCJX96004", "name": "PlayStation 3 Special Demo Disc"}, {"id": "BCKS10002", "name": "Motor Storm (NTSC-K)"}, {"id": "BCKS10006", "name": "MLB 07: The Show (NTSC-K)"}, {"id": "BCKS10010", "name": "Heavenly Sword (NTSC-K)"}, {"id": "BCKS10012", "name": "WarHawk (NTSC-K)"}, {"id": "BCKS10015", "name": "Everybody's Golf 5 (NTSC-K)"}, {"id": "BCKS10026", "name": "Haze (NTSC-K)"}, {"id": "BCKS10033", "name": "Ryu ga Gotoku Kenzan! (NTSC-K)"}, {"id": "BCKS10041", "name": "MotorStorm II (NTSC-K)"}, {"id": "BCKS10042", "name": "Hot Shots Golf: Out of Bounds (NTSC-K)"}, {"id": "BCKS10043", "name": "The Club (NTSC-K)"}, {"id": "BCKS10046", "name": "Sega Superstars Tennis (NTSC-K)"}, {"id": "BCKS10047", "name": "Condemned 2 (NTSC-K)"}, {"id": "BCKS10048", "name": "Viking: Battle for Asgard (NTSC-K)"}, {"id": "BCKS10053", "name": "SOCOM: U.S. Navy SEALs Confrontation (NTSC-K)"}, {"id": "BCKS10054", "name": "Ratchet & Clank Future: Tools of Destruction (Big Hit Series) (NTSC-K)"}, {"id": "BCKS10057", "name": "Resistance 2 (NTSC-K)"}, {"id": "BCKS10058", "name": "NBA 09 The Inside (NTSC-K)"}, {"id": "BCKS10059", "name": "LittleBigPlanet (NTSC-K)"}, {"id": "BCKS10060", "name": "Fallout 3 (NTSC-K)"}, {"id": "BCKS10061", "name": "Golden Axe: Beast Rider (NTSC-K)"}, {"id": "BCKS10062", "name": "The Elder Scrolls IV: Obivion (Game of the Year Edition) (NTSC-K)"}, {"id": "BCKS10063", "name": "Hakuna Matata (NTSC-K)"}, {"id": "BCKS10065", "name": "Sonic Unleashed (NTSC-K)"}, {"id": "BCKS10066", "name": "FolksSoul (BigHit Series) (NTSC-K)"}, {"id": "BCKS10067", "name": "Aquanaut's Holiday: Kakusareta Kiroku (NTSC-K)"}, {"id": "BCKS10071", "name": "Demon's Souls (NTSC-K)"}, {"id": "BCKS10082", "name": "inFamous (NTSC-K)"}, {"id": "BCKS10112", "name": "No More Heroes: Heroes' Paradise (NTSC-K)"}, {"id": "BCKS10115", "name": "NieR RepliCant (NTSC-K)"}, {"id": "BCKS10128", "name": "Front Mission Evolved (NTSC-K)"}, {"id": "BCKS10164", "name": "MLB 11: The Show (NTSC-K)"}, {"id": "BCKS10195", "name": "Call of Duty Modern Warfare Three (NTSC-K)"}, {"id": "BCKS15006", "name": "Heavy Rain: Move Edition (NTSC-K)"}, {"id": "BCUS00236", "name": "MLB 15: The Show (NTSC-U)"}, {"id": "BCUS01089", "name": "MLB The Show 16 (NTSC-U)"}, {"id": "BCUS90260", "name": "LittleBigPlanet 2: Special Edition (NTSC-U)"}, {"id": "BCUS90528", "name": "God of War Saga (NTSC-U)"}, {"id": "BCUS90640", "name": "Uncharted: Drake's Fortune (Greatest Hits) (NTSC-U)"}, {"id": "BCUS90641", "name": "Uncharted 2: Among Thieves (Game of the Year Edition) (Greatest Hits) (NTSC-U)"}, {"id": "BCUS90662", "name": "PlayStation Move Demo Disc Volume 2 (NTSC-U)"}, {"id": "BCUS90675", "name": "Uncharted 3: Drake's Deception (NTSC-U)"}, {"id": "BCUS90762", "name": "PlayStation Move Demo Disc Volume 3 (NTSC-U)"}, {"id": "BCUS94344", "name": "SingStar Latino (NTSC-U)"}, {"id": "BCUS98081", "name": "Jak & Daxter Collection (NTSC-U)"}, {"id": "BCUS98102", "name": "NBA '07 (NTSC-U)"}, {"id": "BCUS98103", "name": "Uncharted: Drake's Fortune (NTSC-U)"}, {"id": "BCUS98106", "name": "Twisted Metal (NTSC-U)"}, {"id": "BCUS98107", "name": "Resistance: Fall of Man (NTSC-U)"}, {"id": "BCUS98109", "name": "MLB '07: The Show (NTSC-U)"}, {"id": "BCUS98110", "name": "MAG (NTSC-U)"}, {"id": "BCUS98111", "name": "God of War III (NTSC-U)"}, {"id": "BCUS98112", "name": "Lair (NTSC-U)"}, {"id": "BCUS98114", "name": "Gran Turismo 5 (NTSC-U)"}, {"id": "BCUS98115", "name": "Hot Shots Golf: Out of Bounds (NTSC-U)"}, {"id": "BCUS98116", "name": "Killzone Trilogy (NTSC-U)"}, {"id": "BCUS98117", "name": "Warhawk (With Headset) (NTSC-U)"}, {"id": "BCUS98119", "name": "inFamous (Greatest Hits) (NTSC-U)"}, {"id": "BCUS98120", "name": "Resistance 2 (NTSC-U)"}, {"id": "BCUS98123", "name": "Uncharted 2: Among Thieves (NTSC-U)"}, {"id": "BCUS98124", "name": "Ratchet & Clank: Future - A Crack in Time (NTSC-U)"}, {"id": "BCUS98125", "name": "inFamous 2 (NTSC-U)"}, {"id": "BCUS98127", "name": "Ratchet & Clank: Future - Tools of Destruction (NTSC-U)"}, {"id": "BCUS98131", "name": "Genji: Days of the Blade (NTSC-U)"}, {"id": "BCUS98132", "name": "Heavenly Sword (NTSC-U)"}, {"id": "BCUS98133", "name": "The Eye of Judgement (NTSC-U)"}, {"id": "BCUS98135", "name": "SOCOM 4: U.S. Navy SEALs (NTSC-U)"}, {"id": "BCUS98137", "name": "MotorStorm (NTSC-U)"}, {"id": "BCUS98141", "name": "MLB '08: The Show (NTSC-U)"}, {"id": "BCUS98142", "name": "Formula One: Championship Edition (NTSC-U)"}, {"id": "BCUS98144", "name": "NBA 08 (NTSC-U)"}, {"id": "BCUS98145", "name": "Buzz! Quiz TV (Bundle) (NTSC-U)"}, {"id": "BCUS98146", "name": "White Knight Chronicles: International Edition (NTSC-U)"}, {"id": "BCUS98147", "name": "Folklore (NTSC-U)"}, {"id": "BCUS98148", "name": "LittleBigPlanet (NTSC-U)"}, {"id": "BCUS98151", "name": "SingStar (NTSC-U)"}, {"id": "BCUS98152", "name": "SOCOM: U.S. Navy SEALs - Confrontation (NTSC-U)"}, {"id": "BCUS98154", "name": "inFamous (NTSC-U)"}, {"id": "BCUS98155", "name": "MotorStorm: Pacific Rift (NTSC-U)"}, {"id": "BCUS98156", "name": "Welcome to PlayStation Network and PlayStation 3 40GB (NTSC-U)"}, {"id": "BCUS98158", "name": "Gran Turismo 5: Prologue (NTSC-U)"}, {"id": "BCUS98161", "name": "SingStar (NTSC-U)"}, {"id": "BCUS98162", "name": "Warhawk (NTSC-U)"}, {"id": "BCUS98164", "name": "Heavy Rain (NTSC-U)"}, {"id": "BCUS98165", "name": "NBA '09: The Inside (NTSC-U)"}, {"id": "BCUS98167", "name": "ModNation Racers (NTSC-U)"}, {"id": "BCUS98168", "name": "SingStar Vol.2 (NTSC-U)"}, {"id": "BCUS98174", "name": "The Last of US (NTSC-U)"}, {"id": "BCUS98175", "name": "Ratchet & Clank: All 4 One (NTSC-U)"}, {"id": "BCUS98176", "name": "Resistance 3 (Doomsday Edition) (NTSC-U)"}, {"id": "BCUS98177", "name": "Sports Champions (NTSC-U)"}, {"id": "BCUS98178", "name": "SingStar Vol.2 (NTSC-U)"}, {"id": "BCUS98180", "name": "MLB 09: The Show (NTSC-U)"}, {"id": "BCUS98181", "name": "Starhawk (NTSC-U)"}, {"id": "BCUS98182", "name": "Welcome to PlayStation Network and PlayStation 3 80GB (NTSC-U)"}, {"id": "BCUS98183", "name": "SOCOM: U.S. Navy SEALs - Confrontation (NTSC-U)"}, {"id": "BCUS98184", "name": "inFamous (NTSC-U)"}, {"id": "BCUS98186", "name": "SingStar Vol.2 (NTSC-U)"}, {"id": "BCUS98190", "name": "Resistance 2 (Collector's Edition) (NTSC-U)"}, {"id": "BCUS98192", "name": "SingStar ABBA (NTSC-U)"}, {"id": "BCUS98195", "name": "Welcome to PlayStation Network and PlayStation 3 160GB (NTSC-U)"}, {"id": "BCUS98199", "name": "LittleBigPlanet (NTSC-U)"}, {"id": "BCUS98206", "name": "SingStar Queen (NTSC-U)"}, {"id": "BCUS98207", "name": "MLB 10: The Show (NTSC-U)"}, {"id": "BCUS98208", "name": "LittleBigPlanet (Game of the Year Edition) (NTSC-U)"}, {"id": "BCUS98209", "name": "Buzz! Quiz World (NTSC-U)"}, {"id": "BCUS98213", "name": "Welcome to PlayStation Network and PlayStation 3 Slim (NTSC-U)"}, {"id": "BCUS98214", "name": "EyePet: Move Edition (NTSC-U)"}, {"id": "BCUS98215", "name": "Buzz! Quiz World (NTSC-U)"}, {"id": "BCUS98220", "name": "Start the Party! (NTSC-U)"}, {"id": "BCUS98222", "name": "The Shoot (NTSC-U)"}, {"id": "BCUS98224", "name": "TV Superstars (NTSC-U)"}, {"id": "BCUS98227", "name": "Puppeteer (NTSC-U)"}, {"id": "BCUS98229", "name": "God of War Collection (NTSC-U)"}, {"id": "BCUS98231", "name": "God of War III (Ultimate Edition) (NTSC-U)"}, {"id": "BCUS98232", "name": "God of War: Ascension (NTSC-U)"}, {"id": "BCUS98233", "name": "Uncharted 3: Drake's Deception (NTSC-U)"}, {"id": "BCUS98234", "name": "Killzone 3 (NTSC-U)"}, {"id": "BCUS98235", "name": "EyePet & Friends (NTSC-U)"}, {"id": "BCUS98242", "name": "MotorStorm Apocalypse (NTSC-U)"}, {"id": "BCUS98245", "name": "LittleBigPlanet 2 (NTSC-U)"}, {"id": "BCUS98246", "name": "The Sly Collection (NTSC-U)"}, {"id": "BCUS98247", "name": "Sly Cooper: Thieves in Time (NTSC-U)"}, {"id": "BCUS98248", "name": "Playstation Move Heroe (NTSC-U)"}, {"id": "BCUS98249", "name": "LittleBigPlanet 2 (Collector's Edition) (NTSC-U)"}, {"id": "BCUS98251", "name": "MLB 11: The Show (NTSC-U)"}, {"id": "BCUS98254", "name": "Little Big Planet Karting (NTSC-U)"}, {"id": "BCUS98255", "name": "The Fight: Lights Out (NTSC-U)"}, {"id": "BCUS98257", "name": "Uncharted 2: Among Thieves (Game of the Year Edition) (NTSC-U)"}, {"id": "BCUS98259", "name": "The ICO & Shadow of the Colossus Collection (NTSC-U)"}, {"id": "BCUS98261", "name": "High Velocity Bowling (Move Edition) (NTSC-U)"}, {"id": "BCUS98262", "name": "Sports Champions (Bundle) (NTSC-U)"}, {"id": "BCUS98263", "name": "PlayStation Move Demo Disc Volume 1 (NTSC-U)"}, {"id": "BCUS98266", "name": "SingStar Dance (NTSC-U)"}, {"id": "BCUS98270", "name": "Kung Fu Rider (NTSC-U)"}, {"id": "BCUS98271", "name": "Carnival Island (NTSC-U)"}, {"id": "BCUS98272", "name": "Gran Turismo 5 (Collector's Edition) (NTSC-U)"}, {"id": "BCUS98279", "name": "Medieval Moves: Deadmund's Quest (NTSC-U)"}, {"id": "BCUS98280", "name": "Heavy Rain (Greatest Hits) (NTSC-U)"}, {"id": "BCUS98281", "name": "Jak & Daxter Collection (NTSC-U)"}, {"id": "BCUS98282", "name": "Ratchet & Clank Collection (NTSC-U)"}, {"id": "BCUS98285", "name": "ESA Game Pack (NTSC-U)"}, {"id": "BCUS98289", "name": "God of War Origins Collection (NTSC-U)"}, {"id": "BCUS98290", "name": "inFamous 2 (Hero Edition) (NTSC-U)"}, {"id": "BCUS98295", "name": "MLB 12: The Show (NTSC-U)"}, {"id": "BCUS98296", "name": "Gran Turismo 6 (NTSC-U)"}, {"id": "BCUS98298", "name": "Beyond: Two Souls (NTSC-U)"}, {"id": "BCUS98359", "name": "Wonderbook: Book of Spells (NTSC-U)"}, {"id": "BCUS98362", "name": "LittleBigPlanet 3 (NTSC-U)"}, {"id": "BCUS98365", "name": "Everybody Dance (NTSC-U)"}, {"id": "BCUS98366", "name": "Uncharted 3: Drake's Deception (Collector's Edition) (NTSC-U)"}, {"id": "BCUS98372", "name": "LittleBigPlanet 2 (Special Edition) (NTSC-U)"}, {"id": "BCUS98374", "name": "Tiger Woods PGA Tour 12 (NTSC-U)"}, {"id": "BCUS98375", "name": "Uncharted Double Pack (NTSC-U)"}, {"id": "BCUS98376", "name": "Resistance Dual Pack (Greatest Hits) (NTSC-U)"}, {"id": "BCUS98377", "name": "Journey : Collector's Edition (NTSC-U)"}, {"id": "BCUS98380", "name": "Ratchet & Clank: Full Frontal Assault (NTSC-U)"}, {"id": "BCUS98394", "name": "Gran Turismo 5 XL Edition (NTSC-U)"}, {"id": "BCUS98472", "name": "PlayStation All-Stars Battle Royale (NTSC-U)"}, {"id": "BCUS98473", "name": "MLB 13 : The Show (NTSC-U)"}, {"id": "BCUS99069", "name": "God of War Saga (NTSC-U)"}, {"id": "BCUS99075", "name": "Killzone Trilogy (NTSC-U)"}, {"id": "BCUS99142", "name": "Sly Cooper: Thieves in Time (NTSC-U)"}, {"id": "BCUS99195", "name": "MLB 14: The Show (NTSC-U)"}, {"id": "BCUS99205", "name": "Best of PlayStation Network: Vol. 1 (NTSC-U)"}, {"id": "BCUS99245", "name": "Ratchet & Clank: Into the Nexus (NTSC-U)"}, {"id": "BCUS99247", "name": "Gran Turismo 6: Ayrton Senna Special Edition (NTSC-U)"}, {"id": "BLAS20237", "name": "MLB 12: The Show (NTSC-A)"}, {"id": "BLAS50001", "name": "Gundam: Target in Sight (NTSC-A)"}, {"id": "BLAS50002", "name": "Mahjong Kakutou Club:Zenkoku Taisenban (NTSC-A)"}, {"id": "BLAS50003", "name": "Need for Speed: Carbon (NTSC-A)"}, {"id": "BLAS50004", "name": "Tiger Woods PGA Tour 2007 (NTSC-A)"}, {"id": "BLAS50008", "name": "Sonic the Hedgehog (NTSC-A)"}, {"id": "BLAS50009", "name": "Fight Night: Round 3 (NTSC-A)"}, {"id": "BLAS50010", "name": "Virtua Fighter 5 (NTSC-A)"}, {"id": "BLAS50011", "name": "NBA Street : Homecourt (NTSC-A)"}, {"id": "BLAS50012", "name": "Def Jam: Icon (NTSC-A)"}, {"id": "BLAS50013", "name": "The Godfather: The Don's Edition (NTSC-A)"}, {"id": "BLAS50014", "name": "Virtua Tennis 3 / Power Smash 3 (NTSC-A)"}, {"id": "BLAS50015", "name": "Gundam Musou (NTSC-A)"}, {"id": "BLAS50016", "name": "Bladestorm: Hyakunen Sensou (NTSC-A)"}, {"id": "BLAS50017", "name": "Mist of Chaos (NTSC-A)"}, {"id": "BLAS50018", "name": "Harry Potter and the Order of the Phoenix (NTSC-A)"}, {"id": "BLAS50019", "name": "Madden NFL 08 (NTSC-A)"}, {"id": "BLAS50020", "name": "Tiger Woods PGA Tour 08 (NTSC-A)"}, {"id": "BLAS50021", "name": "Skate (NTSC-A)"}, {"id": "BLAS50022", "name": "NBA Live 08 (NTSC-A)"}, {"id": "BLAS50023", "name": "Blazing Angels 2: Secret Missions of WWII (NTSC-A)"}, {"id": "BLAS50024", "name": "Shin Sangoku Musou 5 (NTSC-A)"}, {"id": "BLAS50025", "name": "Medal of Honor: Airborne (NTSC-A)"}, {"id": "BLAS50026", "name": "Need for Speed: ProStreet (NTSC-A)"}, {"id": "BLAS50027", "name": "FIFA Soccer 08 (NTSC-A)"}, {"id": "BLAS50028", "name": "Sega Rally Revo (NTSC-A)"}, {"id": "BLAS50030", "name": "Megazone 23: Aoi Garland (NTSC-A)"}, {"id": "BLAS50031", "name": "Mercenaries 2: World in Flames (NTSC-A)"}, {"id": "BLAS50032", "name": "Army of Two (NTSC-A)"}, {"id": "BLAS50033", "name": "The Simpsons Game (NTSC-A)"}, {"id": "BLAS50034", "name": "Half-Life 2: The Orange Box (NTSC-A)"}, {"id": "BLAS50036", "name": "WORLD SOCCER Winning Eleven 2008 (NTSC-A)"}, {"id": "BLAS50038", "name": "Assassin's Creed (NTSC-A)"}, {"id": "BLAS50039", "name": "Burnout Paradise (NTSC-A)"}, {"id": "BLAS50040", "name": "Devil May Cry 4 (NTSC-A)"}, {"id": "BLAS50041", "name": "FIFA Street 3 (NTSC-A)"}, {"id": "BLAS50042", "name": "Lost Planet: Extreme Condition (NTSC-A)"}, {"id": "BLAS50043", "name": "Alone in the Dark: Inferno (NTSC-A)"}, {"id": "BLAS50044", "name": "Ryu ga Gotoku Kenzan! (NTSC-A)"}, {"id": "BLAS50045", "name": "Tom Clancy's Rainbow Six: Vegas 2 (NTSC-A)"}, {"id": "BLAS50046", "name": "Battlefield: Bad Company (NTSC-A)"}, {"id": "BLAS50047", "name": "The Club (NTSC-A)"}, {"id": "BLAS50048", "name": "Sega Superstars Tennis (NTSC-A)"}, {"id": "BLAS50049", "name": "Condemned 2 (NTSC-A)"}, {"id": "BLAS50050", "name": "Viking: Battle for Asgard (NTSC-A)"}, {"id": "BLAS50051", "name": "Iron Man (NTSC-U)"}, {"id": "BLAS50052", "name": "UEFA Euro 2008 (NTSC-A)"}, {"id": "BLAS50053", "name": "Initial D Extreme Stage (NTSC-A)"}, {"id": "BLAS50054", "name": "Dragon Ball Z: Burst Limit (NTSC-A)"}, {"id": "BLAS50055", "name": "The Incredible Hulk (NTSC-A)"}, {"id": "BLAS50056", "name": "Battlefield: Bad Company (Gold Edition) (NTSC-A)"}, {"id": "BLAS50057", "name": "Hellboy: Science of Evil (NTSC-A)"}, {"id": "BLAS50058", "name": "Splinter Cell: Double Agent (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50059", "name": "Tom Clancy's Rainbow Six: Vegas (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50060", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50062", "name": "Need for Speed: Carbon (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50072", "name": "Dead Space (NTSC-A)"}, {"id": "BLAS50074", "name": "Silent Hill: Homecoming (NTSC-A)"}, {"id": "BLAS50086", "name": "World Soccer Winning Eleven 2009 (NTSC-A)"}, {"id": "BLAS50091", "name": "Burnout Paradise: The Ultimate Box (NTSC-A)"}, {"id": "BLAS50092", "name": "Bionic Commando (NTSC-A)"}, {"id": "BLAS50099", "name": "The Godfather II (NTSC-A)"}, {"id": "BLAS50104", "name": "I Am Alive (NTSC-A)"}, {"id": "BLAS50109", "name": "Professional Baseball Spirits 6 (NTSC-J)"}, {"id": "BLAS50113", "name": "UFC Undisputed 2009 (NTSC-A)"}, {"id": "BLAS50116", "name": "Devil May Cry 4 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50117", "name": "World Soccer Winning Eleven 2009 (Playstation the best) (NTSC-A)"}, {"id": "BLAS50123", "name": "Army Of Two (NTSC-A)"}, {"id": "BLAS50124", "name": "Need for Speed: ProStreet (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50125", "name": "Battlefield: Bad Company (PlayStation3 the Best) (NTSC-A)"}, {"id": "BLAS50126", "name": "Half-Life 2: The Orange Box (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50127", "name": "The King of Fighters XII (NTSC-A)"}, {"id": "BLAS50131", "name": "Prince of Persia (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50135", "name": "Batman: Arkham Asylum (NTSC-A)"}, {"id": "BLAS50142", "name": "Musou Orochi Z (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50146", "name": "Saw (NTSC-A)"}, {"id": "BLAS50152", "name": "Tekken 6 (NTSC-A)"}, {"id": "BLAS50153", "name": "WORLD SOCCER Winning Eleven 2010 (NTSC-A)"}, {"id": "BLAS50159", "name": "Assassin's Creed II (NTSC-A)"}, {"id": "BLAS50160", "name": "Ninja Gaiden Sigma 2 (NTSC-J)"}, {"id": "BLAS50162", "name": "Street Fighter IV (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50164", "name": "Bayonetta (NTSC-A)"}, {"id": "BLAS50167", "name": "MX vs. ATV: Reflex (NTSC-A)"}, {"id": "BLAS50169", "name": "Saints Row 2 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50170", "name": "Gundam Musou 2 (PlayStation 3 the Best) (Gundam 30th Anniversary Collection) (NTSC-A)"}, {"id": "BLAS50172", "name": "Ryu ga Gotoku 3 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50174", "name": "Army of Two: The 40th Day (NTSC-A)"}, {"id": "BLAS50177", "name": "Ar Tonelico III: Sekai Shuuen No Hikigane Wa Shoujo No Uta Ga Hiku (NTSC-A)"}, {"id": "BLAS50181", "name": "Resident Evil 5 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50186", "name": "Battlefield: Bad Company 2 (NTSC-A)"}, {"id": "BLAS50191", "name": "R.U.S.E. (NTSC-A)"}, {"id": "BLAS50192", "name": "Quantum Theory (NTSC-A)"}, {"id": "BLAS50195", "name": "Yakuza 3 (NTSC-A)"}, {"id": "BLAS50199", "name": "World Soccer Winning Eleven 2010 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50204", "name": "Need for Speed: Undercover (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50205", "name": "Fight Night Round 4 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50207", "name": "Prince of Persia: The Forgotten Sands (NTSC-A)"}, {"id": "BLAS50211", "name": "WWE Smackdown vs. Raw 2010 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50212", "name": "Need for Speed: Shift (EA Best Hits) (NTSC-A)"}, {"id": "BLAS50215", "name": "Assassin's Creed II: Complete Edition (NTSC-A)"}, {"id": "BLAS50218", "name": "Shin Sangoku Musou 5 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50219", "name": "Naruto Narultimate Storm (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50220", "name": "Sengoku Basara 3 (NTSC-A)"}, {"id": "BLAS50221", "name": "Madden NFL 11 (NTSC-A)"}, {"id": "BLAS50231", "name": "WORLD SOCCER Winning Eleven 2011 (NTSC-A)"}, {"id": "BLAS50232", "name": "Medal of Honor (NTSC-A)"}, {"id": "BLAS50234", "name": "NBA 2K11 (NTSC-A)"}, {"id": "BLAS50235", "name": "Time Crisis: Razing Storm (NTSC-A)"}, {"id": "BLAS50236", "name": "Medal of Honor (NTSC-A)"}, {"id": "BLAS50238", "name": "Medal of Honor (NTSC-A)"}, {"id": "BLAS50239", "name": "Medal of Honor (NTSC-A)"}, {"id": "BLAS50241", "name": "Enslaved: Odyssey to the West (NTSC-A)"}, {"id": "BLAS50243", "name": "Tekken 6 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50244", "name": "Burnout Paradise: The Ultimate Box (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50245", "name": "Dead Space (Playstation 3 The Best) (NTSC-A)"}, {"id": "BLAS50248", "name": "Castlevania: Lords of Shadow (NTSC-A)"}, {"id": "BLAS50257", "name": "The Sims 3 (NTSC-A)"}, {"id": "BLAS50272", "name": "Create (NTSC-A)"}, {"id": "BLAS50278", "name": "Assassin's Creed: Brotherhood (NTSC-A)"}, {"id": "BLAS50279", "name": "Michael Jackson: The Experience (NTSC-A)"}, {"id": "BLAS50287", "name": "Hokuto Musou International (NTSC-A)"}, {"id": "BLAS50288", "name": "Super Street Fighter IV (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50296", "name": "Red Dead Redemption: Undead Nightmare Collection (NTSC-A)"}, {"id": "BLAS50300", "name": "Castlevania: Lords of Shadow (NTSC-A)"}, {"id": "BLAS50303", "name": "Knights Contract (NTSC-A)"}, {"id": "BLAS50307", "name": "Shin Sangoku Musou 6 (NTSC-A)"}, {"id": "BLAS50309", "name": "Yakuza 4 (NTSC-A)"}, {"id": "BLAS50310", "name": "Ryu ga Gotoku: Of the End (NTSC-A)"}, {"id": "BLAS50312", "name": "Bulletstorm (NTSC-A)"}, {"id": "BLAS50318", "name": "Homefront (NTSC-A)"}, {"id": "BLAS50319", "name": "Child of Eden (NTSC-A)"}, {"id": "BLAS50321", "name": "Dance on Broadway (NTSC-A)"}, {"id": "BLAS50332", "name": "Mortal Kombat (NTSC-A)"}, {"id": "BLAS50333", "name": "Virtua Tennis 4 (NTSC-A)"}, {"id": "BLAS50336", "name": "World Soccer Winning Eleven 2011 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50337", "name": "Need for Speed : The Run (NTSC-A)"}, {"id": "BLAS50339", "name": "FIFA 11 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50341", "name": "Duke Nukem Forever (NTSC-A)"}, {"id": "BLAS50342", "name": "L.A. Noire (NTSC-A)"}, {"id": "BLAS50343", "name": "Red Faction: Armageddon (NTSC-A)"}, {"id": "BLAS50345", "name": "Sengoku Basara 3 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50352", "name": "Call of Juarez: The Cartel (NTSC-A)"}, {"id": "BLAS50355", "name": "BioHazard: Revival Selection (NTSC-A)"}, {"id": "BLAS50357", "name": "Ninja Gaiden Sigma 2 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50360", "name": "Tom Clancy's Splinter Cell Classic Trilogy HD (NTSC-A)"}, {"id": "BLAS50364", "name": "Sengoku Musou 3 Empires (NTSC-A)"}, {"id": "BLAS50365", "name": "WORLD SOCCER Winning Eleven 2012 (NTSC-A)"}, {"id": "BLAS50366", "name": "The King of Fighters XIII (NTSC-A)"}, {"id": "BLAS50370", "name": "FIFA 12 (NTSC-A)"}, {"id": "BLAS50371", "name": "Tales of Xillia (First-Print Edition) (NTSC-A)"}, {"id": "BLAS50372", "name": "Warhammer 40000: Space Marine (NTSC-A)"}, {"id": "BLAS50374", "name": "Rage (NTSC-A)"}, {"id": "BLAS50378", "name": "The Sims: Pets (NTSC-A)"}, {"id": "BLAS50379", "name": "Batman: Arkham City (NTSC-A)"}, {"id": "BLAS50383", "name": "Metal Gear Solid: HD Collection (NTSC-A)"}, {"id": "BLAS50384", "name": "Battlefield 3 (NTSC-A)"}, {"id": "BLAS50387", "name": "Dark Souls (NTSC-A)"}, {"id": "BLAS50388", "name": "NBA 2K12 (NTSC-A)"}, {"id": "BLAS50389", "name": "Just Dance 3 (NTSC-A)"}, {"id": "BLAS50392", "name": "Motionsports Adrenaline (NTSC-A)"}, {"id": "BLAS50394", "name": "The House of the Dead Overkill: Extended Cut (NTSC-A)"}, {"id": "BLAS50395", "name": "Dragon Ball Z: Ultimate Tenkaichi (NTSC-A)"}, {"id": "BLAS50396", "name": "The Idolm@ster 2 (NTSC-A)"}, {"id": "BLAS50397", "name": "Dark Souls (NTSC-A)"}, {"id": "BLAS50404", "name": "The Elder Scrolls V: Skyrim (NTSC-A)"}, {"id": "BLAS50405", "name": "Sonic Generations (NTSC-A)"}, {"id": "BLAS50407", "name": "Saints Row: The Third (NTSC-A)"}, {"id": "BLAS50411", "name": "Saint Seiya Senki (NTSC-A)"}, {"id": "BLAS50414", "name": "Dynasty Warriors 7: Xtreme Legends (NTSC-A)"}, {"id": "BLAS50417", "name": "Just Dance Kids 2 (NTSC-A)"}, {"id": "BLAS50418", "name": "Assassin's Creed: Revelations (NTSC-A)"}, {"id": "BLAS50419", "name": "Happy Feet Two (NTSC-A)"}, {"id": "BLAS50420", "name": "LEGO Harry Potter: Years 5-7 (NTSC-A)"}, {"id": "BLAS50421", "name": "Rayman Origins (NTSC-A)"}, {"id": "BLAS50422", "name": "Professional Baseball Spirits 2012 (NTSC-A)"}, {"id": "BLAS50423", "name": "Mobile Suit Gundam: Extreme VS. (NTSC-A)"}, {"id": "BLAS50424", "name": "Dragon Ball: Ultimate Blast (NTSC-A)"}, {"id": "BLAS50425", "name": "Musou Orochi 2 (NTSC-A)"}, {"id": "BLAS50426", "name": "Blades of Time (NTSC-A)"}, {"id": "BLAS50429", "name": "SoulCalibur V (NTSC-A)"}, {"id": "BLAS50432", "name": "Silent Hill: HD Collection (NTSC-A)"}, {"id": "BLAS50434", "name": "Binary Domain (NTSC-A)"}, {"id": "BLAS50436", "name": "Super Street Fighter IV: Arcade Edition (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50437", "name": "Darkness II (Limited Edition) (NTSC-A)"}, {"id": "BLAS50438", "name": "Saint Seiya: Sanctuary Battle (NTSC-A)"}, {"id": "BLAS50439", "name": "Naruto Shippuden: Narutimate Storm Generation (NTSC-A)"}, {"id": "BLAS50440", "name": "Ryu ga Gotoku: Of the End (NTSC-A)"}, {"id": "BLAS50442", "name": "NeverDead (NTSC-A)"}, {"id": "BLAS50443", "name": "Kingdoms of Amalur: Reckoning (NTSC-A)"}, {"id": "BLAS50445", "name": "SSX (NTSC-A)"}, {"id": "BLAS50447", "name": "Asura's Wrath (NTSC-A)"}, {"id": "BLAS50448", "name": "Armored Core: V (NTSC-A)"}, {"id": "BLAS50450", "name": "One Piece: Kaizoku Musou (NTSC-A)"}, {"id": "BLAS50454", "name": "Mass Effect 3 (NTSC-A)"}, {"id": "BLAS50456", "name": "Silent Hill: Downpour (NTSC-A)"}, {"id": "BLAS50457", "name": "Kidou Senshi Gundam UC (NTSC-A)"}, {"id": "BLAS50458", "name": "Naruto Shippuden: Narutimate Storm Generation (NTSC-A)"}, {"id": "BLAS50460", "name": "Max Payne 3 (NTSC-A)"}, {"id": "BLAS50462", "name": "Ninja Gaiden 3 (NTSC-A)"}, {"id": "BLAS50464", "name": "Warriors Orochi 3 (NTSC-A)"}, {"id": "BLAS50469", "name": "FIFA 12 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50477", "name": "Tom Clancy's Rainbow Six Vegas 2 (Complete Edition) + Ghost Recon Advanced Warfighter 2 (Double Pack) (NTSC-A)"}, {"id": "BLAS50478", "name": "Tom Clancy's Splinter Cell Double Agent / Rainbow Six Vegas (Double Pack) (NTSC-A)"}, {"id": "BLAS50480", "name": "Driver: San Francisco (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50484", "name": "Ayesha no Atelier: Tasogare no Daichi no Renkinjutsushi (NTSC-A)"}, {"id": "BLAS50485", "name": "Resident Evil 6 (NTSC-A)"}, {"id": "BLAS50486", "name": "Gundam Musou 3 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50487", "name": "London 2012 - The Official Video Game of the Olympic Games (NTSC-A)"}, {"id": "BLAS50490", "name": "Darksiders II (NTSC-A)"}, {"id": "BLAS50492", "name": "Shin Sangoku Musou 5 Empires (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50493", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version (NTSC-A)"}, {"id": "BLAS50494", "name": "Assassin's Creed III (NTSC-A)"}, {"id": "BLAS50495", "name": "Assassin's Creed III (NTSC-A)"}, {"id": "BLAS50497", "name": "Crysis 3 (NTSC-A)"}, {"id": "BLAS50498", "name": "WORLD SOCCER Winning Eleven 2013 (NTSC-A)"}, {"id": "BLAS50499", "name": "Assassin's Creed: Revelations (NTSC-A)"}, {"id": "BLAS50500", "name": "Troy Musou (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50501", "name": "Tales of Graces F (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50502", "name": "Atelier Ayesha: The Alchemist of Dusk (NTSC-A)"}, {"id": "BLAS50505", "name": "Medal of Honor: Warfighter (NTSC-A)"}, {"id": "BLAS50506", "name": "Tekken Tag Tournament 2 (NTSC-A)"}, {"id": "BLAS50507", "name": "Accel World: Ginyoku No Kakusei (NTSC-A)"}, {"id": "BLAS50508", "name": "Shin Sangoku Musou 6 Empires (NTSC-A)"}, {"id": "BLAS50509", "name": "Borderlands 2 (NTSC-A)"}, {"id": "BLAS50514", "name": "FIFA 13 (NTSC-A)"}, {"id": "BLAS50515", "name": "Dead or Alive 5 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50523", "name": "Okami Zekkeihan (NTSC-A)"}, {"id": "BLAS50527", "name": "Tokitowa (NTSC-A)"}, {"id": "BLAS50528", "name": "Dark Souls (NTSC-A)"}, {"id": "BLAS50529", "name": "Medal of Honor: Warfighter (NTSC-A)"}, {"id": "BLAS50530", "name": "WWE '13 (NTSC-A)"}, {"id": "BLAS50532", "name": "Steins;Gate (NTSC-A)"}, {"id": "BLAS50533", "name": "Tales of Xillia 2 (NTSC-A)"}, {"id": "BLAS50535", "name": "Saints Row: The Third (The Full Package) (NTSC-A)"}, {"id": "BLAS50539", "name": "F1 Race Stars (NTSC-A)"}, {"id": "BLAS50540", "name": "Sonic & All-Stars Racing Transformed (NTSC-A)"}, {"id": "BLAS50542", "name": "Dai-2-Ji Super Robot Taisen Original Generations (NTSC-A)"}, {"id": "BLAS50544", "name": "Shin Sangoku Musou 6 Empires (NTSC-A)"}, {"id": "BLAS50546", "name": "The Elder Scrolls V: Skyrim (NTSC-A)"}, {"id": "BLAS50551", "name": "BioHazard: Revival Selection (NTSC-A)"}, {"id": "BLAS50552", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (NTSC-A)"}, {"id": "BLAS50553", "name": "Devil May Cry HD Collection (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50554", "name": "Sengoku Musou 3 Z (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50555", "name": "Mobile Suit Gundam: Extreme VS (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50556", "name": "Shin Hokuto Musou (NTSC-A)"}, {"id": "BLAS50557", "name": "DmC: Devil May Cry (NTSC-A)"}, {"id": "BLAS50558", "name": "Sengoku Musou 3 Empires (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50559", "name": "Accel World: Kasoku No Chouten (NTSC-A)"}, {"id": "BLAS50562", "name": "Vampire Resurrection (NTSC-A)"}, {"id": "BLAS50565", "name": "BioShock Infinite (NTSC-A)"}, {"id": "BLAS50570", "name": "Shin Sangoku Musou 6 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50571", "name": "Dead Space 3 (NTSC-A)"}, {"id": "BLAS50572", "name": "Dragon Ball Z: Ultimate Blast (PS3 the Best) (NTSC-A)"}, {"id": "BLAS50573", "name": "Aliens: Colonial Marines (NTSC-A)"}, {"id": "BLAS50574", "name": "Saint Seiya Senki (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50576", "name": "Hatsune Miku: Project Diva F (NTSC-A)"}, {"id": "BLAS50577", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (NTSC-A)"}, {"id": "BLAS50578", "name": "Metro: Last Light (Limited Edition) (NTSC-A)"}, {"id": "BLAS50579", "name": "One Piece: Kaizoku Musou 2 (NTSC-A)"}, {"id": "BLAS50580", "name": "Tiger Woods PGA Tour 14 (NTSC-A)"}, {"id": "BLAS50581", "name": "Army of Two: The Devil's Cartel (NTSC-A)"}, {"id": "BLAS50582", "name": "Shin Sangoku Musou 7 (NTSC-A)"}, {"id": "BLAS50583", "name": "Assassin's Creed III: Washington Edition (NTSC-A)"}, {"id": "BLAS50585", "name": "Tom Clancy's Ghost Recon Double Pack (Future Soldier & Advanced Warfighter 2) (NTSC-A)"}, {"id": "BLAS50587", "name": "Borderlands 2: Add-On Content Pack (NTSC-A)"}, {"id": "BLAS50588", "name": "Battlefield 4 (NTSC-A)"}, {"id": "BLAS50589", "name": "Assassin's Creed III: Washington Edition (NTSC-A)"}, {"id": "BLAS50590", "name": "Hitman HD Trilogy (NTSC-A)"}, {"id": "BLAS50591", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (NTSC-A)"}, {"id": "BLAS50592", "name": "Injustice: Gods Among Us (NTSC-A)"}, {"id": "BLAS50593", "name": "Ninja Gaiden 3: Razor's Edge (NTSC-A)"}, {"id": "BLAS50594", "name": "Dragon's Dogma: Dark Arisen (NTSC-A)"}, {"id": "BLAS50595", "name": "Dragon's Dogma (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50596", "name": "Fuse (NTSC-A)"}, {"id": "BLAS50597", "name": "One Piece: Kaizoku Musou 2 (NTSC-A)"}, {"id": "BLAS50598", "name": "Resident Evil: Revelations (NTSC-A)"}, {"id": "BLAS50599", "name": "Remember Me (NTSC-A)"}, {"id": "BLAS50600", "name": "Dead Island: Riptide (NTSC-A)"}, {"id": "BLAS50601", "name": "Star Trek: The Video Game (NTSC-A)"}, {"id": "BLAS50602", "name": "Need for Speed: Rivals (NTSC-A)"}, {"id": "BLAS50605", "name": "World Soccer Winning Eleven 2013 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50606", "name": "Gundam Breaker (NTSC-A)"}, {"id": "BLAS50607", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi (NTSC-A)"}, {"id": "BLAS50608", "name": "Battlefield 3 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50609", "name": "Battlefield 3 (NTSC-A)"}, {"id": "BLAS50611", "name": "Tom Clancy's Splinter Cell: Blacklist (NTSC-A)"}, {"id": "BLAS50614", "name": "The Smurfs 2 (NTSC-A)"}, {"id": "BLAS50618", "name": "Armored Core: Verdict Day (NTSC-A)"}, {"id": "BLAS50619", "name": "WORLD SOCCER Winning Eleven 2014 (NTSC-A)"}, {"id": "BLAS50620", "name": "Rayman Legends (NTSC-A)"}, {"id": "BLAS50621", "name": "Jojo no Kimyou na Bouken All-Star Battle (NTSC-A)"}, {"id": "BLAS50622", "name": "Madden NFL 25 (NTSC-A)"}, {"id": "BLAS50623", "name": "Lost Planet 3 (NTSC-A)"}, {"id": "BLAS50625", "name": "Dungeons & Dragons: Mystara Eiyuu Senki (NTSC-A)"}, {"id": "BLAS50627", "name": "Saints Row IV (NTSC-A)"}, {"id": "BLAS50628", "name": "The Bureau: XCOM Declassified (NTSC-A)"}, {"id": "BLAS50629", "name": "Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice (NTSC-A)"}, {"id": "BLAS50630", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst (NTSC-A)"}, {"id": "BLAS50632", "name": "Ar Tonelico III: Sekai Shuuen No Hikigane Wa Shoujo No Uta Ga Hiku (NTSC-A)"}, {"id": "BLAS50633", "name": "F1 2013 (NTSC-A)"}, {"id": "BLAS50634", "name": "Dead or Alive 5 Ultimate (NTSC-A)"}, {"id": "BLAS50636", "name": "AKB1/149: Love Election (NTSC-A)"}, {"id": "BLAS50637", "name": "FIFA 14 (NTSC-A)"}, {"id": "BLAS50638", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End (NTSC-A)"}, {"id": "BLAS50639", "name": "Grand Theft Auto V (NTSC-A)"}, {"id": "BLAS50640", "name": "Dark Souls II (NTSC-A)"}, {"id": "BLAS50641", "name": "NBA 2K14 (NTSC-A)"}, {"id": "BLAS50642", "name": "WWE 2K14 (NTSC-A)"}, {"id": "BLAS50643", "name": "Assassin's Creed IV: Black Flag (NTSC-A)"}, {"id": "BLAS50644", "name": "Just Dance 2014 (NTSC-A)"}, {"id": "BLAS50645", "name": "Rocksmith 2014 Edition (NTSC-A)"}, {"id": "BLAS50647", "name": "Atelier Escha & Logy: Alchemists of the Dusk Sky (NTSC-A)"}, {"id": "BLAS50649", "name": "Batman: Arkham Origins (NTSC-A)"}, {"id": "BLAS50651", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst (NTSC-A)"}, {"id": "BLAS50652", "name": "Saint Seiya: Brave Soldiers (NTSC-A)"}, {"id": "BLAS50653", "name": "Tales of Symphonia: Unisonant Pack (NTSC-A)"}, {"id": "BLAS50654", "name": "Pac-Man and the Ghostly Adventures (NTSC-A)"}, {"id": "BLAS50655", "name": "Okami: Zekkeiban HD Remaster (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50658", "name": "Watch Dogs (NTSC-A)"}, {"id": "BLAS50660", "name": "Assassin's Creed IV: Black Flag (NTSC-A)"}, {"id": "BLAS50661", "name": "XCOM: Enemy Within (NTSC-A)"}, {"id": "BLAS50663", "name": "Saint Seiya: Brave Soldiers (NTSC-A)"}, {"id": "BLAS50664", "name": "Shin Rorona no Atelier: Hajimari no Monogatari: Arland no Renkinjutsushi (NTSC-A)"}, {"id": "BLAS50666", "name": "Tekken Tag Tournament 2 (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50671", "name": "Shin Gundam Musou (NTSC-A)"}, {"id": "BLAS50672", "name": "Shin Sangoku Musou 7 with Musouden (NTSC-A)"}, {"id": "BLAS50675", "name": "Sengoku Basara 4 (NTSC-A)"}, {"id": "BLAS50676", "name": "Musou Orochi 2 Ultimate (NTSC-A)"}, {"id": "BLAS50677", "name": "Kidou Senshi Gundam: Extreme VS Full Boost (NTSC-A)"}, {"id": "BLAS50678", "name": "Ultra Street Fighter IV (NTSC-A)"}, {"id": "BLAS50681", "name": "Ar Nosurge: Umareizuru Hoshi e Inoru Uta (NTSC-A)"}, {"id": "BLAS50682", "name": "Shin Gundam Musou (NTSC-A)"}, {"id": "BLAS50683", "name": "Dragon Ball Z: Battle of Z (NTSC-A)"}, {"id": "BLAS50684", "name": "Dragon Ball Z: Battle of Z (NTSC-A)"}, {"id": "BLAS50685", "name": "Ryu ga Gotoku: Ishin! (NTSC-A)"}, {"id": "BLAS50686", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu! (NTSC-A)"}, {"id": "BLAS50687", "name": "Tales of Symphonia Chronicles (NTSC-A)"}, {"id": "BLAS50688", "name": "Yaiba: Ninja Gaiden Z (NTSC-A)"}, {"id": "BLAS50690", "name": "Thief (NTSC-A)"}, {"id": "BLAS50691", "name": "Kagero: Darkside Princess (NTSC-A)"}, {"id": "BLAS50692", "name": "The LEGO Movie Videogame (NTSC-A)"}, {"id": "BLAS50693", "name": "Hatsune Miku: Project Diva F 2nd (NTSC-A)"}, {"id": "BLAS50695", "name": "Dynasty Warriors 8: Xtreme Legends (NTSC-A)"}, {"id": "BLAS50696", "name": "Sengoku Musou 4 (NTSC-A)"}, {"id": "BLAS50697", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-A)"}, {"id": "BLAS50698", "name": "Nobunaga no Yabou: Souzou (NTSC-A)"}, {"id": "BLAS50699", "name": "One Piece: Unlimited World R (NTSC-A)"}, {"id": "BLAS50700", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution (NTSC-A)"}, {"id": "BLAS50701", "name": "JoJo's Bizarre Adventure All-Star Battle (NTSC-A)"}, {"id": "BLAS50702", "name": "Earth Defense Force 4 (Best Price) (NTSC-A)"}, {"id": "BLAS50703", "name": "Dream C Club Gogo. (NTSC-A)"}, {"id": "BLAS50704", "name": "LEGO: The Hobbit (NTSC-A)"}, {"id": "BLAS50705", "name": "2014 FIFA World Cup Brazil (NTSC-A)"}, {"id": "BLAS50706", "name": "Oneechanbara Z Kagura: with NoNoNo! (Best Price Version) (NTSC-A)"}, {"id": "BLAS50707", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-A)"}, {"id": "BLAS50708", "name": "The Idolm@ster One for All (NTSC-A)"}, {"id": "BLAS50710", "name": "Mobile Suit Gundam Side Stories (NTSC-A)"}, {"id": "BLAS50711", "name": "Rocksmith 2014 Edition (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50713", "name": "Robotics;Notes (NTSC-A)"}, {"id": "BLAS50715", "name": "One Piece: Unlimited World Red (NTSC-A)"}, {"id": "BLAS50716", "name": "Kamen Rider: Battride War II (NTSC-A)"}, {"id": "BLAS50717", "name": "Dynasty Warriors: Gundam Reborn (NTSC-A)"}, {"id": "BLAS50718", "name": "Watch Dogs (NTSC-A)"}, {"id": "BLAS50720", "name": "Plants vs. Zombies: Garden Warfare (NTSC-A)"}, {"id": "BLAS50722", "name": "Murdered: Soul Suspect (NTSC-A)"}, {"id": "BLAS50724", "name": "GRID Autosport (NTSC-A)"}, {"id": "BLAS50726", "name": "Wolfenstein: The New Order (NTSC-A)"}, {"id": "BLAS50729", "name": "Caladrius Blaze (NTSC-A)"}, {"id": "BLAS50730", "name": "Tales of Xillia 2 (NTSC-A)"}, {"id": "BLAS50734", "name": "Eiyuu Densetsu: Sen no Kiseki (NTSC-A)"}, {"id": "BLAS50736", "name": "Sacred 3 (NTSC-A)"}, {"id": "BLAS50737", "name": "Risen 3: Titan Lords (NTSC-A)"}, {"id": "BLAS50738", "name": "Destiny (NTSC-A)"}, {"id": "BLAS50740", "name": "Eiyuu Densetsu: Sen no Kiseki II (NTSC-A)"}, {"id": "BLAS50742", "name": "FIFA 15 (NTSC-A)"}, {"id": "BLAS50744", "name": "WORLD SOCCER Winning Eleven 2015 (NTSC-A)"}, {"id": "BLAS50745", "name": "Shining Resonance (NTSC-A)"}, {"id": "BLAS50746", "name": "Alien: Isolation (NTSC-A)"}, {"id": "BLAS50747", "name": "Just Dance 2015 (NTSC-A)"}, {"id": "BLAS50749", "name": "NBA 2K15 (NTSC-A)"}, {"id": "BLAS50750", "name": "Borderlands: The Pre-Sequel (NTSC-A)"}, {"id": "BLAS50751", "name": "WWE 2K15 (NTSC-A)"}, {"id": "BLAS50770", "name": "Gundam Breaker 2 (NTSC-J)"}, {"id": "BLAS50771", "name": "Atelier Shallie: Alchemists of the Dusk Sea (NTSC-A)"}, {"id": "BLAS50789", "name": "Sword Art Online: Lost Song (Chinese) (NTSC-A)"}, {"id": "BLAS50790", "name": "Sword Art Online: Lost Song (NTSC-J)"}, {"id": "BLAS50791", "name": "One Piece: Pirate Warriors 3 (NTSC-A)"}, {"id": "BLAS50792", "name": "Resident Evil Revelations 2 (NTSC-A)"}, {"id": "BLAS50793", "name": "Nobunaga no Yabou: Souzou with Power Up Kit (NTSC-A)"}, {"id": "BLAS50794", "name": "Kagero: Mou Hitori no Princess (NTSC-A)"}, {"id": "BLAS50796", "name": "Ryu ga Gotoku 0: Chikai No Basho (NTSC-A)"}, {"id": "BLAS50798", "name": "Mobile Suit Gundam: Extreme VS. Full Boost (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS50799", "name": "BlazBlue: Chrono Phantasma Extend (NTSC-A)"}, {"id": "BLAS50800", "name": "LEGO Jurassic World (NTSC-A)"}, {"id": "BLAS50801", "name": "Dengeki Bunko: Fighting Climax (NTSC-A)"}, {"id": "BLAS50802", "name": "Sengoku Basara 4 Sumeragi (NTSC-A)"}, {"id": "BLAS50803", "name": "PES 2016 (Winning Eleven 2016) (NTSC-A)"}, {"id": "BLAS50804", "name": "Metal Gear Solid V: The Phantom Pain (Japanese) (NTSC-A)"}, {"id": "BLAS50805", "name": "Metal Gear Solid V: The Phantom Pain (English) (NTSC-A)"}, {"id": "BLAS50808", "name": "FIFA 16 (NTSC-A)"}, {"id": "BLAS50809", "name": "NBA 2K16 (NTSC-A)"}, {"id": "BLAS50810", "name": "Blade Arcus from Shining EX (NTSC-A)"}, {"id": "BLAS50812", "name": "Just Dance 2016 (NTSC-A)"}, {"id": "BLAS50813", "name": "River City: Super Sports Challenge All Stars Special (NTSC-A)"}, {"id": "BLAS50814", "name": "WWE 2K16 (NTSC-A)"}, {"id": "BLAS50815", "name": "Metal Gear Solid V: The Phantom Pain (Chinese & Korean) (NTSC-A)"}, {"id": "BLAS50818", "name": "Dengeki Bunko: Fighting Climax Ignition (NTSC-A)"}, {"id": "BLAS50819", "name": "Call of Duty: Black Ops III (NTSC-A)"}, {"id": "BLAS50821", "name": "UEFA Euro 2016 / PES 2016 (Winning Eleven 2016) (NTSC-A)"}, {"id": "BLAS50822", "name": "Sengoku Basara Sanada Yukimura-Den (NTSC-A)"}, {"id": "BLAS50823", "name": "LEGO Star Wars: The Force Awakens (NTSC-A)"}, {"id": "BLAS50824", "name": "PES 2017 (Winning Eleven 2017) (NTSC-A)"}, {"id": "BLAS50825", "name": "FIFA 17 (NTSC-A)"}, {"id": "BLAS50826", "name": "NBA 2K17 (NTSC-A)"}, {"id": "BLAS50827", "name": "Just Dance 2017 (English Version) (NTSC-A)"}, {"id": "BLAS50828", "name": "WWE 2K17 (NTSC-A)"}, {"id": "BLAS55005", "name": "Metal Gear Solid 4: Guns of the Patriots (PlayStation 3 the Best) (NTSC-A)"}, {"id": "BLAS55007", "name": "L.A. Noire - The Complete Edition (NTSC-A)"}, {"id": "BLAS55010", "name": "Assassin's Creed: Heritage Collection (NTSC-A)"}, {"id": "BLAS57001", "name": "PES 2018 (Winning Eleven 2018) (NTSC-A)"}, {"id": "BLAS57003", "name": "FIFA 18 (NTSC-A)"}, {"id": "BLAS57004", "name": "FIFA 19 (NTSC-A)"}, {"id": "BLAS83001", "name": "Short Peace: Tsukigime Ranko no Ichiban Nagai Hi (NTSC-A)"}, {"id": "BLAS87001", "name": ".hack: Sekai No Mukou Ni (NTSC-A)"}, {"id": "BLAS87003", "name": "Eureka Seven AO: Jungfrau no Hanabanatachi (NTSC-A)"}, {"id": "BLAS87005", "name": "Tales of Zestiria (NTSC-A)"}, {"id": "BLES00012", "name": "Tiger Woods PGA Tour 2007 (PAL)"}, {"id": "BLES00013", "name": "Marvel: Ultimate Alliance (PAL)"}, {"id": "BLES00014", "name": "Tony Hawk's Project 8 (PAL)"}, {"id": "BLES00015", "name": "Full Auto 2: Battlelines (PAL)"}, {"id": "BLES00016", "name": "Call of Duty 3 (PAL)"}, {"id": "BLES00017", "name": "Call of Duty 3 (PAL)"}, {"id": "BLES00019", "name": "Untold Legends: Dark Kingdom (PAL)"}, {"id": "BLES00020", "name": "Need for Speed: Carbon (PAL)"}, {"id": "BLES00021", "name": "Call of Duty 3 (PAL)"}, {"id": "BLES00023", "name": "Blazing Angels: Squadrons of WWII (PAL)"}, {"id": "BLES00024", "name": "Tom Clancy's Splinter Cell: Double Agent (PAL)"}, {"id": "BLES00025", "name": "NBA 2K7 (PAL)"}, {"id": "BLES00026", "name": "Fight Night: Round 3 (PAL)"}, {"id": "BLES00027", "name": "Virtua Tennis 3 (PAL)"}, {"id": "BLES00028", "name": "Sonic the Hedgehog (PAL)"}, {"id": "BLES00029", "name": "Virtua Fighter 5 (PAL)"}, {"id": "BLES00033", "name": "NHL 2K7 (PAL)"}, {"id": "BLES00034", "name": "Mobile Suit Gundam: Target in Sight (PAL)"}, {"id": "BLES00035", "name": "F.E.A.R.: First Encounter Assault Recon (PAL)"}, {"id": "BLES00036", "name": "F.E.A.R.: First Encounter Assault Recon (PAL)"}, {"id": "BLES00038", "name": "NBA Street Homecourt (PAL)"}, {"id": "BLES00039", "name": "Armored Core 4 (PAL)"}, {"id": "BLES00041", "name": "World Snooker Championship 2007 (PAL)"}, {"id": "BLES00042", "name": "Def Jam: Icon (PAL)"}, {"id": "BLES00043", "name": "The Godfather: The Don's Edition (PAL)"}, {"id": "BLES00044", "name": "The Godfather: The Don's Edition (PAL)"}, {"id": "BLES00045", "name": "The Godfather: The Don's Edition (PAL)"}, {"id": "BLES00046", "name": "The Godfather The Don-Edition (PAL)"}, {"id": "BLES00047", "name": "The Godfather: The Don's Edition (PAL)"}, {"id": "BLES00048", "name": "The Elder Scrolls IV: Oblivion (PAL)"}, {"id": "BLES00049", "name": "Enchanted Arms (PAL)"}, {"id": "BLES00052", "name": "Ratchet & Clank: Tools of Destruction (PAL)"}, {"id": "BLES00054", "name": "Tom Clancy's Rainbow Six: Vegas (PAL)"}, {"id": "BLES00055", "name": "Spider-Man 3 (PAL)"}, {"id": "BLES00056", "name": "Spider-Man 3 (PAL)"}, {"id": "BLES00058", "name": "The Darkness (PAL)"}, {"id": "BLES00059", "name": "The Darkness (PAL)"}, {"id": "BLES00062", "name": "Spider-Man 3 (Collector's Edition) (PAL)"}, {"id": "BLES00066", "name": "Pirates of the Caribbean: At World's End (PAL)"}, {"id": "BLES00067", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2 (PAL)"}, {"id": "BLES00070", "name": "Harry Potter and the Order of the Phoenix (PAL)"}, {"id": "BLES00071", "name": "Harry Potter and the Order of the Phoenix (PAL)"}, {"id": "BLES00072", "name": "Ninja Gaiden Sigma (PAL)"}, {"id": "BLES00073", "name": "Burnout Paradise (PAL)"}, {"id": "BLES00074", "name": "Burnout Paradise (PAL)"}, {"id": "BLES00075", "name": "Fantastic Four: Rise of the Silver Surfer (PAL)"}, {"id": "BLES00076", "name": "Conan (PAL)"}, {"id": "BLES00077", "name": "Conan (PAL)"}, {"id": "BLES00080", "name": "Ratatouille (PAL)"}, {"id": "BLES00081", "name": "Killzone 2 (PAL)"}, {"id": "BLES00082", "name": "Surf's Up (PAL)"}, {"id": "BLES00083", "name": "Surf's Up (PAL)"}, {"id": "BLES00089", "name": "Ratatouille (PAL)"}, {"id": "BLES00090", "name": "Hellboy: Science of Evil (PAL)"}, {"id": "BLES00092", "name": "Transformers: The Game (PAL)"}, {"id": "BLES00094", "name": "Transformers: The Game (PAL)"}, {"id": "BLES00095", "name": "Colin McRae: DiRT (PAL)"}, {"id": "BLES00097", "name": "NASCAR 08 (PAL)"}, {"id": "BLES00100", "name": "Pro Evolution Soccer 2008 (PAL)"}, {"id": "BLES00102", "name": "Madden NFL 08 (PAL)"}, {"id": "BLES00103", "name": "Blazing Angels 2: Secret Missions of WWII (PAL)"}, {"id": "BLES00105", "name": "Tiger Woods PGA Tour 08 (PAL)"}, {"id": "BLES00107", "name": "Sega Rally (PAL)"}, {"id": "BLES00110", "name": "Pro Evolution Soccer 2008 (PAL)"}, {"id": "BLES00111", "name": "Pro Evolution Soccer 2008 (PAL)"}, {"id": "BLES00113", "name": "Bladestorm: The Hundred Years' War (PAL)"}, {"id": "BLES00115", "name": "Call of Duty 4: Modern Warfare (PAL)"}, {"id": "BLES00118", "name": "NHL 08 (PAL)"}, {"id": "BLES00119", "name": "NBA Live 08 (PAL)"}, {"id": "BLES00120", "name": "Clive Barker's Jericho (PAL)"}, {"id": "BLES00121", "name": "LEGO Star Wars: The Complete Saga (PAL)"}, {"id": "BLES00124", "name": "Skate (PAL)"}, {"id": "BLES00125", "name": "Skate (PAL)"}, {"id": "BLES00130", "name": "Tony Hawk's Proving Ground (PAL)"}, {"id": "BLES00131", "name": "NHL 2K8 (PAL)"}, {"id": "BLES00132", "name": "FIFA 08 (PAL)"}, {"id": "BLES00133", "name": "FIFA 08 (PAL)"}, {"id": "BLES00134", "name": "Guitar Hero III: Legends of Rock (PAL)"}, {"id": "BLES00135", "name": "Stuntman: Ignition (PAL)"}, {"id": "BLES00136", "name": "WWE SmackDown vs. Raw 2008 (PAL)"}, {"id": "BLES00137", "name": "WWE SmackDown vs. Raw 2008 (PAL)"}, {"id": "BLES00138", "name": "NBA 2K8 (PAL)"}, {"id": "BLES00139", "name": "World Series of Poker 2008: Battle for the Bracelets (PAL)"}, {"id": "BLES00140", "name": "FIFA 08 (PAL)"}, {"id": "BLES00142", "name": "The Simpsons Game (PAL)"}, {"id": "BLES00143", "name": "Juiced 2: Hot Import Nights (PAL)"}, {"id": "BLES00144", "name": "Stranglehold (PAL)"}, {"id": "BLES00145", "name": "Stranglehold (PAL)"}, {"id": "BLES00146", "name": "The Simpsons Game (PAL)"}, {"id": "BLES00147", "name": "Dynasty Warriors: Gundam (PAL)"}, {"id": "BLES00148", "name": "Call of Duty 4: Modern Warfare (PAL)"}, {"id": "BLES00149", "name": "Call of Duty 4: Modern Warfare (PAL)"}, {"id": "BLES00150", "name": "X-Men Origins: Wolverine Uncaged Edition (PAL)"}, {"id": "BLES00153", "name": "The Orange Box (PAL)"}, {"id": "BLES00154", "name": "Call of Duty 4: Modern Warfare (PAL)"}, {"id": "BLES00155", "name": "Call of Duty 4: Modern Warfare (PAL)"}, {"id": "BLES00156", "name": "Call of Duty 4: Modern Warfare (PAL)"}, {"id": "BLES00157", "name": "Haze (PAL)"}, {"id": "BLES00158", "name": "Assassin's Creed (PAL)"}, {"id": "BLES00159", "name": "TimeShift (PAL)"}, {"id": "BLES00160", "name": "TimeShift (PAL)"}, {"id": "BLES00161", "name": "Beowulf: The Game (PAL)"}, {"id": "BLES00162", "name": "Cars: Mater-National Championship (PAL)"}, {"id": "BLES00163", "name": "The Elder Scrolls IV: Oblivion - Game of the Year Edition (PAL)"}, {"id": "BLES00164", "name": "Haze (PAL)"}, {"id": "BLES00166", "name": "Ferrari Challenge: Trofeo Pirelli (PAL)"}, {"id": "BLES00167", "name": "Kane & Lynch: Dead Men (PAL)"}, {"id": "BLES00168", "name": "Army of Two (PAL)"}, {"id": "BLES00169", "name": "Haze (PAL)"}, {"id": "BLES00171", "name": "The Orange Box (PAL)"}, {"id": "BLES00172", "name": "The Orange Box (PAL)"}, {"id": "BLES00174", "name": "Medal of Honor: Airborne (PAL)"}, {"id": "BLES00175", "name": "Need for Speed: ProStreet (PAL)"}, {"id": "BLES00176", "name": "Need for Speed: ProStreet (PAL)"}, {"id": "BLES00177", "name": "Need for Speed ProStreet (PAL)"}, {"id": "BLES00178", "name": "MX vs. ATV: Untamed (PAL)"}, {"id": "BLES00179", "name": "MX vs. ATV: Untamed (PAL)"}, {"id": "BLES00180", "name": "The Golden Compass (PAL)"}, {"id": "BLES00182", "name": "Conflict: Denied Ops (PAL)"}, {"id": "BLES00183", "name": "Conflict: Denied Ops (PAL)"}, {"id": "BLES00184", "name": "Enemy Territory: Quake Wars (PAL)"}, {"id": "BLES00186", "name": "Devil May Cry 4 (PAL)"}, {"id": "BLES00187", "name": "Turok (PAL)"}, {"id": "BLES00188", "name": "FIFA Street 3 (PAL)"}, {"id": "BLES00189", "name": "Soldier of Fortune: Payback (PAL)"}, {"id": "BLES00190", "name": "Soldier of Fortune: Payback (PAL)"}, {"id": "BLES00191", "name": "BlackSite (PAL)"}, {"id": "BLES00192", "name": "The Club (PAL)"}, {"id": "BLES00193", "name": "The Club (PAL)"}, {"id": "BLES00194", "name": "The History Channel: Battle for the Pacific (PAL)"}, {"id": "BLES00196", "name": "Turning Point: Fall of Liberty (PAL)"}, {"id": "BLES00197", "name": "Turning Point: Fall of Liberty (PAL)"}, {"id": "BLES00198", "name": "Lost Planet: Extreme Condition (PAL)"}, {"id": "BLES00199", "name": "Assassin's Creed (PAL)"}, {"id": "BLES00200", "name": "Unreal Tournament 3 (PAL)"}, {"id": "BLES00201", "name": "Unreal Tournament 3 (PAL)"}, {"id": "BLES00215", "name": "Dynasty Warriors 6 (PAL)"}, {"id": "BLES00218", "name": "NFL Tour (PAL)"}, {"id": "BLES00219", "name": "Condemned 2 (PAL)"}, {"id": "BLES00221", "name": "Lost: Via Domus (PAL)"}, {"id": "BLES00222", "name": "Dark Sector (PAL)"}, {"id": "BLES00227", "name": "UEFA Euro 2008 (PAL)"}, {"id": "BLES00228", "name": "Rock Band (PAL)"}, {"id": "BLES00229", "name": "Grand Theft Auto IV (PAL)"}, {"id": "BLES00231", "name": "Dragon Ball Z: Burst Limit (PAL)"}, {"id": "BLES00232", "name": "Sega Superstars Tennis (PAL)"}, {"id": "BLES00237", "name": "Tom Clancy's Rainbow Six: Vegas 2 (PAL)"}, {"id": "BLES00238", "name": "Sid Meier's Civilization Revolution (PAL)"}, {"id": "BLES00239", "name": "Vampire Rain: Altered Species (PAL)"}, {"id": "BLES00241", "name": "Guitar Hero: Aerosmith (PAL)"}, {"id": "BLES00242", "name": "Viking: Battle for Asgard (PAL)"}, {"id": "BLES00243", "name": "Kung Fu Panda (PAL)"}, {"id": "BLES00246", "name": "Metal Gear Solid 4: Guns of the Patriots (PAL)"}, {"id": "BLES00247", "name": "Iron Man (PAL)"}, {"id": "BLES00248", "name": "Tom Clancy's Rainbow Six: Vegas 2 (PAL)"}, {"id": "BLES00249", "name": "Robert Ludlum's The Bourne Conspiracy (PAL)"}, {"id": "BLES00250", "name": "Robert Ludlum's The Bourne Conspiracy (PAL)"}, {"id": "BLES00251", "name": "The Chronicles of Narnia: Prince Caspian (PAL)"}, {"id": "BLES00253", "name": "Battle Fantasia (PAL)"}, {"id": "BLES00254", "name": "LEGO Indiana Jones: The Original Adventures (PAL)"}, {"id": "BLES00255", "name": "Monster Madness: Grave Danger (PAL)"}, {"id": "BLES00256", "name": "Race Driver Grid (PAL)"}, {"id": "BLES00257", "name": "Overlord: Raising Hell (PAL)"}, {"id": "BLES00258", "name": "Grand Theft Auto IV (PAL)"}, {"id": "BLES00259", "name": "Battlefield: Bad Company (PAL)"}, {"id": "BLES00261", "name": "Battlefield: Bad Company (Gold Edition) (PAL)"}, {"id": "BLES00262", "name": "Star Wars: The Force Unleashed (PAL)"}, {"id": "BLES00263", "name": "Robert Ludlum's The Bourne Conspiracy (PAL)"}, {"id": "BLES00268", "name": "Nascar 09 (PAL)"}, {"id": "BLES00269", "name": "Prototype (PAL)"}, {"id": "BLES00271", "name": "G1 Jockey 4 2008 (PAL)"}, {"id": "BLES00276", "name": "Top Spin 3 (PAL)"}, {"id": "BLES00279", "name": "Wall-E (PAL)"}, {"id": "BLES00280", "name": "WALL•E (PAL)"}, {"id": "BLES00283", "name": "WALL•E (PAL)"}, {"id": "BLES00285", "name": "Madden NFL 09 (PAL)"}, {"id": "BLES00289", "name": "The Incredible Hulk (PAL)"}, {"id": "BLES00290", "name": "WSC Real 09: World Snooker Championship (PAL)"}, {"id": "BLES00291", "name": "FaceBreaker (PAL)"}, {"id": "BLES00295", "name": "Tiger Woods PGA Tour 09 (PAL)"}, {"id": "BLES00296", "name": "SoulCalibur IV (PAL)"}, {"id": "BLES00298", "name": "NHL '9 (PAL)"}, {"id": "BLES00299", "name": "Guitar Hero: World Tour (PAL)"}, {"id": "BLES00300", "name": "TNA iMPACT! (PAL)"}, {"id": "BLES00302", "name": "NBA Live 09 (PAL)"}, {"id": "BLES00307", "name": "Silent Hill: Homecoming (Promo) (PAL)"}, {"id": "BLES00308", "name": "Dead Space (PAL)"}, {"id": "BLES00309", "name": "Dead Space (PAL)"}, {"id": "BLES00310", "name": "Dead Space (PAL)"}, {"id": "BLES00311", "name": "The Chronicles of Riddick: Assault on Dark Athena (PAL)"}, {"id": "BLES00314", "name": "FIFA 09 (PAL)"}, {"id": "BLES00315", "name": "FIFA 09 (PAL)"}, {"id": "BLES00316", "name": "BioShock: Ultimate Rapture Edition (PAL)"}, {"id": "BLES00317", "name": "Bioshock (PAL)"}, {"id": "BLES00318", "name": "Brothers in Arms: Hell's Highway (PAL)"}, {"id": "BLES00319", "name": "Brothers In Arms : Hell's Highway (PAL)"}, {"id": "BLES00322", "name": "Mirror's Edge (PAL)"}, {"id": "BLES00323", "name": "Mercenaries 2: World in Flames (PAL)"}, {"id": "BLES00324", "name": "Far Cry 2 (PAL)"}, {"id": "BLES00325", "name": "Far Cry 2 (PAL)"}, {"id": "BLES00326", "name": "Tom Clancy's EndWar (PAL)"}, {"id": "BLES00327", "name": "Pure (PAL)"}, {"id": "BLES00328", "name": "Mercenaries 2: World in Flames (PAL)"}, {"id": "BLES00329", "name": "Fracture (PAL)"}, {"id": "BLES00330", "name": "Tom Clancy's H.A.W.X (PAL)"}, {"id": "BLES00332", "name": "LEGO Batman: The Videogame (PAL)"}, {"id": "BLES00333", "name": "Fallout 3 (PAL)"}, {"id": "BLES00336", "name": "Fallout 3 (PAL)"}, {"id": "BLES00338", "name": "Pro Evolution Soccer 2009 (PAL)"}, {"id": "BLES00353", "name": "NHL 2K9 (PAL)"}, {"id": "BLES00354", "name": "Call of Duty: World at War (PAL)"}, {"id": "BLES00355", "name": "Call of Duty: World at War (PAL)"}, {"id": "BLES00357", "name": "Call of Duty: World at War (PAL)"}, {"id": "BLES00359", "name": "Baja: Edge of Control (PAL)"}, {"id": "BLES00361", "name": "WWE Smackdown vs Raw 2009 (PAL)"}, {"id": "BLES00362", "name": "Midnight Club: Los Angeles (PAL)"}, {"id": "BLES00368", "name": "SBK 08 : Superbike World Championship (PAL)"}, {"id": "BLES00370", "name": "Armored Core: For Answer (PAL)"}, {"id": "BLES00371", "name": "Naruto: Ultimate Ninja Storm (PAL)"}, {"id": "BLES00372", "name": "Valkyria Chronicles (PAL)"}, {"id": "BLES00373", "name": "Saints Row 2 (PAL)"}, {"id": "BLES00378", "name": "Disney Sing It (PAL)"}, {"id": "BLES00380", "name": "Disney Sing It (PAL)"}, {"id": "BLES00382", "name": "The Legend of Spyro: Dawn of the Dragon (PAL)"}, {"id": "BLES00383", "name": "The Legend of Spyro: Dawn of the Dragon (PAL)"}, {"id": "BLES00384", "name": "NBA 2K9 (PAL)"}, {"id": "BLES00385", "name": "Rock Band 2 (PAL)"}, {"id": "BLES00387", "name": "Monopoly (PAL)"}, {"id": "BLES00389", "name": "Prince of Persia (PAL)"}, {"id": "BLES00390", "name": "Prince of Persia (PAL)"}, {"id": "BLES00391", "name": "Golden Axe: Beast Rider (PAL)"}, {"id": "BLES00392", "name": "Spider-Man: Web of Shadows (PAL)"}, {"id": "BLES00394", "name": "Madagascar: Escape 2 Africa (PAL)"}, {"id": "BLES00395", "name": "Madagascar: Escape 2 Africa (PAL)"}, {"id": "BLES00396", "name": "MotoGP 08 (PAL)"}, {"id": "BLES00397", "name": "Blitz: The League II (PAL)"}, {"id": "BLES00399", "name": "Fallout 3 (PAL)"}, {"id": "BLES00400", "name": "Fallout 3 (PAL)"}, {"id": "BLES00401", "name": "Rapala Fishing Frenzy 2009 (PAL)"}, {"id": "BLES00402", "name": "Cabela's Dangerous Adventures (PAL)"}, {"id": "BLES00403", "name": "Shaun White Snowboarding (PAL)"}, {"id": "BLES00404", "name": "Call of Duty: World at War (PAL)"}, {"id": "BLES00405", "name": "Legendary (PAL)"}, {"id": "BLES00406", "name": "Quantum of Solace: The Game (PAL)"}, {"id": "BLES00408", "name": "Shellshock 2: Blood Trails (PAL)"}, {"id": "BLES00409", "name": "Tomb Raider: Underworld (PAL)"}, {"id": "BLES00410", "name": "Fallen Angel Sacred 2 (PAL)"}, {"id": "BLES00412", "name": "The Lord of the Rings: Conquest (PAL)"}, {"id": "BLES00414", "name": "Bolt (PAL)"}, {"id": "BLES00415", "name": "Disney's Bolt (PAL)"}, {"id": "BLES00417", "name": "Disney Bolt (PAL)"}, {"id": "BLES00418", "name": "Rise of the Argonauts (PAL)"}, {"id": "BLES00420", "name": "Brain Challenge (PAL)"}, {"id": "BLES00421", "name": "World Championship Off Road Racing (PAL)"}, {"id": "BLES00422", "name": "Alone in the Dark: Inferno (PAL)"}, {"id": "BLES00424", "name": "Harry Potter and the Half-Blood Prince (PAL)"}, {"id": "BLES00425", "name": "Sonic Unleashed (PAL)"}, {"id": "BLES00441", "name": "Mortal Kombat vs. DC Universe (PAL)"}, {"id": "BLES00442", "name": "Disney Sing It: High School Musical 3 Senior Year (PAL)"}, {"id": "BLES00444", "name": "Eternal Sonata (PAL)"}, {"id": "BLES00447", "name": "X-Blades (PAL)"}, {"id": "BLES00450", "name": "Need for Speed: Undercover (PAL)"}, {"id": "BLES00451", "name": "Rock Band Song Pack 2 (PAL)"}, {"id": "BLES00452", "name": "Disgaea 3: Absence of Justice (PAL)"}, {"id": "BLES00453", "name": "AC/DC Live: Rock Band (PAL)"}, {"id": "BLES00455", "name": "Burnout Paradise: The Ultimate Box (PAL)"}, {"id": "BLES00460", "name": "Silent Hill: Homecoming (PAL)"}, {"id": "BLES00461", "name": "Skate 2 (PAL)"}, {"id": "BLES00462", "name": "Burnout Paradise: The Ultimate Box (PAL)"}, {"id": "BLES00464", "name": "F.E.A.R. 2: Project Origin (PAL)"}, {"id": "BLES00465", "name": "Bionic Commando (PAL)"}, {"id": "BLES00467", "name": "Destroy All Humans! Path of the Furon (PAL)"}, {"id": "BLES00472", "name": "50 Cent: Blood on the Sand (PAL)"}, {"id": "BLES00474", "name": "Rock Revolution (PAL)"}, {"id": "BLES00475", "name": "Sega Mega Drive: Ultimate Collection (PAL)"}, {"id": "BLES00477", "name": "The Godfather II (PAL)"}, {"id": "BLES00478", "name": "The Godfather II (PAL)"}, {"id": "BLES00479", "name": "Guitar Hero: Metallica (PAL)"}, {"id": "BLES00480", "name": "Wheelman (PAL)"}, {"id": "BLES00481", "name": "Street Fighter IV (PAL)"}, {"id": "BLES00485", "name": "Resident Evil 5 (PAL)"}, {"id": "BLES00488", "name": "Trivial Pursuit (PAL)"}, {"id": "BLES00490", "name": "Dreamworks Monsters vs. Aliens (PAL)"}, {"id": "BLES00492", "name": "WWE Legends of WrestleMania (PAL)"}, {"id": "BLES00495", "name": "Eat Lead: The Return of Matt Hazard (PAL)"}, {"id": "BLES00496", "name": "Red Faction: Guerilla (PAL)"}, {"id": "BLES00498", "name": "Red Faction: Guerrilla (PAL)"}, {"id": "BLES00501", "name": "The Godfather 2 (PAL)"}, {"id": "BLES00503", "name": "Batman: Arkham Asylum (PAL)"}, {"id": "BLES00504", "name": "Wanted: Weapons of Fate (PAL)"}, {"id": "BLES00506", "name": "Command & Conquer: Red Alert 3 (PAL)"}, {"id": "BLES00507", "name": "Command & Conquer: Red Alert 3 (Ultimate Edition) (PAL)"}, {"id": "BLES00508", "name": "Command & Conquer: Red Alert 3 (Ultimate Edition) (PAL)"}, {"id": "BLES00512", "name": "Mini Ninjas (PAL)"}, {"id": "BLES00513", "name": "Stormrise (PAL)"}, {"id": "BLES00515", "name": "Stormrise (PAL)"}, {"id": "BLES00516", "name": "Afro Samurai (PAL)"}, {"id": "BLES00517", "name": "Just Cause 2 (PAL)"}, {"id": "BLES00521", "name": "Mafia II (PAL)"}, {"id": "BLES00522", "name": "Ice Age 3: Dawn of the Dinosaurs (PAL)"}, {"id": "BLES00525", "name": "Ice Age: Dawn of the Dinosaurs (PAL)"}, {"id": "BLES00526", "name": "Damnation (PAL)"}, {"id": "BLES00528", "name": "Dynasty Warriors: Gundam 2 (PAL)"}, {"id": "BLES00529", "name": "Superstars V8 Racing (PAL)"}, {"id": "BLES00530", "name": "Tiger Woods PGA Tour 10 (PAL)"}, {"id": "BLES00532", "name": "The Beatles: Rock Band (PAL)"}, {"id": "BLES00536", "name": "SBK-09 Superbike World Championship (PAL)"}, {"id": "BLES00537", "name": "Terminator Salvation (PAL)"}, {"id": "BLES00538", "name": "Fight Night Round 4 (PAL)"}, {"id": "BLES00539", "name": "UFC 2009: Undisputed (PAL)"}, {"id": "BLES00540", "name": "Dynasty Warriors 6 Empires (PAL)"}, {"id": "BLES00542", "name": "Up (PAL)"}, {"id": "BLES00543", "name": "UP (PAL)"}, {"id": "BLES00544", "name": "Up (PAL)"}, {"id": "BLES00546", "name": "Marvel: Ultimate Alliance 2 (PAL)"}, {"id": "BLES00549", "name": "Guitar Hero: Greatest Hits (PAL)"}, {"id": "BLES00553", "name": "Leisure Suit Larry: Box Office Bust (PAL)"}, {"id": "BLES00554", "name": "The Chronicles of Riddick: Assault on Dark Athena (PAL)"}, {"id": "BLES00556", "name": "Call of Juarez: Bound in Blood (PAL)"}, {"id": "BLES00557", "name": "Vin Diesel Wheelman (PAL)"}, {"id": "BLES00559", "name": "Fritz Chess (PAL)"}, {"id": "BLES00560", "name": "Singularity (PAL)"}, {"id": "BLES00561", "name": "Singularity (PAL)"}, {"id": "BLES00562", "name": "Brutal Legend (PAL)"}, {"id": "BLES00564", "name": "Wolfenstein (PAL)"}, {"id": "BLES00565", "name": "Virtua Tennis 2009 (PAL)"}, {"id": "BLES00566", "name": "Wolfenstein (PAL)"}, {"id": "BLES00567", "name": "NHL 10 (PAL)"}, {"id": "BLES00570", "name": "Fuel (PAL)"}, {"id": "BLES00572", "name": "G-Force (PAL)"}, {"id": "BLES00574", "name": "G-Force (PAL)"}, {"id": "BLES00575", "name": "G-Force (PAL)"}, {"id": "BLES00576", "name": "Guitar Hero 5 (PAL)"}, {"id": "BLES00577", "name": "Transformers: Revenge of the Fallen (PAL)"}, {"id": "BLES00578", "name": "Guitar Hero: Van Halen (PAL)"}, {"id": "BLES00580", "name": "Overlord II (PAL)"}, {"id": "BLES00581", "name": "Supercar Challenge (PAL)"}, {"id": "BLES00582", "name": "Rogue Warrior (PAL)"}, {"id": "BLES00584", "name": "Planet 51: The Game (PAL)"}, {"id": "BLES00585", "name": "Aliens vs. Predator (PAL)"}, {"id": "BLES00586", "name": "Aliens vs. Predator (PAL)"}, {"id": "BLES00588", "name": "Hannah Montana: The Movie (PAL)"}, {"id": "BLES00589", "name": "Hannah Montana: The Movie (PAL)"}, {"id": "BLES00590", "name": "G.I.JOE: The Rise of Cobra (PAL)"}, {"id": "BLES00592", "name": "Red Faction: Guerrilla (PAL)"}, {"id": "BLES00594", "name": "Agarest: Generations of War (PAL)"}, {"id": "BLES00595", "name": "Madden NFL 10 (PAL)"}, {"id": "BLES00597", "name": "Operation Flashpoint: Dragon Rising (PAL)"}, {"id": "BLES00599", "name": "Bayonetta (PAL)"}, {"id": "BLES00600", "name": "Winter Sports 2010: The Great Tournament (PAL)"}, {"id": "BLES00602", "name": "DJ Hero (PAL)"}, {"id": "BLES00604", "name": "Kane & Lynch 2: Dog Days (PAL)"}, {"id": "BLES00605", "name": "Watchmen: The End is Nigh - Part 1&2 (PAL)"}, {"id": "BLES00610", "name": "The King of Fighters XII (PAL)"}, {"id": "BLES00613", "name": "Watchmen: The End is Nigh - Part 1&2 (PAL)"}, {"id": "BLES00615", "name": "FIFA 10 (PAL)"}, {"id": "BLES00618", "name": "Cloudy with a Chance of Meatballs (PAL)"}, {"id": "BLES00619", "name": "Cloudy with a Chance of Meatballs (PAL)"}, {"id": "BLES00620", "name": "Cars: Race-O-Rama (PAL)"}, {"id": "BLES00635", "name": "Tekken 6 (PAL)"}, {"id": "BLES00636", "name": "LEGO: Rock Band (PAL)"}, {"id": "BLES00637", "name": "NBA Live 10 (PAL)"}, {"id": "BLES00638", "name": "Disney Sing It: Pop Hits (PAL)"}, {"id": "BLES00639", "name": "Ashes Cricket 2009 (PAL)"}, {"id": "BLES00648", "name": "IL-2 Sturmovik: Birds of Prey (PAL)"}, {"id": "BLES00650", "name": "Cross Edge (PAL)"}, {"id": "BLES00651", "name": "WW Smackdown vs Raw 2010 (PAL)"}, {"id": "BLES00652", "name": "Midnight Club: Los Angeles - Complete Edition (PAL)"}, {"id": "BLES00654", "name": "NHL 2K10 (PAL)"}, {"id": "BLES00655", "name": "NBA 2K10 (PAL)"}, {"id": "BLES00658", "name": "Katamari Forever (PAL)"}, {"id": "BLES00659", "name": "Army of Two: The 40th Day (PAL)"}, {"id": "BLES00660", "name": "Vancouver 2010 (PAL)"}, {"id": "BLES00661", "name": "Wolfenstein (PAL)"}, {"id": "BLES00662", "name": "MX vs. ATV Reflex (PAL)"}, {"id": "BLES00667", "name": "Avatar: The Game (PAL)"}, {"id": "BLES00668", "name": "Top Spin 4 (PAL)"}, {"id": "BLES00669", "name": "Assassin's Creed II (PAL)"}, {"id": "BLES00670", "name": "Assassin's Creed II: Complete Edition (PAL)"}, {"id": "BLES00673", "name": "Colin McRae: DiRT 2 (PAL)"}, {"id": "BLES00676", "name": "Saw (PAL)"}, {"id": "BLES00678", "name": "Star Wars: The Force Unleashed (Ultimate Sith Edition) (PAL)"}, {"id": "BLES00679", "name": "Heroes Over Europe (PAL)"}, {"id": "BLES00680", "name": "Red Dead Redemption (PAL)"}, {"id": "BLES00682", "name": "Need for Speed Shift (PAL)"}, {"id": "BLES00683", "name": "Call of Duty: Modern Warfare 2 (PAL)"}, {"id": "BLES00685", "name": "Call of Duty: Modern Warfare 2 (PAL)"}, {"id": "BLES00686", "name": "Call of Duty : Modern Warfare 2 (PAL)"}, {"id": "BLES00687", "name": "Call of Duty : Modern Warfare 2 (PAL)"}, {"id": "BLES00689", "name": "Pro Evolution Soccer 2010 (PAL)"}, {"id": "BLES00691", "name": "Call of Duty: Modern Warfare 2 (PAL)"}, {"id": "BLES00692", "name": "Star Wars The Clone Wars: Republic Heroes (PAL)"}, {"id": "BLES00693", "name": "Dragon Ball: Raging Blast (PAL)"}, {"id": "BLES00694", "name": "Karaoke Revolution (PAL)"}, {"id": "BLES00695", "name": "Tornado Outbreak (PAL)"}, {"id": "BLES00696", "name": "Fairytale Fights (PAL)"}, {"id": "BLES00697", "name": "Borderlands (PAL)"}, {"id": "BLES00698", "name": "Borderlands (PAL)"}, {"id": "BLES00699", "name": "Dragon Age: Origins (PAL)"}, {"id": "BLES00704", "name": "Alpha Protocol (PAL)"}, {"id": "BLES00705", "name": "Darksiders (PAL)"}, {"id": "BLES00706", "name": "Tony Hawk Ride (PAL)"}, {"id": "BLES00707", "name": "Wet (PAL)"}, {"id": "BLES00709", "name": "Grand Slam Tennis 2 (PAL)"}, {"id": "BLES00710", "name": "Lost Planet 2 (PAL)"}, {"id": "BLES00711", "name": "Band Hero (PAL)"}, {"id": "BLES00712", "name": "Way of the Samurai 3 (PAL)"}, {"id": "BLES00713", "name": "Dante's Inferno (PAL)"}, {"id": "BLES00714", "name": "Dante's Inferno (PAL)"}, {"id": "BLES00720", "name": "LEGO Harry Potter: Years 1-4 (PAL)"}, {"id": "BLES00723", "name": "Dark Void (PAL)"}, {"id": "BLES00724", "name": "Where the Wild Things Are (PAL)"}, {"id": "BLES00725", "name": "Pure Football (PAL)"}, {"id": "BLES00728", "name": "BioShock 2 (PAL)"}, {"id": "BLES00730", "name": "Dragon Age: Origins (PAL)"}, {"id": "BLES00733", "name": "Scene It? Bright Lights! Big Screen! (PAL)"}, {"id": "BLES00735", "name": "Madagascar Kartz (PAL)"}, {"id": "BLES00736", "name": "Ninja Gaiden Sigma 2 (PAL)"}, {"id": "BLES00742", "name": "Fallout 3 Game of the Year Edition (PAL)"}, {"id": "BLES00743", "name": "The Saboteur (PAL)"}, {"id": "BLES00744", "name": "The Saboteur (PAL)"}, {"id": "BLES00745", "name": "Saboteur (PAL)"}, {"id": "BLES00749", "name": "Dead Island (PAL)"}, {"id": "BLES00750", "name": "Sonic & Sega All-Stars Racing (PAL)"}, {"id": "BLES00751", "name": "Assassin's Creed II (PAL)"}, {"id": "BLES00755", "name": "Tom Clancy's Rainbow Six Vegas 2 (Complete Edition) (PAL)"}, {"id": "BLES00756", "name": "MotoGP 09/10 (PAL)"}, {"id": "BLES00758", "name": "Bakugan Battle Brawlers (PAL)"}, {"id": "BLES00759", "name": "Blur (PAL)"}, {"id": "BLES00760", "name": "Skate 3 (PAL)"}, {"id": "BLES00761", "name": "Tron Evolution (PAL)"}, {"id": "BLES00763", "name": "LEGO Indiana Jones 2: The Adventure Continues (PAL)"}, {"id": "BLES00765", "name": "Prison Break: The Conspiracy (PAL)"}, {"id": "BLES00766", "name": "Prison Break: The Conspiracy (PAL)"}, {"id": "BLES00767", "name": "Star Ocean: The Last Hope International (PAL)"}, {"id": "BLES00769", "name": "Nat Geo Quiz: Wild Life (PAL)"}, {"id": "BLES00770", "name": "Super Street Fighter IV (PAL)"}, {"id": "BLES00771", "name": "Superstars V8 Next Challenge (PAL)"}, {"id": "BLES00772", "name": "Arthur and the Revenge of Maltazard (PAL)"}, {"id": "BLES00773", "name": "Battlefield: Bad Company 2 (PAL)"}, {"id": "BLES00774", "name": "SBK X Superbike World Championship (PAL)"}, {"id": "BLES00776", "name": "Venetica (PAL)"}, {"id": "BLES00777", "name": "Rugby League Live (PAL)"}, {"id": "BLES00779", "name": "Battlefield: Bad Company 2 (PAL)"}, {"id": "BLES00780", "name": "Spit/Second: Velocity (PAL)"}, {"id": "BLES00781", "name": "Split/Second (PAL)"}, {"id": "BLES00783", "name": "Final Fantasy XIII (PAL)"}, {"id": "BLES00785", "name": "Ruse: Don't Believe What You See (PAL)"}, {"id": "BLES00788", "name": "Front Mission Evolved (PAL)"}, {"id": "BLES00789", "name": "Resonance of Fate (PAL)"}, {"id": "BLES00793", "name": "Saw (PAL)"}, {"id": "BLES00796", "name": "2010 FIFA World Cup South Africa (PAL)"}, {"id": "BLES00798", "name": "How to Train Your Dragon (PAL)"}, {"id": "BLES00801", "name": "Guitar Hero: Warriors of Rock (PAL)"}, {"id": "BLES00816", "name": "Resident Evil 5: Gold Edition (PAL)"}, {"id": "BLES00817", "name": "Brink (PAL)"}, {"id": "BLES00820", "name": "BlazBlue: Calamity Trigger (PAL)"}, {"id": "BLES00822", "name": "History: Great Battles Medieval (PAL)"}, {"id": "BLES00824", "name": "Dead to Rights: Retribution (PAL)"}, {"id": "BLES00825", "name": "Dynasty Warriors: Strikeforce (PAL)"}, {"id": "BLES00826", "name": "Nier (PAL)"}, {"id": "BLES00827", "name": "Batman: Arkham Asylum (Game of the Year Edition) (PAL)"}, {"id": "BLES00832", "name": "Sengoku Basara: Samurai Heroes (PAL)"}, {"id": "BLES00833", "name": "Transformers: War for Cybertron (PAL)"}, {"id": "BLES00834", "name": "Yakuza 3 (PAL)"}, {"id": "BLES00837", "name": "Shrek Forever After (PAL)"}, {"id": "BLES00839", "name": "Prince of Persia: The Forgotten Sands (PAL)"}, {"id": "BLES00840", "name": "Prince of Persia: The Forgotten Sands (PAL)"}, {"id": "BLES00841", "name": "Clash of the Titans: The Game (PAL)"}, {"id": "BLES00842", "name": "UFC Undisputed 2010 (PAL)"}, {"id": "BLES00845", "name": "Two Worlds II (PAL)"}, {"id": "BLES00860", "name": "Medal of Honor (PAL)"}, {"id": "BLES00861", "name": "Last Rebellion (PAL)"}, {"id": "BLES00867", "name": "Megamind: Ultimate Showdown (PAL)"}, {"id": "BLES00868", "name": "Quantum Theory (PAL)"}, {"id": "BLES00870", "name": "Tiger Woods PGA Tour 11 (PAL)"}, {"id": "BLES00875", "name": "3D Dot Game Heroes (PAL)"}, {"id": "BLES00876", "name": "Toy Story 3 (PAL)"}, {"id": "BLES00877", "name": "Toy Story 3: The Video Game (PAL)"}, {"id": "BLES00884", "name": "Test Drive Unlimited 2 (PAL)"}, {"id": "BLES00885", "name": "Iron Man 2: The Video Game (PAL)"}, {"id": "BLES00887", "name": "Grand Theft Auto: Episodes from Liberty City (PAL)"}, {"id": "BLES00891", "name": "Driver: San Francisco (PAL)"}, {"id": "BLES00893", "name": "Star Wars: The Force Unleashed II (PAL)"}, {"id": "BLES00895", "name": "Marvel Super Hero Squad: The Infinity Gauntlet (PAL)"}, {"id": "BLES00896", "name": "DJ Hero 2 (PAL)"}, {"id": "BLES00899", "name": "Assassin's Creed II - Game of The Year Edition (PAL)"}, {"id": "BLES00901", "name": "Fallout: New Vegas (PAL)"}, {"id": "BLES00904", "name": "Fallout: New Vegas (PAL)"}, {"id": "BLES00905", "name": "Fallout: New Vegas (Collector's Edition) (PAL)"}, {"id": "BLES00906", "name": "Prince of Persia: The Forgotten Sands (PAL)"}, {"id": "BLES00909", "name": "Assassin's Creed: Brotherhood (PAL)"}, {"id": "BLES00910", "name": "Assassin's Creed: Brotherhood (PAL)"}, {"id": "BLES00912", "name": "Virtua Tennis 4 (PAL)"}, {"id": "BLES00914", "name": "nail'd (PAL)"}, {"id": "BLES00916", "name": "Madden NFL 11 (PAL)"}, {"id": "BLES00917", "name": "F1 2010 (PAL)"}, {"id": "BLES00918", "name": "F1 2010 (PAL)"}, {"id": "BLES00919", "name": "Majin and the Forsaken Kingdom (PAL)"}, {"id": "BLES00921", "name": "International Cricket 2010 (PAL)"}, {"id": "BLES00922", "name": "Tom Clancy's Ghost Recon: Future Soldier (PAL)"}, {"id": "BLES00924", "name": "Tom Clancy's Ghost Recon: Future Soldier (PAL)"}, {"id": "BLES00926", "name": "Batman: Arkham City (PAL)"}, {"id": "BLES00927", "name": "Vanquish (PAL)"}, {"id": "BLES00928", "name": "Tom Clancy's H.A.W.X. 2 (PAL)"}, {"id": "BLES00931", "name": "Harry Potter and the Deathly Hallows - Part 1 (PAL)"}, {"id": "BLES00932", "name": "Demon's Souls (PAL)"}, {"id": "BLES00933", "name": "L.A. Noire (PAL)"}, {"id": "BLES00934", "name": "LEGO Star Wars III: The Clone Wars (PAL)"}, {"id": "BLES00936", "name": "MySims SkyHeroes (PAL)"}, {"id": "BLES00937", "name": "Apache: Air Assault (PAL)"}, {"id": "BLES00941", "name": "Battle vs. Chess (PAL)"}, {"id": "BLES00942", "name": "Max Payne 3 (PAL)"}, {"id": "BLES00944", "name": "BackBreaker (PAL)"}, {"id": "BLES00945", "name": "Naughty Bear (PAL)"}, {"id": "BLES00946", "name": "Spider-Man: Dimensions (PAL)"}, {"id": "BLES00947", "name": "Kane & Lynch 2: Dog Days (PAL)"}, {"id": "BLES00948", "name": "Dead Rising 2 (PAL)"}, {"id": "BLES00949", "name": "Need for Speed: Hot Pursuit (PAL)"}, {"id": "BLES00950", "name": "Need for Speed: Hot Pursuit (Limited Edition) (PAL)"}, {"id": "BLES00951", "name": "Driver: San Francisco (PAL)"}, {"id": "BLES00952", "name": "Naruto: Ninja Storm 2 (PAL)"}, {"id": "BLES00954", "name": "Monopoly Streets (PAL)"}, {"id": "BLES00957", "name": "Rapala Pro Bass Fishing (PAL)"}, {"id": "BLES00962", "name": "Homefront (PAL)"}, {"id": "BLES00963", "name": "F.E.A.R. 3 (PAL)"}, {"id": "BLES00964", "name": "Legend of the Guardians: The Owls of Ga'Hoole (PAL)"}, {"id": "BLES00965", "name": "EA Sports Active 2 (PAL)"}, {"id": "BLES00971", "name": "Trinity Universe (PAL)"}, {"id": "BLES00973", "name": "Hasbro Family Game Night 3 (PAL)"}, {"id": "BLES00977", "name": "Get Fit with Mel B: See the difference (PAL)"}, {"id": "BLES00978", "name": "Dragon Ball: Raging Blast 2 (PAL)"}, {"id": "BLES00983", "name": "Def Jam Rapstar (PAL)"}, {"id": "BLES00984", "name": "NHL 11 (PAL)"}, {"id": "BLES00986", "name": "Rock Band 3 (PAL)"}, {"id": "BLES00987", "name": "EA Sports MMA (PAL)"}, {"id": "BLES00989", "name": "Enslaved: Odyssey to the West (PAL)"}, {"id": "BLES00991", "name": "Red Faction Armageddon (PAL)"}, {"id": "BLES00992", "name": "WRC: Fia World Rally Championship (PAL)"}, {"id": "BLES00995", "name": "WWE All Stars (PAL)"}, {"id": "BLES00998", "name": "The Lord of the Rings: Aragorn's Quest (PAL)"}, {"id": "BLES01000", "name": "Racket Sports (PAL)"}, {"id": "BLES01001", "name": "Knights Contract (PAL)"}, {"id": "BLES01002", "name": "Tony Hawk: Shred (PAL)"}, {"id": "BLES01003", "name": "Shaun White Skateboarding (PAL)"}, {"id": "BLES01008", "name": "NBA 2K11 (PAL)"}, {"id": "BLES01009", "name": "MindJack (PAL)"}, {"id": "BLES01011", "name": "Summer Challenge: Athletics Tournament (PAL)"}, {"id": "BLES01016", "name": "The Sims 3 (PAL)"}, {"id": "BLES01017", "name": "James Bond 007: Blood Stone (PAL)"}, {"id": "BLES01021", "name": "Pro Evolution Soccer 2011 (PAL)"}, {"id": "BLES01022", "name": "Pro Evolution Soccer 2011 (PAL)"}, {"id": "BLES01030", "name": "Atelier Rorona: The Alchemist of Arland (PAL)"}, {"id": "BLES01031", "name": "Call of Duty: Black Ops (PAL)"}, {"id": "BLES01032", "name": "Call of Duty: Black Ops (PAL)"}, {"id": "BLES01033", "name": "Call of Duty: Black Ops (PAL)"}, {"id": "BLES01034", "name": "Call of Duty: Black Ops (PAL)"}, {"id": "BLES01035", "name": "Call of Duty: Black Ops (PAL)"}, {"id": "BLES01036", "name": "Bakugan: Defenders of the Core (PAL)"}, {"id": "BLES01037", "name": "National Geographic Challenge! (PAL)"}, {"id": "BLES01038", "name": "AFL Live (PAL)"}, {"id": "BLES01039", "name": "Fight Night Champion (PAL)"}, {"id": "BLES01040", "name": "Dead Space 2 (Limited Edition) (PAL)"}, {"id": "BLES01041", "name": "Dead Space 2 (PAL)"}, {"id": "BLES01044", "name": "Create (PAL)"}, {"id": "BLES01045", "name": "WW Smackdown vs Raw 2011 (PAL)"}, {"id": "BLES01046", "name": "Blood Drive (PAL)"}, {"id": "BLES01047", "name": "Castlevania: Lords of Shadow (PAL)"}, {"id": "BLES01050", "name": "Saw II: Flesh & Blood (PAL)"}, {"id": "BLES01051", "name": "Williams Pinball Classics (PAL)"}, {"id": "BLES01057", "name": "Fallout: New Vegas (PAL)"}, {"id": "BLES01059", "name": "FIFA 11 (PAL)"}, {"id": "BLES01060", "name": "Crysis 2 (PAL)"}, {"id": "BLES01061", "name": "Winter Sports 2011: Go for Gold (PAL)"}, {"id": "BLES01066", "name": "Shift 2: Unleashed (PAL)"}, {"id": "BLES01067", "name": "Medal of Honor (Limited Edition) (PAL)"}, {"id": "BLES01069", "name": "Thor God of Thunder (PAL)"}, {"id": "BLES01074", "name": "London 2012: The Official Video Game of the Olympic Games (PAL)"}, {"id": "BLES01076", "name": "Dragon Age: Origins - Ultimate Edition (PAL)"}, {"id": "BLES01079", "name": "Monster Jam: Path of Destruction (PAL)"}, {"id": "BLES01080", "name": "Yoostar 2: In the Movies (PAL)"}, {"id": "BLES01081", "name": "Yakuza 4 (PAL)"}, {"id": "BLES01084", "name": "Dragon Age II (Bioware Signature Edition) (PAL)"}, {"id": "BLES01088", "name": "MySims: Sky Heroes (PAL)"}, {"id": "BLES01089", "name": "John Daly's ProStroke Golf (PAL)"}, {"id": "BLES01090", "name": "PDC World Championship Darts: Pro Tour (PAL)"}, {"id": "BLES01092", "name": "Prince of Persia Trilogy 3D (PAL)"}, {"id": "BLES01093", "name": "Mafia 2: Special Extended Edition (PAL)"}, {"id": "BLES01100", "name": "MotoGP 10/11 (PAL)"}, {"id": "BLES01101", "name": "No More Heroes: Heroes' Paradise (PAL)"}, {"id": "BLES01102", "name": "Ar Tonelico Qoga: Knell of Ar Ciel (PAL)"}, {"id": "BLES01105", "name": "Call of Duty - Black Ops (PAL)"}, {"id": "BLES01106", "name": "Medal of Honor: Tier 1 Edition (PAL)"}, {"id": "BLES01107", "name": "Metal of Honor: Limited Edition (PAL)"}, {"id": "BLES01110", "name": "Ben 10: Ultimate Alien - Cosmic Destruction (PAL)"}, {"id": "BLES01112", "name": "Cabela's Dangerous Hunts 2011 (PAL)"}, {"id": "BLES01114", "name": "Child of Eden (PAL)"}, {"id": "BLES01116", "name": "Green Lantern: Rise of the Manhunters (PAL)"}, {"id": "BLES01119", "name": "BlazBlue: Continuum Shift (PAL)"}, {"id": "BLES01120", "name": "Splatterhouse (PAL)"}, {"id": "BLES01128", "name": "Grand Theft Auto IV: Complete Edition (PAL)"}, {"id": "BLES01129", "name": "Final Fantasy XIV Online: A Realm Reborn (PAL)"}, {"id": "BLES01130", "name": "Brunswick Pro Bowling (PAL)"}, {"id": "BLES01132", "name": "Mortal Kombat (PAL)"}, {"id": "BLES01133", "name": "Mass Effect 2 (PAL)"}, {"id": "BLES01134", "name": "Bulletstorm (Limited Edition) (PAL)"}, {"id": "BLES01135", "name": "Michael Jackson: The Experience (PAL)"}, {"id": "BLES01137", "name": "Farcry 3 (PAL)"}, {"id": "BLES01138", "name": "Far Cry 3 (PAL)"}, {"id": "BLES01139", "name": "Rio (PAL)"}, {"id": "BLES01145", "name": "Mayhem (PAL)"}, {"id": "BLES01146", "name": "Tom Clancy's Splinter Cell: Trilogy (PAL)"}, {"id": "BLES01147", "name": "Duke Nukem Forever (PAL)"}, {"id": "BLES01148", "name": "WSC Real 11: World Snooker Championship (PAL)"}, {"id": "BLES01149", "name": "Dynasty Warriors 7 (PAL)"}, {"id": "BLES01150", "name": "Deus Ex Human Revolution (PAL)"}, {"id": "BLES01151", "name": "Deus Ex: Human Revolution (PAL)"}, {"id": "BLES01153", "name": "Transformers: Fall of Cybertron (PAL)"}, {"id": "BLES01157", "name": "Spec Ops: The Line (PAL)"}, {"id": "BLES01160", "name": "de Blob 2 (PAL)"}, {"id": "BLES01161", "name": "Dungeon Siege III (PAL)"}, {"id": "BLES01163", "name": "El Shaddai: Ascension of the Metatron (PAL)"}, {"id": "BLES01164", "name": "Rango (PAL)"}, {"id": "BLES01166", "name": "Mafia II (PAL)"}, {"id": "BLES01167", "name": "Captain America : Super Soldier (PAL)"}, {"id": "BLES01169", "name": "Transformers: Dark of the Moon (PAL)"}, {"id": "BLES01170", "name": "UFC Personal Trainer (PAL)"}, {"id": "BLES01171", "name": "Operation Flashpoint: Red River (PAL)"}, {"id": "BLES01177", "name": "Tiger Woods PGA Tour 12: The Masters (PAL)"}, {"id": "BLES01178", "name": "Hyperdimension Neptunia (PAL)"}, {"id": "BLES01179", "name": "Red Dead Redemption: Undead Nightmare (PAL)"}, {"id": "BLES01181", "name": "Lord of the Rings: War in the North (PAL)"}, {"id": "BLES01183", "name": "Warriors: Legends of Troy (PAL)"}, {"id": "BLES01184", "name": "Trinity: Souls of Zill O'll (PAL)"}, {"id": "BLES01191", "name": "My Fitness Coach - Club (PAL)"}, {"id": "BLES01192", "name": "MX vs. ATV Alive (PAL)"}, {"id": "BLES01193", "name": "F3ear (PAL)"}, {"id": "BLES01195", "name": "The Tomb Raider Trilogy (PAL)"}, {"id": "BLES01210", "name": "Jonah Lomu: Rugby Challenge (PAL)"}, {"id": "BLES01211", "name": "Binary Domain (PAL)"}, {"id": "BLES01212", "name": "Bulletstorm (PAL)"}, {"id": "BLES01213", "name": "Kung Fu Panda 2 (PAL)"}, {"id": "BLES01214", "name": "Earth Defense Force: Insect Armageddon (PAL)"}, {"id": "BLES01215", "name": "We Dare: Flirty Fun For All (PAL)"}, {"id": "BLES01216", "name": "Rocksmith (PAL)"}, {"id": "BLES01217", "name": "Hunter's Trophy (PAL)"}, {"id": "BLES01218", "name": "My Body Coach 2 (PAL)"}, {"id": "BLES01219", "name": "The Penguins of Madagascar: Dr. Blowhole Returns Again (PAL)"}, {"id": "BLES01221", "name": "Atelier Totori: The Adventurer of Arland (PAL)"}, {"id": "BLES01222", "name": "Portal 2 (PAL)"}, {"id": "BLES01224", "name": "Winter Stars (PAL)"}, {"id": "BLES01225", "name": "Disgaea 4: A Promise Unforgotten (PAL)"}, {"id": "BLES01226", "name": "SBK 2011 FIM Superbike World Championship (PAL)"}, {"id": "BLES01227", "name": "Asura's Wrath (PAL)"}, {"id": "BLES01228", "name": "Devil May Cry: HD Collection (PAL)"}, {"id": "BLES01231", "name": "UFC: Undisputed 3 (PAL)"}, {"id": "BLES01232", "name": "Anarchy Reigns (PAL)"}, {"id": "BLES01233", "name": "Dance on Broadway (PAL)"}, {"id": "BLES01235", "name": "Champion Jockey: G1 Jockey & Gallop Racer (PAL)"}, {"id": "BLES01236", "name": "Sonic Generations (PAL)"}, {"id": "BLES01237", "name": "Top Gun: Hard Lock (PAL)"}, {"id": "BLES01239", "name": "Pirates of the Caribbean: The Video Game (PAL)"}, {"id": "BLES01241", "name": "LEGO Pirates of the Caribbean: The Video Game (PAL)"}, {"id": "BLES01242", "name": "Cars 2: The Video Game (PAL)"}, {"id": "BLES01250", "name": "SoulCalibur V (PAL)"}, {"id": "BLES01251", "name": "Kingdoms of Amalur: Reckoning (PAL)"}, {"id": "BLES01252", "name": "Street Fighter X Tekken (PAL)"}, {"id": "BLES01265", "name": "Alice: Madness Returns (PAL)"}, {"id": "BLES01266", "name": "Dance! It's your Stage (PAL)"}, {"id": "BLES01268", "name": "Let's Dance with Mel B (PAL)"}, {"id": "BLES01269", "name": "Final Fantasy XIII-2 (PAL)"}, {"id": "BLES01270", "name": "Tiger Woods PGA Tour 12: The Masters (PAL)"}, {"id": "BLES01271", "name": "Generator Rex : Agent of Providence (PAL)"}, {"id": "BLES01272", "name": "Skylanders Spyro's Adventure (PAL)"}, {"id": "BLES01275", "name": "Battlefield 3 (PAL)"}, {"id": "BLES01276", "name": "Shadows of the Damned (PAL)"}, {"id": "BLES01286", "name": "Sniper: Ghost Warrior (PAL)"}, {"id": "BLES01287", "name": "Colin McRae: DiRT 3 (PAL)"}, {"id": "BLES01288", "name": "Resident Evil : Operation Raccoon City (PAL)"}, {"id": "BLES01290", "name": "Sniper Elite V2 (PAL)"}, {"id": "BLES01291", "name": "Spider-Man: Edge of Time (PAL)"}, {"id": "BLES01292", "name": "Golden Eye 007: Reloaded (PAL)"}, {"id": "BLES01294", "name": "Red Dead Redemption: Game of the Year Edition (PAL)"}, {"id": "BLES01295", "name": "Arcana Heart 3 (PAL)"}, {"id": "BLES01296", "name": "Le Tour de France (PAL)"}, {"id": "BLES01298", "name": "Need for Speed: The Run (PAL)"}, {"id": "BLES01299", "name": "The Cursed Crusade (PAL)"}, {"id": "BLES01301", "name": "Dynasty Warriors: Gundam 3 (PAL)"}, {"id": "BLES01302", "name": "Dead Rising 2 : Off The Record (PAL)"}, {"id": "BLES01303", "name": "NeverDead (PAL)"}, {"id": "BLES01304", "name": "Brink (PAL)"}, {"id": "BLES01305", "name": "Agarest: Generations of War Zero (PAL)"}, {"id": "BLES01306", "name": "The Adventures of Tintin: The Secret of the Unicorn (PAL)"}, {"id": "BLES01307", "name": "Harry Potter and the Deathly Hallows - Part 2 (PAL)"}, {"id": "BLES01308", "name": "Puss in Boots (PAL)"}, {"id": "BLES01309", "name": "Hunted: The Demond`s Forge (PAL)"}, {"id": "BLES01310", "name": "Hunted: The Demon's Forge (PAL)"}, {"id": "BLES01311", "name": "F1 2011 (PAL)"}, {"id": "BLES01314", "name": "Bodycount (PAL)"}, {"id": "BLES01315", "name": "Bleach: Soul Resurrección (PAL)"}, {"id": "BLES01316", "name": "Air Conflicts: Secret Wars (PAL)"}, {"id": "BLES01320", "name": "Madden NFL 12 (PAL)"}, {"id": "BLES01322", "name": "The Bureau: XCOM Declassified (PAL)"}, {"id": "BLES01326", "name": "The House of the Dead: Overkill Extended Cut (PAL)"}, {"id": "BLES01327", "name": "Snipers - Invisible, Silent, Deadly (PAL)"}, {"id": "BLES01328", "name": "Cars 2: The Video Game (PAL)"}, {"id": "BLES01330", "name": "The Elder Scrolls V: Skyrim (PAL)"}, {"id": "BLES01338", "name": "Get Up And Dance (PAL)"}, {"id": "BLES01340", "name": "Obut Petanque (PAL)"}, {"id": "BLES01341", "name": "Ridge Racer Unbounded (PAL)"}, {"id": "BLES01342", "name": "Stains Row: The Third (PAL)"}, {"id": "BLES01347", "name": "Warhammer 40000: Space Marine (PAL)"}, {"id": "BLES01348", "name": "LEGO Harry Potter: Years 5-7 (PAL)"}, {"id": "BLES01349", "name": "Phineas and Ferb: Across the 2nd Dimension (PAL)"}, {"id": "BLES01351", "name": "X-Men: Destiny (PAL)"}, {"id": "BLES01352", "name": "Call of Juarez: the Cartel (PAL)"}, {"id": "BLES01354", "name": "Disney Universe (PAL)"}, {"id": "BLES01355", "name": "Ultimate Marvel vs Capcom 3 (PAL)"}, {"id": "BLES01356", "name": "Dragon's Dogma (PAL)"}, {"id": "BLES01357", "name": "NHL 12 (PAL)"}, {"id": "BLES01358", "name": "Rugby World Cup 2011 (PAL)"}, {"id": "BLES01364", "name": "Hasbro Family Game Night 4 (PAL)"}, {"id": "BLES01366", "name": "Disney Universe (PAL)"}, {"id": "BLES01368", "name": "The Sims 3: Pets (PAL)"}, {"id": "BLES01371", "name": "Syndicate (PAL)"}, {"id": "BLES01373", "name": "SuperStar Kartz (PAL)"}, {"id": "BLES01376", "name": "Phineas and Ferb: Across the 2nd Dimension (PAL)"}, {"id": "BLES01377", "name": "Rage (PAL)"}, {"id": "BLES01378", "name": "Rage: Anarchy Edition (PAL)"}, {"id": "BLES01379", "name": "Marvel Super Hero Squad : Comic Combat (PAL)"}, {"id": "BLES01381", "name": "FIFA 12 (PAL)"}, {"id": "BLES01383", "name": "Everyone Sing (PAL)"}, {"id": "BLES01384", "name": "Split/Second Velocity (PAL)"}, {"id": "BLES01386", "name": "Rayman Origins (PAL)"}, {"id": "BLES01387", "name": "Rayman Origins (PAL)"}, {"id": "BLES01388", "name": "The Darkness II (PAL)"}, {"id": "BLES01390", "name": "The Darkness II (PAL)"}, {"id": "BLES01391", "name": "uDraw Studio (PAL)"}, {"id": "BLES01392", "name": "Ace Combat: Assault Horizon (PAL)"}, {"id": "BLES01393", "name": "Ace Combat: Assault Horizon (PAL)"}, {"id": "BLES01395", "name": "Blades of Time (PAL)"}, {"id": "BLES01396", "name": "Dark Souls (PAL)"}, {"id": "BLES01397", "name": "Birds of Steel (PAL)"}, {"id": "BLES01398", "name": "Risen 2: Dark Waters (PAL)"}, {"id": "BLES01399", "name": "Yakuza: Dead Souls (PAL)"}, {"id": "BLES01401", "name": "Dragon Ball Z: Ultimate Tenkaichi (PAL)"}, {"id": "BLES01402", "name": "Dark Souls: Limited Edition (PAL)"}, {"id": "BLES01403", "name": "Hitman Absolution (PAL)"}, {"id": "BLES01406", "name": "Pro Evolution Soccer 2012 (PAL)"}, {"id": "BLES01407", "name": "Pro Evolution Soccer 2012 (PAL)"}, {"id": "BLES01408", "name": "Pro Evolution Soccer 2012 (PAL)"}, {"id": "BLES01409", "name": "The King of Fighters XIII (PAL)"}, {"id": "BLES01410", "name": "Grease Dance (PAL)"}, {"id": "BLES01411", "name": "Cabela's Big Game Hunter 2012 (PAL)"}, {"id": "BLES01412", "name": "Cabela's Survival: Shadows of Katmai (PAL)"}, {"id": "BLES01413", "name": "Monkey Island (Special Edition Collection) (PAL)"}, {"id": "BLES01414", "name": "Test Drive: Ferrari Racing Legends (PAL)"}, {"id": "BLES01416", "name": "Wanted Corp. (PAL)"}, {"id": "BLES01418", "name": "NBA 2K12 (PAL)"}, {"id": "BLES01419", "name": "Metal Gear Solid: HD Collection (PAL)"}, {"id": "BLES01420", "name": "Cyberbike 2: Cycling Sports (PAL)"}, {"id": "BLES01421", "name": "Saint Seiya: Sanctuary Battle (PAL)"}, {"id": "BLES01425", "name": "Happy Feet 2 (PAL)"}, {"id": "BLES01426", "name": "Rage (PAL)"}, {"id": "BLES01427", "name": "Crash Time 4: The Syndicate (PAL)"}, {"id": "BLES01428", "name": "Call of Duty: Modern Warfare 3 (PAL)"}, {"id": "BLES01429", "name": "Call of Duty: Modern Warfare 3 (PAL)"}, {"id": "BLES01430", "name": "Call of Duty: Modern Warfare 3 (PAL)"}, {"id": "BLES01431", "name": "Call of Duty: Modern Warfare 3 (PAL)"}, {"id": "BLES01432", "name": "Call of Duty: Modern Warfare 3 (PAL)"}, {"id": "BLES01433", "name": "Call of Duty: Modern Warfare 3 (PAL)"}, {"id": "BLES01434", "name": "Call of Duty: Modern Warfare 3 (PAL)"}, {"id": "BLES01437", "name": "SSX (PAL)"}, {"id": "BLES01439", "name": "WWE 12 (PAL)"}, {"id": "BLES01440", "name": "Armored Core: V (PAL)"}, {"id": "BLES01442", "name": "WRC 2: Fia World Rally Championship (PAL)"}, {"id": "BLES01444", "name": "Schlag den Raab 2 (PAL)"}, {"id": "BLES01445", "name": "Tiger Woods PGA Tour 13 (PAL)"}, {"id": "BLES01446", "name": "Silent Hill: Downpour (PAL)"}, {"id": "BLES01447", "name": "Just Dance Kids (PAL)"}, {"id": "BLES01451", "name": "Ferrari Challenge: Trofeo Pirelli + Supercar Challenge (PAL)"}, {"id": "BLES01452", "name": "Happy Feet 2: The Video Game (PAL)"}, {"id": "BLES01453", "name": "Ferrari: The Race Experience (PAL)"}, {"id": "BLES01454", "name": "Tekken Hybrid (PAL)"}, {"id": "BLES01455", "name": "Aliens: Colonial Marines (PAL)"}, {"id": "BLES01459", "name": "Catherine (PAL)"}, {"id": "BLES01460", "name": "NCIS (PAL)"}, {"id": "BLES01461", "name": "Motionsports Adrenaline (PAL)"}, {"id": "BLES01462", "name": "Mass Effect 3 (PAL)"}, {"id": "BLES01463", "name": "Captain Morgane and the Golden Turtle (PAL)"}, {"id": "BLES01464", "name": "The Adventures of Tintin: The Secret of the Unicorn (PAL)"}, {"id": "BLES01465", "name": "Resident Evil 6 (PAL)"}, {"id": "BLES01466", "name": "Assassin's Creed: Revelations (PAL)"}, {"id": "BLES01467", "name": "Assassin's Creed: Revelations (PAL)"}, {"id": "BLES01468", "name": "Cabela's Adventure Camp (PAL)"}, {"id": "BLES01469", "name": "Ben 10: Galactic Racing (PAL)"}, {"id": "BLES01470", "name": "Order Up!! (PAL)"}, {"id": "BLES01471", "name": "The Cube (PAL)"}, {"id": "BLES01472", "name": "Rugby League Live 2 (PAL)"}, {"id": "BLES01474", "name": "Pictionary: Ultimate Edition (PAL)"}, {"id": "BLES01475", "name": "Fallout New Vegas: Ultimate Edition (PAL)"}, {"id": "BLES01478", "name": "Fallout New Vegas: Ultimate Edition (PAL)"}, {"id": "BLES01481", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (PAL)"}, {"id": "BLES01485", "name": "The Testament of Sherlock Holmes (PAL)"}, {"id": "BLES01486", "name": "Ski Doo: Snowmobile Challenge (PAL)"}, {"id": "BLES01487", "name": "BlazBlue: Continuum Shift: Extend (PAL)"}, {"id": "BLES01488", "name": "L.A. Noire: The Complete Edition (PAL)"}, {"id": "BLES01492", "name": "Sacred 3 (PAL)"}, {"id": "BLES01493", "name": "FIFA Street (PAL)"}, {"id": "BLES01494", "name": "Das Duel Männer vs Frauen (PAL)"}, {"id": "BLES01500", "name": "Absolute Supercars (PAL)"}, {"id": "BLES01501", "name": "Putty Squad (PAL)"}, {"id": "BLES01504", "name": "Silent Hill: HD Collection (PAL)"}, {"id": "BLES01507", "name": "Hyperdimension Neptunia mk2 (PAL)"}, {"id": "BLES01508", "name": "Mortal Kombat Komplete Edition (PAL)"}, {"id": "BLES01512", "name": "Captain Morgane and the Golden Turtle (PAL)"}, {"id": "BLES01516", "name": "LEGO The Lord of the Rings (PAL)"}, {"id": "BLES01517", "name": "Hitman HD Trilogy (PAL)"}, {"id": "BLES01520", "name": "Battleship (PAL)"}, {"id": "BLES01522", "name": "Just Dance 3 (PAL)"}, {"id": "BLES01524", "name": "Ninja Gaiden 3 (PAL)"}, {"id": "BLES01525", "name": "Lollipop Chainsaw (PAL)"}, {"id": "BLES01527", "name": "Sniper: Ghost Warrior 2 Limited Edition (PAL)"}, {"id": "BLES01528", "name": "Summer Stars 2012 (PAL)"}, {"id": "BLES01529", "name": "Adidas miCoach (PAL)"}, {"id": "BLES01532", "name": "Prototype 2 (PAL)"}, {"id": "BLES01533", "name": "Prototype 2 (PAL)"}, {"id": "BLES01542", "name": "Brave: The Video Game (PAL)"}, {"id": "BLES01547", "name": "The Amazing Spider-Man (PAL)"}, {"id": "BLES01548", "name": "DiRT 3 (PAL)"}, {"id": "BLES01549", "name": "Men in Black: Alien Crisis (PAL)"}, {"id": "BLES01550", "name": "Rune Factory: Oceans (PAL)"}, {"id": "BLES01551", "name": "MUD FIM Motocross World Championship (PAL)"}, {"id": "BLES01555", "name": "Ni no Kuni: Wrath of the White Witch (PAL)"}, {"id": "BLES01562", "name": "Le Tour de France 2012 (PAL)"}, {"id": "BLES01563", "name": "Damage Inc. Pacific Squadron WWII (PAL)"}, {"id": "BLES01578", "name": "DiRT Showdown (PAL)"}, {"id": "BLES01579", "name": "Game of Thrones (PAL)"}, {"id": "BLES01580", "name": "Game of Thrones (PAL)"}, {"id": "BLES01581", "name": "Ride to Hell: Retribution (PAL)"}, {"id": "BLES01582", "name": "Assassin's Creed Double Pack (PAL)"}, {"id": "BLES01586", "name": "Of Orcs and Men (PAL)"}, {"id": "BLES01587", "name": "Batman: Arkham City (PAL)"}, {"id": "BLES01588", "name": "Warriors Orochi 3 (PAL)"}, {"id": "BLES01590", "name": "Tom Clancy's Rainbow Six Vegas 2 (Complete Edition) + Ghost Recon Advanced Warfighter 2 (Double Pack) (PAL)"}, {"id": "BLES01591", "name": "Tom Clancy's Splinter Cell Double Agent / Rainbow Six Vegas (Double Pack) (PAL)"}, {"id": "BLES01593", "name": "Atelier Meruru: The Apprentice of Arland (PAL)"}, {"id": "BLES01596", "name": "Back to the Future: The Game (PAL)"}, {"id": "BLES01597", "name": "Darksiders II (PAL)"}, {"id": "BLES01601", "name": "Bejeweled 3 (PAL)"}, {"id": "BLES01602", "name": "Heavy Fire: Afghanistan (PAL)"}, {"id": "BLES01603", "name": "Madden NFL 13 (PAL)"}, {"id": "BLES01604", "name": "Air Conflicts: Pacific Carriers (PAL)"}, {"id": "BLES01610", "name": "Worms Collection (PAL)"}, {"id": "BLES01613", "name": "LEGO Batman 2: DC Super Heroes (PAL)"}, {"id": "BLES01614", "name": "007 Legends (PAL)"}, {"id": "BLES01617", "name": "Tales of Graces F (PAL)"}, {"id": "BLES01618", "name": "The Amazing Spider-Man (PAL)"}, {"id": "BLES01620", "name": "Crash Time 5: Undercover (PAL)"}, {"id": "BLES01622", "name": "Cartoon Network: Punch Time Explosion XL (PAL)"}, {"id": "BLES01623", "name": "Dead or Alive 5 (PAL)"}, {"id": "BLES01624", "name": "Madagascar 3: Europe's Most Wanted (PAL)"}, {"id": "BLES01625", "name": "Family Guy: Back to the Multiverse (PAL)"}, {"id": "BLES01627", "name": "Disney Epic Mickey 2: The Power of Two (PAL)"}, {"id": "BLES01632", "name": "Disney Pixar Brave (PAL)"}, {"id": "BLES01633", "name": "Brave: The Video Game (PAL)"}, {"id": "BLES01636", "name": "Medal of Honor Warfighter (PAL)"}, {"id": "BLES01639", "name": "Sleeping Dogs (PAL)"}, {"id": "BLES01641", "name": "Hitman: Absolution (PAL)"}, {"id": "BLES01643", "name": "Agarest: Generations of War 2 (PAL)"}, {"id": "BLES01644", "name": "Castlevania: Lords of Shadow 2 (PAL)"}, {"id": "BLES01646", "name": "Sonic & All-Stars Racing Transformed (PAL)"}, {"id": "BLES01647", "name": "SBK Generations (PAL)"}, {"id": "BLES01649", "name": "Crysis 3 (PAL)"}, {"id": "BLES01654", "name": "Enemy Front (PAL)"}, {"id": "BLES01655", "name": "Enemy Front (PAL)"}, {"id": "BLES01656", "name": "Max Payne 3 (PAL)"}, {"id": "BLES01657", "name": "Dragon Age: Inquisition (PAL)"}, {"id": "BLES01658", "name": "Dragon Ball Z Budokai HD Collection (PAL)"}, {"id": "BLES01659", "name": "Need for Speed: Most Wanted (PAL)"}, {"id": "BLES01661", "name": "Sleeping Dogs (PAL)"}, {"id": "BLES01662", "name": "Sleeping Dogs (PAL)"}, {"id": "BLES01664", "name": "F1 2012 (PAL)"}, {"id": "BLES01667", "name": "Assassin's Creed III (PAL)"}, {"id": "BLES01668", "name": "Assassin's Creed III (PAL)"}, {"id": "BLES01669", "name": "Assassin's Creed III (PAL)"}, {"id": "BLES01671", "name": "Hunter's Trophy 2: Europa (PAL)"}, {"id": "BLES01672", "name": "One Piece: Pirate Warriors (PAL)"}, {"id": "BLES01673", "name": "Injustice : Gods Among Us (Special Edition) (PAL)"}, {"id": "BLES01674", "name": "Dishonored (PAL)"}, {"id": "BLES01675", "name": "Dishonored (PAL)"}, {"id": "BLES01676", "name": "FIFA 13: Ultimate Edition (PAL)"}, {"id": "BLES01677", "name": "FIFA 13 (PAL)"}, {"id": "BLES01679", "name": "Doom 3: BFG Edition (PAL)"}, {"id": "BLES01681", "name": "Dead Island (PAL)"}, {"id": "BLES01682", "name": "Way of the Samurai 4 (PAL)"}, {"id": "BLES01684", "name": "Borderlands 2 (PAL)"}, {"id": "BLES01685", "name": "Lost Planet 3 (PAL)"}, {"id": "BLES01686", "name": "Ice Age 4: Continental Drift - Artic Games (PAL)"}, {"id": "BLES01689", "name": "Skylanders Giants (PAL)"}, {"id": "BLES01691", "name": "NHL 13 (PAL)"}, {"id": "BLES01696", "name": "Obut Petanque 2 (PAL)"}, {"id": "BLES01697", "name": "Alien: Isolation (PAL)"}, {"id": "BLES01698", "name": "DmC: Devil May Cry (PAL)"}, {"id": "BLES01699", "name": "WWE '13 (PAL)"}, {"id": "BLES01701", "name": "Remember Me (PAL)"}, {"id": "BLES01702", "name": "Tekken Tag Tournament 2 (PAL)"}, {"id": "BLES01704", "name": "Sleeping Dogs (PAL)"}, {"id": "BLES01705", "name": "BioShock Infinite (PAL)"}, {"id": "BLES01707", "name": "Port Royale 3: Pirates & Merchants (PAL)"}, {"id": "BLES01708", "name": "Pro Evolution Soccer 2013 (PAL)"}, {"id": "BLES01709", "name": "Pro Evolution Soccer 2013 (PAL)"}, {"id": "BLES01710", "name": "Pro Evolution Soccer 2013 (PAL)"}, {"id": "BLES01711", "name": "XCOM: Enemy Unknown (PAL)"}, {"id": "BLES01713", "name": "NBA 2K13 (PAL)"}, {"id": "BLES01714", "name": "Dishonored (PAL)"}, {"id": "BLES01715", "name": "F1 Race Stars (PAL)"}, {"id": "BLES01717", "name": "Call of Duty: Black Ops II (PAL)"}, {"id": "BLES01718", "name": "Call of Duty: Black Ops II (PAL)"}, {"id": "BLES01719", "name": "Call of Duty: Black Ops II (PAL)"}, {"id": "BLES01720", "name": "Call of Duty: Black Ops 2 (PAL)"}, {"id": "BLES01721", "name": "WRC 3: FIA World Rally Championship (PAL)"}, {"id": "BLES01722", "name": "Just Dance 4 (PAL)"}, {"id": "BLES01723", "name": "Mugen Souls (PAL)"}, {"id": "BLES01724", "name": "Fuse (PAL)"}, {"id": "BLES01730", "name": "Toy Story Mania! (PAL)"}, {"id": "BLES01731", "name": "South Park: The Stick of Truth (PAL)"}, {"id": "BLES01732", "name": "Angry Birds Trilogy (PAL)"}, {"id": "BLES01733", "name": "Dead Space 3 (PAL)"}, {"id": "BLES01736", "name": "Cabela's Dangerous Hunts 2013 (PAL)"}, {"id": "BLES01737", "name": "GRID 2 (PAL)"}, {"id": "BLES01738", "name": "Persona 4 Arena (PAL)"}, {"id": "BLES01739", "name": "Dead Island Riptide (PAL)"}, {"id": "BLES01744", "name": "History: Legends of War (PAL)"}, {"id": "BLES01745", "name": "Middle-earth: Shadow of Mordor (PAL)"}, {"id": "BLES01746", "name": "Pro Evolution Soccer 2013 (PAL)"}, {"id": "BLES01747", "name": "Saints Row: The Third - The Full Package (PAL)"}, {"id": "BLES01748", "name": "Saints Row : The Third (PAL)"}, {"id": "BLES01750", "name": "Metal Gear Rising: Revengeance (PAL)"}, {"id": "BLES01752", "name": "Under Defeat HD (Deluxe Edition) (PAL)"}, {"id": "BLES01753", "name": "Ben 10 Omniverse (PAL)"}, {"id": "BLES01754", "name": "Tiger Woods PGA Tour 14 (PAL)"}, {"id": "BLES01756", "name": "Zone of the Enders HD Collection (PAL)"}, {"id": "BLES01760", "name": "Rise of the Guardians (PAL)"}, {"id": "BLES01763", "name": "Army of Two: The Devil's Cartel (PAL)"}, {"id": "BLES01764", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (PAL)"}, {"id": "BLES01765", "name": "Dark Souls: Prepare to Die Edition (PAL)"}, {"id": "BLES01766", "name": "Tom Clancy's Splinter Cell: Blacklist (PAL)"}, {"id": "BLES01768", "name": "Midway Arcade Origins (PAL)"}, {"id": "BLES01773", "name": "Resident Evil: Revelations (PAL)"}, {"id": "BLES01774", "name": "Mass Effect (PAL)"}, {"id": "BLES01776", "name": "Deadly Premonition The Directors Cut (PAL)"}, {"id": "BLES01778", "name": "Hitman Absolution Complete Edition (PAL)"}, {"id": "BLES01779", "name": "The Walking Dead: Survival Instinct (PAL)"}, {"id": "BLES01780", "name": "Tomb Raider (PAL)"}, {"id": "BLES01781", "name": "Tomb Raider (PAL)"}, {"id": "BLES01783", "name": "Arcania: The Complete Tale (PAL)"}, {"id": "BLES01784", "name": "Batman: Arkham Origins (PAL)"}, {"id": "BLES01786", "name": "Iron Sky Invasion (PAL)"}, {"id": "BLES01787", "name": "Defiance (PAL)"}, {"id": "BLES01788", "name": "Hyperdimension Neptunia Victory (PAL)"}, {"id": "BLES01789", "name": "Deadpool (PAL)"}, {"id": "BLES01791", "name": "Painkiller: Hell & Damnation (PAL)"}, {"id": "BLES01792", "name": "Star Trek (PAL)"}, {"id": "BLES01793", "name": "Atelier Ayesha: The Alchemist of Dusk (PAL)"}, {"id": "BLES01794", "name": "Dragon's Dogma: Dark Arisen (PAL)"}, {"id": "BLES01796", "name": "Farming Simulator 2013 (PAL)"}, {"id": "BLES01797", "name": "The Smurfs 2 (PAL)"}, {"id": "BLES01798", "name": "Truck Racer (PAL)"}, {"id": "BLES01801", "name": "Fist of the North Star: Ken's Rage 2 (PAL)"}, {"id": "BLES01804", "name": "Yaiba Ninja Gaiden Z - Special Edition (PAL)"}, {"id": "BLES01805", "name": "MotoGP 13 (PAL)"}, {"id": "BLES01807", "name": "Grand Theft Auto V (PAL)"}, {"id": "BLES01808", "name": "Young Justice: Legacy (PAL)"}, {"id": "BLES01811", "name": "Lightning Returns Final Fantasy XIII (PAL)"}, {"id": "BLES01812", "name": "Sniper Elite V2 - Game of the Year Edition (PAL)"}, {"id": "BLES01813", "name": "Borderlands 2: Addon Pack (PAL)"}, {"id": "BLES01815", "name": "Tales of Xillia (PAL)"}, {"id": "BLES01817", "name": "The Amazing Spider-Man 2 (PAL)"}, {"id": "BLES01831", "name": "LEGO Marvel Super Heroes (PAL)"}, {"id": "BLES01832", "name": "Battlefield 4 (PAL)"}, {"id": "BLES01833", "name": "The Walking Dead: A Telltale Games Series (PAL)"}, {"id": "BLES01835", "name": "The Walking Dead: Survival Instinct (PAL)"}, {"id": "BLES01836", "name": "Murdered : Soul Suspect (PAL)"}, {"id": "BLES01840", "name": "Tom Clancy's Ghost Recon Double Pack (Future Soldier & Advanced Warfighter 2) (PAL)"}, {"id": "BLES01841", "name": "Rugby Challenge 2: The Lions Tour Edition (PAL)"}, {"id": "BLES01845", "name": "Ninja Gaiden 3 : Razor's Edge (PAL)"}, {"id": "BLES01846", "name": "Le Tour de France 2013 - 100th Edition (PAL)"}, {"id": "BLES01847", "name": "Earth Defense Force 2025 (PAL)"}, {"id": "BLES01848", "name": "Time and Eternity (PAL)"}, {"id": "BLES01849", "name": "Turbo: Super Stunt Squad (PAL)"}, {"id": "BLES01851", "name": "XCOM: Enemy Within - Commander Edition (PAL)"}, {"id": "BLES01853", "name": "NHL 14 (PAL)"}, {"id": "BLES01854", "name": "Watch Dogs (PAL)"}, {"id": "BLES01855", "name": "GRID 2 (PAL)"}, {"id": "BLES01856", "name": "Killer is Dead (PAL)"}, {"id": "BLES01857", "name": "Destiny (PAL)"}, {"id": "BLES01858", "name": "Air Conflicts: Vietnam (PAL)"}, {"id": "BLES01859", "name": "Don Bradman Cricket 14 (PAL)"}, {"id": "BLES01860", "name": "Skylanders: Swap Force (PAL)"}, {"id": "BLES01862", "name": "Rocksmith 2014 Edition (PAL)"}, {"id": "BLES01863", "name": "Rayman Legends (PAL)"}, {"id": "BLES01864", "name": "Tales of Symphonia Chronicles (PAL)"}, {"id": "BLES01865", "name": "Dynasty Warriors 8 (PAL)"}, {"id": "BLES01867", "name": "Metro: Last Light (PAL)"}, {"id": "BLES01868", "name": "Port Royale 3: Gold Edition (PAL)"}, {"id": "BLES01869", "name": "Heavy Fire: Shattered Spear (PAL)"}, {"id": "BLES01870", "name": "F1 2013 Classic Edition (PAL)"}, {"id": "BLES01874", "name": "WRC 4: FIA World Rally Championship (PAL)"}, {"id": "BLES01875", "name": "AFL Live 2 (PAL)"}, {"id": "BLES01876", "name": "FIFA 14 (PAL)"}, {"id": "BLES01880", "name": "Final Fantasy X / X-2 HD Remaster (PAL)"}, {"id": "BLES01881", "name": "Hot Wheels: World's Best Driver (PAL)"}, {"id": "BLES01882", "name": "Assassin's Creed IV: Black Flag (PAL)"}, {"id": "BLES01883", "name": "Assassin's Creed IV: Black Flag (PAL)"}, {"id": "BLES01884", "name": "Assassin's Creed IV: Black Flag (PAL)"}, {"id": "BLES01885", "name": "The Elder Scrolls V: Skyrim (Legendary Edition) (PAL)"}, {"id": "BLES01886", "name": "The Elder Scrolls V: Skyrim Legendary Edition (PAL)"}, {"id": "BLES01889", "name": "Saints Row IV (PAL)"}, {"id": "BLES01891", "name": "The Voice of Germany Volume 2 (PAL)"}, {"id": "BLES01892", "name": "Yaiba: Ninja Gaiden Z (PAL)"}, {"id": "BLES01894", "name": "Need for Speed: Rivals (PAL)"}, {"id": "BLES01897", "name": "Kingdom Hearts HD 1.5 ReMIX (PAL)"}, {"id": "BLES01898", "name": "Armored Core: Verdict Day (PAL)"}, {"id": "BLES01899", "name": "Ben 10: Omniverse 2 (PAL)"}, {"id": "BLES01900", "name": "Ultra Street Fighter IV (PAL)"}, {"id": "BLES01901", "name": "Pac-Man and the Ghostly Adventures (PAL)"}, {"id": "BLES01902", "name": "Payday 2 (PAL)"}, {"id": "BLES01907", "name": "Dead or Alive 5 Ultimate (PAL)"}, {"id": "BLES01909", "name": "Wolfenstein: The New Order (PAL)"}, {"id": "BLES01910", "name": "Wolfenstein The New Order (PAL)"}, {"id": "BLES01911", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge (PAL)"}, {"id": "BLES01913", "name": "One Piece: Pirate Warriors 2 (PAL)"}, {"id": "BLES01916", "name": "The Evil Within (PAL)"}, {"id": "BLES01920", "name": "NBA 2K14 (PAL)"}, {"id": "BLES01921", "name": "Diablo III (PAL)"}, {"id": "BLES01924", "name": "Dishonored: Game of the Year Edition (PAL)"}, {"id": "BLES01925", "name": "Dishonored: Game of the Year Edition (PAL)"}, {"id": "BLES01928", "name": "Deus Ex: Human Revolution Director's Cut (PAL)"}, {"id": "BLES01930", "name": "Pro Evolution Soccer 2014 (PAL)"}, {"id": "BLES01931", "name": "Pro Evolution Soccer 2014 (PAL)"}, {"id": "BLES01932", "name": "Pro Evolution Soccer 2014 (PAL)"}, {"id": "BLES01933", "name": "Watch Dogs (PAL)"}, {"id": "BLES01934", "name": "Watch Dogs (Russian) (PAL)"}, {"id": "BLES01935", "name": "Pro Evolution Soccer 2014 (PAL)"}, {"id": "BLES01936", "name": "Saint Seiya : Brave Soldiers (PAL)"}, {"id": "BLES01937", "name": "WWE 2K14 (PAL)"}, {"id": "BLES01938", "name": "Terraria (PAL)"}, {"id": "BLES01939", "name": "Disgaea D2 : A Brighter Darkness (PAL)"}, {"id": "BLES01940", "name": "The Guided Fate Paradox (PAL)"}, {"id": "BLES01941", "name": "Dragon Ball Z: Battle of Z (PAL)"}, {"id": "BLES01943", "name": "Angry Birds Star Wars (PAL)"}, {"id": "BLES01945", "name": "Call of Duty: Ghosts (PAL)"}, {"id": "BLES01948", "name": "Call of Duty: Ghosts (PAL)"}, {"id": "BLES01950", "name": "Dragon's Crown (PAL)"}, {"id": "BLES01952", "name": "Bound by Flame (PAL)"}, {"id": "BLES01955", "name": "Just Dance 2014 (PAL)"}, {"id": "BLES01959", "name": "Dark Souls II (PAL)"}, {"id": "BLES01961", "name": "Adventure Time: Explore the Dungeon Because I DON'T KNOW! (PAL)"}, {"id": "BLES01963", "name": "Rambo: The Video Game (PAL)"}, {"id": "BLES01964", "name": "The LEGO Movie Videogame (PAL)"}, {"id": "BLES01967", "name": "Injustice: Gods Among Us - Ultimate Edition (PAL)"}, {"id": "BLES01968", "name": "Assassin's Creed: Heritage Collection (PAL)"}, {"id": "BLES01969", "name": "DuckTales: Remastered (PAL)"}, {"id": "BLES01971", "name": "Metal Gear Solid V: Ground Zeroes (PAL)"}, {"id": "BLES01975", "name": "The Walking Dead (Game of the Year Edition) (PAL)"}, {"id": "BLES01976", "name": "Minecraft: PlayStation 3 Edition (PAL)"}, {"id": "BLES01981", "name": "Sniper Elite III (PAL)"}, {"id": "BLES01982", "name": "Thief (PAL)"}, {"id": "BLES01983", "name": "Kick-Ass 2 (PAL)"}, {"id": "BLES01984", "name": "MXGP: The Official Motocross Videogame (PAL)"}, {"id": "BLES01986", "name": "JoJo's Bizarre Adventure: All-Star Battle (PAL)"}, {"id": "BLES01987", "name": "The Witch and the Hundred Knight (PAL)"}, {"id": "BLES01988", "name": "Bloodbath (PAL)"}, {"id": "BLES01989", "name": "The Amazing Spider-Man 2 (PAL)"}, {"id": "BLES01992", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky (PAL)"}, {"id": "BLES01993", "name": "IHF Handball Challenge 14 (PAL)"}, {"id": "BLES01994", "name": "2014 FIFA World Cup Brazil (PAL)"}, {"id": "BLES01996", "name": "MotoGP 14 (PAL)"}, {"id": "BLES01997", "name": "Deception IV: Blood Ties (PAL)"}, {"id": "BLES01998", "name": "LEGO The Hobbit (PAL)"}, {"id": "BLES01999", "name": "Metro: Last Light - Complete Edition (PAL)"}, {"id": "BLES02000", "name": "Sherlock Holmes: Crimes & Punishments (PAL)"}, {"id": "BLES02001", "name": "South Park: The Stick of Truth (PAL)"}, {"id": "BLES02004", "name": "F1 2013 (PAL)"}, {"id": "BLES02005", "name": "How to Train Your Dragon 2 (PAL)"}, {"id": "BLES02006", "name": "Le Tour de France 2014 (PAL)"}, {"id": "BLES02007", "name": "Short Peace: Ranko Tsukigime's Longest Day (PAL)"}, {"id": "BLES02008", "name": "Dynasty Warriors 8: Xtreme Legends (PAL)"}, {"id": "BLES02010", "name": "Risen 3: Titan Lords (PAL)"}, {"id": "BLES02011", "name": "Far Cry 4 (PAL)"}, {"id": "BLES02012", "name": "Far Cry 4 (PAL)"}, {"id": "BLES02014", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution (PAL)"}, {"id": "BLES02018", "name": "Transformers: Rise of the Dark Spark (PAL)"}, {"id": "BLES02019", "name": "Saints Row IV - Game of the Century Edition (PAL)"}, {"id": "BLES02020", "name": "One Piece: Unlimited World Red (PAL)"}, {"id": "BLES02021", "name": "Plants vs Zombies: Garden Warfare (PAL)"}, {"id": "BLES02022", "name": "Mugen Souls Z (PAL)"}, {"id": "BLES02023", "name": "Fairy Fencer F (PAL)"}, {"id": "BLES02026", "name": "Escape Dead Island (PAL)"}, {"id": "BLES02028", "name": "Syberia Collection (PAL)"}, {"id": "BLES02029", "name": "Hatsune Miku: Project Diva F 2nd (PAL)"}, {"id": "BLES02033", "name": "LEGO Batman 3: Beyond Gotham (PAL)"}, {"id": "BLES02035", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition (PAL)"}, {"id": "BLES02036", "name": "Diablo 3: Reaper of Souls - Ultimate Evil Edition (PAL)"}, {"id": "BLES02037", "name": "NHL 15 (PAL)"}, {"id": "BLES02038", "name": "GRID Autosport (PAL)"}, {"id": "BLES02039", "name": "Battlefield: Hardline (PAL)"}, {"id": "BLES02040", "name": "Resident Evil: Revelations 2 (PAL)"}, {"id": "BLES02048", "name": "FIFA 15 (PAL)"}, {"id": "BLES02050", "name": "Atelier Rorona Plus: The Alchemist of Arland (PAL)"}, {"id": "BLES02052", "name": "Just Dance 2015 (PAL)"}, {"id": "BLES02055", "name": "Skylanders Trap Team (PAL)"}, {"id": "BLES02057", "name": "Dynasty Warriors: Gundam Reborn (PAL)"}, {"id": "BLES02058", "name": "Borderlands: The Pre-Sequel (PAL)"}, {"id": "BLES02060", "name": "Natural Doctrine (PAL)"}, {"id": "BLES02061", "name": "Assassin's Creed: Rogue (PAL)"}, {"id": "BLES02062", "name": "Assassin's Creed: Rogue (PAL)"}, {"id": "BLES02066", "name": "Disney Infinity: Marvel Super Heroes - 2.0 Edition (PAL)"}, {"id": "BLES02067", "name": "NBA 2K15 (PAL)"}, {"id": "BLES02070", "name": "Kingdom Hearts HD 2.5 ReMIX (PAL)"}, {"id": "BLES02071", "name": "Digimon All-Star Rumble (PAL)"}, {"id": "BLES02072", "name": "WWE 2K15 (PAL)"}, {"id": "BLES02077", "name": "Call of Duty: Advanced Warfare (PAL)"}, {"id": "BLES02078", "name": "Call of Duty: Advanced Warfare (PAL)"}, {"id": "BLES02080", "name": "F1 2014 (PAL)"}, {"id": "BLES02085", "name": "Assassin's Creed: Birth of a New World - The American Saga (PAL)"}, {"id": "BLES02086", "name": "Rugby 15 (PAL)"}, {"id": "BLES02087", "name": "Pro Evolution Soccer 2015 (PAL)"}, {"id": "BLES02088", "name": "Pro Evolution Soccer 2015 (PAL)"}, {"id": "BLES02090", "name": "Los 40 Principales Karaoke Party (PAL)"}, {"id": "BLES02092", "name": "La Voz Vol. 2 (PAL)"}, {"id": "BLES02093", "name": "The Evil Within (PAL)"}, {"id": "BLES02095", "name": "Saints Row: Gat Out of Hell (PAL)"}, {"id": "BLES02096", "name": "Dragon Ball: Xenoverse (PAL)"}, {"id": "BLES02097", "name": "Akiba's Trip: Undead & Undressed (PAL)"}, {"id": "BLES02102", "name": "Metal Gear Solid V – The Phantom Pain (PAL)"}, {"id": "BLES02103", "name": "Motorcycle Club (PAL)"}, {"id": "BLES02105", "name": "Lego Dimensions (PAL)"}, {"id": "BLES02108", "name": "Farming Simulator 15 (PAL)"}, {"id": "BLES02115", "name": "Tears to Tiara II: Heir of the Overlord (PAL)"}, {"id": "BLES02126", "name": "Arcana Heart 3: LOVE MAX!!!!! (PAL)"}, {"id": "BLES02127", "name": "Under Night In-Birth Exe:Late (PAL)"}, {"id": "BLES02132", "name": "LEGO Jurassic World (PAL)"}, {"id": "BLES02133", "name": "RIDE (PAL)"}, {"id": "BLES02134", "name": "Teslagrad (PAL)"}, {"id": "BLES02135", "name": "Dark Souls 2 - Scholar of the First Sin (PAL)"}, {"id": "BLES02136", "name": "J-Stars Victory VS+ (PAL)"}, {"id": "BLES02138", "name": "The Arland Atelier Trilogy (PAL)"}, {"id": "BLES02139", "name": "Madden NFL 16 (PAL)"}, {"id": "BLES02140", "name": "One Piece Pirate Warriors 3 (PAL)"}, {"id": "BLES02143", "name": "Atelier Shallie: Alchemists of the Dusk Sea (PAL)"}, {"id": "BLES02144", "name": "Kung Fu Panda: Showdown of Legendary Legends (PAL)"}, {"id": "BLES02152", "name": "Tales of Zestiria (PAL)"}, {"id": "BLES02153", "name": "NHL 16: Legacy Edition (PAL)"}, {"id": "BLES02154", "name": "Space Hulk (PAL)"}, {"id": "BLES02155", "name": "Teenage Mutant Ninja Turtles Mutants in Manhattan (PAL)"}, {"id": "BLES02161", "name": "FIFA 16 (PAL)"}, {"id": "BLES02162", "name": "MotoGP 15 (PAL)"}, {"id": "BLES02164", "name": "Godzilla (PAL)"}, {"id": "BLES02165", "name": "WRC 5 (PAL)"}, {"id": "BLES02166", "name": "Call of Duty: Black Ops III (PAL)"}, {"id": "BLES02169", "name": "LEGO Marvel's Avengers (PAL)"}, {"id": "BLES02173", "name": "Le Tour De France - Season 2014 (PAL)"}, {"id": "BLES02174", "name": "Rugby World Cup 2015 (PAL)"}, {"id": "BLES02178", "name": "Handball 16 (PAL)"}, {"id": "BLES02179", "name": "Just Dance 2016 (PAL)"}, {"id": "BLES02180", "name": "Guitar Hero Live (PAL)"}, {"id": "BLES02181", "name": "Saint Seiya Soldiers Soul (PAL)"}, {"id": "BLES02186", "name": "Rugby Challenge 3 (PAL)"}, {"id": "BLES02187", "name": "PES 2016: Pro Evolution Soccer Day One Edition (PAL)"}, {"id": "BLES02189", "name": "Barbie and Her Sisters Puppy Rescue (PAL)"}, {"id": "BLES02190", "name": "WWE 2K16 (PAL)"}, {"id": "BLES02191", "name": "NBA 2K16 (PAL)"}, {"id": "BLES02198", "name": "The Disgaea Triple Play Collection (PAL)"}, {"id": "BLES02199", "name": "Monster High New Ghoul in School (PAL)"}, {"id": "BLES02202", "name": "Tower of Guns: Special Edition (PAL)"}, {"id": "BLES02204", "name": "Assassin's Creed IV : Black Flag + Rogue (PAL)"}, {"id": "BLES02213", "name": "LEGO Star Wars: The Force Awakens (PAL)"}, {"id": "BLES02215", "name": "Game of Thrones: A Telltale Games Series (PAL)"}, {"id": "BLES02219", "name": "Grand Theft Auto: San Andreas (PAL)"}, {"id": "BLES02228", "name": "UEFA Euro 2016 (PAL)"}, {"id": "BLES02230", "name": "BlazBlue: CentralFiction (PAL)"}, {"id": "BLES02231", "name": "Just Dance 2017 (PAL)"}, {"id": "BLES02233", "name": "FIFA 17 (PAL)"}, {"id": "BLES02237", "name": "Pro Evolution Soccer 2017 (PAL)"}, {"id": "BLES02241", "name": "Odin Sphere Leifthrasir (PAL)"}, {"id": "BLES02242", "name": "NBA 2K17 (PAL)"}, {"id": "BLES02243", "name": "Handball 17 (PAL)"}, {"id": "BLES02244", "name": "The Legend of Heroes: Trails of Cold Steel II (PAL)"}, {"id": "BLES02245", "name": "Batman: The Telltale Series – Episode 1 (PAL)"}, {"id": "BLES02247", "name": "Persona 5 (PAL)"}, {"id": "BLES02250", "name": "FIFA 18 (PAL)"}, {"id": "BLES02252", "name": "Pro Evolution Soccer 2018 (PAL)"}, {"id": "BLES02254", "name": "Just Dance 2018 (PAL)"}, {"id": "BLES02255", "name": "NBA 2K18 (PAL)"}, {"id": "BLES02258", "name": "FIFA 19 (PAL)"}, {"id": "BLES02997", "name": "Borderlands: The Pre-Sequel (PAL)"}, {"id": "BLES15617", "name": "Angry Birds Trilogy (PAL)"}, {"id": "BLES30040", "name": "NASCAR '08 (PAL)"}, {"id": "BLES30213", "name": "Brain Challenge (PAL)"}, {"id": "BLES30347", "name": "Call of Juarez: Bound in Blood (PAL)"}, {"id": "BLES30592", "name": "NBA Elite 11 (PAL)"}, {"id": "BLES82001", "name": "Metal Gear Solid: The Legacy Collection (PAL)"}, {"id": "BLJM10030", "name": "Guitar Hero Aerosmith (NTSC-J)"}, {"id": "BLJM10170", "name": "Borderlands (NTSC-J)"}, {"id": "BLJM55001", "name": "Tom Clancy's Rainbow Six: Vegas (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55002", "name": "Wangan Midnight (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55003", "name": "Bladestorm: Hyakunen Sensou (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55004", "name": "Gundam Musou (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55005", "name": "Armored Core: For Answer (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55006", "name": "Ryu ga Gotoku Kenzan! (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55007", "name": "Lost Planet: Extreme Condition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55008", "name": "Senjou no Valkyria (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55009", "name": "Shin Sangoku Musou 5 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55010", "name": "Devil May Cry 4 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55011", "name": "Grand Theft Auto IV (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55012", "name": "Ryu ga Gotoku 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55013", "name": "Initial D Extreme Stage (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55014", "name": "Lost Planet: Extreme Condition (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55015", "name": "Gundam Musou 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55016", "name": "Bayonetta (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55017", "name": "Devil May Cry 4 (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55018", "name": "Rorona no Atelier: Arland no Renkinjutsushi (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55019", "name": "BioHazard 5: Alternative Edition (NTSC-J)"}, {"id": "BLJM55020", "name": "Shin Sangoku Musou 5 Empires (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55021", "name": "Ryu ga Gotoku 4: Densetsu o Tsugumono (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55022", "name": "Ninja Gaiden Sigma 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55023", "name": "Lost Planet 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55024", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55025", "name": "Ryu ga Gotoku Kenzan! (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55026", "name": "Ryu ga Gotoku 3 (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55027", "name": "Senjou no Valkyria (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55028", "name": "Initial D Extreme Stage (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55029", "name": "Wangan Midnight (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55030", "name": "Fallout: New Vegas (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55031", "name": "Musou Orochi Z (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55032", "name": "Rya ga Gotoku 4 Densetsu wo Tsugumono (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55033", "name": "Sengoku Basara 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55034", "name": "Nobunaga no Yabou: Tendou (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55035", "name": "Dead Rising 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55036", "name": "Super Street Fighter IV: Arcade Edition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55037", "name": "The Elder Scrolls IV: Oblivion (NTSC-J)"}, {"id": "BLJM55038", "name": "Fallout 3 (PlayStation 3 the Best) (Game of the Year Edition) (NTSC-J)"}, {"id": "BLJM55039", "name": "Atelier Rorona: The Alchemist of Arland (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55040", "name": "Atelier Totori: Alchemist of Arland 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55041", "name": "Atelier Meruru: Alchemist of Arland 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55042", "name": "Gundam Musou 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55043", "name": "Shin Sangoku Musou 5 Empires (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55044", "name": "Troy Musou (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55045", "name": "Shin Sangoku Musou 5 (PlayStation 3 the Best) (New Price Version) (NTSC-J)"}, {"id": "BLJM55046", "name": "Ninja Gaiden Sigma (PlayStation 3 the Best) (New Price Version) (NTSC-J)"}, {"id": "BLJM55047", "name": "Sengoku Musou 3 Z (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55048", "name": "BioHazard: Revival Selection (NTSC-J)"}, {"id": "BLJM55049", "name": "Sengoku Basara 3 Utage (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55050", "name": "Bladestorm: Hyakunen Sensou (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55051", "name": "Shin Sangoku Musou 6 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55052", "name": "Sengoku Musou 3 Empires (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55053", "name": "Dragon's Dogma (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55054", "name": "Ryu ga Gotoku: Of the End (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55055", "name": "Metal Gear Solid: Peace Walker HD Edition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55056", "name": "Metal Gear Solid HD Edition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55057", "name": "Monster Hunter Portable 3rd HD Ver. (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55058", "name": "Shin Sangoku Musou 6 Moushouden (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55059", "name": "The Elder Scrolls V: Skyrim (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55060", "name": "BlazBlue: Continuum Shift Extend (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55061", "name": "Okami: Zekkeiban HD Remaster (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55062", "name": "Battlefield 3 (NTSC-J)"}, {"id": "BLJM55063", "name": "Zone of the Enders: HD Edition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55064", "name": "BioHazard Chronicles HD Selection (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55065", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55066", "name": "Shin Sangoku Musou 6 Empires (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55067", "name": "Musou Orochi 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55068", "name": "BioHazard: Revival Selection (PlayStation 3 the Best) (Best Price Version) (NTSC-J)"}, {"id": "BLJM55069", "name": "BioHazard 6 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55071", "name": "BioHazard Revelations: Unveiled Edition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55073", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM55074", "name": "Nobunaga no Yabou: Tendou with Power-Up Kit (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55075", "name": "Sangokushi 12 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55076", "name": "Ryu ga Gotoku 1&2 HD Edition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55077", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJM55078", "name": "Okami Zekkeihan (PlayStation 3 the Best with Soundtrack CD) (NTSC-J)"}, {"id": "BLJM55079", "name": "Eiyuu Densetsu: Sen no Kiseki (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM55081", "name": "Shallie no Atelier: Tasogare no Umi no Renkinjutsushi (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM57001", "name": "Metal Gear Solid 4: Guns of the Patriots (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM60006", "name": "Sonic the Hedgehog (NTSC-J)"}, {"id": "BLJM60007", "name": "Miyazato San Kyoudai Naizou: Sega Golf Club (NTSC-J)"}, {"id": "BLJM60008", "name": "Mahjong Kakutou Club: Zenkoku Taisenban (NTSC-J)"}, {"id": "BLJM60009", "name": "Bladestorm: Hyakunen Sensou (NTSC-J)"}, {"id": "BLJM60011", "name": "Mahjong Taikai IV"}, {"id": "BLJM60013", "name": "Railfan (NTSC-J)"}, {"id": "BLJM60014", "name": "Need for Speed: Carbon (NTSC-J)"}, {"id": "BLJM60016", "name": "Virtua Fighter 5 (NTSC-J)"}, {"id": "BLJM60017", "name": "Power Smash 3 / Virtua Tennis 3 (NTSC-J)"}, {"id": "BLJM60018", "name": "Gundam Musou (NTSC-J)"}, {"id": "BLJM60019", "name": "Winning Post 7 Maximum 2007 (NTSC-J)"}, {"id": "BLJM60020", "name": "Fight Night: Round 3 (NTSC-J)"}, {"id": "BLJM60022", "name": "Mist of Chaos (NTSC-J)"}, {"id": "BLJM60023", "name": "Pro Yakyuu Spirits 4 (NTSC-J)"}, {"id": "BLJM60024", "name": "Tom Clancy's Rainbow Six: Vegas (NTSC-J)"}, {"id": "BLJM60025", "name": "NBA Street : Homecourt (NTSC-J)"}, {"id": "BLJM60026", "name": "Marvel: Ultimate Alliance (NTSC-J)"}, {"id": "BLJM60027", "name": "Call of Duty 3 (NTSC-J)"}, {"id": "BLJM60028", "name": "Wangan Midnight (NTSC-J)"}, {"id": "BLJM60029", "name": "Def Jam: Icon (NTSC-J)"}, {"id": "BLJM60030", "name": "Tony Hawk's Project 8 (NTSC-J)"}, {"id": "BLJM60031", "name": "Major League Baseball 2K7 (NTSC-J)"}, {"id": "BLJM60032", "name": "The Elder Scrolls IV: Oblivion (NTSC-J)"}, {"id": "BLJM60033", "name": "Yamasa Digi World SP: Pachi-Slot Sengoku Musou (NTSC-J)"}, {"id": "BLJM60034", "name": "Pirates of the Caribbean: At World's End (NTSC-J)"}, {"id": "BLJM60035", "name": "World Soccer Winning Eleven 2008 (NTSC-J)"}, {"id": "BLJM60036", "name": "Megazone 23: Aoi Garland (Limited Edition) (NTSC-J)"}, {"id": "BLJM60037", "name": "Megazone 23: Aoi Garland (NTSC-J)"}, {"id": "BLJM60038", "name": "Record of Agarest War (NTSC-J)"}, {"id": "BLJM60039", "name": "Disney/Pixar Remy no Oishii Restaurant (NTSC-J)"}, {"id": "BLJM60040", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (NTSC-J)"}, {"id": "BLJM60041", "name": "Shin Sangoku Musou 5 (NTSC-J)"}, {"id": "BLJM60042", "name": "Imabikisou (NTSC-J)"}, {"id": "BLJM60043", "name": "The Godfather: The Don's Edition (NTSC-J)"}, {"id": "BLJM60044", "name": "Need for Speed: Carbon (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60045", "name": "NBA Live 08 (NTSC-J)"}, {"id": "BLJM60046", "name": "FIFA 08: World Class Soccer (NTSC-J)"}, {"id": "BLJM60047", "name": "WWE SmackDown vs. Raw 2008 (NTSC-J)"}, {"id": "BLJM60048", "name": "Harry Potter to Fushichou no Kishidan (NTSC-J)"}, {"id": "BLJM60049", "name": "G1 Jockey 4 2007"}, {"id": "BLJM60050", "name": "Assassin's Creed (NTSC-J)"}, {"id": "BLJM60051", "name": "Conan (NTSC-J)"}, {"id": "BLJM60052", "name": "Stuntman: Ignition (NTSC-J)"}, {"id": "BLJM60053", "name": "Burnout Paradise (NTSC-J)"}, {"id": "BLJM60054", "name": "Medal of Honor: Airborne (NTSC-J)"}, {"id": "BLJM60055", "name": "Initial D Extreme Stage (NTSC-J)"}, {"id": "BLJM60056", "name": "Devil May Cry 4 (NTSC-J)"}, {"id": "BLJM60057", "name": "Sega Rally: Revo (NTSC-J)"}, {"id": "BLJM60058", "name": "Drift Nights: Juiced 2 (NTSC-J)"}, {"id": "BLJM60059", "name": "Need for Speed: ProStreet (NTSC-J)"}, {"id": "BLJM60060", "name": "Vampire Rain: Altered Species (NTSC-J)"}, {"id": "BLJM60061", "name": "Lost Planet: Extreme Condition (NTSC-J)"}, {"id": "BLJM60062", "name": "Armored Core 4 (The Best Collection) (NTSC-J)"}, {"id": "BLJM60064", "name": "Ryu ga Gotoku Kenzan! (NTSC-J)"}, {"id": "BLJM60065", "name": "Tears to Tiara : Kakan no Daichi (Limited Edition) (NTSC-J)"}, {"id": "BLJM60066", "name": "Armored Core: For Answer (NTSC-J)"}, {"id": "BLJM60067", "name": "Winning Post 7 Maximum 2008 (NTSC-J)"}, {"id": "BLJM60068", "name": "Lyra no Bouken: Ougon no Rashinban (NTSC-J)"}, {"id": "BLJM60069", "name": "Army of Two (NTSC-J)"}, {"id": "BLJM60070", "name": "Skate (NTSC-J)"}, {"id": "BLJM60071", "name": "Battlefield: Bad Company (NTSC-J)"}, {"id": "BLJM60072", "name": "Blazing Angels 2: Secret Missions of WWII (NTSC-J)"}, {"id": "BLJM60074", "name": "Tom Clancy's Rainbow Six: Vegas 2 (NTSC-J)"}, {"id": "BLJM60075", "name": "Pro Yakyuu Spirits 5 (NTSC-J)"}, {"id": "BLJM60076", "name": "Turok (NTSC-J)"}, {"id": "BLJM60077", "name": "Battle Fantasia (NTSC-J)"}, {"id": "BLJM60078", "name": "Stranglehold (NTSC-J)"}, {"id": "BLJM60079", "name": "FIFA Street 3 (NTSC-J)"}, {"id": "BLJM60080", "name": "Beijing 2008: The Official Video Game of the Olympic Games (NTSC-J)"}, {"id": "BLJM60081", "name": "Tears to Tiara : Kakan no Daichi (NTSC-J)"}, {"id": "BLJM60082", "name": "Metal Gear Online (NTSC-J)"}, {"id": "BLJM60084", "name": "WALL-E (NTSC-J)"}, {"id": "BLJM60086", "name": "X Edge (NTSC-J)"}, {"id": "BLJM60088", "name": "Madden NFL 09 Eigoban (NTSC-J)"}, {"id": "BLJM60089", "name": "Saints Row 2 (NTSC-J)"}, {"id": "BLJM60090", "name": "Unreal Tournament III (NTSC-J)"}, {"id": "BLJM60091", "name": "Def Jam: Icon (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60092", "name": "Fight Night Round 3 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60093", "name": "Grand Theft Auto IV (NTSC-J)"}, {"id": "BLJM60094", "name": "Tears to Tiara : Kakan no Daichi (AquaPrice 2800) (NTSC-J)"}, {"id": "BLJM60095", "name": "FaceBreaker (NTSC-J)"}, {"id": "BLJM60096", "name": "NBA Live 09 (NTSC-J)"}, {"id": "BLJM60097", "name": "WWE SmackDown Vs. Raw 2009 (NTSC-J)"}, {"id": "BLJM60098", "name": "WORLD SOCCER Winning Eleven 2009 (NTSC-J)"}, {"id": "BLJM60099", "name": "Major League Baseball 2K8 (NTSC-J)"}, {"id": "BLJM60100", "name": "Brothers in Arms: Hell's Highway (NTSC-J)"}, {"id": "BLJM60101", "name": "Mercenaries 2: World in Flames (NTSC-J)"}, {"id": "BLJM60102", "name": "Virtua Tennis 3 (Sega the Best) / Power Smash 3 (Sega the Best) (NTSC-J)"}, {"id": "BLJM60103", "name": "FIFA 09 World Class Soccer (NTSC-J)"}, {"id": "BLJM60104", "name": "Mirror's edge (NTSC-J)"}, {"id": "BLJM60105", "name": "Mahjong Taikai IV (Koei the Best) (NTSC-J)"}, {"id": "BLJM60107", "name": "Prince of Persia (NTSC-J)"}, {"id": "BLJM60108", "name": "Far Cry 2 (NTSC-J)"}, {"id": "BLJM60110", "name": "Assassin's Creed (NTSC-J)"}, {"id": "BLJM60112", "name": "Sonic World Adventure (NTSC-J)"}, {"id": "BLJM60113", "name": "The Godfather: The Don's Edition (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60114", "name": "Medal of Honor: Airborne (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60115", "name": "Need for Speed: Undercover (NTSC-J)"}, {"id": "BLJM60116", "name": "Alone in the Dark (NTSC-J)"}, {"id": "BLJM60117", "name": "Virtua Fighter 5 (Sega the Best) (NTSC-J)"}, {"id": "BLJM60120", "name": "Pro Yakyuu Spirits 5 Kanzenban (NTSC-J)"}, {"id": "BLJM60122", "name": "Extreme Racing: Pure (NTSC-J)"}, {"id": "BLJM60124", "name": "Bionic Commando (NTSC-J)"}, {"id": "BLJM60125", "name": "Sega Rally: Revo (Sega the Best) (NTSC-J)"}, {"id": "BLJM60127", "name": "Drift Nights: Juiced 2 (THQ Collection) (NTSC-J)"}, {"id": "BLJM60128", "name": "Tom Clancy's EndWar with Headset (NTSC-J)"}, {"id": "BLJM60129", "name": "Daikoukai Jidai Online: El Oriente (NTSC-J)"}, {"id": "BLJM60130", "name": "Street Fighter IV (NTSC-J)"}, {"id": "BLJM60131", "name": "Shaun White Snowboarding (NTSC-J)"}, {"id": "BLJM60132", "name": "Ryu ga Gotoku 3"}, {"id": "BLJM60133", "name": "Burnout Paradise: The Ultimate Box (NTSC-J)"}, {"id": "BLJM60134", "name": "Skate 2 (NTSC-J)"}, {"id": "BLJM60135", "name": "NBA Live 08 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60136", "name": "Tom Clancy's EndWar (NTSC-J)"}, {"id": "BLJM60137", "name": "007: Nagusame no Houshuu (NTSC-J)"}, {"id": "BLJM60138", "name": "The Godfather II (NTSC-J)"}, {"id": "BLJM60139", "name": "Musou Orochi Z (NTSC-J)"}, {"id": "BLJM60140", "name": "Winning Post World (NTSC-J)"}, {"id": "BLJM60141", "name": "Skate (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60142", "name": "Army of Two (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60143", "name": "Need for Speed: ProStreet (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60144", "name": "Tom Clancy's H.A.W.X. (NTSC-J)"}, {"id": "BLJM60146", "name": "Legends of Wrestlemania (NTSC-J)"}, {"id": "BLJM60147", "name": "Tom Clancy's Ghost Recon Advanced Warfighter 2 (Ubi the Best) (NTSC-J)"}, {"id": "BLJM60149", "name": "X Blades (NTSC-J)"}, {"id": "BLJM60150", "name": "Stranglehold (Good Price) (NTSC-J)"}, {"id": "BLJM60151", "name": "Record Of Agarest War (NTSC-J)"}, {"id": "BLJM60152", "name": "Operation Flashpoint: Dragon Rising (NTSC-J)"}, {"id": "BLJM60153", "name": "Call of Juarez: Chi no Kizuna (NTSC-J)"}, {"id": "BLJM60154", "name": "Rorona no Atelier: Arland no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM60155", "name": "Agarest Senki Zero (Limited Edition) (NTSC-J)"}, {"id": "BLJM60156", "name": "Agarest Senki Zero (NTSC-J)"}, {"id": "BLJM60157", "name": "BlazBlue: Calamity Trigger (NTSC-J)"}, {"id": "BLJM60158", "name": "Battlefield: Bad Company (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60159", "name": "Tom Clancy's Rainbow Six: Vegas 2 (Ubi the Best) (NTSC-J)"}, {"id": "BLJM60160", "name": "F.E.A.R. 2: Project Origin (NTSC-J)"}, {"id": "BLJM60161", "name": "Trinity Universe (Limited Edition) (NTSC-J)"}, {"id": "BLJM60162", "name": "Trinity Universe (NTSC-J)"}, {"id": "BLJM60164", "name": "UFC 2009: Undisputed (NTSC-J)"}, {"id": "BLJM60165", "name": "Tears to Tiara Gaiden : Avalon no Nazo (Limited Edition) (NTSC-J)"}, {"id": "BLJM60166", "name": "Tears to Tiara Gaiden : Avalon no Nazo (NTSC-J)"}, {"id": "BLJM60167", "name": "Need for Speed: Shift (NTSC-J)"}, {"id": "BLJM60168", "name": "Ninja Gaiden Sigma 2 (NTSC-J)"}, {"id": "BLJM60169", "name": "Terminator Salvation (NTSC-J)"}, {"id": "BLJM60172", "name": "Shin Sangoku Musou MultiRaid Special (NTSC-J)"}, {"id": "BLJM60173", "name": "Call of Duty 4: Modern Warfare (NTSC-J)"}, {"id": "BLJM60174", "name": "Bayonetta (NTSC-J)"}, {"id": "BLJM60176", "name": "WORLD SOCCER Winning Eleven 2010 (NTSC-J)"}, {"id": "BLJM60177", "name": "Lost Planet 2 (NTSC-J)"}, {"id": "BLJM60178", "name": "Collin McRae: DiRT 2 (NTSC-J)"}, {"id": "BLJM60179", "name": "WWE Smackdown vs. Raw 2010 (NTSC-J)"}, {"id": "BLJM60180", "name": "3D Dot Game Heroes (NTSC-J)"}, {"id": "BLJM60181", "name": "Mirror's Edge (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60182", "name": "Mercenaries 2: World in Flames (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60184", "name": "Shaun White Snowboarding (UBI the Best) (NTSC-J)"}, {"id": "BLJM60185", "name": "Assassin's Creed II (NTSC-J)"}, {"id": "BLJM60187", "name": "End of Eternity (NTSC-J)"}, {"id": "BLJM60188", "name": "Daikoukai Jidai Online: El Oriente (NTSC-J)"}, {"id": "BLJM60189", "name": "Star Ocean: The Last Hope International (NTSC-J)"}, {"id": "BLJM60190", "name": "X Edge (Compile Heart Selection) (NTSC-J)"}, {"id": "BLJM60191", "name": "Call of Duty: Modern Warfare 2 (NTSC-J)"}, {"id": "BLJM60192", "name": "Gundam Musou 2 (Gundam 30th Anniversary Collection) (NTSC-J)"}, {"id": "BLJM60193", "name": "Batman: Arkham Asylum (NTSC-J)"}, {"id": "BLJM60194", "name": "Fight Night : Round 4 (NTSC-J)"}, {"id": "BLJM60195", "name": "Need for Speed: Undercover (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60197", "name": "Battlefield: Bad Company 2 (NTSC-J)"}, {"id": "BLJM60199", "name": "BioHazard 5: Alternative Edition (NTSC-J)"}, {"id": "BLJM60200", "name": "God of War Collection (NTSC-J)"}, {"id": "BLJM60201", "name": "Skate 2 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60202", "name": "Dante's Inferno: Shinkyoku Jigoku-Hen (NTSC-J)"}, {"id": "BLJM60203", "name": "Super Street Fighter IV Arcade Edition (NTSC-J)"}, {"id": "BLJM60204", "name": "Darksiders"}, {"id": "BLJM60205", "name": "Pro Yakyuu Spirits 2010 (NTSC-J)"}, {"id": "BLJM60206", "name": "Front Mission Evolved (NTSC-J)"}, {"id": "BLJM60207", "name": "Power Smash: Live Match! (NTSC-J)"}, {"id": "BLJM60209", "name": "Winter Sports 2010: The Great Tournament (NTSC-J)"}, {"id": "BLJM60210", "name": "Winning Post World 2010 (NTSC-J)"}, {"id": "BLJM60211", "name": "Nobunaga no Yabou: Tendou (NTSC-J)"}, {"id": "BLJM60212", "name": "Trinity: Zill O'll Zero (NTSC-J)"}, {"id": "BLJM60213", "name": "BlazBlue: Calamity Trigger (Arc System Works Best Selection) (NTSC-J)"}, {"id": "BLJM60214", "name": "Quantum Theory (NTSC-J)"}, {"id": "BLJM60215", "name": "Catherine (NTSC-J)"}, {"id": "BLJM60216", "name": "Army of Two: The 40th Day (NTSC-J)"}, {"id": "BLJM60217", "name": "The Godfather II (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60218", "name": "Sengoku Basara 3 (NTSC-J)"}, {"id": "BLJM60219", "name": "Tom Clancy's Ghost Recon: Future Soldier (NTSC-J)"}, {"id": "BLJM60220", "name": "Singularity (NTSC-J)"}, {"id": "BLJM60221", "name": "Dead Rising 2 (NTSC-J)"}, {"id": "BLJM60222", "name": "2010 FIFA World Cup South Africa (NTSC-J)"}, {"id": "BLJM60223", "name": "NieR RepliCant (NTSC-J)"}, {"id": "BLJM60224", "name": "World Soccer Winning Eleven 2010: Aoki Samurai no Chousen (NTSC-J)"}, {"id": "BLJM60225", "name": "Tom Clancy's H.A.W.X. (Ubi the Best) (NTSC-J)"}, {"id": "BLJM60226", "name": "X Blades (UBI the Best) (NTSC-J)"}, {"id": "BLJM60227", "name": "Vanquish (NTSC-J)"}, {"id": "BLJM60228", "name": "White Album: Tsuzurareru Fuyu no Omoide (Limited Edition) (NTSC-J)"}, {"id": "BLJM60229", "name": "White Album: Tsuzurareru Fuyu no Omoide (NTSC-J)"}, {"id": "BLJM60232", "name": "Just Cause 2 (NTSC-J)"}, {"id": "BLJM60233", "name": "Assassin's Creed II: Special Edition (NTSC-J)"}, {"id": "BLJM60234", "name": "Prince of Persia: Boukyaku no Suna (NTSC-J)"}, {"id": "BLJM60235", "name": "Grand Theft Auto: Episodes from Liberty City (NTSC-J)"}, {"id": "BLJM60236", "name": "Race Driver: GRID (Codemasters the Best) (NTSC-J)"}, {"id": "BLJM60237", "name": "BlazBlue: Continuum Shift (Limited Box) (NTSC-J)"}, {"id": "BLJM60238", "name": "BlazBlue: Continuum Shift (NTSC-J)"}, {"id": "BLJM60239", "name": "Saints Row 2 (THQ Collection) (NTSC-J)"}, {"id": "BLJM60240", "name": "Hakuouki: Junsouroku (NTSC-J)"}, {"id": "BLJM60241", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (NTSC-J)"}, {"id": "BLJM60242", "name": "Tom Clancy's H.A.W.X. 2 (NTSC-J)"}, {"id": "BLJM60244", "name": "Blur Racerz (NTSC-J)"}, {"id": "BLJM60246", "name": "Chou Jigen Game: Neptune (Limited Edition) (NTSC-J)"}, {"id": "BLJM60247", "name": "Chou Jigen Game: Neptune (NTSC-J)"}, {"id": "BLJM60248", "name": "Arcana Heart 3 (NTSC-J)"}, {"id": "BLJM60250", "name": "Assassin's Creed: Brotherhood (NTSC-J)"}, {"id": "BLJM60251", "name": "Split/Second (NTSC-J)"}, {"id": "BLJM60252", "name": "Kane & Lynch 2: Dog Days (NTSC-J)"}, {"id": "BLJM60253", "name": "Nobunaga no Yabou Online: Shinsei no Shou (NTSC-J)"}, {"id": "BLJM60254", "name": "Agarest Senki Zero (Compile Heart Selection) (NTSC-J)"}, {"id": "BLJM60255", "name": "Nurarihyon no Mago: Hyakki Ryouran Taisen (NTSC-J)"}, {"id": "BLJM60256", "name": "Marvel vs. Capcom 3: Fate of Two Worlds (NTSC-J)"}, {"id": "BLJM60258", "name": "Ken to Mahou to Gakuen Mono. 3 (NTSC-J)"}, {"id": "BLJM60259", "name": "Madden NFL '11 (NTSC-J)"}, {"id": "BLJM60260", "name": "FIFA 10 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60261", "name": "NBA Live 10 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60262", "name": "Need for Speed: Shift (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60263", "name": "Winning Post 7 2010 (NTSC-J)"}, {"id": "BLJM60264", "name": "Fuel (Codemasters the Best) (NTSC-J)"}, {"id": "BLJM60265", "name": "Red Dead Redemption (NTSC-J)"}, {"id": "BLJM60266", "name": "EA Sports Sougoukakutougi (NTSC-J)"}, {"id": "BLJM60268", "name": "Two Worlds II (NTSC-J)"}, {"id": "BLJM60269", "name": "Call of Duty: Modern Warfare 2 (NTSC-J)"}, {"id": "BLJM60270", "name": "Mafia II (NTSC-J)"}, {"id": "BLJM60271", "name": "WORLD SOCCER Winning Eleven 2011 (NTSC-J)"}, {"id": "BLJM60272", "name": "Mindjack (NTSC-J)"}, {"id": "BLJM60273", "name": "Agarest Senki 2 (NTSC-J)"}, {"id": "BLJM60275", "name": "Medal of Honor (NTSC-J)"}, {"id": "BLJM60277", "name": "NBA 2K11 (NTSC-J)"}, {"id": "BLJM60278", "name": "Ken to Mahou to Gakuen Mono 2G (NTSC-J)"}, {"id": "BLJM60279", "name": "Borderlands (NTSC-J)"}, {"id": "BLJM60280", "name": "Agarest Senki 2 (Limited Edition) (NTSC-J)"}, {"id": "BLJM60282", "name": "Fallout New Vegas (NTSC-J)"}, {"id": "BLJM60284", "name": "Castlevania: Lords of Shadow (NTSC-J)"}, {"id": "BLJM60285", "name": "The Sims 3 (NTSC-J)"}, {"id": "BLJM60286", "name": "Call of Duty: Black Ops (NTSC-J)"}, {"id": "BLJM60287", "name": "Call of Duty: Black Ops (NTSC-J)"}, {"id": "BLJM60289", "name": "Shaun White Skateboarding (NTSC-J)"}, {"id": "BLJM60290", "name": "Shin Sangoku Musou Online: Souten Ranbu (NTSC-J)"}, {"id": "BLJM60291", "name": "Shin Sangoku Musou 6 (NTSC-J)"}, {"id": "BLJM60292", "name": "Umineko no Naku Koro ni: Majo to Suiri no Rinbukyoku (NTSC-J)"}, {"id": "BLJM60294", "name": "Gekiatsu!! Pachi Game Tamashi: CR Evangelion - Hajimari no Fukuin (NTSC-J)"}, {"id": "BLJM60295", "name": "Battlefield: Bad Company 2 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60296", "name": "Skate 3 (NTSC-J)"}, {"id": "BLJM60297", "name": "Need for Speed: Hot Pursuit (NTSC-J)"}, {"id": "BLJM60298", "name": "End of Eternity (Sega the Best) (NTSC-J)"}, {"id": "BLJM60299", "name": "Dante's Inferno: Shinkyoku Jigoku-Hen (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60300", "name": "Gundam Musou 3 (NTSC-J)"}, {"id": "BLJM60301", "name": "Blood Stone 007 (NTSC-J)"}, {"id": "BLJM60302", "name": "Castlevania: Lords of Shadow (NTSC-J)"}, {"id": "BLJM60303", "name": "Hokuto Musou International (NTSC-J)"}, {"id": "BLJM60304", "name": "Collin McRae: DiRT 2 (Codemasters the Best) (NTSC-J)"}, {"id": "BLJM60305", "name": "Max Anarchy (NTSC-J)"}, {"id": "BLJM60306", "name": "Final Fantasy XIV Online: Shinsei Eorzea (NTSC-J)"}, {"id": "BLJM60307", "name": "Troy Musou (NTSC-J)"}, {"id": "BLJM60308", "name": "Army of Two: The 40th Day (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60309", "name": "Fight Night Round 4 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60311", "name": "Crysis 2 (NTSC-J)"}, {"id": "BLJM60312", "name": "Wizardry Twin Pack (NTSC-J)"}, {"id": "BLJM60313", "name": "Sengoku Musou 3 Z (NTSC-J)"}, {"id": "BLJM60314", "name": "Red Dead Redemption: Undead Nightmare (NTSC-J)"}, {"id": "BLJM60315", "name": "Operation Flashpoint: Dragon Rising (Codemasters the Best) (NTSC-J)"}, {"id": "BLJM60316", "name": "Ryu ga Gotoku: Of the End (NTSC-J)"}, {"id": "BLJM60317", "name": "Bulletstorm (NTSC-J)"}, {"id": "BLJM60318", "name": "Test Drive Unlimited 2 (NTSC-J)"}, {"id": "BLJM60319", "name": "Daikoukai Jidai Online: Tierra Americana (NTSC-J)"}, {"id": "BLJM60320", "name": "Racket Sports (NTSC-J)"}, {"id": "BLJM60321", "name": "L@ve Once: Mermaid's Tears (First Print Limited Edition) (NTSC-J)"}, {"id": "BLJM60322", "name": "L@ve Once: Mermaid's Tears (NTSC-J)"}, {"id": "BLJM60323", "name": "Mamoru-kun wa Norowarete Shimatta! Meikai Katsugeki Wide-Han (NTSC-J)"}, {"id": "BLJM60324", "name": "WRC: FIA World Rally Championship (NTSC-J)"}, {"id": "BLJM60326", "name": "Slotter Chou Mania: Antonio Inoki ga Genki ni Suru Pachi-Slot Ki (NTSC-J)"}, {"id": "BLJM60327", "name": "Hiiro no Kakera Aizouban: Akane Iro no Tsuioku (Limited Edition) (NTSC-J)"}, {"id": "BLJM60328", "name": "Hiiro no Kakera Aizouban: Akane Iro no Tsuioku (NTSC-J)"}, {"id": "BLJM60329", "name": "Clannad (NTSC-J)"}, {"id": "BLJM60333", "name": "Hunted: The Demon's Forge (NTSC-J)"}, {"id": "BLJM60335", "name": "Michael Jackson: The Experience (NTSC-J)"}, {"id": "BLJM60336", "name": "Child of Eden (NTSC-J)"}, {"id": "BLJM60337", "name": "Jikkyou Powerful Pro Yakyuu 2011 (NTSC-J)"}, {"id": "BLJM60338", "name": "Star Ocean: The Last Hope International (Ultimate Hits) (NTSC-J)"}, {"id": "BLJM60339", "name": "NieR RepliCant (Ultimate Hits) (NTSC-J)"}, {"id": "BLJM60340", "name": "LEGO Harry Potter: Years 1-4 (NTSC-J)"}, {"id": "BLJM60341", "name": "Dead Rising 2: Off the Record (NTSC-J)"}, {"id": "BLJM60342", "name": "BioHazard: Operation Raccoon City (NTSC-J)"}, {"id": "BLJM60343", "name": "L.A. Noire (NTSC-J)"}, {"id": "BLJM60344", "name": "Medal of Honor (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60345", "name": "Nobunaga no Yabou: Tendou with Power-Up Kit (NTSC-J)"}, {"id": "BLJM60347", "name": "Dunamis 15 (NTSC-J)"}, {"id": "BLJM60348", "name": "Meruru no Atelier: Arland no Renkinjutsushi 3 (NTSC-J)"}, {"id": "BLJM60349", "name": "F.E.A.R. 3 (NTSC-J)"}, {"id": "BLJM60351", "name": "Metal Gear Solid: Peace Walker HD Edition (NTSC-J)"}, {"id": "BLJM60354", "name": "NeverDead (NTSC-J)"}, {"id": "BLJM60355", "name": "Brink (NTSC-J)"}, {"id": "BLJM60356", "name": "Power Smash 4 (NTSC-J)"}, {"id": "BLJM60358", "name": "Shadows of the Damned (NTSC-J)"}, {"id": "BLJM60359", "name": "Alice: Madness Returns (NTSC-J)"}, {"id": "BLJM60361", "name": "Operation Flashpoint: Red River (NTSC-J)"}, {"id": "BLJM60362", "name": "Colin McRae: DiRT 3 (NTSC-J)"}, {"id": "BLJM60363", "name": "Devil May Cry: HD Collection (NTSC-J)"}, {"id": "BLJM60365", "name": "WWE All Stars (NTSC-J)"}, {"id": "BLJM60366", "name": "Just Cause 2 (Ultimate Hits) (NTSC-J)"}, {"id": "BLJM60367", "name": "Champion Jockey: G1 Jockey & Gallop Racer (NTSC-J)"}, {"id": "BLJM60368", "name": "Midnight Club: Los Angeles (Rockstar Classics) (NTSC-J)"}, {"id": "BLJM60369", "name": "Gekiatsu!! Pachi Game Tamashi Vol. 2: CR Evangelion - Shinjitsu no Tsubasa (NTSC-J)"}, {"id": "BLJM60370", "name": "Dungeon Siege III (NTSC-J)"}, {"id": "BLJM60372", "name": "Biohazard: Revival Selection (NTSC-J)"}, {"id": "BLJM60373", "name": "Tenchou no Igo (NTSC-J)"}, {"id": "BLJM60374", "name": "Sniper: Ghost Warrior (NTSC-J)"}, {"id": "BLJM60375", "name": "Tom Clancy's H.A.W.X. 2 (Ubi the Best) (NTSC-J)"}, {"id": "BLJM60376", "name": "R.U.S.E. (UBI the Best) (NTSC-J)"}, {"id": "BLJM60377", "name": "Chou Jigen Game: Neptune (Compile Heart Selection) (NTSC-J)"}, {"id": "BLJM60378", "name": "Armored Core: V (NTSC-J)"}, {"id": "BLJM60379", "name": "Dragon's Dogma (NTSC-J)"}, {"id": "BLJM60380", "name": "To Heart 2 DX Plus (Limited Edition) (NTSC-J)"}, {"id": "BLJM60381", "name": "To Heart 2 DX Plus (NTSC-J)"}, {"id": "BLJM60382", "name": "Final Fantasy XIII-2 (NTSC-J)"}, {"id": "BLJM60383", "name": "Ultimate Marvel vs. Capcom 3 (NTSC-J)"}, {"id": "BLJM60384", "name": "Battlefield 3 (NTSC-J)"}, {"id": "BLJM60385", "name": "WORLD SOCCER Winning Eleven 2012 (NTSC-J)"}, {"id": "BLJM60386", "name": "Need for Speed: The Run (NTSC-J)"}, {"id": "BLJM60387", "name": "Ao no Eiyuu: Birds of Steel (NTSC-J)"}, {"id": "BLJM60388", "name": "Blades of Time (NTSC-J)"}, {"id": "BLJM60389", "name": "Sengoku Basara 3"}, {"id": "BLJM60390", "name": "Time Leap (NTSC-J)"}, {"id": "BLJM60391", "name": "Silent Hill: Downpour (NTSC-J)"}, {"id": "BLJM60392", "name": "Warhammer 40000: Space Marine (NTSC-J)"}, {"id": "BLJM60393", "name": "Tears to Tiara Gaiden : Avalon no Nazo (AquaPrice 2800) (NTSC-J)"}, {"id": "BLJM60394", "name": "BlazBlue: Continuum Shift: Extend (NTSC-J)"}, {"id": "BLJM60395", "name": "The Cursed Crusade (NTSC-J)"}, {"id": "BLJM60396", "name": "Saints Row: The Third (NTSC-J)"}, {"id": "BLJM60397", "name": "Shin Sangoku Musou Online: Souten Ranbu (4th Anniversary Memorial Pack) (NTSC-J)"}, {"id": "BLJM60398", "name": "Gladiator VS (NTSC-J)"}, {"id": "BLJM60399", "name": "The Sims 3 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60400", "name": "Batman: Arkham City Collector's Edition (NTSC-J)"}, {"id": "BLJM60403", "name": "Red Dead Redemption: Complete Edition (NTSC-J)"}, {"id": "BLJM60404", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)"}, {"id": "BLJM60405", "name": "BioHazard 6 (NTSC-J)"}, {"id": "BLJM60406", "name": "The Lord of the Rings: War in the North (NTSC-J)"}, {"id": "BLJM60407", "name": "Michael Jackson: The Experience (Limited Edition) (NTSC-J)"}, {"id": "BLJM60408", "name": "Beyond the Future: Fix the Time Arrows (NTSC-J)"}, {"id": "BLJM60409", "name": "Asura's Wrath (NTSC-J)"}, {"id": "BLJM60410", "name": "Ryoufuu no Melt (NTSC-J)"}, {"id": "BLJM60411", "name": "Suigetsu Ni (NTSC-J)"}, {"id": "BLJM60412", "name": "Assassin's Creed: Revelations (NTSC-J)"}, {"id": "BLJM60413", "name": "The Elder Scrolls V: Skyrim (NTSC-J)"}, {"id": "BLJM60414", "name": "Umineko no Naku Koro ni San: Shinjitsu to Gensou no Yasoukyoku (NTSC-J)"}, {"id": "BLJM60416", "name": "One Piece : Pirate Warriors (NTSC-A)"}, {"id": "BLJM60417", "name": "Musou Orochi 2 (NTSC-J)"}, {"id": "BLJM60418", "name": "The House of the Dead: Overkill Director's Cut (NTSC-J)"}, {"id": "BLJM60419", "name": "Rocksmith (NTSC-J)"}, {"id": "BLJM60420", "name": "Crysis 2 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60421", "name": "Need for Speed: Hot Pursuit (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60422", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)"}, {"id": "BLJM60424", "name": "Jikkyou Powerful Pro Yakyuu 2011 Ketteiban (NTSC-J)"}, {"id": "BLJM60425", "name": "Silent Hill HD Collection (NTSC-J)"}, {"id": "BLJM60426", "name": "Shin Toudai Shogi (NTSC-J)"}, {"id": "BLJM60427", "name": "Mass Effect 3 (NTSC-J)"}, {"id": "BLJM60428", "name": "White Album: Tsuzurareru Fuyu no Omoide (AquaPrice 2800) (NTSC-J)"}, {"id": "BLJM60429", "name": "Grand Slam Tennis 2 (NTSC-J)"}, {"id": "BLJM60430", "name": "Maji de Watashi ni Koi Shinasai! R (NTSC-J)"}, {"id": "BLJM60433", "name": "BioHazard Chronicles HD Selection (NTSC-J)"}, {"id": "BLJM60434", "name": "Gal*Gun (NTSC-J)"}, {"id": "BLJM60435", "name": "Trinity: Zill O'll Zero (Koei Tecmo the Best) (NTSC-J)"}, {"id": "BLJM60437", "name": "Skate 3 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60439", "name": "WRC 2: FIA World Rally Championship (NTSC-J)"}, {"id": "BLJM60440", "name": "SSX (NTSC-J)"}, {"id": "BLJM60442", "name": "Persona 4: The Ultimate in Mayonaka Arena (NTSC-J)"}, {"id": "BLJM60443", "name": "Touch, Shot! Love Application (Limited Edition) (NTSC-J)"}, {"id": "BLJM60444", "name": "Tacchi, Shiyo! Love Application (NTSC-J)"}, {"id": "BLJM60445", "name": "Fight Night Champion (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60446", "name": "Robotics;Notes (NTSC-J)"}, {"id": "BLJM60447", "name": "Ninja Gaiden 3 (NTSC-J)"}, {"id": "BLJM60448", "name": "Under Defeat HD (NTSC-J)"}, {"id": "BLJM60449", "name": "Fallout New Vegas : Ultimate Edition (NTSC-J)"}, {"id": "BLJM60450", "name": "UFC Undisputed 3 (NTSC-J)"}, {"id": "BLJM60451", "name": "Zone of the Enders HD Edition (NTSC-J)"}, {"id": "BLJM60452", "name": "Nobunaga no Yabou Online: Houou no Shou (NTSC-J)"}, {"id": "BLJM60453", "name": "Shin Sangoku Musou Online: Ryuujin Ranbu (NTSC-J)"}, {"id": "BLJM60454", "name": "Winning Post 7 2012 (NTSC-J)"}, {"id": "BLJM60455", "name": "Attouteki Yuugi: Mugen Souls (Limited Edition) (NTSC-J)"}, {"id": "BLJM60456", "name": "Attouteki Yuugi: Mugen Souls (NTSC-J)"}, {"id": "BLJM60458", "name": "Colin McRae: DiRT 3 (Complete Edition) (NTSC-J)"}, {"id": "BLJM60459", "name": "Grand Theft Auto: Episodes from Liberty City (Rockstar Classics) (NTSC-J)"}, {"id": "BLJM60461", "name": "Nail'd (Best Hit Selection) (NTSC-J)"}, {"id": "BLJM60462", "name": "Steins;Gate (NTSC-J)"}, {"id": "BLJM60463", "name": "Max Payne 3 (NTSC-J)"}, {"id": "BLJM60464", "name": "Steins;Gate: Hiyoku Renri no Darling (NTSC-J)"}, {"id": "BLJM60466", "name": "Robotics;Notes (NTSC-J)"}, {"id": "BLJM60467", "name": "Okami Zekkeihan (NTSC-J)"}, {"id": "BLJM60468", "name": "Jissen Pachi-Slot Hisshouhou! Hokuto no Ken F - Seikimatsu Kyuuseishu Densetsu (NTSC-J)"}, {"id": "BLJM60469", "name": "Jikkyou Powerful Pro Yakyuu 2012 (NTSC-J)"}, {"id": "BLJM60470", "name": "Mamoru-kun wa Norowarete Shimatta! Meikai Katsugeki Wide-Han (Best Hit Selection) (NTSC-J)"}, {"id": "BLJM60471", "name": "Ryu Ga Gotoku 1 & 2 HD Edition (NTSC-J)"}, {"id": "BLJM60472", "name": "FIFA 12 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60473", "name": "Portal 2 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60474", "name": "AquaPazza: AquaPlus Dream Match (NTSC-J)"}, {"id": "BLJM60475", "name": "AquaPazza: AquaPlus Dream Match (NTSC-J)"}, {"id": "BLJM60476", "name": "AquaPazza: AquaPlus Dream Match (NTSC-J)"}, {"id": "BLJM60477", "name": "Operation Flashpoint: Red River (Codemasters the Best) (NTSC-J)"}, {"id": "BLJM60478", "name": "Agarest Senki 2 (Compile Heart Selection) (NTSC-J)"}, {"id": "BLJM60480", "name": "Two Worlds II (NTSC-J)"}, {"id": "BLJM60481", "name": "Mass Effect 2 (EA Best Hits) (Bonus Contents Collection) (NTSC-J)"}, {"id": "BLJM60482", "name": "Chou Jigen Game Neptune Mk2 (Compile Heart Selection) (NTSC-J)"}, {"id": "BLJM60483", "name": "Hakuouki: Reimeiroku Nagorigusa (Limited Edition) (NTSC-J)"}, {"id": "BLJM60484", "name": "Hakuouki: Reimeiroku Nagorigusa (NTSC-J)"}, {"id": "BLJM60485", "name": "Combat Wings: The Great Battles of WWII (NTSC-J)"}, {"id": "BLJM60486", "name": "Ayesha no Atalier: Tasogare no Daichi no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM60488", "name": "Sengoku Basara HD Collection (NTSC-J)"}, {"id": "BLJM60489", "name": "Ryu ga Gotoku 5: Yume, Kanaeshi Mono (NTSC-J)"}, {"id": "BLJM60490", "name": "Lost Planet 3 (NTSC-J)"}, {"id": "BLJM60491", "name": "Hyperdimension Neptunia Victory V (NTSC-J)"}, {"id": "BLJM60492", "name": "Kami Jigen Game Neptune V (NTSC-J)"}, {"id": "BLJM60493", "name": "Alice: Madness Returns (NTSC-J)"}, {"id": "BLJM60495", "name": "Batman: Arkham City (NTSC-J)"}, {"id": "BLJM60496", "name": "Batman: Arkham Asylum (NTSC-J)"}, {"id": "BLJM60497", "name": "Colin McRae: DiRT Double Pack (NTSC-J)"}, {"id": "BLJM60499", "name": "Assassin's Creed Welcome Pack (NTSC-J)"}, {"id": "BLJM60501", "name": "Sleeping Dogs: Hong Kong Keisatsu (NTSC-J)"}, {"id": "BLJM60502", "name": "DmC: Devil May Cry (NTSC-J)"}, {"id": "BLJM60503", "name": "Sniper Elite V2 (NTSC-J)"}, {"id": "BLJM60504", "name": "Heavy Fire: Afghanistan (NTSC-J)"}, {"id": "BLJM60505", "name": "F1 Race Stars (NTSC-J)"}, {"id": "BLJM60506", "name": "Tomoyo After: It's a Wonderful Life - CS Edition (NTSC-J)"}, {"id": "BLJM60507", "name": "Battlefield: Bad Company 2 (NTSC-J)"}, {"id": "BLJM60508", "name": "Shadows of the Damned (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60509", "name": "Gekiatsu!! Pachi Game Damashi Max: Evangelion 7 x Seimei no Kodou (NTSC-J)"}, {"id": "BLJM60512", "name": "Doom 3 BFG Edition (NTSC-J)"}, {"id": "BLJM60514", "name": "FIFA 13: World Class Soccer (NTSC-J)"}, {"id": "BLJM60515", "name": "Injustice: Gods Among Us (NTSC-J)"}, {"id": "BLJM60516", "name": "Assassin's Creed III (NTSC-J)"}, {"id": "BLJM60517", "name": "Dark Souls with Artorias of the Abyss Edition (NTSC-J)"}, {"id": "BLJM60518", "name": "BioHazard Revelations: Unveiled Edition (NTSC-J)"}, {"id": "BLJM60519", "name": "Need for Speed: Most Wanted (NTSC-J)"}, {"id": "BLJM60521", "name": "Akatsuki no Goei: Trinity (NTSC-J)"}, {"id": "BLJM60522", "name": "World Soccer Winning Eleven 2013 (NTSC-J)"}, {"id": "BLJM60523", "name": "Daikoukai Jidai Online: 2nd Age (NTSC-J)"}, {"id": "BLJM60524", "name": "Shin Sangoku Musou 6 Empires (NTSC-J)"}, {"id": "BLJM60525", "name": "Grand Theft Auto IV: The Complete Edition (Rockstar Classics) (NTSC-J)"}, {"id": "BLJM60527", "name": "Hatsune Miku: Project Diva F (NTSC-J)"}, {"id": "BLJM60528", "name": "E.X. Troopers (NTSC-J)"}, {"id": "BLJM60530", "name": "Crysis 3 (NTSC-J)"}, {"id": "BLJM60532", "name": "Far Cry 3 (NTSC-J)"}, {"id": "BLJM60533", "name": "Need for Speed: The Run (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60534", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)"}, {"id": "BLJM60535", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)"}, {"id": "BLJM60536", "name": "Call of Duty: Black Ops (NTSC-J)"}, {"id": "BLJM60537", "name": "Call of Duty: Black Ops (NTSC-J)"}, {"id": "BLJM60538", "name": "Saints Row: The Third (Reprint) (NTSC-J)"}, {"id": "BLJM60540", "name": "White Album 2: Shiawase no Mukougawa (Premium Edition) (NTSC-J)"}, {"id": "BLJM60541", "name": "Medal of Honor: Warfighter (NTSC-J)"}, {"id": "BLJM60542", "name": "Chaos;Head Noah (NTSC-J)"}, {"id": "BLJM60543", "name": "Chaos;Head - Love ChuChu! (NTSC-J)"}, {"id": "BLJM60544", "name": "F1 2011 (Codemasters the Best) (NTSC-J)"}, {"id": "BLJM60545", "name": "Heartful Simulator Pachi-Slot: To Heart 2 (NTSC-J)"}, {"id": "BLJM60546", "name": "Muv-Luv (NTSC-J)"}, {"id": "BLJM60547", "name": "Muv-Luv Alternative (NTSC-J)"}, {"id": "BLJM60548", "name": "Call of Duty: Black Ops II (NTSC-J)"}, {"id": "BLJM60549", "name": "Call of Duty: Black Ops II (NTSC-J)"}, {"id": "BLJM60550", "name": "Sangokushi 12 (NTSC-J)"}, {"id": "BLJM60551", "name": "Power Smash 4 (Sega the Best) (NTSC-J)"}, {"id": "BLJM60552", "name": "SSX (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60553", "name": "Shin Hokuto Musou (NTSC-J)"}, {"id": "BLJM60554", "name": "Metal Gear Rising: Revengeance (NTSC-J)"}, {"id": "BLJM60555", "name": "Sengoku Hime 3: Tenka o Kirisaku Hikari to Kage (Deluxe Edition) (NTSC-J)"}, {"id": "BLJM60556", "name": "Sengoku Hime 3: Tenka o Kirisaku Hikari to Kage (NTSC-J)"}, {"id": "BLJM60557", "name": "Tomb Raider (NTSC-J)"}, {"id": "BLJM60558", "name": "Lightning Returns: Final Fantasy XIII (NTSC-J)"}, {"id": "BLJM60559", "name": "Race Driver: GRID 2 (NTSC-J)"}, {"id": "BLJM60560", "name": "Shin Sangoku Musou Online: Ryuujin Ranbu (5-Year Anniversary Pack) (NTSC-J)"}, {"id": "BLJM60561", "name": "Champion Jockey: G1 Jockey & Gallop Racer (Koei Tecmo the Best) (NTSC-J)"}, {"id": "BLJM60562", "name": "Hokuto Musou International (Koei Tecmo the Best) (NTSC-J)"}, {"id": "BLJM60565", "name": "Battlefield 3 (Premium Edition) (NTSC-J)"}, {"id": "BLJM60566", "name": "Port Royale 3: Pirates & Merchants (NTSC-J)"}, {"id": "BLJM60567", "name": "Vampire Resurrection (NTSC-J)"}, {"id": "BLJM60569", "name": "Devil May Cry HD Collection (Best Price!) (NTSC-J)"}, {"id": "BLJM60571", "name": "White Album 2: Shiawase no Mukougawa (NTSC-J)"}, {"id": "BLJM60572", "name": "One Piece: Kaizoku Musou 2 (NTSC-J)"}, {"id": "BLJM60573", "name": "Assassin's Creed: Revelations (NTSC-J)"}, {"id": "BLJM60574", "name": "FIFA Street (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60576", "name": "Winning Post 7 2013 (NTSC-J)"}, {"id": "BLJM60577", "name": "Monster Hunter Frontier G (Beginner's Package) (NTSC-J)"}, {"id": "BLJM60578", "name": "Army of Two: The Devil's Cartel (NTSC-J)"}, {"id": "BLJM60579", "name": "Muv-Luv Alternative: Total Eclipse (NTSC-J)"}, {"id": "BLJM60581", "name": "Pro Yakyuu Spirits 2013 (NTSC-J)"}, {"id": "BLJM60582", "name": "Sharin no Kuni, Himawari no Shoujo (NTSC-J)"}, {"id": "BLJM60583", "name": "Nobunaga no Yabou Online: 10-Shuunen Kinen Box (NTSC-J)"}, {"id": "BLJM60584", "name": "Binary Domain (Sega the Best) (NTSC-J)"}, {"id": "BLJM60585", "name": "Mass Effect 3 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM60586", "name": "Shin Sangoku Musou 7 (NTSC-J)"}, {"id": "BLJM60589", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-J)"}, {"id": "BLJM60987", "name": "Binary Domain (NTSC-J)"}, {"id": "BLJM60988", "name": "The Sims 3: Pets (NTSC-J)"}, {"id": "BLJM60989", "name": "Batman: Arkham City (Limited Edition) (NTSC-J)"}, {"id": "BLJM60990", "name": "Sengoku Musou 3 Empires (NTSC-J)"}, {"id": "BLJM60991", "name": "Chou Jigen Game Neptune mk2 (Limited Edition) (NTSC-J)"}, {"id": "BLJM60992", "name": "Chou Jigen Game Neptune mk2 (NTSC-J)"}, {"id": "BLJM60993", "name": "Dark Souls (NTSC-J)"}, {"id": "BLJM60995", "name": "Assassin's Creed: Brotherhood (Special Edition) (NTSC-J)"}, {"id": "BLJM60996", "name": "FIFA 12 (NTSC-J)"}, {"id": "BLJM60997", "name": "Ken to Mahou to Gakuen Mono 3 (Acquire the Best) (NTSC-J)"}, {"id": "BLJM60998", "name": "MLB Bobblehead! (NTSC-J)"}, {"id": "BLJM60999", "name": "Call of Juarez: The Cartel (NTSC-J)"}, {"id": "BLJM61000", "name": "Shin Sangoku Musou 6 Moushouden (NTSC-J)"}, {"id": "BLJM61001", "name": "Metal Gear Solid HD Collection (NTSC-J)"}, {"id": "BLJM61006", "name": "Call of Duty: Modern Warfare 2 (NTSC-J)"}, {"id": "BLJM61008", "name": "Wizardry Perfect Pack (NTSC-J)"}, {"id": "BLJM61009", "name": "Little Busters! Converted Edition (NTSC-J)"}, {"id": "BLJM61010", "name": "Ninja Gaiden 3: Razor's Edge"}, {"id": "BLJM61011", "name": "FIFA 11 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61012", "name": "Dragon's Dogma: Dark Arisen (NTSC-J)"}, {"id": "BLJM61014", "name": "Armored Core: Verdict Day (NTSC-J)"}, {"id": "BLJM61016", "name": "Attouteki Yuugi: Mugen Souls (NTSC-J)"}, {"id": "BLJM61017", "name": "Tacchi, Shiyo! Love Application (Compile Heart Selection) (NTSC-J)"}, {"id": "BLJM61018", "name": "Oretachi ni Tsubasa wa Nai"}, {"id": "BLJM61019", "name": "Grand Theft Auto V (NTSC-J)"}, {"id": "BLJM61020", "name": "Armored Core: Verdict Day (NTSC-J)"}, {"id": "BLJM61023", "name": "Need for Speed: ProStreet + Shift Double Value Pack (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61025", "name": "Need for Speed: Carbon + Undercover Double Value Pack (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61028", "name": "Mugen Souls Z (NTSC-J)"}, {"id": "BLJM61029", "name": "Steins;Gate: Senkei Kousoku no Phenogram (NTSC-J)"}, {"id": "BLJM61030", "name": "Mahjong Haoh: Dankyuu Battle 3 (NTSC-J)"}, {"id": "BLJM61031", "name": "Kazoku Keikaku: Re:Tsumugu Ito (NTSC-J)"}, {"id": "BLJM61032", "name": "Driver: San Francisco (UBI the Best) (NTSC-J)"}, {"id": "BLJM61033", "name": "Memories Off 6 Complete (NTSC-J)"}, {"id": "BLJM61034", "name": "Memories Off: Yubikiri no Kioku (NTSC-J)"}, {"id": "BLJM61035", "name": "Shin Toudai Shogi (MyNavi Best) (NTSC-J)"}, {"id": "BLJM61036", "name": "Tenchou no Igo (MyNavi Best) (NTSC-J)"}, {"id": "BLJM61039", "name": "Battlefield 4 (NTSC-J)"}, {"id": "BLJM61040", "name": "Murdered: Tamashii no Yobu Koe (NTSC-J)"}, {"id": "BLJM61041", "name": "Dragon's Crown (NTSC-J)"}, {"id": "BLJM61042", "name": "The Sims 3: Pets (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61043", "name": "Drag-On Dragoon 3 (NTSC-J)"}, {"id": "BLJM61044", "name": "Skylanders Spyro's Adventure (NTSC-J)"}, {"id": "BLJM61047", "name": "Date A Live: Rinne Utopia (Limited Edition) (NTSC-J)"}, {"id": "BLJM61048", "name": "Date A Live: Rinne Utopia (NTSC-J)"}, {"id": "BLJM61049", "name": "Rocksmith 2014 Edition (NTSC-J)"}, {"id": "BLJM61050", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM61051", "name": "Ayesha no Atelier: Tasogare no Daichi no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM61053", "name": "Gal*Gun (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJM61054", "name": "Watch Dogs (NTSC-J)"}, {"id": "BLJM61055", "name": "Dungeons & Dragons: Mystara Eiyuu Senki (NTSC-J)"}, {"id": "BLJM61056", "name": "Assassin's Creed IV: Black Flag (NTSC-J)"}, {"id": "BLJM61057", "name": "Tom Clancy's Splinter Cell Blacklist (NTSC-J)"}, {"id": "BLJM61058", "name": "FIFA 13: World Class Soccer (EA Super Hits) (NTSC-J)"}, {"id": "BLJM61059", "name": "Eiyuu Densetsu: Sen no Kiseki (NTSC-J)"}, {"id": "BLJM61060", "name": "Ketsui: Kizuna Jigoku Tachi Extra (NTSC-J)"}, {"id": "BLJM61061", "name": "Nobunaga no Yabou Online: Tenka Mugen no Shou (NTSC-J)"}, {"id": "BLJM61062", "name": "Shin Sangoku Musou Online Z (NTSC-J)"}, {"id": "BLJM61063", "name": "Sengoku Basara 4 (NTSC-J)"}, {"id": "BLJM61064", "name": "Soccer Tsuku: Pro Soccer Club o Tsukurou! (NTSC-J)"}, {"id": "BLJM61065", "name": "F1 2013 (NTSC-J)"}, {"id": "BLJM61066", "name": "Heartful Simulator Pachi-Slot: To Heart 2 (AquaPrice 2800) (NTSC-J)"}, {"id": "BLJM61067", "name": "Disorder 6 (NTSC-J)"}, {"id": "BLJM61069", "name": "FIFA 14: World Class Soccer (NTSC-J)"}, {"id": "BLJM61070", "name": "Need for Speed: Rivals (NTSC-J)"}, {"id": "BLJM61071", "name": "Hanasaku Manimani (NTSC-J)"}, {"id": "BLJM61072", "name": "Eiyuu * Senki (NTSC-J)"}, {"id": "BLJM61073", "name": "Final Fantasy XIII-2 (Ultimate Hits) (NTSC-J)"}, {"id": "BLJM61076", "name": "Tears To Tiara II: Haou no Matsuei (NTSC-J)"}, {"id": "BLJM61078", "name": "Sangokushi 12 with Power-Up Kit (NTSC-J)"}, {"id": "BLJM61079", "name": "Hatsune Miku: Project Diva F 2nd (NTSC-J)"}, {"id": "BLJM61080", "name": "Air Conflicts: Vietnam (NTSC-J)"}, {"id": "BLJM61081", "name": "Medal of Honor: Warfighter (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61083", "name": "Jikkyou Powerful Pro Yakyuu 2013 (NTSC-J)"}, {"id": "BLJM61084", "name": "Musou Orochi 2 Ultimate (NTSC-J)"}, {"id": "BLJM61085", "name": "Dead or Alive 5 Ultimate (NTSC-J)"}, {"id": "BLJM61087", "name": "FIFA 14: World Class Soccer (Ultimate Edition) (NTSC-J)"}, {"id": "BLJM61088", "name": "Rui wa Tomo o Yobu (NTSC-J)"}, {"id": "BLJM61089", "name": "Fairy Fencer F (Limited Edition) (NTSC-J)"}, {"id": "BLJM61090", "name": "Fairy Fencer F (NTSC-J)"}, {"id": "BLJM61091", "name": "Himawari no Kyoukai to Nagai Natsuyasumi: Extra Vacation (NTSC-J)"}, {"id": "BLJM61092", "name": "Sengoku Musou 2 with Moushouden & Empires HD Version (NTSC-J)"}, {"id": "BLJM61093", "name": "FINAL FANTASY X/X-2HD Remaster (NTSC-J)"}, {"id": "BLJM61094", "name": "End of Eternity (Sega the Best) (Best Price Version) (NTSC-J)"}, {"id": "BLJM61096", "name": "Batman: Arkham Origins (NTSC-J)"}, {"id": "BLJM61097", "name": "Puyo Puyo Tetris (NTSC-J)"}, {"id": "BLJM61098", "name": "Phantom Breaker: Extra (NTSC-J)"}, {"id": "BLJM61099", "name": "Need for Speed: Most Wanted - A Criterion Game (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61100", "name": "Root Double: Before Crime * After Days - Xtend Edition (NTSC-J)"}, {"id": "BLJM61101", "name": "Shin Koihime Musou: Otome Taisen Sangokushi Engi (NTSC-J)"}, {"id": "BLJM61103", "name": "Sengoku Hime 4: Souha Hyakkei, Hana Mamoru Chikai (Deluxe Limited Edition) (NTSC-J)"}, {"id": "BLJM61104", "name": "Sengoku Hime 4: Souha Hyakkei Hanamamoru Chikai (NTSC-J)"}, {"id": "BLJM61105", "name": "Akiba's Trip 2 (NTSC-J)"}, {"id": "BLJM61106", "name": "World Soccer Winning Eleven 2014 (NTSC-J)"}, {"id": "BLJM61107", "name": "Akumajou Dracula: Lords of Shadow 2 (NTSC-J)"}, {"id": "BLJM61108", "name": "The Walking Dead (NTSC-J)"}, {"id": "BLJM61109", "name": "Call of Duty: Black Ops II (NTSC-J)"}, {"id": "BLJM61110", "name": "Call of Duty: Black Ops II (NTSC-J)"}, {"id": "BLJM61111", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)"}, {"id": "BLJM61112", "name": "Call of Duty: Modern Warfare 3 (NTSC-J)"}, {"id": "BLJM61113", "name": "Dark Souls II (NTSC-J)"}, {"id": "BLJM61115", "name": "Vampire Resurrection (Best Price!) (NTSC-J)"}, {"id": "BLJM61116", "name": "Batman: Arkham (Twin Pack) (Warner the Best) (NTSC-J)"}, {"id": "BLJM61118", "name": "Kaihou Shoujo SIN (NTSC-J)"}, {"id": "BLJM61119", "name": "Winning Post 8 (NTSC-J)"}, {"id": "BLJM61120", "name": "Rozen Maiden: Wechseln Sie Welt ab (NTSC-J)"}, {"id": "BLJM61123", "name": "Ginsei Igo 2: Next Generation (NTSC-J)"}, {"id": "BLJM61124", "name": "Rocksmith 2014 Edition (NTSC-J)"}, {"id": "BLJM61125", "name": "Call of Duty: Ghosts (NTSC-J)"}, {"id": "BLJM61126", "name": "Call of Duty: Ghosts (NTSC-J)"}, {"id": "BLJM61127", "name": "Shin Rorona no Atelier: Hajimari no Monogatari - Arland no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM61128", "name": "Dynasty Warriors 7: Moushouden (NTSC-J)"}, {"id": "BLJM61131", "name": "&: Sora no Mukou de Saki Masuyou ni (NTSC-J)"}, {"id": "BLJM61132", "name": "FIFA 14: World Class Soccer (NTSC-J)"}, {"id": "BLJM61135", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-J)"}, {"id": "BLJM61136", "name": "Diablo III (NTSC-J)"}, {"id": "BLJM61137", "name": "BandFuse: Rock Legends (NTSC-J)"}, {"id": "BLJM61138", "name": "Sengoku Hime 3: Tenka o Kirisaku Hikari to Kage (SystemSoft Selection) (NTSC-J)"}, {"id": "BLJM61139", "name": "Motto! SoniComi (NTSC-J)"}, {"id": "BLJM61140", "name": "Shin Gundam Musou (NTSC-J)"}, {"id": "BLJM61141", "name": "Skate 2 + Skate 3 Double Value Pack (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61143", "name": "Crysis 3 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61144", "name": "Sengoku Musou 4 (NTSC-J)"}, {"id": "BLJM61145", "name": "Sonic & All-Stars Racing Transformed (NTSC-J)"}, {"id": "BLJM61146", "name": "Infinite Stratos 2: Ignition Hearts (NTSC-J)"}, {"id": "BLJM61147", "name": "Ultra Street Fighter IV (NTSC-J)"}, {"id": "BLJM61148", "name": "Pro Yakyuu Spirits 2014 (NTSC-J)"}, {"id": "BLJM61149", "name": "Ryu ga Gotoku: Ishin (NTSC-J)"}, {"id": "BLJM61150", "name": "Ar Nosurge: Umareizuru Hoshi e Inoru Uta (NTSC-J)"}, {"id": "BLJM61152", "name": "Army of Two: The Devil's Cartel (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61153", "name": "Strider Hiryu (NTSC-J)"}, {"id": "BLJM61154", "name": "Sniper Elite V2 (UBI the Best) (NTSC-J)"}, {"id": "BLJM61155", "name": "Monster Hunter Frontier G (Memorial Package) (NTSC-J)"}, {"id": "BLJM61156", "name": "Shining Resonance (NTSC-J)"}, {"id": "BLJM61157", "name": "Kagero: Darkside Princess (NTSC-J)"}, {"id": "BLJM61158", "name": "WRC 4: FIA World Rally Championship (NTSC-J)"}, {"id": "BLJM61159", "name": "Ninja Gaiden 3: Razor's Edge (Koei the Best) (NTSC-J)"}, {"id": "BLJM61160", "name": "Tomb Raider (NTSC-J)"}, {"id": "BLJM61162", "name": "2014 FIFA World Cup Brazil (NTSC-J)"}, {"id": "BLJM61163", "name": "Yaiba: Ninja Gaiden Z (NTSC-J)"}, {"id": "BLJM61164", "name": "Far Cry 3 (UBI the Best) (NTSC-J)"}, {"id": "BLJM61166", "name": "Lost Dimension (NTSC-J)"}, {"id": "BLJM61167", "name": "F1 2013 (NTSC-J)"}, {"id": "BLJM61168", "name": "F.E.A.R. 3 (Warner the Best) (NTSC-J)"}, {"id": "BLJM61169", "name": "Lord of the Rings: War in the North (Warner the Best) (NTSC-J)"}, {"id": "BLJM61170", "name": "Injustice: Kamigami no Gekitotsu (Warner the Best) (NTSC-J)"}, {"id": "BLJM61171", "name": "Assassin's Creed III (UBI the Best) (NTSC-J)"}, {"id": "BLJM61172", "name": "Sleeping Dogs: Hong Kong Himitsu Keisatsu (New Price Version) (NTSC-J)"}, {"id": "BLJM61173", "name": "Hitman: Absolution (Low-Price Reprint) (NTSC-J)"}, {"id": "BLJM61174", "name": "Assassin's Creed: Connor Saga (NTSC-J)"}, {"id": "BLJM61175", "name": "Muv-Luv: photonflowers* (NTSC-J)"}, {"id": "BLJM61176", "name": "WORLD SOCCER Winning Eleven 2014: Aoki Samurai no Chousen (NTSC-J)"}, {"id": "BLJM61177", "name": "Monster Hunter Frontier GG (Premium Package) (NTSC-J)"}, {"id": "BLJM61178", "name": "Thief (NTSC-J)"}, {"id": "BLJM61180", "name": "Grand Theft Auto IV: The Complete Edition (Rockstar Classics) (NTSC-J)"}, {"id": "BLJM61181", "name": "Red Dead Redemption: Complete Edition (Rockstar Classics) (NTSC-J)"}, {"id": "BLJM61182", "name": "Grand Theft Auto V (Best Price Version) (NTSC-J)"}, {"id": "BLJM61183", "name": "Eiyuu Densetsu: Sen no Kiseki II (NTSC-J)"}, {"id": "BLJM61184", "name": "Kono Oozora ni, Tsubasa o Hirogete: Cruise Sign (NTSC-J)"}, {"id": "BLJM61185", "name": "Racedriver Grid 2 (NTSC-J)"}, {"id": "BLJM61186", "name": "Saikyou Shogi Gekisashi 13 (NTSC-J)"}, {"id": "BLJM61187", "name": "Cross Channel: For All People (NTSC-J)"}, {"id": "BLJM61188", "name": "Caladrius Blaze (NTSC-J)"}, {"id": "BLJM61189", "name": "Date A Live: Arusu Install (Limited Edition) (NTSC-J)"}, {"id": "BLJM61190", "name": "Date A Live: Arusu Install (NTSC-J)"}, {"id": "BLJM61191", "name": "Eiyuu Densetsu: Sen no Kiseki (Super Price) (NTSC-J)"}, {"id": "BLJM61192", "name": "Shallie no Atelier: Tasogare no Umi no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM61193", "name": "To Heart 2 DX Plus (Aqua Price 2800) (NTSC-J)"}, {"id": "BLJM61194", "name": "Plants vs. Zombies: Garden Warfare (NTSC-J)"}, {"id": "BLJM61195", "name": "WRC 4: FIA World Rally Championship (NTSC-J)"}, {"id": "BLJM61196", "name": "Battlefield 3 (Premium Edition) (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61197", "name": "Diablo III: Ultimate Evil Edition (NTSC-J)"}, {"id": "BLJM61198", "name": "Devil May Cry HD Collection (Best Price! Reprint) (NTSC-J)"}, {"id": "BLJM61199", "name": "BioHazard: Revelations 2 (NTSC-J)"}, {"id": "BLJM61200", "name": "Muv Luv: Photon Flowers (NTSC-J)"}, {"id": "BLJM61201", "name": "Wolfenstein: The New Order (NTSC-J)"}, {"id": "BLJM61202", "name": "FIFA 15 (NTSC-J)"}, {"id": "BLJM61203", "name": "Battlefield Hardline (NTSC-J)"}, {"id": "BLJM61204", "name": "Dragon Age: Inquisition (NTSC-J)"}, {"id": "BLJM61205", "name": "Monster Hunter Frontier G5 (Premium Package) (NTSC-J)"}, {"id": "BLJM61207", "name": "GRID Autosport (NTSC-J)"}, {"id": "BLJM61208", "name": "Assassin's Creed Rogue (NTSC-J)"}, {"id": "BLJM61209", "name": "Persona 4: The Ultimax Ultra Suplex Hold (NTSC-J)"}, {"id": "BLJM61210", "name": "Dengeki Bunko: Fighting Climax (NTSC-J)"}, {"id": "BLJM61211", "name": "Biohazard HD Remaster (NTSC-J)"}, {"id": "BLJM61212", "name": "Dragon Age: Inquisition (Deluxe Edition) (NTSC-J)"}, {"id": "BLJM61213", "name": "FIFA 15 (Ultimate Team Edition) (NTSC-J)"}, {"id": "BLJM61215", "name": "Jikkyou Powerful Pro Yakyuu 2014 (NTSC-J)"}, {"id": "BLJM61216", "name": "Transformers: Rise of the Dark Spark (NTSC-J)"}, {"id": "BLJM61217", "name": "Tom Clancy's Splinter Cell Blacklist (Ubi the Best) (NTSC-J)"}, {"id": "BLJM61218", "name": "The Amazing Spider-Man 2 (NTSC-J)"}, {"id": "BLJM61220", "name": "Kingdom Hearts HD 2.5 ReMIX (NTSC-J)"}, {"id": "BLJM61221", "name": "Kingdom Hearts HD 1.5 + 2.5 ReMIX (Starter Pack) (NTSC-J)"}, {"id": "BLJM61223", "name": "Kindom Hearts Collector's Pack: HD 1.5 + 2.5 ReMix (NTSC-J)"}, {"id": "BLJM61225", "name": "Shin Sangoku Musou 7 Empires (NTSC-J)"}, {"id": "BLJM61227", "name": "Call of Duty: Advanced Warfare (Subtitled Edition) (NTSC-J)"}, {"id": "BLJM61229", "name": "Tears to Tiara II: Haou no Matsuei (Aqua Price 2800) (NTSC-J)"}, {"id": "BLJM61230", "name": "Call of Duty: Black Ops II (Subtitle Version) (NTSC-J)"}, {"id": "BLJM61232", "name": "Call of Duty: Ghosts (Subtitle Version) (NTSC-J)"}, {"id": "BLJM61234", "name": "The LEGO Movie Videogame (NTSC-J)"}, {"id": "BLJM61235", "name": "Psycho Break (NTSC-J)"}, {"id": "BLJM61237", "name": "World Soccer Winning Eleven 2015 (NTSC-J)"}, {"id": "BLJM61238", "name": "Zettai Geigeki Wars (NTSC-J)"}, {"id": "BLJM61239", "name": "Odin Sphere Leifthrasir (NTSC-J)"}, {"id": "BLJM61242", "name": "LEGO Marvel Super Heroes (NTSC-J)"}, {"id": "BLJM61243", "name": "LEGO Batman 3: The Game - Gotham Kara Uchuu He (NTSC-J)"}, {"id": "BLJM61245", "name": "Sengoku Hime 5: Senkatatsu Haoh no Keifu (NTSC-J)"}, {"id": "BLJM61246", "name": "Sengoku Hime 5: Senkatatsu Haoh no Keifu (Deluxe Limited Edition) (NTSC-J)"}, {"id": "BLJM61247", "name": "Metal Gear Solid V: The Phantom Pain (NTSC-J)"}, {"id": "BLJM61248", "name": "Sengoku Basara 4: Sumeragi (NTSC-J)"}, {"id": "BLJM61249", "name": "Ryu ga Gotoku Zero: Chikai no Basho (NTSC-J)"}, {"id": "BLJM61250", "name": "White Album 2: Shiawase no Mukougawa (AquaPrice 2800) (NTSC-J)"}, {"id": "BLJM61251", "name": "Bladestorm: Hyakunen Sensou & Nightmare (NTSC-J)"}, {"id": "BLJM61253", "name": "Monster Hunter Frontier G6 (Premium Package) (NTSC-J)"}, {"id": "BLJM61254", "name": "AquaPazza: AquaPlus Dream Match (AquaPrice 2800) (NTSC-J)"}, {"id": "BLJM61255", "name": "Higurashi no Naku Koro ni Iki (NTSC-J)"}, {"id": "BLJM61256", "name": "Dragon Quest Heroes: Anryuu to Sekaiju no Shiro (NTSC-J)"}, {"id": "BLJM61257", "name": "Sengoku Musou 4-II (NTSC-J)"}, {"id": "BLJM61258", "name": "Dead or Alive 5: Last Round (NTSC-J)"}, {"id": "BLJM61259", "name": "Rewrite (NTSC-J)"}, {"id": "BLJM61260", "name": "Dark Souls II: Scholar of the First Sin (NTSC-J)"}, {"id": "BLJM61261", "name": "One Piece: Kaizoku Musou 3 (NTSC-J)"}, {"id": "BLJM61262", "name": "Winning Post 8 2015 (NTSC-J)"}, {"id": "BLJM61263", "name": "Pro Yakyuu Spirits 2015 (NTSC-J)"}, {"id": "BLJM61264", "name": "Yoru no Nai Kuni"}, {"id": "BLJM61265", "name": "Daisenryaku: Dai Toua Kouboushi - Dainijisekaitaisen Boppatsu - Suujiku Sentai Rengougun Zensekaisen (NTSC-J)"}, {"id": "BLJM61266", "name": "Gendai Daisenryaku 2016"}, {"id": "BLJM61267", "name": "Kagero: Mou Hitori no Princess (NTSC-J)"}, {"id": "BLJM61268", "name": "Daisenryaku: Dai Toua Kouboushi - Dainijisekaitaisen Boppatsu - Suujiku Sentai Rengougun Zensekaisen (Limited Edition) (NTSC-J)"}, {"id": "BLJM61269", "name": "Chaos;Child"}, {"id": "BLJM61271", "name": "Monster Hunter Frontier G7 (Premium Pack) (NTSC-J)"}, {"id": "BLJM61272", "name": "Biohazard 0 HD Remaster (NTSC-J)"}, {"id": "BLJM61274", "name": "Koihime Enbu"}, {"id": "BLJM61281", "name": "FIFA 16 (NTSC-J)"}, {"id": "BLJM61283", "name": "Final Fantasy XIV: Souten no Ishgard (NTSC-J)"}, {"id": "BLJM61285", "name": "FIFA 15 (EA Best Hits) (NTSC-J)"}, {"id": "BLJM61287", "name": "Assassin's Creed: Connor Saga (Ubi the Best) (NTSC-J)"}, {"id": "BLJM61288", "name": "Utawarerumono Itsuwari no Kamen"}, {"id": "BLJM61290", "name": "Infinite Stratos 2: Love and Purge (NTSC-J)"}, {"id": "BLJM61291", "name": "WORLD SOCCER Winning Eleven 2015 (Konami the Best) (NTSC-J)"}, {"id": "BLJM61294", "name": "RIDE (NTSC-J)"}, {"id": "BLJM61297", "name": "MotoGP 15 (NTSC-J)"}, {"id": "BLJM61298", "name": "LEGO Jurassic World (NTSC-J)"}, {"id": "BLJM61299", "name": "Nitro Plus Blasterz Heroines Infinite Duel"}, {"id": "BLJM61300", "name": "Sangokushi 12 with Power-Up Kit (Koei Tecmo the Best) (NTSC-J)"}, {"id": "BLJM61301", "name": "Winning Eleven 2016 (NTSC-J)"}, {"id": "BLJM61303", "name": "Steins;Gate 0 (NTSC-J)"}, {"id": "BLJM61306", "name": "FIFA 16 (Deluxe Edition) (NTSC-J)"}, {"id": "BLJM61307", "name": "Sengoku Musou 4 Empires"}, {"id": "BLJM61308", "name": "Arslan Senki x Musou (NTSC-J)"}, {"id": "BLJM61309", "name": "Sophie no Atelier: Fushigi na Hon no Renkinjutsushi (NTSC-J)"}, {"id": "BLJM61310", "name": "Blade Arcus From Shining EX"}, {"id": "BLJM61311", "name": "Dragon Quest Builders Alefgard o Fukkatsu Seyo (NTSC-J)"}, {"id": "BLJM61313", "name": "Ryu ga Gotoku: Kiwami"}, {"id": "BLJM61317", "name": "Jikkyou Powerful Pro Yakyuu 2016"}, {"id": "BLJM61320", "name": "Sangokushi 13"}, {"id": "BLJM61322", "name": "Dengeki Bunko: Fighting Climax Ignition"}, {"id": "BLJM61325", "name": "Star Ocean 5: Integrity and Faithlessness (NTSC-J)"}, {"id": "BLJM61326", "name": "Attack on Titan"}, {"id": "BLJM61329", "name": "LEGO Marvel's Avengers (NTSC-J)"}, {"id": "BLJM61330", "name": "LEGO Star Wars: Force no Kakusei (NTSC-J)"}, {"id": "BLJM61331", "name": "Utawarerumono futari no hakuoro"}, {"id": "BLJM61332", "name": "Sengoku Basara: Sanada Yukimura-Den"}, {"id": "BLJM61340", "name": "FIFA 17 (NTSC-J)"}, {"id": "BLJM61344", "name": "Toukiden 2"}, {"id": "BLJM61346", "name": "Persona 5 (NTSC-J)"}, {"id": "BLJM61347", "name": "Shin Sangoku Musou Eiketsuden"}, {"id": "BLJM61348", "name": "FIFA 17 (Deluxe Edition) (NTSC-J)"}, {"id": "BLJM61349", "name": "Sangokushi 13 with Power Up Kit (NTSC-J)"}, {"id": "BLJM61350", "name": "Sengoku Musou: Sanada Maru"}, {"id": "BLJM61351", "name": "Adventure Time: Secrets of the Nameless Kingdom (NTSC-J)"}, {"id": "BLJM61352", "name": "Dragon Quest Builders Alefgard o Fukkatsu Seyo (Ultimate Hits) (NTSC-J)"}, {"id": "BLJM61357", "name": "Winning Eleven 2018"}, {"id": "BLJM66125", "name": "Call of Duty Ghosts (NTSC-J)"}, {"id": "BLJM66126", "name": "Call of Duty Ghosts (NTSC-J)"}, {"id": "BLJM67001", "name": "Metal Gear Solid 4: Guns of the Patriots (NTSC-J)"}, {"id": "BLJM67005", "name": "Fainaru Fantajī Sātīn (NTSC-J)"}, {"id": "BLJM67007", "name": "UFC Undisputed 2010 (NTSC-J)"}, {"id": "BLJM67010", "name": "Final Fantasy XIII (NTSC-J)"}, {"id": "BLJM67011", "name": "Assassin's Creed: Ezio Saga (NTSC-J)"}, {"id": "BLJM67019", "name": "Wolfenstein: The New Order (NTSC-J)"}, {"id": "BLJM67020", "name": "Middle-earth: Shadow of Mordor (NTSC-J)"}, {"id": "BLJM67021", "name": "Assassin's Creed: Ezio Saga (Ubi the Best) (NTSC-J)"}, {"id": "BLJM85001", "name": "Monster Hunter Portable 3rd HD Ver. (NTSC-J)"}, {"id": "BLJM85002", "name": "K-On! Houkago Live!! HD Version (NTSC-J)"}, {"id": "BLJM85003", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version (NTSC-J)"}, {"id": "BLJM85004", "name": "Eiyuu Densetsu: Sora no Kiseki FC Kai HD Edition (NTSC-J)"}, {"id": "BLJM85005", "name": "Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition (NTSC-J)"}, {"id": "BLJM85006", "name": "Eiyuu Densetsu: Sora no Kiseki the 3rd Kai HD Edition (NTSC-J)"}, {"id": "BLJM87010", "name": "Final Fantasy XIII (Ultimate Hits) (NTSC-J)"}, {"id": "BLJM90001", "name": "BioHazard 5 (NTSC-J)"}, {"id": "BLJS10001", "name": "Ridge Racer 7 (NTSC-J)"}, {"id": "BLJS10002", "name": "Gundam: Target In Sight (NTSC-J)"}, {"id": "BLJS10003", "name": "Enchanted Arms (NTSC-J)"}, {"id": "BLJS10004", "name": "Untold Legends: Dark Kingdom (NTSC-J)"}, {"id": "BLJS10005", "name": "Ninja Gaiden Sigma (NTSC-J)"}, {"id": "BLJS10006", "name": "Yamasa Digi World SP: Bounty Killer (NTSC-J)"}, {"id": "BLJS10007", "name": "Blazing Angels: Squadrons of WWII (NTSC-J)"}, {"id": "BLJS10008", "name": "Spider-Man 3 (NTSC-J)"}, {"id": "BLJS10009", "name": "Makai Senki Disgaea 3 (First Print Limited Edition) (NTSC-J)"}, {"id": "BLJS10010", "name": "Time Crisis 4 (NTSC-J)"}, {"id": "BLJS10011", "name": "Makai Senki Disgaea 3 (NTSC-J)"}, {"id": "BLJS10012", "name": "Railfan: Taiwan Takatetsu (NTSC-J)"}, {"id": "BLJS10013", "name": "Call of Duty 4: Modern Warfare (NTSC-J)"}, {"id": "BLJS10014", "name": "Transformers: The Game (NTSC-J)"}, {"id": "BLJS10015", "name": "Guitar Hero III Legends of Rock (NTSC-J)"}, {"id": "BLJS10016", "name": "LEGO Star Wars: The Complete Saga (NTSC-J)"}, {"id": "BLJS10017", "name": "Trusty Bell: Chopin no Yume Reprise (NTSC-J)"}, {"id": "BLJS10018", "name": "NBA 2K8 (NTSC-J)"}, {"id": "BLJS10019", "name": "Haze (NTSC-J)"}, {"id": "BLJS10020", "name": "Dragon Ball Z: Burst Limit (NTSC-J)"}, {"id": "BLJS10021", "name": "Dark Sector (NTSC-J)"}, {"id": "BLJS10022", "name": "Enemy Territory : Quake Wars (NTSC-J)"}, {"id": "BLJS10023", "name": "The Darkness (NTSC-J)"}, {"id": "BLJS10024", "name": "Kung Fu Panda (NTSC-J)"}, {"id": "BLJS10025", "name": "Kane & Lynch: Dead Men (NTSC-J)"}, {"id": "BLJS10026", "name": "SoulCalibur IV (NTSC-J)"}, {"id": "BLJS10028", "name": "Double Clutch (NTSC-J)"}, {"id": "BLJS10030", "name": "Guitar Hero Aerosmith (NTSC-J)"}, {"id": "BLJS10031", "name": "Call of Duty 4: Modern Warfare (NTSC-J)"}, {"id": "BLJS10032", "name": "Guitar Hero III Legends of Rock (NTSC-J)"}, {"id": "BLJS10033", "name": "Guitar Hero Aerosmith (NTSC-J)"}, {"id": "BLJS10034", "name": "The Elder Scrolls IV: Oblivion (Game of the Year Edition) (NTSC-J)"}, {"id": "BLJS10037", "name": "Fracture (NTSC-J)"}, {"id": "BLJS10039", "name": "Way of the Samurai 3 (NTSC-J)"}, {"id": "BLJS10040", "name": "Fallout 3 (NTSC-J)"}, {"id": "BLJS10041", "name": "BioShock (NTSC-J)"}, {"id": "BLJS10042", "name": "LEGO Batman: The Videogame (NTSC-J)"}, {"id": "BLJS10044", "name": "Tomb Raider: Underworld (NTSC-J)"}, {"id": "BLJS10045", "name": "The King of Fighters XII (NTSC-J)"}, {"id": "BLJS10047", "name": "Katamari Damacy Tribute (NTSC-J)"}, {"id": "BLJS10048", "name": "NBA 2K9 (NTSC-J)"}, {"id": "BLJS10049", "name": "NHL 2K9 (NTSC-J)"}, {"id": "BLJS10050", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (NTSC-J)"}, {"id": "BLJS10051", "name": "Major League Baseball 2K9 (NTSC-J)"}, {"id": "BLJS10052", "name": "Top Spin 3 (NTSC-J)"}, {"id": "BLJS10053", "name": "Tales of Vesperia (NTSC-J)"}, {"id": "BLJS10054", "name": "Wanted: Weapons of Fate (NTSC-J)"}, {"id": "BLJS10056", "name": "50 Cent: Blood on the Sand (NTSC-J)"}, {"id": "BLJS10057", "name": "428: Fuusa Sareta Shibuya de (NTSC-J)"}, {"id": "BLJS10058", "name": "BioShock (Spike the Best) (NTSC-J)"}, {"id": "BLJS10059", "name": "Kane & Lynch: Dead Men (Spike the Best) (NTSC-J)"}, {"id": "BLJS10060", "name": "Janline R (NTSC-J)"}, {"id": "BLJS10062", "name": "WET (NTSC-J)"}, {"id": "BLJS10063", "name": "Makai Senki Disgaea 3 Append Disc: Raspberyl-hen Hajime Mashita (NTSC-J)"}, {"id": "BLJS10064", "name": "NBA 2K10 (NTSC-J)"}, {"id": "BLJS10065", "name": "NHL 2K10 (NTSC-J)"}, {"id": "BLJS10067", "name": "Tekken 6 (NTSC-J)"}, {"id": "BLJS10068", "name": "Fallout 3 Game of the Year Edition (NTSC-J)"}, {"id": "BLJS10070", "name": "Last Rebellion (NTSC-J)"}, {"id": "BLJS10071", "name": "Sacred 2: Fallen Angel (NTSC-J)"}, {"id": "BLJS10072", "name": "No More Heroes: Eiyuutachi no Rakuen (NTSC-J)"}, {"id": "BLJS10073", "name": "Red Seeds Profile (NTSC-J)"}, {"id": "BLJS10075", "name": "Ar Tonelico Qoga III: Sekai Shuuen No Hikigane Wa Shoujo No Uta Ga Hiku (NTSC-J)"}, {"id": "BLJS10076", "name": "Eat Lead: Matt Hazard no Gyakushuu (NTSC-J)"}, {"id": "BLJS10077", "name": "Midnight Club: Los Angeles (Spike the Best) (NTSC-J)"}, {"id": "BLJS10078", "name": "BioShock 2 (NTSC-J)"}, {"id": "BLJS10079", "name": "PachiPara 15: Super Umi Monogatari in Okinawa 2 (NTSC-J)"}, {"id": "BLJS10080", "name": "Clash of the Titans: The Video Game (NTSC-J)"}, {"id": "BLJS10081", "name": "A.C.E.: Another Century's Episode R (NTSC-J)"}, {"id": "BLJS10083", "name": "The Idolm@ster 2 (NTSC-J)"}, {"id": "BLJS10084", "name": "Naruto Shippuden: Narutimate Storm 2 (NTSC-J)"}, {"id": "BLJS10086", "name": "Red Faction: Guerrilla (Spike the Best) (NTSC-J)"}, {"id": "BLJS10087", "name": "Tomb Raider: Underworld (Spike the Best) (NTSC-J)"}, {"id": "BLJS10088", "name": "Knights Contract (NTSC-J)"}, {"id": "BLJS10089", "name": "Enslaved: Odyssey to the West (NTSC-J)"}, {"id": "BLJS10090", "name": "Major League Baseball 2K10 (NTSC-J)"}, {"id": "BLJS10091", "name": "Big 3 Gun Shooting (NTSC-J)"}, {"id": "BLJS10092", "name": "PachiPara 16: Gingira Paradise 2 (NTSC-J)"}, {"id": "BLJS10093", "name": "Tales of Graces f (NTSC-J)"}, {"id": "BLJS10094", "name": "Makai Senki Disgaea 4 (Limited Edition) (NTSC-J)"}, {"id": "BLJS10095", "name": "Makai Senki Disgaea 4 (NTSC-J)"}, {"id": "BLJS10096", "name": "Sekai Saikyou Ginsei Igo: Hybrid Monte Carlo (NTSC-J)"}, {"id": "BLJS10098", "name": "Majin to Ushinawareta Oukoku (NTSC-J)"}, {"id": "BLJS10099", "name": "428: Fuusa Sareta Shibuya de (Spike the Best) (NTSC-J)"}, {"id": "BLJS10102", "name": "Bikkuri Pachinko: Ashita no Joe: Kyoraku Collection Vol. 1 (NTSC-J)"}, {"id": "BLJS10106", "name": "Rune Factory: Oceans (NTSC-J)"}, {"id": "BLJS10107", "name": "Way of the Samurai 4 (NTSC-J)"}, {"id": "BLJS10108", "name": "Suzumiya Haruhi no Tsuisou (Tsuisou Nagato Yuki no Otoshimono Box) (NTSC-J)"}, {"id": "BLJS10109", "name": "Suzumiya Haruhi no Tsuisou (NTSC-J)"}, {"id": "BLJS10110", "name": "PachiPara 17: Shinkai Monogatari with Agnes Ram (NTSC-J)"}, {"id": "BLJS10111", "name": "Top Spin 4 (NTSC-J)"}, {"id": "BLJS10112", "name": "Major League Baseball 2K11 (NTSC-J)"}, {"id": "BLJS10114", "name": "No More Heroes: Red Zone Edition (NTSC-J)"}, {"id": "BLJS10115", "name": "SoulCalibur V (NTSC-J)"}, {"id": "BLJS10117", "name": "El Shaddai: Ascension of the Metatron (NTSC-J)"}, {"id": "BLJS10118", "name": "Sekai Saikyou Ginsei Shogi: Fuuum Ryouko Raiden (NTSC-J)"}, {"id": "BLJS10119", "name": "Homefront (NTSC-J)"}, {"id": "BLJS10120", "name": "Tales of Xillia (NTSC-J)"}, {"id": "BLJS10121", "name": "Duke Nukem Forever (NTSC-J)"}, {"id": "BLJS10122", "name": "Daisenryaku Perfect: Senjou no Hasha (NTSC-J)"}, {"id": "BLJS10123", "name": "Angel Senki (NTSC-J)"}, {"id": "BLJS10124", "name": "Angel Love Online (NTSC-J)"}, {"id": "BLJS10125", "name": "Lollipop Chainsaw (Premium Edition) (NTSC-J)"}, {"id": "BLJS10126", "name": "Red Faction Armageddon (NTSC-J)"}, {"id": "BLJS10127", "name": "Ace Combat: Assault Horizon (NTSC-J)"}, {"id": "BLJS10129", "name": "Makai Senki Disgaea 4: Fuuka & Desco-hen Hajime Mashita (Limited Edition Append Disc) (NTSC-J)"}, {"id": "BLJS10130", "name": "Makai Senki Disgaea 4: Fuuka & Desco-hen Hajime Mashita (NTSC-J)"}, {"id": "BLJS10131", "name": "Kidou Senshi Gundam Extreme Vs. (NTSC-J)"}, {"id": "BLJS10132", "name": "Dai-2-Ji Super Robot Taisen OG (NTSC-J)"}, {"id": "BLJS10133", "name": "Dai 2 Ji Super Robot Taisen Original Generations (NTSC-J)"}, {"id": "BLJS10134", "name": "Saint Seiya Senki (Limited Gold Box) (NTSC-J)"}, {"id": "BLJS10135", "name": "Dragon Ball: Ultimate Blast (NTSC-J)"}, {"id": "BLJS10137", "name": "Darkness II (Limited Edition) (NTSC-J)"}, {"id": "BLJS10138", "name": "The Idolm@ster: Gravure For You! Vol. 1 (NTSC-J)"}, {"id": "BLJS10139", "name": "The Idolm@ster: Gravure For You! Vol. 2 (NTSC-J)"}, {"id": "BLJS10140", "name": "The Idolm@ster: Gravure For You! Vol. 3 (NTSC-J)"}, {"id": "BLJS10141", "name": "The Idolm@ster: Gravure For You! Vol. 4 (NTSC-J)"}, {"id": "BLJS10142", "name": "The Idolm@ster: Gravure For You! Vol. 5 (NTSC-J)"}, {"id": "BLJS10143", "name": "The Idolm@ster: Gravure For You! Vol. 6 (NTSC-J)"}, {"id": "BLJS10144", "name": "The Idolm@ster: Gravure For You! Vol. 7 (NTSC-J)"}, {"id": "BLJS10145", "name": "The Idolm@ster: Gravure For You! Vol. 8 (NTSC-J)"}, {"id": "BLJS10146", "name": "The Idolm@ster: Gravure For You! Vol. 9 (NTSC-J)"}, {"id": "BLJS10147", "name": "The King of Fighters XIII (NTSC-J)"}, {"id": "BLJS10149", "name": "Mahjong * Dream C Club (NTSC-J)"}, {"id": "BLJS10150", "name": "Ninokuni: Shiroki Seihai no Joou (NTSC-J)"}, {"id": "BLJS10151", "name": "The Idolm@ster 2 (Anime mo Game mo Gravure mo! I-Mas @ Special Box) (NTSC-J)"}, {"id": "BLJS10152", "name": "Saint Seiya Senki (NTSC-J)"}, {"id": "BLJS10153", "name": "Daisenryaku Perfect: Senjou no Hasha (Premium Edition) (NTSC-J)"}, {"id": "BLJS10154", "name": "Kidou Senshi Gundam UC (NTSC-J)"}, {"id": "BLJS10155", "name": "Machi-ing Maker 4 (NTSC-J)"}, {"id": "BLJS10156", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (NTSC-J)"}, {"id": "BLJS10157", "name": "Meikyuu Touro Legasista (NTSC-J)"}, {"id": "BLJS10158", "name": "Shin Kamaitachi no Yoru 11 Hitome no Suspect"}, {"id": "BLJS10160", "name": "Majo to Hyakkihei (NTSC-J)"}, {"id": "BLJS10162", "name": "Moe Moe Daisensou * Gendaiban++ (Premium Edition) (NTSC-J)"}, {"id": "BLJS10163", "name": "Moe Moe Daisensou * Gendaiban++ (NTSC-J)"}, {"id": "BLJS10164", "name": "Shutsugeki!! Otometachi no Senjou 2: Yuukoku o Kakeru Koujo no Tsubasa (NTSC-J)"}, {"id": "BLJS10165", "name": "Shutsugeki!! Otometachi no Senjou 2 (Limited Edition) (NTSC-J)"}, {"id": "BLJS10167", "name": "Kidou Senshi Gundam UC (Special Edition) (NTSC-J)"}, {"id": "BLJS10168", "name": "Lollipop Chainsaw (NTSC-J)"}, {"id": "BLJS10169", "name": "Major League Baseball 2K12 (NTSC-J)"}, {"id": "BLJS10171", "name": "Spec Ops: The Line (NTSC-J)"}, {"id": "BLJS10173", "name": "Accel World: Ginyoku No Kakusei (NTSC-J)"}, {"id": "BLJS10174", "name": "Accel World: Ginyoku No Kakusei (NTSC-J)"}, {"id": "BLJS10175", "name": "Accel World: Kasoku No Chouten (NTSC-J)"}, {"id": "BLJS10176", "name": "Accel World: Kasoku No Chouten (NTSC-J)"}, {"id": "BLJS10177", "name": "Super Hero Generation (NTSC-J)"}, {"id": "BLJS10178", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu (Gouka Limited Edition) (NTSC-J)"}, {"id": "BLJS10179", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu (NTSC-J)"}, {"id": "BLJS10181", "name": "Toki to Eien Tokitowa (NTSC-J)"}, {"id": "BLJS10182", "name": "Macross 30: Ginga o Tsunagu Utagoe (30th Anniversary Edition) (NTSC-J)"}, {"id": "BLJS10184", "name": "Macross 30: Ginga o Tsunagu Utagoe (NTSC-J)"}, {"id": "BLJS10185", "name": "Ninokuni: Shiroki Seihai no Joou (NTSC-J)"}, {"id": "BLJS10186", "name": "Homefront (Spike Chunsoft the Best) (NTSC-J)"}, {"id": "BLJS10187", "name": "Tekken Tag Tournament 2 (NTSC-J)"}, {"id": "BLJS10188", "name": "Tales of Xillia 2 (NTSC-J)"}, {"id": "BLJS10189", "name": "BioShock (NTSC-J)"}, {"id": "BLJS10190", "name": "Borderlands 2 (NTSC-J)"}, {"id": "BLJS10191", "name": "Kingdoms of Amalur: Reckoning (NTSC-J)"}, {"id": "BLJS10192", "name": "Pachinko Hissatsu Shigotonin IV: Kyoraku Collection Vol. 2 (NTSC-J)"}, {"id": "BLJS10193", "name": "Taiheiyou no Arashi: Senkan Yamato, Akatsuki ni Shutsugekisu (Deluxe Limited Edition) (NTSC-J)"}, {"id": "BLJS10194", "name": "Taiheiyou no Arashi: Senkan Yamato, Akatsuki ni Shutsugekisu (NTSC-J)"}, {"id": "BLJS10195", "name": "Z/X: Zillions of enemy X - Zekkai no Crusade (NTSC-J)"}, {"id": "BLJS10196", "name": "NBA 2K13 (NTSC-J)"}, {"id": "BLJS10197", "name": "Gundam Breaker (NTSC-J)"}, {"id": "BLJS10199", "name": "Darksiders II (NTSC-J)"}, {"id": "BLJS10200", "name": "Naruto Shippuden: Narutimate Storm 3 (NTSC-J)"}, {"id": "BLJS10201", "name": "Kamisama to Unmei Kakumei no Paradox (Limited Edition) (NTSC-J)"}, {"id": "BLJS10202", "name": "Kamisama to Unmei Kakumei no Paradox (NTSC-J)"}, {"id": "BLJS10203", "name": "Dream C Club Zero: Complete Edipyon! (NTSC-J)"}, {"id": "BLJS10204", "name": "Saints Row: The Third (The Full Package) (NTSC-J)"}, {"id": "BLJS10206", "name": "Disgaea D2 (NTSC-J)"}, {"id": "BLJS10207", "name": "BioShock Infinite (NTSC-J)"}, {"id": "BLJS10208", "name": "Dream C Club Zero: Special Edipyon! (NTSC-J)"}, {"id": "BLJS10209", "name": "Chikyuu Boueigun 4 (NTSC-J)"}, {"id": "BLJS10210", "name": "Daisenryaku: Dai Toua Kouboushi - Tora Tora Tora Ware Kishuu Ni Seikou Seri (Deluxe Limited Edition) (NTSC-J)"}, {"id": "BLJS10211", "name": "Daisenryaku: Dai Toua Kouboushi - Tora Tora Tora Ware Kishuu Ni Seikou Seri (NTSC-J)"}, {"id": "BLJS10212", "name": "Daito Giken Koushiki Pachi-Slot Simulator Hihouden: Taiyou o Motomeru Monotachi (NTSC-J)"}, {"id": "BLJS10213", "name": "Lollipop Chainsaw (Valentine Edition) (NTSC-J)"}, {"id": "BLJS10215", "name": "Killer is Dead (Premium Edition) (NTSC-J)"}, {"id": "BLJS10216", "name": "Jojo no Kimyou na Bouken: All-Star Battle (Limited Edition) (NTSC-J)"}, {"id": "BLJS10217", "name": "Jojo no Kimyou na Bouken: All-Star Battle (NTSC-J)"}, {"id": "BLJS10218", "name": "Metro: Last Light (NTSC-J)"}, {"id": "BLJS10219", "name": "Kamen Rider: Battride War (Premium TV Sound Edition) (NTSC-J)"}, {"id": "BLJS10220", "name": "Kamen Rider: Battride War (NTSC-J)"}, {"id": "BLJS10221", "name": "Onechanbara Z: Kagura with NoNoNo! (NTSC-J)"}, {"id": "BLJS10222", "name": "Terraria (NTSC-J)"}, {"id": "BLJS10223", "name": "Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice (NTSC-J)"}, {"id": "BLJS10224", "name": "Arcadias no Ikusahime (NTSC-J)"}, {"id": "BLJS10225", "name": "BlazBlue: Chrono Phantasma (NTSC-J)"}, {"id": "BLJS10226", "name": "BlazBlue: Chrono Phantasma (NTSC-J)"}, {"id": "BLJS10227", "name": "XBLAZE Code: Embryo (NTSC-J)"}, {"id": "BLJS10229", "name": "Sangoku Hime 2: Kouki Houkou - Mezameshi Taiga (Limited Edition) (NTSC-J)"}, {"id": "BLJS10230", "name": "Sangoku Hime 2: Kouki Houkou - Mezameshi Taiga (NTSC-J)"}, {"id": "BLJS10231", "name": "Tales of Symphonia: Unisonant Pack (NTSC-J)"}, {"id": "BLJS10232", "name": "NBA 2K14 (NTSC-J)"}, {"id": "BLJS10233", "name": "Moe Moe Daisensou * Gendaiban++ (SystemSoft Selection) (NTSC-J)"}, {"id": "BLJS10234", "name": "Dragon Ball Z: Battle of Z (NTSC-J)"}, {"id": "BLJS10236", "name": "Saint Seiya: Brave Soldiers (NTSC-J)"}, {"id": "BLJS10237", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End (HD Comp! Box) (NTSC-J)"}, {"id": "BLJS10238", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End (NTSC-J)"}, {"id": "BLJS10240", "name": "AKB1/149: Love Election (Limited Edition) (NTSC-J)"}, {"id": "BLJS10241", "name": "AKB1/149: Love Election (NTSC-J)"}, {"id": "BLJS10242", "name": "Shutsugeki!! Otometachi no Senjou 2: Yuukoku o Kakeru Koujo no Tsubasa (SystemSoft Selection) (NTSC-J)"}, {"id": "BLJS10244", "name": "Super Heroine Chronicle: Chou Heroine Senki (NTSC-J)"}, {"id": "BLJS10245", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu (SystemSoft Selection) (NTSC-J)"}, {"id": "BLJS10246", "name": "Saints Row IV (Ultra Super Ultimate Deluxe Edition) (NTSC-J)"}, {"id": "BLJS10247", "name": "Super Robot Taisen OG Infinite Battle & Super Robot Taisen OG Dark Prison (Limited Edition) (NTSC-J)"}, {"id": "BLJS10248", "name": "Super Robot Taisen OG Infinite Battle (NTSC-J)"}, {"id": "BLJS10249", "name": "Kidou Senshi Gundam: Extreme VS Full Boost (Premium G-Sound Edition) (NTSC-J)"}, {"id": "BLJS10250", "name": "Kidou Senshi Gundam: Extreme VS Full Boost (NTSC-J)"}, {"id": "BLJS10251", "name": "Borderlands 2 (NTSC-J)"}, {"id": "BLJS10253", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu! (Super Deluxe Limited Edition) (NTSC-J)"}, {"id": "BLJS10254", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu! (NTSC-J)"}, {"id": "BLJS10256", "name": "Dai-3-Ji Super Robot Taisen Z Jigoku Hen (NTSC-J)"}, {"id": "BLJS10257", "name": "J-Stars Victory Vs (Ani-Song Sound Edition) (NTSC-J)"}, {"id": "BLJS10258", "name": "J-Stars Victory Vs (NTSC-J)"}, {"id": "BLJS10259", "name": "CV Casting Voice (NTSC-J)"}, {"id": "BLJS10260", "name": "The IdolM@ster: One for All (NTSC-J)"}, {"id": "BLJS10261", "name": "The IdolM@ster: One for All (765 Production New Producer Box) (NTSC-J)"}, {"id": "BLJS10262", "name": "Kamen Rider: Battride War II (NTSC-J)"}, {"id": "BLJS10263", "name": "Kamen Rider Battride War II (Premium TV & Movie Sound Edition) (NTSC-J)"}, {"id": "BLJS10264", "name": "Dream C Club Gogo. (NTSC-J)"}, {"id": "BLJS10265", "name": "Mato Kurenai Yuugekitai: Tokyo Twilight Ghosthunters (NTSC-J)"}, {"id": "BLJS10266", "name": "Harem Tengoku da to Omottara Yandere Jigoku Datta (NTSC-J)"}, {"id": "BLJS10267", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution (NTSC-J)"}, {"id": "BLJS10268", "name": "Natural Doctrine (NTSC-J)"}, {"id": "BLJS10269", "name": "Under Night In Birth: Exe: Late (NTSC-J)"}, {"id": "BLJS10270", "name": "Mobile Suit Gundam: Side Stories (NTSC-J)"}, {"id": "BLJS10272", "name": "One Piece: Unlimited World R (NTSC-J)"}, {"id": "BLJS10273", "name": "Natsuiro High School: Seishun Hakusho (NTSC-J)"}, {"id": "BLJS10274", "name": "Arcana Heart 3 Love Max!!!!! (NTSC-J)"}, {"id": "BLJS10275", "name": "Kamisama to Unmei Kakusei no Cross Thesis (NTSC-J)"}, {"id": "BLJS10276", "name": "Kamisama to Unmei Kakusei no Cross Thesis (Limited Edition) (NTSC-J)"}, {"id": "BLJS10278", "name": "Daisenryaku Exceed II"}, {"id": "BLJS10279", "name": "Shin Hayarigami (NTSC-J)"}, {"id": "BLJS10280", "name": "Dead Island (Double Zombie Pack) (NTSC-J)"}, {"id": "BLJS10281", "name": "Borderlands: The Pre-Sequel (NTSC-J)"}, {"id": "BLJS10283", "name": "Sacred 3 (NTSC-J)"}, {"id": "BLJS10284", "name": "Super Robot Taisen OG Saga - Masou Kishin F - Coffin of the End"}, {"id": "BLJS10285", "name": "Super Robot Taisen OG Saga: Mashou Kishin F Coffin of the End (NTSC-J)"}, {"id": "BLJS10286", "name": "Gundam Breaker 2 (NTSC-J)"}, {"id": "BLJS10288", "name": "Kamen Rider Summonride"}, {"id": "BLJS10289", "name": "Guilty Gear Xrd -SIGN- (NTSC-J)"}, {"id": "BLJS10290", "name": "Super Hero Generation (Special Sound Edition) (NTSC-J)"}, {"id": "BLJS10291", "name": "Godzilla (NTSC-J)"}, {"id": "BLJS10292", "name": "Dragon Ball: Xenoverse (NTSC-J)"}, {"id": "BLJS10293", "name": "XBLAZE: Lost Memories (NTSC-J)"}, {"id": "BLJS10295", "name": "Hajime no Ippo: The Fighting! (NTSC-J)"}, {"id": "BLJS10296", "name": "Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai All-Star Special (NTSC-J)"}, {"id": "BLJS10297", "name": "Gundam Breaker 2 (Omochidashi Pack) (NTSC-J)"}, {"id": "BLJS10299", "name": "Dai-3-Ji Super Robot Taisen Z Tengoku-hen (NTSC-J)"}, {"id": "BLJS10300", "name": "BlazBlue: Chrono Phantasma Extend (NTSC-J)"}, {"id": "BLJS10301", "name": "Ukiyo no Shishi (NTSC-J)"}, {"id": "BLJS10302", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 1 (NTSC-J)"}, {"id": "BLJS10303", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 2 (NTSC-J)"}, {"id": "BLJS10304", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 3 (NTSC-J)"}, {"id": "BLJS10305", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 4 (NTSC-J)"}, {"id": "BLJS10306", "name": "IdolM@ster: Cinderella Girls G4U! Pack Vol. 5 (NTSC-J)"}, {"id": "BLJS10307", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 6"}, {"id": "BLJS10308", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 7"}, {"id": "BLJS10309", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 8"}, {"id": "BLJS10310", "name": "The Idolmaster Cinderella Girls G4U! Pack Vol. 9"}, {"id": "BLJS10312", "name": "Sword Art Online: Last Song (NTSC-J)"}, {"id": "BLJS10316", "name": "Mato Kurenai Yuugekitai: Daybreak Special Gigs (NTSC-J)"}, {"id": "BLJS10318", "name": "JoJo's Bizzare Adventure - Eyes of Heaven"}, {"id": "BLJS10324", "name": "Kamen Rider Battride War Sousei"}, {"id": "BLJS10329", "name": "Guilty Gear Xrd: Revelator"}, {"id": "BLJS10330", "name": "Tales of Berseria"}, {"id": "BLJS10332", "name": "BlazBlue: CentralFiction"}, {"id": "BLJS10335", "name": "Super Robot Wars OG: The Moon Dwellers (NTSC-J)"}, {"id": "BLJS10336", "name": "Shin Hayarigami 2"}, {"id": "BLJS50001", "name": "Ridge Racer 7 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50002", "name": "Gundam: Target in Sight (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50003", "name": "Ninja Gaiden Sigma (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50004", "name": "Enchant Arm (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50005", "name": "The Elder Scrolls IV: Oblivion (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50006", "name": "Makai Senki Disgaea 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50007", "name": "SoulCalibur IV (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50008", "name": "Trusty Bell: Chopin no Yume Reprise (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50009", "name": "Way of the Samurai 3 Plus (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50010", "name": "Ridge Racer 7 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50011", "name": "Gundam: Target in Sight (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLJS50012", "name": "Fallout 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50013", "name": "Katamari Damacy Tribute (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50014", "name": "Naruto Narultimate Storm (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50015", "name": "Mobile Suit Gundam - Senki Record U.C. 0081 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50016", "name": "Sacred 2: Fallen Angel (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50017", "name": "Tekken 6 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50018", "name": "Ar tonelico III: Sekai Shuuen no Hikigane wa Shoujo no Uta ga Hajiku (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50019", "name": "Dragon Age: Origins (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50020", "name": "Rune Factory: Oceans (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50021", "name": "Way of the Samurai 4 Plus (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50022", "name": "Earth Defense Force: Insect Armageddon (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50023", "name": "Tales of Graces F (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50024", "name": "Tales of Vesperia (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50025", "name": "The Idolm@ster 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50026", "name": "No More Heroes: Red Zone Edition (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50027", "name": "Mobile Suit Gundam: Extreme VS (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50028", "name": "Ace Combat: Assault Horizon (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50029", "name": "Dragon Ball Z: Ultimate Blast (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50030", "name": "Naruto: Ultimate Ninja Storm 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50031", "name": "Saint Seiya Senki (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50032", "name": "Shin Kamaitachi no Yoru: 11 Hitome no Suspect (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50033", "name": "Tekken Tag Tournament 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50034", "name": "Tales of Vesperia (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50035", "name": "Tales of Graces F (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50036", "name": "Tales of Xillia (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50037", "name": "Tales of Xillia 2 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50038", "name": "Macross 30: Ginga o Tsunagu Utagoe (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50039", "name": "BlazBlue: Chrono Phantasma (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50040", "name": "The IdolM@ster: One for All (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS50041", "name": "Dai-3-Ji Super Robot Taisen Z Jigoku-hen (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLJS92001", "name": "Short Peace: Tsukigime Ranko no Ichiban Nagai Hi (NTSC-J)"}, {"id": "BLJS93001", "name": "MACROSS TRIAL FRONTIER (NTSC-J)"}, {"id": "BLJS93002", "name": "Tekken Hybrid (NTSC-J)"}, {"id": "BLJS93004", "name": "MACROSS LAST FRONTIER (NTSC-J)"}, {"id": "BLJS93005", "name": "Gekijouban Macross F: Sayonara no Tsubasa - Hybrid Pack (NTSC-J)"}, {"id": "BLJS93006", "name": "Choujikuu Yousai Macross: Ai Oboete Imasu ka (NTSC-J)"}, {"id": "BLJS93007", "name": "Choujikuu Yousai Macross: Ai Oboete Imasu ka: Hybrid Pack (NTSC-J)"}, {"id": "BLJS93008", "name": ".hack//Versus"}, {"id": "BLJS93009", "name": "Rinne no Lagrange: Kamogawa Days Game & OVA Hybrid Disc (NTSC-J)"}, {"id": "BLJS93010", "name": "Eureka Seven AO: Jungfrau no Hanabanatachi (First Print Limited Edition) (NTSC-J)"}, {"id": "BLJS93011", "name": "Eureka Seven AO: Jungfrau no Hanabanatachi (NTSC-J)"}, {"id": "BLJS93013", "name": "Nerawareta Gakuen Gekijouban Anime & Complete Setting Book Hybrid Disc (NTSC-J)"}, {"id": "BLJS93014", "name": "Gekijouban Macross F: 30th d Shudisuta b Box - Hybrid Pack (NTSC-J)"}, {"id": "BLJS93020", "name": "Tales of Zestiria (NTSC-J)"}, {"id": "BLJX94005", "name": "Fainaru Fantajī Sātīn (Trial Version) (NTSC-J)"}, {"id": "BLKS10039", "name": "Ridge Racer 7 (NTSC-K)"}, {"id": "BLKS20002", "name": "Mist of Chaos (NTSC-K)"}, {"id": "BLKS20003", "name": "Gundam Musou (NTSC-K)"}, {"id": "BLKS20008", "name": "Need for Speed: Carbon (NTSC-K)"}, {"id": "BLKS20010", "name": "Railfan (NTSC-K)"}, {"id": "BLKS20013", "name": "Tom Clancy's Rainbow Six: Vegas (NTSC-K)"}, {"id": "BLKS20015", "name": "The Orange Box (NTSC-K)"}, {"id": "BLKS20019", "name": "Transformers: The Game (NTSC-K)"}, {"id": "BLKS20021", "name": "Star Wars: The Force Unleashed (NTSC-K)"}, {"id": "BLKS20023", "name": "Harry Potter and the Order of the Phoenix (NTSC-K)"}, {"id": "BLKS20025", "name": "Fracture (NTSC-K)"}, {"id": "BLKS20028", "name": "Bladestorm: The Hundred Years' War (NTSC-K)"}, {"id": "BLKS20029", "name": "Medal of Honor: Airborne (NTSC-K)"}, {"id": "BLKS20032", "name": "Juiced 2: Hot Import Nights (NTSC-K)"}, {"id": "BLKS20034", "name": "Need for Speed: ProStreet (NTSC-K)"}, {"id": "BLKS20036", "name": "World Soccer Winning Eleven 2008 (NTSC-K)"}, {"id": "BLKS20041", "name": "Army of Two (NTSC-K)"}, {"id": "BLKS20050", "name": "Soldier of Fortune: Payback (NTSC-K)"}, {"id": "BLKS20051", "name": "Burnout Paradise (NTSC-K)"}, {"id": "BLKS20052", "name": "Shin Sangoku Musou 6 (NTSC-K)"}, {"id": "BLKS20053", "name": "Devil May Cry 4 (NTSC-K)"}, {"id": "BLKS20054", "name": "Battlefield: Bad Company 2 (NTSC-K)"}, {"id": "BLKS20055", "name": "Lost Planet: Extreme Condition (NTSC-K)"}, {"id": "BLKS20056", "name": "FIFA Street 3 (NTSC-K)"}, {"id": "BLKS20062", "name": "Alone In The Dark: Inferno (NTSC-K)"}, {"id": "BLKS20063", "name": "Record Of Agarest War (NTSC-K)"}, {"id": "BLKS20068", "name": "Dragon Ball Z: Burst Limit (NTSC-K)"}, {"id": "BLKS20070", "name": "UEFA Euro 2008 (NTSC-K)"}, {"id": "BLKS20073", "name": "Grand Theft Auto IV (NTSC-K)"}, {"id": "BLKS20076", "name": "Saints Row 2 (NTSC-K)"}, {"id": "BLKS20077", "name": "Hellboy: Science of Evil (NTSC-K)"}, {"id": "BLKS20084", "name": "Far Cry 2 (NTSC-K)"}, {"id": "BLKS20086", "name": "Spider-Man: Web of Shadows (NTSC-K)"}, {"id": "BLKS20087", "name": "Dead Space (NTSC-K)"}, {"id": "BLKS20088", "name": "007 Quantum of Solace (NTSC-K)"}, {"id": "BLKS20089", "name": "Silent Hill: Homecoming (NTSC-K)"}, {"id": "BLKS20091", "name": "Shaun White Snowboarding (NTSC-K)"}, {"id": "BLKS20092", "name": "Tom Clancy's EndWar (NTSC-K)"}, {"id": "BLKS20093", "name": "WWE SmackDown vs. RAW 2009 (NTSC-K)"}, {"id": "BLKS20094", "name": "Mirror's edge (NTSC-K)"}, {"id": "BLKS20096", "name": "Need For Speed Undercover (NTSC-K)"}, {"id": "BLKS20097", "name": "Tomb Raider: Underworld (NTSC-K)"}, {"id": "BLKS20099", "name": "WORLD SOCCER Winning Eleven 2009 (NTSC-K)"}, {"id": "BLKS20100", "name": "Prince of Persia (NTSC-K)"}, {"id": "BLKS20101", "name": "FIFA Soccer 09 (NTSC-K)"}, {"id": "BLKS20104", "name": "Assassin's Creed (NTSC-K)"}, {"id": "BLKS20107", "name": "Burnout Paradise: The Ultimate Box (NTSC-K)"}, {"id": "BLKS20108", "name": "Bionic Commando (NTSC-K)"}, {"id": "BLKS20109", "name": "Tom Clancy's Rainbow Six: Vegas 2 (Big Hit) (NTSC-K)"}, {"id": "BLKS20112", "name": "Cross Edge"}, {"id": "BLKS20119", "name": "F.E.A.R. 2: Project Origin (NTSC-K)"}, {"id": "BLKS20120", "name": "Wanted: Weapons of Fate (NTSC-K)"}, {"id": "BLKS20121", "name": "UFC Undisputed 2009 (NTSC-K)"}, {"id": "BLKS20123", "name": "Major League Baseball 2K9 (NTSC-K)"}, {"id": "BLKS20124", "name": "Monsters Vs. Aliens (NTSC-K)"}, {"id": "BLKS20126", "name": "Devil May Cry 4 (Big Hit) (NTSC-K)"}, {"id": "BLKS20133", "name": "Wolfenstein (NTSC-K)"}, {"id": "BLKS20135", "name": "Musou Orochi Z (NTSC-K)"}, {"id": "BLKS20137", "name": "Dark Void (NTSC-K)"}, {"id": "BLKS20141", "name": "The King of Fighters XII (NTSC-K)"}, {"id": "BLKS20147", "name": "Record of Agarest War Zero (NTSC-K)"}, {"id": "BLKS20154", "name": "Batman: Arkham Asylum (NTSC-K)"}, {"id": "BLKS20159", "name": "Call of Duty: Modern Warfare 2 (NTSC-K)"}, {"id": "BLKS20162", "name": "WORLD SOCCER Winning Eleven 2010 (NTSC-K)"}, {"id": "BLKS20170", "name": "Ninja Gaiden Sigma 2 (NTSC-K)"}, {"id": "BLKS20172", "name": "Singularity (NTSC-K)"}, {"id": "BLKS20184", "name": "Dante's Inferno (NTSC-K)"}, {"id": "BLKS20187", "name": "Street Fighter IV (NTSC-K)"}, {"id": "BLKS20193", "name": "Prince of Persia: The Forgotten Sands (NTSC-K)"}, {"id": "BLKS20198", "name": "Grand Theft Auto: Episodes from Liberty City (NTSC-K)"}, {"id": "BLKS20200", "name": "World Soccer Winning Eleven 2010 (PlayStation 3 BigHit series) (NTSC-K)"}, {"id": "BLKS20210", "name": "Mafia II (NTSC-K)"}, {"id": "BLKS20220", "name": "WORLD SOCCER Winning Eleven 2011 (NTSC-K)"}, {"id": "BLKS20222", "name": "Tekken 6 (NTSC-K)"}, {"id": "BLKS20229", "name": "F.E.A.R. 3 (NTSC-K)"}, {"id": "BLKS20241", "name": "Hyperdimension Neptune (NTSC-K)"}, {"id": "BLKS20271", "name": "Warriors: Legends of Troy (NTSC-K)"}, {"id": "BLKS20281", "name": "Operation Flashpoint: Red River (NTSC-K)"}, {"id": "BLKS20289", "name": "Red Faction: Armageddon (NTSC-K)"}, {"id": "BLKS20301", "name": "WORLD SOCCER Winning Eleven 2012 (NTSC-K)"}, {"id": "BLKS20315", "name": "Red Dead Redemption: Game of the Year Edition (NTSC-K)"}, {"id": "BLKS20316", "name": "Metal Gear Solid HD Collection (NTSC-K)"}, {"id": "BLKS20317", "name": "Warhammer 40,000: Space Marine (NTSC-K)"}, {"id": "BLKS20320", "name": "The Cursed Crusade (NTSC-K)"}, {"id": "BLKS20321", "name": "Assassin's Creed: Brotherhood (NTSC-K)"}, {"id": "BLKS20375", "name": "Pro Evolution Soccer 2013 (NTSC-K)"}, {"id": "BLKS20384", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version (NTSC-K)"}, {"id": "BLKS20385", "name": "Attouteki Yuugi: Mugen Souls (NTSC-K)"}, {"id": "BLKS20397", "name": "Tales of Xillia 2 (NTSC-K)"}, {"id": "BLKS20400", "name": "Dai-2-Ji Super Robot Taisen Original Generations (NTSC-K)"}, {"id": "BLKS20438", "name": "Pro Evolution Soccer 2014 (NTSC-K)"}, {"id": "BLKS20442", "name": "Grand Theft Auto V (NTSC-K)"}, {"id": "BLKS20443", "name": "Saints Row IV (NTSC-K)"}, {"id": "BLKS20449", "name": "Saint Seiya: Brave Soldiers (NTSC-K)"}, {"id": "BLKS25001", "name": "Metal Gear Solid 4: Guns of the Patriots (NTSC-K)"}, {"id": "BLMJ55040", "name": "Totori no Atelier: Arland no Renkinjutsushi 2 (PlayStation 3 the Best Reprint) (NTSC-J)"}, {"id": "BLMJ55041", "name": "Meruru no Atelier: Arland no Renkinjutsushi 3 (PlayStation 3 the Best) (NTSC-J)"}, {"id": "BLUA31169", "name": "NBA 2K13/MLB 2K13 Combo Pack"}, {"id": "BLUS00759", "name": "Guitar Hero 5 (NTSC-U)"}, {"id": "BLUS01717", "name": "Call of Duty: Black Ops II (NTSC-U)"}, {"id": "BLUS30001", "name": "Ridge Racer 7 (NTSC-U)"}, {"id": "BLUS30002", "name": "Untold Legends: Dark Kingdom (NTSC-U)"}, {"id": "BLUS30003", "name": "F.E.A.R. (NTSC-U)"}, {"id": "BLUS30004", "name": "NBA 2K7 (NTSC-U)"}, {"id": "BLUS30005", "name": "NHL 2K7 (NTSC-U)"}, {"id": "BLUS30006", "name": "Blazing Angels: Squadrons of WWII (NTSC-U)"}, {"id": "BLUS30007", "name": "The Elder Scrolls IV: Oblivion (NTSC-U)"}, {"id": "BLUS30008", "name": "Sonic the Hedgehog (NTSC-U)"}, {"id": "BLUS30009", "name": "Full Auto 2: Battlelines (NTSC-U)"}, {"id": "BLUS30010", "name": "Marvel: Ultimate Alliance (NTSC-U)"}, {"id": "BLUS30011", "name": "Tony Hawk's Project 8 (NTSC-U)"}, {"id": "BLUS30012", "name": "Call of Duty 3 (NTSC-U)"}, {"id": "BLUS30013", "name": "Tiger Woods PGA Tour '07 (NTSC-U)"}, {"id": "BLUS30014", "name": "Madden NFL '07 (NTSC-U)"}, {"id": "BLUS30016", "name": "Need for Speed: Carbon (NTSC-U)"}, {"id": "BLUS30017", "name": "Mobile Suit Gundam: Crossfire (NTSC-U)"}, {"id": "BLUS30018", "name": "Tom Clancy's Rainbow Six: Vegas (NTSC-U)"}, {"id": "BLUS30019", "name": "Fight Night: Round 3 (NTSC-U)"}, {"id": "BLUS30020", "name": "Virtua Fighter 5 (NTSC-U)"}, {"id": "BLUS30021", "name": "Virtua Tennis 3 (NTSC-U)"}, {"id": "BLUS30022", "name": "NBA Street: Homecourt (NTSC-U)"}, {"id": "BLUS30023", "name": "The Godfather: The Don's Edition (NTSC-U)"}, {"id": "BLUS30024", "name": "Def Jam: Icon (NTSC-U)"}, {"id": "BLUS30025", "name": "Major League Baseball 2K7 (NTSC-U)"}, {"id": "BLUS30026", "name": "College Hoops 2K7 (NTSC-U)"}, {"id": "BLUS30027", "name": "Armored Core 4 (NTSC-U)"}, {"id": "BLUS30028", "name": "Enchanted Arms (NTSC-U)"}, {"id": "BLUS30029", "name": "Pirates of the Caribbean: At World's End (NTSC-U)"}, {"id": "BLUS30030", "name": "Spider-Man 3 (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30031", "name": "Spider-Man 3 (NTSC-U)"}, {"id": "BLUS30032", "name": "Tom Clancy's Splinter Cell: Double Agent (NTSC-U)"}, {"id": "BLUS30033", "name": "The Bigs (NTSC-U)"}, {"id": "BLUS30034", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2 (NTSC-U)"}, {"id": "BLUS30035", "name": "The Darkness (NTSC-U)"}, {"id": "BLUS30036", "name": "Ninja Gaiden Sigma (NTSC-U)"}, {"id": "BLUS30037", "name": "Madden NFL 08 (NTSC-U)"}, {"id": "BLUS30038", "name": "FIFA Soccer 08 (NTSC-U)"}, {"id": "BLUS30039", "name": "NCAA Football '08 (NTSC-U)"}, {"id": "BLUS30040", "name": "NASCAR '08 (NTSC-U)"}, {"id": "BLUS30042", "name": "Fantastic Four: Rise of the Silver Surfer (NTSC-U)"}, {"id": "BLUS30043", "name": "Ratatouille (NTSC-U)"}, {"id": "BLUS30044", "name": "NHL 2K8 (NTSC-U)"}, {"id": "BLUS30045", "name": "Harry Potter and the Order of the Phoenix (NTSC-U)"}, {"id": "BLUS30046", "name": "Surf's Up (NTSC-U)"}, {"id": "BLUS30047", "name": "Transformers: The Game (NTSC-U)"}, {"id": "BLUS30048", "name": "Hellboy: Science of Evil (NTSC-U)"}, {"id": "BLUS30049", "name": "All-Pro Football 2K8 (NTSC-U)"}, {"id": "BLUS30050", "name": "Rock Band (NTSC-U)"}, {"id": "BLUS30051", "name": "Ninja Gaiden Sigma (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30052", "name": "Blazing Angels 2: Secret Missions of WWII (NTSC-U)"}, {"id": "BLUS30053", "name": "Tiger Woods PGA Tour 08 (NTSC-U)"}, {"id": "BLUS30055", "name": "The Orange Box (NTSC-U)"}, {"id": "BLUS30056", "name": "Mercenaries 2: World in Flames (NTSC-U)"}, {"id": "BLUS30057", "name": "Army of Two (NTSC-U)"}, {"id": "BLUS30058", "name": "Dynasty Warriors: Gundam (NTSC-U)"}, {"id": "BLUS30059", "name": "Skate (NTSC-U)"}, {"id": "BLUS30060", "name": "NBA Live 08 (NTSC-U)"}, {"id": "BLUS30061", "name": "Burnout Paradise (NTSC-U)"}, {"id": "BLUS30062", "name": "NHL '08 (NTSC-U)"}, {"id": "BLUS30063", "name": "Clive Barker's Jericho (NTSC-U)"}, {"id": "BLUS30064", "name": "DiRT (NTSC-U)"}, {"id": "BLUS30065", "name": "The Simpsons Game (NTSC-U)"}, {"id": "BLUS30066", "name": "Need for Speed: ProStreet (NTSC-U)"}, {"id": "BLUS30067", "name": "Medal of Honor: Airborne (NTSC-U)"}, {"id": "BLUS30068", "name": "Sega Rally: Revo (NTSC-U)"}, {"id": "BLUS30069", "name": "Conan (NTSC-U)"}, {"id": "BLUS30070", "name": "Bladestorm: The Hundred Years' War (NTSC-U)"}, {"id": "BLUS30071", "name": "Tony Hawk's Proving Ground (NTSC-U)"}, {"id": "BLUS30072", "name": "Call of Duty 4: Modern Warfare (NTSC-U)"}, {"id": "BLUS30073", "name": "Stuntman: Ignition (NTSC-U)"}, {"id": "BLUS30074", "name": "Guitar Hero III: Legends of Rock (NTSC-U)"}, {"id": "BLUS30075", "name": "World Series of Poker 2008: Battle for the Bracelets (NTSC-U)"}, {"id": "BLUS30076", "name": "Rapala Fishing Frenzy 2009 (NTSC-U)"}, {"id": "BLUS30077", "name": "NBA 2K8 (NTSC-U)"}, {"id": "BLUS30078", "name": "College Hoops 2K8 (NTSC-U)"}, {"id": "BLUS30079", "name": "LEGO Star Wars: The Complete Saga (NTSC-U)"}, {"id": "BLUS30080", "name": "Stranglehold (NTSC-U)"}, {"id": "BLUS30081", "name": "Stranglehold (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30082", "name": "WWE SmackDown vs. Raw 2008 (NTSC-U)"}, {"id": "BLUS30083", "name": "The Golden Compass (NTSC-U)"}, {"id": "BLUS30084", "name": "Juiced 2: Hot Import Nights (NTSC-U)"}, {"id": "BLUS30086", "name": "Unreal Tournament III (NTSC-U)"}, {"id": "BLUS30087", "name": "The Elder Scrolls IV: Oblivion (Game of the Year Edition) (NTSC-U)"}, {"id": "BLUS30088", "name": "Cars: Mater-National Championship (NTSC-U)"}, {"id": "BLUS30089", "name": "Assassin's Creed (NTSC-U)"}, {"id": "BLUS30090", "name": "TimeShift (NTSC-U)"}, {"id": "BLUS30091", "name": "Beowulf: The Game (NTSC-U)"}, {"id": "BLUS30092", "name": "Devil May Cry 4 (NTSC-U)"}, {"id": "BLUS30093", "name": "Time Crisis 4 (NTSC-U)"}, {"id": "BLUS30094", "name": "Haze (NTSC-U)"}, {"id": "BLUS30096", "name": "Assassin's Creed (Limited Edition) (NTSC-U)"}, {"id": "BLUS30097", "name": "MX vs. ATV: Untamed (NTSC-U)"}, {"id": "BLUS30098", "name": "NCAA March Madness '08 (NTSC-U)"}, {"id": "BLUS30099", "name": "FIFA Street 3 (NTSC-U)"}, {"id": "BLUS30100", "name": "NFL Tour (NTSC-U)"}, {"id": "BLUS30101", "name": "BlackSite: Area 51 (NTSC-U)"}, {"id": "BLUS30102", "name": "Kane & Lynch: Dead Men (NTSC-U)"}, {"id": "BLUS30103", "name": "History Channel: Battle for the Pacific (NTSC-U)"}, {"id": "BLUS30104", "name": "Turok (NTSC-U)"}, {"id": "BLUS30105", "name": "Soldier of Fortune: Payback (NTSC-U)"}, {"id": "BLUS30106", "name": "The Elder Scrolls IV: Shivering Isles (NTSC-U)"}, {"id": "BLUS30107", "name": "Conflict: Denied Ops (NTSC-U)"}, {"id": "BLUS30108", "name": "The Club (NTSC-U)"}, {"id": "BLUS30109", "name": "Metal Gear Solid 4: Guns of the Patriots (NTSC-U)"}, {"id": "BLUS30110", "name": "Dynasty Warriors 6 (NTSC-U)"}, {"id": "BLUS30111", "name": "Pro Evolution Soccer 2008 (NTSC-U)"}, {"id": "BLUS30112", "name": "Karaoke Revolution Presents: American Idol Encore (NTSC-U)"}, {"id": "BLUS30113", "name": "Lost Planet: Extreme Condition (NTSC-U)"}, {"id": "BLUS30114", "name": "UEFA Euro 2008 (NTSC-U)"}, {"id": "BLUS30115", "name": "Condemned 2: Bloodshot (NTSC-U)"}, {"id": "BLUS30116", "name": "Dark Sector (NTSC-U)"}, {"id": "BLUS30117", "name": "Dragon Ball Z: Burst Limit (NTSC-U)"}, {"id": "BLUS30118", "name": "Battlefield: Bad Company (NTSC-U)"}, {"id": "BLUS30119", "name": "Turning Point: Fall of Liberty (NTSC-U)"}, {"id": "BLUS30120", "name": "Lost: Via Domus (NTSC-U)"}, {"id": "BLUS30121", "name": "Battlefield: Bad Company (Gold Edition) (NTSC-U)"}, {"id": "BLUS30122", "name": "Major League Baseball 2K8 (NTSC-U)"}, {"id": "BLUS30123", "name": "Sega Superstars Tennis (NTSC-U)"}, {"id": "BLUS30124", "name": "Devil May Cry 4 (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30125", "name": "Tom Clancy's Rainbow Six: Vegas 2 (NTSC-U)"}, {"id": "BLUS30126", "name": "Vampire Rain: Altered Species (NTSC-U)"}, {"id": "BLUS30127", "name": "Grand Theft Auto IV (NTSC-U)"}, {"id": "BLUS30128", "name": "NFL Head Coach '09 (NTSC-U)"}, {"id": "BLUS30129", "name": "Viking: Battle for Asgard (NTSC-U)"}, {"id": "BLUS30130", "name": "Sid Meier's Civilization Revolution (NTSC-U)"}, {"id": "BLUS30131", "name": "Tom Clancy's Rainbow Six: Vegas 2 (Limited Edition) (NTSC-U)"}, {"id": "BLUS30132", "name": "Enemy Territory: Quake Wars (NTSC-U)"}, {"id": "BLUS30133", "name": "Guitar Hero: Aerosmith (NTSC-U)"}, {"id": "BLUS30134", "name": "Iron Man (NTSC-U)"}, {"id": "BLUS30135", "name": "NBA Ballers: Chosen One (NTSC-U)"}, {"id": "BLUS30136", "name": "Kung Fu Panda (NTSC-U)"}, {"id": "BLUS30137", "name": "Robert Ludlum's The Bourne Conspiracy (NTSC-U)"}, {"id": "BLUS30138", "name": "The Chronicles of Narnia: Prince Caspian (NTSC-U)"}, {"id": "BLUS30139", "name": "NASCAR '09 (NTSC-U)"}, {"id": "BLUS30140", "name": "Monster Madness: Grave Danger (NTSC-U)"}, {"id": "BLUS30141", "name": "LEGO Indiana Jones: The Original Adventures (NTSC-U)"}, {"id": "BLUS30142", "name": "Race Driver: GRID (NTSC-U)"}, {"id": "BLUS30143", "name": "Overlord: Raising Hell (NTSC-U)"}, {"id": "BLUS30144", "name": "Star Wars: The Force Unleashed (NTSC-U)"}, {"id": "BLUS30145", "name": "Prototype (NTSC-U)"}, {"id": "BLUS30146", "name": "Madden NFL '09 (NTSC-U)"}, {"id": "BLUS30147", "name": "Rock Band 2 (NTSC-U)"}, {"id": "BLUS30148", "name": "Metal Gear Solid 4: Guns of the Patriots (Limited Edition) (NTSC-U)"}, {"id": "BLUS30149", "name": "Grand Theft Auto IV (Special Edition) (NTSC-U)"}, {"id": "BLUS30150", "name": "Madden NFL '09 (20th Anniversary Collector's Edition) (NTSC-U)"}, {"id": "BLUS30151", "name": "WALL•E (NTSC-U)"}, {"id": "BLUS30152", "name": "The Incredible Hulk (NTSC-U)"}, {"id": "BLUS30153", "name": "Hail to the Chimp (NTSC-U)"}, {"id": "BLUS30154", "name": "Beijing 2008: The Official Video Game of the Olympic Games (NTSC-U)"}, {"id": "BLUS30155", "name": "NCAA Football '09 (NTSC-U)"}, {"id": "BLUS30156", "name": "The Chronicles of Riddick: Assault on Dark Athena (NTSC-U)"}, {"id": "BLUS30157", "name": "Top Spin 3 (NTSC-U)"}, {"id": "BLUS30158", "name": "FaceBreaker (NTSC-U)"}, {"id": "BLUS30159", "name": "Tiger Woods PGA Tour '09 (NTSC-U)"}, {"id": "BLUS30160", "name": "Soul Calibur IV (NTSC-U)"}, {"id": "BLUS30161", "name": "Eternal Sonata (NTSC-U)"}, {"id": "BLUS30162", "name": "Ferrari Challenge (NTSC-U)"}, {"id": "BLUS30164", "name": "Guitar Hero: World Tour (NTSC-U)"}, {"id": "BLUS30165", "name": "Brothers in Arms: Hell's Highway (NTSC-U)"}, {"id": "BLUS30166", "name": "BioShock (NTSC-U)"}, {"id": "BLUS30168", "name": "NHL '09 (NTSC-U)"}, {"id": "BLUS30169", "name": "Silent Hill: Homecoming (NTSC-U)"}, {"id": "BLUS30170", "name": "Madden NFL '09 (NTSC-U)"}, {"id": "BLUS30173", "name": "NBA Live '09 (NTSC-U)"}, {"id": "BLUS30174", "name": "TNA iMPACT! (NTSC-U)"}, {"id": "BLUS30175", "name": "LEGO Batman: The Videogame (NTSC-U)"}, {"id": "BLUS30176", "name": "FIFA Soccer '09 (NTSC-U)"}, {"id": "BLUS30177", "name": "Dead Space (NTSC-U)"}, {"id": "BLUS30178", "name": "Far Cry 2 (NTSC-U)"}, {"id": "BLUS30179", "name": "Mirror's Edge (NTSC-U)"}, {"id": "BLUS30180", "name": "Tom Clancy's EndWar (NTSC-U)"}, {"id": "BLUS30181", "name": "Disgaea 3: Absence of Justice (NTSC-U)"}, {"id": "BLUS30182", "name": "Pure (NTSC-U)"}, {"id": "BLUS30184", "name": "Fracture (NTSC-U)"}, {"id": "BLUS30185", "name": "Fallout 3 (NTSC-U)"}, {"id": "BLUS30186", "name": "Tom Clancy's H.A.W.X. (NTSC-U)"}, {"id": "BLUS30187", "name": "Armored Core: For Answer (NTSC-U)"}, {"id": "BLUS30188", "name": "NHL 2K9 (NTSC-U)"}, {"id": "BLUS30189", "name": "Pro Evolution Soccer 2009 (NTSC-U)"}, {"id": "BLUS30190", "name": "Midnight Club: Los Angeles (NTSC-U)"}, {"id": "BLUS30191", "name": "Baja: Edge of Control (NTSC-U)"}, {"id": "BLUS30192", "name": "Call of Duty: World at War (NTSC-U)"}, {"id": "BLUS30194", "name": "WWE SmackDown vs. Raw 2009 (NTSC-U)"}, {"id": "BLUS30195", "name": "Rock Band: Track Pack - Vol.2 (NTSC-U)"}, {"id": "BLUS30196", "name": "Valkyria Chronicles (NTSC-U)"}, {"id": "BLUS30197", "name": "NBA 2K9 (NTSC-U)"}, {"id": "BLUS30198", "name": "Quantum of Solace: The Game (NTSC-U)"}, {"id": "BLUS30199", "name": "Quantum of Solace: The Game (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30200", "name": "Naruto: Ultimate Ninja Storm (NTSC-U)"}, {"id": "BLUS30201", "name": "Saints Row 2 (NTSC-U)"}, {"id": "BLUS30203", "name": "Blitz: The League II (NTSC-U)"}, {"id": "BLUS30204", "name": "Disney's Sing It! (NTSC-U)"}, {"id": "BLUS30205", "name": "The Legend of Spyro: Dawn of the Dragon (NTSC-U)"}, {"id": "BLUS30208", "name": "WWE SmackDown vs. Raw 2009 (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30209", "name": "Golden Axe: Beast Rider (NTSC-U)"}, {"id": "BLUS30210", "name": "Legendary (NTSC-U)"}, {"id": "BLUS30211", "name": "History Channel's Civil War: Secret Missions (NTSC-U)"}, {"id": "BLUS30212", "name": "Rock Revolution (NTSC-U)"}, {"id": "BLUS30213", "name": "Monopoly (NTSC-U)"}, {"id": "BLUS30214", "name": "Prince of Persia (NTSC-U)"}, {"id": "BLUS30215", "name": "Karaoke Revolution Presents: American Idol Encore 2 (NTSC-U)"}, {"id": "BLUS30218", "name": "Spider-Man: Web of Shadows (NTSC-U)"}, {"id": "BLUS30219", "name": "Madagascar: Escape 2 Africa (NTSC-U)"}, {"id": "BLUS30220", "name": "MotoGP '08 (NTSC-U)"}, {"id": "BLUS30221", "name": "Cabela's Dangerous Hunts 2009 (NTSC-U)"}, {"id": "BLUS30223", "name": "Shaun White Snowboarding (NTSC-U)"}, {"id": "BLUS30224", "name": "Tomb Raider: Underworld (NTSC-U)"}, {"id": "BLUS30225", "name": "Shellshock 2: Blood Trails (NTSC-U)"}, {"id": "BLUS30226", "name": "Lord of the Rings: Conquest (NTSC-U)"}, {"id": "BLUS30228", "name": "Rise of the Argonauts (NTSC-U)"}, {"id": "BLUS30229", "name": "Bolt (NTSC-U)"}, {"id": "BLUS30230", "name": "Score International: Baja 1000 (NTSC-U)"}, {"id": "BLUS30231", "name": "NCAA Basketball '09 (NTSC-U)"}, {"id": "BLUS30232", "name": "Alone in the Dark: Inferno (NTSC-U)"}, {"id": "BLUS30233", "name": "Shaun White Snowboarding (NTSC-U)"}, {"id": "BLUS30234", "name": "Fallout 3 (NTSC-U)"}, {"id": "BLUS30235", "name": "Rock Band: Track Pack - AC/DC Live (NTSC-U)"}, {"id": "BLUS30236", "name": "SBK: Superbike World Championship (NTSC-U)"}, {"id": "BLUS30241", "name": "X-Blades (NTSC-U)"}, {"id": "BLUS30242", "name": "Harry Potter and the Half-Blood Prince (NTSC-U)"}, {"id": "BLUS30244", "name": "Sonic Unleashed (NTSC-U)"}, {"id": "BLUS30246", "name": "Mortal Kombat vs. DC Universe (NTSC-U)"}, {"id": "BLUS30247", "name": "Mortal Kombat vs. DC Universe (NTSC-U)"}, {"id": "BLUS30248", "name": "Need for Speed: Undercover (NTSC-U)"}, {"id": "BLUS30250", "name": "Burnout Paradise: The Ultimate Box (NTSC-U)"}, {"id": "BLUS30251", "name": "F.E.A.R. 2: Project Origin (NTSC-U)"}, {"id": "BLUS30253", "name": "Skate 2 (NTSC-U)"}, {"id": "BLUS30254", "name": "NPPL Championship Paintball 2009 (NTSC-U)"}, {"id": "BLUS30255", "name": "Bionic Commando (NTSC-U)"}, {"id": "BLUS30256", "name": "50 Cent: Blood on the Sand (NTSC-U)"}, {"id": "BLUS30257", "name": "Guitar Hero: Metallica (NTSC-U)"}, {"id": "BLUS30258", "name": "Red Faction: Guerrilla (NTSC-U)"}, {"id": "BLUS30259", "name": "Sonic's Ultimate Genesis Collection (NTSC-U)"}, {"id": "BLUS30260", "name": "Street Fighter IV (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30261", "name": "The Godfather II (NTSC-U)"}, {"id": "BLUS30262", "name": "Wheelman (NTSC-U)"}, {"id": "BLUS30264", "name": "Afro Samurai (NTSC-U)"}, {"id": "BLUS30265", "name": "Street Fighter IV (NTSC-U)"}, {"id": "BLUS30266", "name": "MLB Front Office Manager (NTSC-U)"}, {"id": "BLUS30267", "name": "Eat Lead: The Return of Matt Hazard (NTSC-U)"}, {"id": "BLUS30268", "name": "X-Men Origins: Wolverine (Uncaged Edition) (NTSC-U)"}, {"id": "BLUS30269", "name": "WWE Legends of Wrestlemania (NTSC-U)"}, {"id": "BLUS30270", "name": "Resident Evil 5 (NTSC-U)"}, {"id": "BLUS30271", "name": "Trivial Pursuit (NTSC-U)"}, {"id": "BLUS30272", "name": "Ski Doo: Snowmobile Challenge (NTSC-U)"}, {"id": "BLUS30273", "name": "Dreamworks' Monsters vs. Aliens (NTSC-U)"}, {"id": "BLUS30274", "name": "Disney's Sing It! High School Musical 3: Senior Year (NTSC-U)"}, {"id": "BLUS30275", "name": "Wanted: Weapons of Fate (NTSC-U)"}, {"id": "BLUS30276", "name": "Major League Baseball 2K9 (NTSC-U)"}, {"id": "BLUS30278", "name": "Dead to Rights: Retribution (NTSC-U)"}, {"id": "BLUS30279", "name": "Batman: Arkham Asylum (NTSC-U)"}, {"id": "BLUS30280", "name": "The Bigs 2 (NTSC-U)"}, {"id": "BLUS30281", "name": "Mafia II (NTSC-U)"}, {"id": "BLUS30282", "name": "The Beatles: Rock Band (NTSC-U)"}, {"id": "BLUS30283", "name": "Command & Conquer: Red Alert 3 (Ultimate Edition) (NTSC-U)"}, {"id": "BLUS30284", "name": "Mini Ninjas (NTSC-U)"}, {"id": "BLUS30285", "name": "Fight Night: Round 4 (NTSC-U)"}, {"id": "BLUS30286", "name": "Tiger Woods PGA Tour '10 (NTSC-U)"}, {"id": "BLUS30287", "name": "Resident Evil 5 (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30288", "name": "Dynasty Warriors: Gundam 2 (NTSC-U)"}, {"id": "BLUS30289", "name": "James Bond 007: Blood Stone (NTSC-U)"}, {"id": "BLUS30290", "name": "Guitar Hero: Smash Hits (NTSC-U)"}, {"id": "BLUS30291", "name": "Guitar Hero: Van Halen (NTSC-U)"}, {"id": "BLUS30292", "name": "Guitar Hero 5 (NTSC-U)"}, {"id": "BLUS30293", "name": "Ice Age: Dawn of the Dinosaurs (NTSC-U)"}, {"id": "BLUS30294", "name": "Marvel: Ultimate Alliance 2 (NTSC-U)"}, {"id": "BLUS30295", "name": "Blur (NTSC-U)"}, {"id": "BLUS30296", "name": "Singularity (NTSC-U)"}, {"id": "BLUS30297", "name": "Transformers: Revenge of the Fallen (NTSC-U)"}, {"id": "BLUS30298", "name": "Wolfenstein (NTSC-U)"}, {"id": "BLUS30299", "name": "UFC 2009: Undisputed (NTSC-U)"}, {"id": "BLUS30300", "name": "Split / Second (NTSC-U)"}, {"id": "BLUS30303", "name": "Shaun White Skateboarding (NTSC-U)"}, {"id": "BLUS30304", "name": "Damnation (NTSC-U)"}, {"id": "BLUS30305", "name": "Up (NTSC-U)"}, {"id": "BLUS30306", "name": "Dynasty Warriors 6: Empires (NTSC-U)"}, {"id": "BLUS30307", "name": "Ghostbusters: The Video Game (NTSC-U)"}, {"id": "BLUS30308", "name": "Heroes Over Europe (NTSC-U)"}, {"id": "BLUS30310", "name": "Brink (NTSC-U)"}, {"id": "BLUS30311", "name": "Rogue Warrior (NTSC-U)"}, {"id": "BLUS30312", "name": "Sacred 2: Fallen Angel (NTSC-U)"}, {"id": "BLUS30313", "name": "DiRT 2 (NTSC-U)"}, {"id": "BLUS30314", "name": "Fuel (NTSC-U)"}, {"id": "BLUS30316", "name": "Operation Flashpoint: Dragon Rising (NTSC-U)"}, {"id": "BLUS30317", "name": "Overlord II (NTSC-U)"}, {"id": "BLUS30318", "name": "Terminator: Salvation (NTSC-U)"}, {"id": "BLUS30319", "name": "Cars: Race-O-Rama (NTSC-U)"}, {"id": "BLUS30320", "name": "Darksiders (NTSC-U)"}, {"id": "BLUS30321", "name": "MX vs. ATV Reflex (NTSC-U)"}, {"id": "BLUS30323", "name": "Dark Void (NTSC-U)"}, {"id": "BLUS30324", "name": "Ride to Hell: Retribution (NTSC-U)"}, {"id": "BLUS30325", "name": "Tony Hawk: Ride (NTSC-U)"}, {"id": "BLUS30326", "name": "G.I. Joe: The Rise of Cobra (NTSC-U)"}, {"id": "BLUS30327", "name": "Rock Band: Track Pack - Classic Rock (NTSC-U)"}, {"id": "BLUS30328", "name": "Stormrise (NTSC-U)"}, {"id": "BLUS30330", "name": "Brutal Legend (NTSC-U)"}, {"id": "BLUS30331", "name": "Leisure Suit Larry: Box Office Bust (NTSC-U)"}, {"id": "BLUS30333", "name": "JASF: Jane's Advanced Strike Fighters (NTSC-U)"}, {"id": "BLUS30334", "name": "Backbreaker (NTSC-U)"}, {"id": "BLUS30335", "name": "Splater House (NTSC-U)"}, {"id": "BLUS30336", "name": "Katamari Forever (NTSC-U)"}, {"id": "BLUS30339", "name": "Castlevania: Lords of Shadow (NTSC-U)"}, {"id": "BLUS30340", "name": "Aliens vs. Predator (NTSC-U)"}, {"id": "BLUS30341", "name": "Alpha Protocol (NTSC-U)"}, {"id": "BLUS30342", "name": "Sonic & Sega All-Stars Racing (NTSC-U)"}, {"id": "BLUS30343", "name": "Virtua Tennis 2009 (NTSC-U)"}, {"id": "BLUS30344", "name": "Vancouver 2010: The Official Video Game of the Olympic Games (NTSC-U)"}, {"id": "BLUS30345", "name": "NHL '10 (NTSC-U)"}, {"id": "BLUS30347", "name": "Call of Juarez: Bound in Blood (NTSC-U)"}, {"id": "BLUS30348", "name": "Cross Edge (NTSC-U)"}, {"id": "BLUS30350", "name": "Green Day: Rock Band (NTSC-U)"}, {"id": "BLUS30351", "name": "Rock Band: Track Pack - Country (NTSC-U)"}, {"id": "BLUS30352", "name": "Rock Band: Metal Track Pack (NTSC-U)"}, {"id": "BLUS30353", "name": "The King of Fighters XII (NTSC-U)"}, {"id": "BLUS30354", "name": "G-Force: The Video Game (NTSC-U)"}, {"id": "BLUS30355", "name": "NCAA Football '10 (NTSC-U)"}, {"id": "BLUS30356", "name": "Bakugan Battle Brawlers (NTSC-U)"}, {"id": "BLUS30357", "name": "Transformers: War for Cybertron (NTSC-U)"}, {"id": "BLUS30359", "name": "Tekken 6 (NTSC-U)"}, {"id": "BLUS30360", "name": "Inversion (NTSC-U)"}, {"id": "BLUS30363", "name": "Cloudy with a Chance of Meatballs (NTSC-U)"}, {"id": "BLUS30364", "name": "Assassin's Creed II (NTSC-U)"}, {"id": "BLUS30365", "name": "Hannah Montana: The Movie (NTSC-U)"}, {"id": "BLUS30366", "name": "Planet 51 (NTSC-U)"}, {"id": "BLUS30367", "name": "Bayonetta (NTSC-U)"}, {"id": "BLUS30368", "name": "DJ Hero (NTSC-U)"}, {"id": "BLUS30372", "name": "Band Hero (NTSC-U)"}, {"id": "BLUS30374", "name": "James Cameron's Avatar The Game (NTSC-U)"}, {"id": "BLUS30375", "name": "Madden NFL '10 (NTSC-U)"}, {"id": "BLUS30377", "name": "Call of Duty: Modern Warfare 2 (NTSC-U)"}, {"id": "BLUS30378", "name": "Karaoke Revolution (NTSC-U)"}, {"id": "BLUS30379", "name": "F1 2010 (NTSC-U)"}, {"id": "BLUS30380", "name": "Ninja Gaiden: Sigma 2 (NTSC-U)"}, {"id": "BLUS30382", "name": "LEGO: Rock Band (NTSC-U)"}, {"id": "BLUS30385", "name": "FIFA Soccer '10 (NTSC-U)"}, {"id": "BLUS30386", "name": "Borderlands (NTSC-U)"}, {"id": "BLUS30387", "name": "Pinball Hall of Fame: The Williams Collection (NTSC-U)"}, {"id": "BLUS30389", "name": "Chaotic: Shadow Warriors (NTSC-U)"}, {"id": "BLUS30390", "name": "BlazBlue: Calamity Trigger - Limited Edition (NTSC-U)"}, {"id": "BLUS30391", "name": "Need for Speed: Shift (NTSC-U)"}, {"id": "BLUS30392", "name": "BlazBlue: Calamity Trigger (NTSC-U)"}, {"id": "BLUS30393", "name": "NBA Live '10 (NTSC-U)"}, {"id": "BLUS30394", "name": "Star Wars The Clone Wars: Republic Heroes (NTSC-U)"}, {"id": "BLUS30395", "name": "Front Mission Evolved (NTSC-U)"}, {"id": "BLUS30396", "name": "Cabela's Big Game Hunter 2010 (NTSC-U)"}, {"id": "BLUS30397", "name": "Disney Sing It: Pop Hits (NTSC-U)"}, {"id": "BLUS30398", "name": "Way of the Samurai 3 (NTSC-U)"}, {"id": "BLUS30399", "name": "Afrika (NTSC-U)"}, {"id": "BLUS30400", "name": "Just Cause 2 (NTSC-U)"}, {"id": "BLUS30402", "name": "NBA 2K10 (NTSC-U)"}, {"id": "BLUS30403", "name": "WET (NTSC-U)"}, {"id": "BLUS30404", "name": "Pro Evolution Soccer 2010 (NTSC-U)"}, {"id": "BLUS30405", "name": "Dante's Inferno (Divine Edition) (NTSC-U)"}, {"id": "BLUS30406", "name": "Hunted: The Demon's Forge (NTSC-U)"}, {"id": "BLUS30407", "name": "Saboteur (NTSC-U)"}, {"id": "BLUS30408", "name": "Army of Two: The 40th Day (NTSC-U)"}, {"id": "BLUS30409", "name": "Cabela's Outdoor Adventures (NTSC-U)"}, {"id": "BLUS30410", "name": "Marvel vs. Capcom 3 : Fate of Two Worlds (NTSC-U)"}, {"id": "BLUS30412", "name": "WWE SmackDown vs. RAW 2010 (NTSC-U)"}, {"id": "BLUS30415", "name": "Dragon Age: Origins (NTSC-U)"}, {"id": "BLUS30416", "name": "Final Fantasy XIII (NTSC-U)"}, {"id": "BLUS30417", "name": "Grand Slam Tennis 2 (NTSC-U)"}, {"id": "BLUS30418", "name": "Red Dead Redemption (NTSC-U)"}, {"id": "BLUS30420", "name": "BioShock 2 (NTSC-U)"}, {"id": "BLUS30424", "name": "IL-2 Sturmovik: Birds of Prey (NTSC-U)"}, {"id": "BLUS30427", "name": "Top Spin 4 (NTSC-U)"}, {"id": "BLUS30428", "name": "Catherine (NTSC-U)"}, {"id": "BLUS30431", "name": "Dragon Ball: Raging Blast (NTSC-U)"}, {"id": "BLUS30432", "name": "Warhammer 40000: Space Marine (NTSC-U)"}, {"id": "BLUS30433", "name": "Dance Dance Revolution: New Moves (NTSC-U)"}, {"id": "BLUS30434", "name": "Lost Planet 2 (NTSC-U)"}, {"id": "BLUS30435", "name": "Jurassic: The Hunted (NTSC-U)"}, {"id": "BLUS30436", "name": "Medal of Honor (NTSC-U)"}, {"id": "BLUS30437", "name": "LEGO Harry Potter: Years 1-4 (NTSC-U)"}, {"id": "BLUS30438", "name": "NHL 2K10 (NTSC-U)"}, {"id": "BLUS30439", "name": "Dead Rising 2 (NTSC-U)"}, {"id": "BLUS30441", "name": "Where the Wild Things Are (NTSC-U)"}, {"id": "BLUS30442", "name": "Midnight Club: Los Angeles (Complete Edition - Greatest Hits) (NTSC-U)"}, {"id": "BLUS30443", "name": "Demon's Souls (NTSC-U)"}, {"id": "BLUS30445", "name": "Star Wars: The Force Unleashed (Ultimate Sith Edition) (NTSC-U)"}, {"id": "BLUS30447", "name": "Scene It? Bright Lights! Big Screen! (NTSC-U)"}, {"id": "BLUS30451", "name": "Fallout 3 Game of the Year Edition (NTSC-U)"}, {"id": "BLUS30453", "name": "Super Street Fighter IV (NTSC-U)"}, {"id": "BLUS30456", "name": "Fairytale Fights (NTSC-U)"}, {"id": "BLUS30457", "name": "Tron: Evolution (NTSC-U)"}, {"id": "BLUS30458", "name": "Battlefield: Bad Company 2 (NTSC-U)"}, {"id": "BLUS30459", "name": "Disney Sing It: Pop Hits (NTSC-U)"}, {"id": "BLUS30461", "name": "How to Train Your Dragon (NTSC-U)"}, {"id": "BLUS30462", "name": "Star Ocean: The Last Hope - International (NTSC-U)"}, {"id": "BLUS30463", "name": "Rock Band 3 (NTSC-U)"}, {"id": "BLUS30464", "name": "Skate 3 (NTSC-U)"}, {"id": "BLUS30465", "name": "Atelier Rorona: The Alchemist of Arland (NTSC-U)"}, {"id": "BLUS30466", "name": "El Shaddai: Ascension of the Metatron (NTSC-U)"}, {"id": "BLUS30467", "name": "Prison Break: The Conspiracy (NTSC-U)"}, {"id": "BLUS30469", "name": "Legend of the Guardians: The Owls of Ga'Hoole (NTSC-U)"}, {"id": "BLUS30471", "name": "Dynasty Warriors: Strikeforce (NTSC-U)"}, {"id": "BLUS30472", "name": "Majin and the Forsaken Kingdom (NTSC-U)"}, {"id": "BLUS30474", "name": "FIFA World Cup 2010: South Africa (NTSC-U)"}, {"id": "BLUS30476", "name": "Deus Ex: Human Revolution (NTSC-U)"}, {"id": "BLUS30478", "name": "R.U.S.E. (NTSC-U)"}, {"id": "BLUS30480", "name": "Toy Story 3 (NTSC-U)"}, {"id": "BLUS30481", "name": "Nier (NTSC-U)"}, {"id": "BLUS30483", "name": "UFC Undisputed 2010 (NTSC-U)"}, {"id": "BLUS30484", "name": "Resonance of Fate (NTSC-U)"}, {"id": "BLUS30485", "name": "Rage (NTSC-U)"}, {"id": "BLUS30487", "name": "Guitar Hero: Warriors Of Rock (NTSC-U)"}, {"id": "BLUS30489", "name": "Tiger Woods PGA Tour '11 (NTSC-U)"}, {"id": "BLUS30490", "name": "3D Dot Game Heroes (NTSC-U)"}, {"id": "BLUS30491", "name": "Resident Evil 5: Gold Edition (NTSC-U)"}, {"id": "BLUS30492", "name": "Sengoku Basara: Samurai Heroes (NTSC-U)"}, {"id": "BLUS30493", "name": "Aliens vs. Predator (NTSC-U)"}, {"id": "BLUS30494", "name": "Yazuka 3 (NTSC-U)"}, {"id": "BLUS30495", "name": "Naruto Shippuden: Ultimate Ninja Storm 2 (NTSC-U)"}, {"id": "BLUS30498", "name": "Sleeping Dogs (NTSC-U)"}, {"id": "BLUS30499", "name": "Spider-Man: Shattered Dimensions (NTSC-U)"}, {"id": "BLUS30500", "name": "Fallout: New Vegas (NTSC-U)"}, {"id": "BLUS30501", "name": "Dishonored (NTSC-U)"}, {"id": "BLUS30502", "name": "Warriors: Legends of Troy (NTSC-U)"}, {"id": "BLUS30503", "name": "Trinity: Souls of Zill O'll (NTSC-U)"}, {"id": "BLUS30504", "name": "Fist of the North Star: Ken's Rage (NTSC-U)"}, {"id": "BLUS30505", "name": "Clash of the Titans: The Video Game (NTSC-U)"}, {"id": "BLUS30507", "name": "Naughty Bear (NTSC-U)"}, {"id": "BLUS30509", "name": "Dragon Age: Origins - Awakening (NTSC-U)"}, {"id": "BLUS30510", "name": "Dungeon Siege III (NTSC-U)"}, {"id": "BLUS30511", "name": "F.E.A.R. 3 (NTSC-U)"}, {"id": "BLUS30512", "name": "Last Rebellion (NTSC-U)"}, {"id": "BLUS30513", "name": "Little League World Series Baseball 2010 (NTSC-U)"}, {"id": "BLUS30514", "name": "Iron Man 2 (NTSC-U)"}, {"id": "BLUS30515", "name": "Batman: Arkham Asylum (Game of the Year Edition) (NTSC-U)"}, {"id": "BLUS30516", "name": "Armored Core V (NTSC-U)"}, {"id": "BLUS30517", "name": "Battlefield: Bad Company 2 Limited Edition (NTSC-U)"}, {"id": "BLUS30518", "name": "Megamind: Ultimate Showdown (NTSC-U)"}, {"id": "BLUS30520", "name": "MySims SkyHeroes (NTSC-U)"}, {"id": "BLUS30521", "name": "Tom Clancy's Ghost Recon: Future Soldier (NTSC-U)"}, {"id": "BLUS30522", "name": "Mortal Kombat (NTSC-U)"}, {"id": "BLUS30524", "name": "Grand Theft Auto: Episodes from Liberty City (NTSC-U)"}, {"id": "BLUS30526", "name": "DJ Hero 2 (NTSC-U)"}, {"id": "BLUS30527", "name": "Test Drive Unlimited 2 (NTSC-U)"}, {"id": "BLUS30528", "name": "Time Crisis: Razing Storm (NTSC-U)"}, {"id": "BLUS30530", "name": "Homefront (NTSC-U)"}, {"id": "BLUS30531", "name": "Spec Ops: The Line (NTSC-U)"}, {"id": "BLUS30532", "name": "Brunswick Pro Bowling (NTSC-U)"}, {"id": "BLUS30534", "name": "Star Wars: The Force Unleashed II (NTSC-U)"}, {"id": "BLUS30535", "name": "Trinity Universe (NTSC-U)"}, {"id": "BLUS30536", "name": "Driver: San Francisco (NTSC-U)"}, {"id": "BLUS30537", "name": "Assassin's Creed: Brotherhood (NTSC-U)"}, {"id": "BLUS30538", "name": "Batman: Arkham City (NTSC-U)"}, {"id": "BLUS30540", "name": "LEGO Star Wars 3: The Clone Wars (NTSC-U)"}, {"id": "BLUS30542", "name": "Tony Hawk: Shred (NTSC-U)"}, {"id": "BLUS30543", "name": "Vanquish (NTSC-U)"}, {"id": "BLUS30545", "name": "Man vs. Wild with Bear Grylls (NTSC-U)"}, {"id": "BLUS30547", "name": "Mindjack (NTSC-U)"}, {"id": "BLUS30548", "name": "Saw II: Flesh And Blood (NTSC-U)"}, {"id": "BLUS30549", "name": "CSI: Crime Scene Investigation: Fatal Conspiracy (NTSC-U)"}, {"id": "BLUS30550", "name": "Two Worlds II (NTSC-U)"}, {"id": "BLUS30551", "name": "Def Jam Rapstar (NTSC-U)"}, {"id": "BLUS30554", "name": "L.A. Noire (NTSC-U)"}, {"id": "BLUS30555", "name": "Apache: Air Assault (NTSC-U)"}, {"id": "BLUS30557", "name": "Max Payne 3 (NTSC-U)"}, {"id": "BLUS30558", "name": "Enslaved: Odyssey to the West (NTSC-U)"}, {"id": "BLUS30559", "name": "de Blob 2 (NTSC-U)"}, {"id": "BLUS30560", "name": "NCAA Football 11 (NTSC-U)"}, {"id": "BLUS30561", "name": "Monster Jam: Path of Destruction (NTSC-U)"}, {"id": "BLUS30562", "name": "Bodycount (NTSC-U)"}, {"id": "BLUS30563", "name": "Cabela's Dangerous Hunts 2011 (NTSC-U)"}, {"id": "BLUS30564", "name": "Cabela's North American Adventures (NTSC-U)"}, {"id": "BLUS30565", "name": "Silent Hill: Downpour (NTSC-U)"}, {"id": "BLUS30566", "name": "Need for Speed: Hot Pursuit (NTSC-U)"}, {"id": "BLUS30568", "name": "NHL 11 (NTSC-U)"}, {"id": "BLUS30569", "name": "You Don't Know Jack (NTSC-U)"}, {"id": "BLUS30570", "name": "Rapala Pro Bass Fishing 2010 (NTSC-U)"}, {"id": "BLUS30571", "name": "Racquet Sports (NTSC-U)"}, {"id": "BLUS30573", "name": "Green Day: Rock Band Plus (NTSC-U)"}, {"id": "BLUS30574", "name": "NBA 2K11 (NTSC-U)"}, {"id": "BLUS30575", "name": "Harry Potter the Deathly Hallows: Part 1 (NTSC-U)"}, {"id": "BLUS30576", "name": "BlazBlue: Continuum Shift (NTSC-U)"}, {"id": "BLUS30577", "name": "Bakugan: Defenders of the Core (NTSC-U)"}, {"id": "BLUS30578", "name": "Hasbro Family Game Night 3 (NTSC-U)"}, {"id": "BLUS30580", "name": "Shift 2: Unleashed (NTSC-U)"}, {"id": "BLUS30581", "name": "Dragon Ball Raging 2 (NTSC-U)"}, {"id": "BLUS30582", "name": "Knights Contract (NTSC-U)"}, {"id": "BLUS30583", "name": "DC Universe Online (NTSC-U)"}, {"id": "BLUS30585", "name": "Red Faction: Armageddon (NTSC-U)"}, {"id": "BLUS30587", "name": "Zumba Fitness (NTSC-U)"}, {"id": "BLUS30591", "name": "Call of Duty: Black Ops (NTSC-U)"}, {"id": "BLUS30592", "name": "NBA Elite 11 (NTSC-U)"}, {"id": "BLUS30593", "name": "The Lord of the Rings Aragorn's Quest (NTSC-U)"}, {"id": "BLUS30597", "name": "John Daly's ProStroke Golf (NTSC-U)"}, {"id": "BLUS30598", "name": "Mafia II (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30601", "name": "Disney Sing It: Family Hits (NTSC-U)"}, {"id": "BLUS30602", "name": "Blood Drive (NTSC-U)"}, {"id": "BLUS30603", "name": "Disney Sing It: Party Hits (NTSC-U)"}, {"id": "BLUS30604", "name": "NASCAR The Game 2011 (NTSC-U)"}, {"id": "BLUS30606", "name": "Create (NTSC-U)"}, {"id": "BLUS30607", "name": "Alice: Madness Returns (NTSC-U)"}, {"id": "BLUS30608", "name": "Fight Night Champion (NTSC-U)"}, {"id": "BLUS30609", "name": "The Sims 3 (NTSC-U)"}, {"id": "BLUS30610", "name": "Pro Evolution Soccer 2011 (NTSC-U)"}, {"id": "BLUS30611", "name": "Final Fantasy XIV Online: A Realm Reborn (NTSC-U)"}, {"id": "BLUS30612", "name": "Sonic Generations (NTSC-U)"}, {"id": "BLUS30613", "name": "Ace Combat: Assault Horizon (NTSC-U)"}, {"id": "BLUS30614", "name": "Rio (NTSC-U)"}, {"id": "BLUS30615", "name": "Duke Nukem Forever (NTSC-U)"}, {"id": "BLUS30616", "name": "Penguins of Madagascar: Dr. Blowhole Returns - Again (NTSC-U)"}, {"id": "BLUS30619", "name": "DJ Hero 2 (NTSC-U)"}, {"id": "BLUS30622", "name": "Power Gig: Rise of the Six String (NTSC-U)"}, {"id": "BLUS30623", "name": "Rock Band: Country Track Pack 2 (NTSC-U)"}, {"id": "BLUS30624", "name": "Dead Space 2 (NTSC-U)"}, {"id": "BLUS30625", "name": "Call of Duty: Black Ops (NTSC-U)"}, {"id": "BLUS30629", "name": "BioShock Infinite (NTSC-U)"}, {"id": "BLUS30630", "name": "FIFA Soccer 11 (NTSC-U)"}, {"id": "BLUS30631", "name": "Crysis 2 (NTSC-U)"}, {"id": "BLUS30633", "name": "Deadliest Catch: Sea of Chaos (NTSC-U)"}, {"id": "BLUS30634", "name": "Kung Fu Panda 2 (NTSC-U)"}, {"id": "BLUS30636", "name": "Venetica (NTSC-U)"}, {"id": "BLUS30637", "name": "Assassin's Creed: Brotherhood (NTSC-U)"}, {"id": "BLUS30638", "name": "Call of Duty: Black Ops (NTSC-U)"}, {"id": "BLUS30639", "name": "Ar Tonelico Qoga: Knell of Ar Ciel (NTSC-U)"}, {"id": "BLUS30640", "name": "Lucha Libre AAA Heroes del Ring (NTSC-U)"}, {"id": "BLUS30641", "name": "The Cursed Crusade (NTSC-U)"}, {"id": "BLUS30642", "name": "Captain America: Super Soldier (NTSC-U)"}, {"id": "BLUS30643", "name": "Yakuza 4 (NTSC-U)"}, {"id": "BLUS30645", "name": "Dragon Age II (NTSC-U)"}, {"id": "BLUS30649", "name": "Dragon Age Origins: Ultimate Edition (NTSC-U)"}, {"id": "BLUS30650", "name": "Mass Effect 2 (NTSC-U)"}, {"id": "BLUS30651", "name": "Bulletstorm (NTSC-U)"}, {"id": "BLUS30652", "name": "No More Heroes: Heroes' Paradise (NTSC-U)"}, {"id": "BLUS30653", "name": "Shadows of the Damned (NTSC-U)"}, {"id": "BLUS30654", "name": "NeverDead (NTSC-U)"}, {"id": "BLUS30656", "name": "MotoGP 10/11 (NTSC-U)"}, {"id": "BLUS30658", "name": "Rock of the Dead (NTSC-U)"}, {"id": "BLUS30661", "name": "Castlevania: Lords of Shadow (Limited Edition) (NTSC-U)"}, {"id": "BLUS30665", "name": "Nat Geo Challenge! Wild Life (NTSC-U)"}, {"id": "BLUS30666", "name": "Saints Row: The Third (NTSC-U)"}, {"id": "BLUS30667", "name": "Fit in Six (NTSC-U)"}, {"id": "BLUS30669", "name": "Child of Eden (NTSC-U)"}, {"id": "BLUS30670", "name": "Rocksmith Authentic Guitar Games (NTSC-U)"}, {"id": "BLUS30674", "name": "Green Lantern Rise of the Manhunters (NTSC-U)"}, {"id": "BLUS30675", "name": "Def Jam Rapstar (NTSC-U)"}, {"id": "BLUS30678", "name": "Rango (NTSC-U)"}, {"id": "BLUS30681", "name": "Transformers: Fall of Cybertron (NTSC-U)"}, {"id": "BLUS30682", "name": "Grand Theft Auto IV: The Complete Edition (NTSC-U)"}, {"id": "BLUS30686", "name": "Record of Agarest War Zero (NTSC-U)"}, {"id": "BLUS30687", "name": "Far Cry 3 (NTSC-U)"}, {"id": "BLUS30688", "name": "Earth Defense Force: Insect Armageddon (NTSC-U)"}, {"id": "BLUS30693", "name": "UFC Personal Trainer: The Ultimate Fitness System (NTSC-U)"}, {"id": "BLUS30694", "name": "Mayhem (NTSC-U)"}, {"id": "BLUS30695", "name": "Call of Duty: Modern Warfare Collection (NTSC-U)"}, {"id": "BLUS30696", "name": "NBA Jam (NTSC-U)"}, {"id": "BLUS30697", "name": "Michael Jackson: The Experience (NTSC-U)"}, {"id": "BLUS30700", "name": "Naughty Bear Gold Edition (NTSC-U)"}, {"id": "BLUS30701", "name": "Hyperdimension Neptunia (Special Edition) (NTSC-U)"}, {"id": "BLUS30703", "name": "Dynasty Warriors: Gundam 3 (NTSC-U)"}, {"id": "BLUS30704", "name": "Operation Flashpoint: Red River (NTSC-U)"}, {"id": "BLUS30705", "name": "EA Sports Masters (NTSC-U)"}, {"id": "BLUS30706", "name": "Supremacy MMA (NTSC-U)"}, {"id": "BLUS30707", "name": "MX vs. ATV Alive (NTSC-U)"}, {"id": "BLUS30709", "name": "Transformers: Dark of the Moon (NTSC-U)"}, {"id": "BLUS30710", "name": "Kingdoms of Amalur: Reckoning (NTSC-U)"}, {"id": "BLUS30711", "name": "Red Dead Redemption: Undead Nightmare Collection (NTSC-U)"}, {"id": "BLUS30712", "name": "Mafia II (NTSC-U)"}, {"id": "BLUS30714", "name": "Marvel vs. Capcom 3: Fate of Two Worlds (NTSC-U)"}, {"id": "BLUS30716", "name": "Days of Thunder: NASCAR Edition (NTSC-U)"}, {"id": "BLUS30717", "name": "Dead Space 2 (NTSC-U)"}, {"id": "BLUS30718", "name": "The Tomb Raider Trilogy (NTSC-U)"}, {"id": "BLUS30719", "name": "Major League Baseball 2K11 (NTSC-U)"}, {"id": "BLUS30720", "name": "Dragon's Dogma (NTSC-U)"}, {"id": "BLUS30721", "name": "Asura's Wrath (NTSC-U)"}, {"id": "BLUS30722", "name": "Street Fighter X Tekken (NTSC-U)"}, {"id": "BLUS30723", "name": "DmC: Devil May Cry (NTSC-U)"}, {"id": "BLUS30724", "name": "Colin McRae: DiRT 3 (NTSC-U)"}, {"id": "BLUS30725", "name": "Cars 2: The Video Game (NTSC-U)"}, {"id": "BLUS30726", "name": "Phineas and Ferb: Across the 2nd Dimension (NTSC-U)"}, {"id": "BLUS30727", "name": "Disgaea 4: A Promise Unforgotten (NTSC-U)"}, {"id": "BLUS30729", "name": "Binary Domain (NTSC-U)"}, {"id": "BLUS30731", "name": "Puss in Boots (NTSC-U)"}, {"id": "BLUS30732", "name": "Portal 2 (NTSC-U)"}, {"id": "BLUS30733", "name": "Deus Ex Human Evolution Augmented Edition (NTSC-U)"}, {"id": "BLUS30734", "name": "Dance On Broadway (NTSC-U)"}, {"id": "BLUS30735", "name": "Atelier Totori: The Adventurer of Arland (NTSC-U)"}, {"id": "BLUS30736", "name": "SoulCalibur V (NTSC-U)"}, {"id": "BLUS30738", "name": "UFC Undisputed Three (NTSC-U)"}, {"id": "BLUS30739", "name": "Top Gun (NTSC-U)"}, {"id": "BLUS30743", "name": "Darkness II (Limited Edition) (NTSC-U)"}, {"id": "BLUS30744", "name": "LEGO Pirates of the Caribbean: The Video Game (NTSC-U)"}, {"id": "BLUS30745", "name": "NCAA Football 12 (NTSC-U)"}, {"id": "BLUS30746", "name": "X-Men: Destiny (NTSC-U)"}, {"id": "BLUS30747", "name": "The Adventures of Tintin: The Game (NTSC-U)"}, {"id": "BLUS30748", "name": "Record of Agarest War Zero (Limited Edition) (NTSC-U)"}, {"id": "BLUS30750", "name": "Resident Evil: Operation Raccoon City (NTSC-U)"}, {"id": "BLUS30751", "name": "Duke Nukem Forever: Balls of Steel Edition (NTSC-U)"}, {"id": "BLUS30752", "name": "Tiger Woods PGA Tour 12 (NTSC-U)"}, {"id": "BLUS30753", "name": "Generator Rex Agent Of Providence (NTSC-U)"}, {"id": "BLUS30754", "name": "Prince of Persia Trilogy 3D (NTSC-U)"}, {"id": "BLUS30755", "name": "GoldenEye 007: Reloaded (NTSC-U)"}, {"id": "BLUS30756", "name": "Prototype 2 (NTSC-U)"}, {"id": "BLUS30757", "name": "Need for Speed: The Run (NTSC-U)"}, {"id": "BLUS30758", "name": "Red Dead Redemption: Game of the Year Edition (NTSC-U)"}, {"id": "BLUS30759", "name": "Rune Factory: Tides of Destiny (NTSC-U)"}, {"id": "BLUS30760", "name": "Spider Man Edge Of Time (NTSC-U)"}, {"id": "BLUS30761", "name": "Tom Clancy's Splinter Cell Trilogy (NTSC-U)"}, {"id": "BLUS30762", "name": "Battlefield 3 (NTSC-U)"}, {"id": "BLUS30763", "name": "Dead Rising 2: Off the Record (NTSC-U)"}, {"id": "BLUS30764", "name": "Devil May Cry HD Collection (NTSC-U)"}, {"id": "BLUS30765", "name": "Wipeout 2 (NTSC-U)"}, {"id": "BLUS30766", "name": "Tekken Hybrid (NTSC-U)"}, {"id": "BLUS30767", "name": "Dragon's Crown (NTSC-U)"}, {"id": "BLUS30768", "name": "Harry Potter And The Deathly Hallows Part Two (NTSC-U)"}, {"id": "BLUS30769", "name": "Bleach: Soul Resurreccion (NTSC-U)"}, {"id": "BLUS30770", "name": "Madden NFL 12 (NTSC-U)"}, {"id": "BLUS30772", "name": "F1 2011 (NTSC-U)"}, {"id": "BLUS30773", "name": "Disney Universe (NTSC-U)"}, {"id": "BLUS30774", "name": "The House of the Dead: Overkill Extended Cut (NTSC-U)"}, {"id": "BLUS30775", "name": "NFL Blitz (NTSC-U)"}, {"id": "BLUS30776", "name": "Final Fantasy XIII-2 (NTSC-U)"}, {"id": "BLUS30777", "name": "Ridge Racer Unbounded (NTSC-U)"}, {"id": "BLUS30778", "name": "The Elder Scrolls V: Skyrim (NTSC-U)"}, {"id": "BLUS30779", "name": "Skylanders Spyro's Adventure (NTSC-U)"}, {"id": "BLUS30780", "name": "The Bureau: XCOM Declassified (NTSC-U)"}, {"id": "BLUS30782", "name": "Dark Souls (NTSC-U)"}, {"id": "BLUS30783", "name": "Disgaea 4: A Promise Unforgotten (Premium Edition) (NTSC-U)"}, {"id": "BLUS30784", "name": "White Knight Chronicles II (NTSC-U)"}, {"id": "BLUS30785", "name": "Get Up And Dance (NTSC-U)"}, {"id": "BLUS30786", "name": "Grease Dance (NTSC-U)"}, {"id": "BLUS30787", "name": "Ultimate Marvel vs. Capcom 3 (NTSC-U)"}, {"id": "BLUS30790", "name": "Dead Island (NTSC-U)"}, {"id": "BLUS30791", "name": "NHL 12 (NTSC-U)"}, {"id": "BLUS30792", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (NTSC-U)"}, {"id": "BLUS30793", "name": "Super Street Fighter IV : Arcade Edition (NTSC-U)"}, {"id": "BLUS30794", "name": "LEGO Harry Potter: Years 5-7 (NTSC-U)"}, {"id": "BLUS30795", "name": "Call of Juarez: The Cartel (NTSC-U)"}, {"id": "BLUS30796", "name": "Sniper Ghost Warrior (NTSC-U)"}, {"id": "BLUS30798", "name": "Sniper Elite V2 (NTSC-U)"}, {"id": "BLUS30799", "name": "SuperStar Kartz (NTSC-U)"}, {"id": "BLUS30800", "name": "Risen 2: Dark Waters (NTSC-U)"}, {"id": "BLUS30801", "name": "Thief (NTSC-U)"}, {"id": "BLUS30802", "name": "Family Game Night 4: The Game Show (NTSC-U)"}, {"id": "BLUS30803", "name": "The Sims 3: Pets (NTSC-U)"}, {"id": "BLUS30804", "name": "Syndicate (NTSC-U)"}, {"id": "BLUS30805", "name": "Pro Evolution Soccer 2012 (NTSC-U)"}, {"id": "BLUS30806", "name": "NASCAR Unleashed (NTSC-U)"}, {"id": "BLUS30807", "name": "Dark Souls (NTSC-U)"}, {"id": "BLUS30808", "name": "Assassin's Creed: Revelations (NTSC-U)"}, {"id": "BLUS30809", "name": "FIFA Soccer 12 (NTSC-U)"}, {"id": "BLUS30810", "name": "Silent Hill: HD Collection (NTSC-U)"}, {"id": "BLUS30811", "name": "Catherine (NTSC-U)"}, {"id": "BLUS30813", "name": "Marvel Super Hero Squad Comic Combat (NTSC-U)"}, {"id": "BLUS30815", "name": "Adidas miCoach (NTSC-U)"}, {"id": "BLUS30816", "name": "Just Dance Kids Two (NTSC-U)"}, {"id": "BLUS30817", "name": "Batman: Arkham City (NTSC-U)"}, {"id": "BLUS30819", "name": "Cabela's Survival: Shadows of Katmai (NTSC-U)"}, {"id": "BLUS30821", "name": "uDraw Studio Instant Artist (NTSC-U)"}, {"id": "BLUS30822", "name": "Ben 10: Galactic Racing (NTSC-U)"}, {"id": "BLUS30823", "name": "Dragon Ball Z: Ultimate Tenkaichi (NTSC-U)"}, {"id": "BLUS30824", "name": "Family Guy: Back to the Multiverse (NTSC-U)"}, {"id": "BLUS30825", "name": "Pictionary: Ultimate Edition (NTSC-U)"}, {"id": "BLUS30826", "name": "Yakuza: Dead Souls (NTSC-U)"}, {"id": "BLUS30828", "name": "The Amazing Spider-Man (NTSC-U)"}, {"id": "BLUS30829", "name": "Darksiders II (NTSC-U)"}, {"id": "BLUS30830", "name": "NBA 2K12 (NTSC-U)"}, {"id": "BLUS30831", "name": "Birds of Steel (NTSC-U)"}, {"id": "BLUS30832", "name": "Alien: Isolation (NTSC-U)"}, {"id": "BLUS30833", "name": "Blades of Time (NTSC-U)"}, {"id": "BLUS30834", "name": "Cartoon Network: Punch Time Explosion XL (NTSC-U)"}, {"id": "BLUS30835", "name": "Hitman Absolution (NTSC-U)"}, {"id": "BLUS30836", "name": "Rayman Origins (NTSC-U)"}, {"id": "BLUS30837", "name": "LEGO Batman 2: DC Super Heroes (NTSC-U)"}, {"id": "BLUS30838", "name": "Call of Duty: Modern Warfare 3 (NTSC-U)"}, {"id": "BLUS30839", "name": "Sonic & All-Stars Racing Transformed (NTSC-U)"}, {"id": "BLUS30840", "name": "NCIS (NTSC-U)"}, {"id": "BLUS30841", "name": "WWE 12 (NTSC-U)"}, {"id": "BLUS30842", "name": "Test Drive: Ferrari Racing Legends (NTSC-U)"}, {"id": "BLUS30843", "name": "Cabela's Big Game Hunter 2012 (NTSC-U)"}, {"id": "BLUS30844", "name": "Cabela's Adventure Camp (NTSC-U)"}, {"id": "BLUS30845", "name": "The King of Fighters XIII (NTSC-U)"}, {"id": "BLUS30846", "name": "Happy Feet Two (NTSC-U)"}, {"id": "BLUS30847", "name": "Metal Gear Solid: HD Collection (NTSC-U)"}, {"id": "BLUS30849", "name": "SSX (NTSC-U)"}, {"id": "BLUS30850", "name": "Air Conflicts: Secret Wars (NTSC-U)"}, {"id": "BLUS30851", "name": "National Geographic Challenge! (NTSC-U)"}, {"id": "BLUS30852", "name": "Plants vs. Zombies (NTSC-U)"}, {"id": "BLUS30853", "name": "Mass Effect 3 (NTSC-U)"}, {"id": "BLUS30854", "name": "Tiger Woods PGA Tour 13 (NTSC-U)"}, {"id": "BLUS30855", "name": "Resident Evil 6 (NTSC-U)"}, {"id": "BLUS30856", "name": "Heavy Fire: Afghanistan (NTSC-U)"}, {"id": "BLUS30858", "name": "Top Gun: Hard Lock (NTSC-U)"}, {"id": "BLUS30859", "name": "Mass Effect 3 (N7 Collector's Edition) (NTSC-U)"}, {"id": "BLUS30862", "name": "Aliens: Colonial Marines (NTSC-U)"}, {"id": "BLUS30863", "name": "Champion Jockey: G1 Jockey & Gallop Racer (NTSC-U)"}, {"id": "BLUS30864", "name": "Rocksmith (NTSC-U)"}, {"id": "BLUS30865", "name": "Bejeweled 3 (NTSC-U)"}, {"id": "BLUS30866", "name": "The Elder Scrolls V Skyrim (NTSC-U)"}, {"id": "BLUS30867", "name": "Atelier Totori: The Adventurer of Arland (Premium Edition) (NTSC-U)"}, {"id": "BLUS30868", "name": "Metro Last Light (NTSC-U)"}, {"id": "BLUS30869", "name": "BlazBlue: Continuum Shift: Extend (NTSC-U)"}, {"id": "BLUS30873", "name": "Dynasty Warriors 7: Xtreme Legends (NTSC-U)"}, {"id": "BLUS30876", "name": "Sacred 3 (NTSC-U)"}, {"id": "BLUS30881", "name": "Record of Agarest War 2 (NTSC-U)"}, {"id": "BLUS30882", "name": "FIFA Street (NTSC-U)"}, {"id": "BLUS30886", "name": "Back to the Future: The Game (NTSC-U)"}, {"id": "BLUS30887", "name": "Call of Duty : Modern Warfare 3 (NTSC-U)"}, {"id": "BLUS30888", "name": "Fallout New Vegas: Ultimate Edition (NTSC-U)"}, {"id": "BLUS30891", "name": "Tiger Woods PGA Tour 13 The Masters (NTSC-U)"}, {"id": "BLUS30892", "name": "Tekken Hybrid (Limited Edition) (NTSC-U)"}, {"id": "BLUS30897", "name": "Jimmie Johnson's Anything With an Engine (NTSC-U)"}, {"id": "BLUS30898", "name": "L.A. Noire - The Complete Edition (NTSC-U)"}, {"id": "BLUS30899", "name": "Just Dance Three (NTSC-U)"}, {"id": "BLUS30901", "name": "Hyperdimension Neptunia mk2 (NTSC-U)"}, {"id": "BLUS30902", "name": "Mortal Kombat Komplete Edition (NTSC-U)"}, {"id": "BLUS30903", "name": "Tales of Graces F (NTSC-U)"}, {"id": "BLUS30904", "name": "Order Up (NTSC-U)"}, {"id": "BLUS30905", "name": "Assassin's Creed: Revelations (NTSC-U)"}, {"id": "BLUS30906", "name": "Metal Gear Solid HD Collection (NTSC-U)"}, {"id": "BLUS30907", "name": "Brave: The Video Game (NTSC-U)"}, {"id": "BLUS30911", "name": "Deadliest Warrior Ancient Combat (NTSC-U)"}, {"id": "BLUS30912", "name": "Street Fighter X Tekken (Special Edition) (NTSC-U)"}, {"id": "BLUS30913", "name": "Battleship (NTSC-U)"}, {"id": "BLUS30916", "name": "Ninja Gaiden 3 (NTSC-U)"}, {"id": "BLUS30917", "name": "Lollipop Chainsaw (NTSC-U)"}, {"id": "BLUS30918", "name": "SoulCalibur V (Collector's Edition) (NTSC-U)"}, {"id": "BLUS30919", "name": "Sniper: Ghost Warrior 2 (NTSC-U)"}, {"id": "BLUS30922", "name": "Men In Black: Alien Crisis (NTSC-U)"}, {"id": "BLUS30923", "name": "Wheel of Fortune (NTSC-U)"}, {"id": "BLUS30924", "name": "Jeopardy! (NTSC-U)"}, {"id": "BLUS30925", "name": "Final Fantasy XIII-2 (Limited Collector's Edition) (NTSC-U)"}, {"id": "BLUS30927", "name": "Sleeping Dogs (NTSC-U)"}, {"id": "BLUS30929", "name": "Resident Evil: Operation Raccoon City (NTSC-U)"}, {"id": "BLUS30931", "name": "Major League Baseball 2K12 (NTSC-U)"}, {"id": "BLUS30932", "name": "NASCAR The Game: Inside Line (NTSC-U)"}, {"id": "BLUS30935", "name": "Star Trek (NTSC-U)"}, {"id": "BLUS30936", "name": "Defiance (NTSC-U)"}, {"id": "BLUS30937", "name": "Zone of the Enders: HD Edition (NTSC-U)"}, {"id": "BLUS30939", "name": "Game of Thrones (NTSC-U)"}, {"id": "BLUS30940", "name": "Port Royale 3: Pirates & Merchants (NTSC-U)"}, {"id": "BLUS30941", "name": "Atelier Meruru: The Apprentice of Arland (NTSC-U)"}, {"id": "BLUS30942", "name": "Hitman HD Trilogy (NTSC-U)"}, {"id": "BLUS30943", "name": "XCOM: Enemy Unknown (NTSC-U)"}, {"id": "BLUS30945", "name": "Deadliest Warrior Ancient Combat (NTSC-U)"}, {"id": "BLUS30946", "name": "BlazBlue: Continuum Shift Extend (NTSC-U)"}, {"id": "BLUS30947", "name": "Ni No Kuni: Wrath of the White Witch (NTSC-U)"}, {"id": "BLUS30948", "name": "NCAA Football 13 (NTSC-U)"}, {"id": "BLUS30962", "name": "Epic Mickey Two The Power of Two (NTSC-U)"}, {"id": "BLUS30963", "name": "LEGO The Lord of the Rings (NTSC-U)"}, {"id": "BLUS30964", "name": "The Witch and the Hundred Knight (NTSC-U)"}, {"id": "BLUS30965", "name": "Prototype 2 (NTSC-U)"}, {"id": "BLUS30966", "name": "Dragon Ball Z Budokai HD Collection (NTSC-U)"}, {"id": "BLUS30967", "name": "Ninja Gaiden Three (NTSC-U)"}, {"id": "BLUS30969", "name": "NBA Jam (NTSC-U)"}, {"id": "BLUS30971", "name": "Dead Or Alive Five (NTSC-U)"}, {"id": "BLUS30973", "name": "Madden NFL 13 (NTSC-U)"}, {"id": "BLUS30975", "name": "Colin McRae: DiRT 3 (Complete Edition) (NTSC-U)"}, {"id": "BLUS30976", "name": "Crysis 3 (NTSC-U)"}, {"id": "BLUS30977", "name": "Disney Infinity (NTSC-U)"}, {"id": "BLUS30978", "name": "Batman: Arkham City (Game of the Year Edition) (NTSC-U)"}, {"id": "BLUS30980", "name": "Madagascar Three The Video Game (NTSC-U)"}, {"id": "BLUS30982", "name": "Borderlands 2 (NTSC-U)"}, {"id": "BLUS30983", "name": "007 Legends (NTSC-U)"}, {"id": "BLUS30985", "name": "Persona 4 Arena (NTSC-U)"}, {"id": "BLUS30990", "name": "Medal of Honor: Warfighter (NTSC-U)"}, {"id": "BLUS30991", "name": "Assassin's Creed III (NTSC-U)"}, {"id": "BLUS30996", "name": "Enemy Front (NTSC-U)"}, {"id": "BLUS30997", "name": "Dragon Age: Inquisition (NTSC-U)"}, {"id": "BLUS30998", "name": "FIFA Soccer 13 (NTSC-U)"}, {"id": "BLUS30999", "name": "Castlevania: Lords of Shadow 2 (NTSC-U)"}, {"id": "BLUS31000", "name": "Heavy Fire: Shattered Spear (NTSC-U)"}, {"id": "BLUS31002", "name": "Tekken Tag Tournament 2 (NTSC-U)"}, {"id": "BLUS31003", "name": "NHL 13 (NTSC-U)"}, {"id": "BLUS31005", "name": "Resident Evil 6 Anthology (NTSC-U)"}, {"id": "BLUS31006", "name": "Tales of Xillia (NTSC-U)"}, {"id": "BLUS31007", "name": "Mugen Souls (NTSC-U)"}, {"id": "BLUS31009", "name": "Cabela's Dangerous Hunts 2013 (NTSC-U)"}, {"id": "BLUS31010", "name": "Need for Speed: Most Wanted (NTSC-U)"}, {"id": "BLUS31011", "name": "Call of Duty: Black Ops II (NTSC-U)"}, {"id": "BLUS31012", "name": "Remember Me (NTSC-U)"}, {"id": "BLUS31014", "name": "F1 2012 (NTSC-U)"}, {"id": "BLUS31015", "name": "WWE 13 (NTSC-U)"}, {"id": "BLUS31016", "name": "Record of Agarest War 2 (NTSC-U)"}, {"id": "BLUS31017", "name": "Ben 10 Omniverse (NTSC-U)"}, {"id": "BLUS31018", "name": "Injustice: Gods Among Us (NTSC-U)"}, {"id": "BLUS31019", "name": "Damage Inc.: Pacific Squadron WWII (NTSC-U)"}, {"id": "BLUS31020", "name": "Lost Planet 3 (NTSC-U)"}, {"id": "BLUS31024", "name": "Doom 3 (NTSC-U)"}, {"id": "BLUS31025", "name": "Tom Clancy's Splinter Cell: Blacklist (NTSC-U)"}, {"id": "BLUS31026", "name": "Dead Island (NTSC-U)"}, {"id": "BLUS31028", "name": "NBA 2K13 (NTSC-U)"}, {"id": "BLUS31029", "name": "Pro Evolution Soccer 2013 (NTSC-U)"}, {"id": "BLUS31030", "name": "Cabela's Hunting Expeditions (NTSC-U)"}, {"id": "BLUS31031", "name": "Rocksmith (NTSC-U)"}, {"id": "BLUS31033", "name": "Just Dance 4 (NTSC-U)"}, {"id": "BLUS31034", "name": "NBA 2K13 (Dynasty Edition) (NTSC-U)"}, {"id": "BLUS31035", "name": "Assassin's Creed III (NTSC-U)"}, {"id": "BLUS31036", "name": "Tomb Raider (NTSC-U)"}, {"id": "BLUS31037", "name": "Street Fighter 25th Anniversary Collector's Set (NTSC-U)"}, {"id": "BLUS31039", "name": "Ni no Kuni: Wrath of the White Witch (NTSC-U)"}, {"id": "BLUS31040", "name": "Fuse (NTSC-U)"}, {"id": "BLUS31043", "name": "Damage Inc.: Pacific Squadron WWII (Collector's Edition) (NTSC-U)"}, {"id": "BLUS31045", "name": "Metal Gear Rising: Revengence (NTSC-U)"}, {"id": "BLUS31046", "name": "The Testement of Sherlock Homes (NTSC-U)"}, {"id": "BLUS31048", "name": "Toy Story Mania! (NTSC-U)"}, {"id": "BLUS31049", "name": "Skylanders Giants (NTSC-U)"}, {"id": "BLUS31050", "name": "FIFA 13 (NTSC-U)"}, {"id": "BLUS31051", "name": "Resident Evil: Revelations (NTSC-U)"}, {"id": "BLUS31052", "name": "Dead Island Riptide (NTSC-U)"}, {"id": "BLUS31053", "name": "Dead Space 3 (NTSC-U)"}, {"id": "BLUS31054", "name": "Angry Birds Trilogy (NTSC-U)"}, {"id": "BLUS31055", "name": "GRID 2 (NTSC-U)"}, {"id": "BLUS31059", "name": "Middle-earth: Shadow of Mordor (NTSC-U)"}, {"id": "BLUS31062", "name": "Saints Row The Third (NTSC-U)"}, {"id": "BLUS31063", "name": "Tiger Woods PGA Tour 14 (NTSC-U)"}, {"id": "BLUS31064", "name": "Deadly Premonition: The Director's Cut (NTSC-U)"}, {"id": "BLUS31065", "name": "The Walking Dead: Survival Instinct (NTSC-U)"}, {"id": "BLUS31066", "name": "Naruto Shippuden Ultimate Storm Ninja 3 (NTSC-U)"}, {"id": "BLUS31067", "name": "Rise of the Guardians (NTSC-U)"}, {"id": "BLUS31068", "name": "Battlefield 3 (NTSC-U)"}, {"id": "BLUS31069", "name": "Army of Two: The Devil's Cartel (NTSC-U)"}, {"id": "BLUS31075", "name": "Tiger Woods PGA Tour 14 (Masters Historic Edition) (NTSC-U)"}, {"id": "BLUS31076", "name": "Skylanders: Swap Force (NTSC-U)"}, {"id": "BLUS31079", "name": "Legends Of War Patton (NTSC-U)"}, {"id": "BLUS31080", "name": "Call of Duty: Black Ops II (Hardened Edition) (NTSC-U)"}, {"id": "BLUS31083", "name": "Midway Arcade Origins (NTSC-U)"}, {"id": "BLUS31087", "name": "Street Fighter 25th Anniversary Collector's Set (NTSC-U)"}, {"id": "BLUS31139", "name": "Mass Effect Trilogy (NTSC-U)"}, {"id": "BLUS31140", "name": "Call of Duty: Black Ops II (NTSC-U)"}, {"id": "BLUS31141", "name": "Call of Duty: Black Ops II (NTSC-U)"}, {"id": "BLUS31142", "name": "Hitman: Absolution (NTSC-U)"}, {"id": "BLUS31143", "name": "Naughty Bear: Double Trouble! (NTSC-U)"}, {"id": "BLUS31144", "name": "The Walking Dead: A Telltale Games Series (NTSC-U)"}, {"id": "BLUS31145", "name": "Assassin's Creed: Ezio Trilogy (NTSC-U)"}, {"id": "BLUS31146", "name": "Deadpool (NTSC-U)"}, {"id": "BLUS31147", "name": "Batman: Arkham Origins (NTSC-U)"}, {"id": "BLUS31148", "name": "BandFuse: Rock Legends (NTSC-U)"}, {"id": "BLUS31149", "name": "BioShock: Ultimate Rapture Edition (NTSC-U)"}, {"id": "BLUS31150", "name": "Hyperdimension Neptunia Victory (NTSC-U)"}, {"id": "BLUS31151", "name": "The Smurfs 2 (NTSC-U)"}, {"id": "BLUS31152", "name": "Atelier Ayesha: The Alchemist of Dusk (NTSC-U)"}, {"id": "BLUS31153", "name": "Fast and Furious : Showdown (NTSC-U)"}, {"id": "BLUS31155", "name": "Dragon's Dogma: Dark Arisen (NTSC-U)"}, {"id": "BLUS31156", "name": "Grand Theft Auto V (NTSC-U)"}, {"id": "BLUS31158", "name": "Arcania: The Complete Tale (NTSC-U)"}, {"id": "BLUS31159", "name": "NCAA Football 14 (NTSC-U)"}, {"id": "BLUS31160", "name": "Earth Defense Force 2025 (NTSC-U)"}, {"id": "BLUS31161", "name": "LEGO Marvel Super Heroes (NTSC-U)"}, {"id": "BLUS31162", "name": "Battlefield 4 (NTSC-U)"}, {"id": "BLUS31164", "name": "Lightning Returns: Final Fantasy XIII (NTSC-U)"}, {"id": "BLUS31166", "name": "Murdered: Soul Suspect (NTSC-U)"}, {"id": "BLUS31167", "name": "Major League Baseball 2K13 (NTSC-U)"}, {"id": "BLUS31168", "name": "WRC 3: Fia World Rally Championship (NTSC-U)"}, {"id": "BLUS31169", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-U)"}, {"id": "BLUS31170", "name": "Young Justice: Legacy (NTSC-U)"}, {"id": "BLUS31171", "name": "Turbo : Super Stunt Squad (NTSC-U)"}, {"id": "BLUS31172", "name": "Tales of Symphonia Chronicles (NTSC-U)"}, {"id": "BLUS31174", "name": "Port Royale 3: Gold Edition (NTSC-U)"}, {"id": "BLUS31175", "name": "Ninja Gaiden 3: Razor's Edge (NTSC-U)"}, {"id": "BLUS31176", "name": "Watch Dogs (NTSC-U)"}, {"id": "BLUS31178", "name": "Madden NFL 25 (NTSC-U)"}, {"id": "BLUS31179", "name": "NHL 14 (NTSC-U)"}, {"id": "BLUS31180", "name": "XCOM: Enemy Within (NTSC-U)"}, {"id": "BLUS31181", "name": "Destiny (NTSC-U)"}, {"id": "BLUS31182", "name": "Rocksmith 2014 Edition (NTSC-U)"}, {"id": "BLUS31183", "name": "Rayman Legends (NTSC-U)"}, {"id": "BLUS31184", "name": "Metro: Last Light (NTSC-U)"}, {"id": "BLUS31185", "name": "Dynasty Warriors 8: Xtreme Legends (NTSC-U)"}, {"id": "BLUS31186", "name": "Killer Is Dead (NTSC-U)"}, {"id": "BLUS31187", "name": "Hakuoki: Stories of the Shinsengumi (NTSC-U)"}, {"id": "BLUS31188", "name": "Diablo III (NTSC-U)"}, {"id": "BLUS31189", "name": "FIFA 14 (NTSC-U)"}, {"id": "BLUS31191", "name": "South Park: The Stick of Truth (NTSC-U)"}, {"id": "BLUS31193", "name": "Assassin's Creed IV: Black Flag (NTSC-U)"}, {"id": "BLUS31194", "name": "Armored Core: Verdict Day (NTSC-U)"}, {"id": "BLUS31195", "name": "Falling Skies: The Game (NTSC-U)"}, {"id": "BLUS31197", "name": "Drakengard 3 (NTSC-U)"}, {"id": "BLUS31198", "name": "El Chavo Kart (NTSC-U)"}, {"id": "BLUS31200", "name": "Hot Wheels: World's Best Driver (NTSC-U)"}, {"id": "BLUS31201", "name": "Need for Speed: Rivals (NTSC-U)"}, {"id": "BLUS31202", "name": "The Elder Scrolls V (NTSC-U)"}, {"id": "BLUS31203", "name": "Yaiba: Ninja Gaiden Z (NTSC-U)"}, {"id": "BLUS31204", "name": "NBA 2K14 (NTSC-U)"}, {"id": "BLUS31205", "name": "Saints Row IV (NTSC-U)"}, {"id": "BLUS31207", "name": "Batman: Arkham Origins (NTSC-U)"}, {"id": "BLUS31210", "name": "Air Conflicts: Pacific Carriers (NTSC-U)"}, {"id": "BLUS31211", "name": "Final Fantasy X / X-2 HD Remaster (NTSC-U)"}, {"id": "BLUS31212", "name": "Kingdom Hearts HD 1.5 ReMIX (NTSC-U)"}, {"id": "BLUS31213", "name": "BlazBlue: Chrono Phantasma (NTSC-U)"}, {"id": "BLUS31214", "name": "Adventure Time: Explore the Dungeon Because I DON'T KNOW! (NTSC-U)"}, {"id": "BLUS31215", "name": "Ben 10 Omniverse 2 (NTSC-U)"}, {"id": "BLUS31216", "name": "Dead or Alive 5 Ultimate (NTSC-U)"}, {"id": "BLUS31217", "name": "Pac-Man and the Ghostly Adventures (NTSC-U)"}, {"id": "BLUS31218", "name": "Ultra Street Fighter IV (NTSC-U)"}, {"id": "BLUS31219", "name": "Payday 2 (NTSC-U)"}, {"id": "BLUS31220", "name": "Wolfenstein: The New Order (NTSC-U)"}, {"id": "BLUS31221", "name": "Diablo III (NTSC-U)"}, {"id": "BLUS31270", "name": "Call of Duty: Ghosts (NTSC-U)"}, {"id": "BLUS31273", "name": "Angry Birds Star Wars (NTSC-U)"}, {"id": "BLUS31274", "name": "Cabela's Big Game Hunter: Pro Hunts (NTSC-U)"}, {"id": "BLUS31275", "name": "Cabela's African Adventures (NTSC-U)"}, {"id": "BLUS31276", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge (NTSC-U)"}, {"id": "BLUS31277", "name": "WWE 2K14 (NTSC-U)"}, {"id": "BLUS31312", "name": "The Guided Fate Paradox (NTSC-U)"}, {"id": "BLUS31313", "name": "Disgaea D2: A Brighter Darkness (NTSC-U)"}, {"id": "BLUS31314", "name": "Dragon Ball Z: Battle of Z (NTSC-U)"}, {"id": "BLUS31315", "name": "Just Dance 2014 (NTSC-U)"}, {"id": "BLUS31319", "name": "Hatsune Miku: Project Diva F (NTSC-U)"}, {"id": "BLUS31320", "name": "Air Conflicts: Vietnam (NTSC-U)"}, {"id": "BLUS31321", "name": "AquaPazza: AquaPlus Dream Match (NTSC-U)"}, {"id": "BLUS31322", "name": "Pro Evolution Soccer 2014 (NTSC-U)"}, {"id": "BLUS31324", "name": "Transformers: Rise of the Dark Spark (NTSC-U)"}, {"id": "BLUS31343", "name": "Payday 2 (Collector's Edition) (NTSC-U)"}, {"id": "BLUS31345", "name": "Madden NFL 25 (Anniversary Edition) (NTSC-U)"}, {"id": "BLUS31350", "name": "Naruto Ultimate Ninja Storm 3 : Full Burst (NTSC-U)"}, {"id": "BLUS31351", "name": "Saints Row IV (Super Dangerous Wub Wub Edition) (NTSC-U)"}, {"id": "BLUS31352", "name": "Killer is Dead (NTSC-U)"}, {"id": "BLUS31354", "name": "Rocksmith 2014 Edition (NTSC-U)"}, {"id": "BLUS31364", "name": "Injustice: Gods Among Us - Ultimate Edition (NTSC-U)"}, {"id": "BLUS31366", "name": "Capcom Essentials (NTSC-U)"}, {"id": "BLUS31367", "name": "XBLAZE Code: Embryo (NTSC-U)"}, {"id": "BLUS31369", "name": "Metal Gear Solid V: Ground Zeroes (NTSC-U)"}, {"id": "BLUS31370", "name": "2K Essentials Collection (NTSC-U)"}, {"id": "BLUS31372", "name": "2K Power Pack (NTSC-U)"}, {"id": "BLUS31374", "name": "The Evil Within (NTSC-U)"}, {"id": "BLUS31377", "name": "The Walking Dead (NTSC-U)"}, {"id": "BLUS31378", "name": "NASCAR '14 (NTSC-U)"}, {"id": "BLUS31381", "name": "Farming Simulator (NTSC-U)"}, {"id": "BLUS31382", "name": "The Castlevania: Lords of Shadow Collection (NTSC-U)"}, {"id": "BLUS31386", "name": "Ragnarok Odyssey ACE (NTSC-U)"}, {"id": "BLUS31387", "name": "Rambo: The Video Game (NTSC-U)"}, {"id": "BLUS31388", "name": "How to Train Your Dragon 2 (NTSC-U)"}, {"id": "BLUS31389", "name": "2014 FIFA World Cup Brazil (NTSC-U)"}, {"id": "BLUS31391", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky (NTSC-U)"}, {"id": "BLUS31392", "name": "LEGO The Hobbit (NTSC-U)"}, {"id": "BLUS31393", "name": "Far Cry Compliation (NTSC-U)"}, {"id": "BLUS31396", "name": "Deception IV: Blood Ties (NTSC-U)"}, {"id": "BLUS31397", "name": "Tales of Xillia 2 (NTSC-U)"}, {"id": "BLUS31401", "name": "Sniper Elite III (NTSC-U)"}, {"id": "BLUS31402", "name": "Dynasty Warriors 8: Xtreme Legends (NTSC-U)"}, {"id": "BLUS31405", "name": "JoJo's Bizarre Adventure: All-Star Battle (NTSC-U)"}, {"id": "BLUS31406", "name": "South Park: The Stick of Truth (NTSC-U)"}, {"id": "BLUS31410", "name": "Plants vs. Zombies Garden Warfare (NTSC-U)"}, {"id": "BLUS31411", "name": "Bound by Flame (NTSC-U)"}, {"id": "BLUS31412", "name": "Sherlock Holmes : Crimes and Punishments (NTSC-U)"}, {"id": "BLUS31414", "name": "Borderlands 2 / Dishonored Bundle (NTSC-U)"}, {"id": "BLUS31415", "name": "The Elder Scrolls V: Skyrim / BioShock Infinite Bundle (NTSC-U)"}, {"id": "BLUS31417", "name": "Mugen Souls Z (NTSC-U)"}, {"id": "BLUS31418", "name": "Disney Infinity 2.0 (NTSC-U)"}, {"id": "BLUS31420", "name": "Far Cry 4 (NTSC-U)"}, {"id": "BLUS31422", "name": "Hakuoki: Stories of the Shinsengumi (Limited Edition) (NTSC-U)"}, {"id": "BLUS31423", "name": "Fairy Fencer F (NTSC-U)"}, {"id": "BLUS31424", "name": "Arcana Heart 3: LOVE MAX!!!!! (NTSC-U)"}, {"id": "BLUS31425", "name": "Akiba’s Trip: Undead & Undressed (NTSC-U)"}, {"id": "BLUS31426", "name": "Minecraft: PlayStation 3 Edition (NTSC-U)"}, {"id": "BLUS31427", "name": "One Piece: Unlimited World Red (NTSC-U)"}, {"id": "BLUS31428", "name": "Madden NFL 15 (NTSC-U)"}, {"id": "BLUS31431", "name": "Hatsune Miku: Project F 2nd (NTSC-U)"}, {"id": "BLUS31432", "name": "Risen 3: Titan Lords (NTSC-U)"}, {"id": "BLUS31433", "name": "Escape Dead Island (NTSC-U)"}, {"id": "BLUS31434", "name": "LEGO Batman 3 (NTSC-U)"}, {"id": "BLUS31435", "name": "Teenage Mutant Ninja Turtles: Danger of the Ooze (NTSC-U)"}, {"id": "BLUS31436", "name": "NHL 15 (NTSC-U)"}, {"id": "BLUS31437", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition (NTSC-U)"}, {"id": "BLUS31440", "name": "Battlefield: Hardline (NTSC-U)"}, {"id": "BLUS31441", "name": "Digimon All-Star Rumble (NTSC-U)"}, {"id": "BLUS31443", "name": "FIFA 15 (NTSC-U)"}, {"id": "BLUS31444", "name": "Resident Evil: Revelations 2 (NTSC-U)"}, {"id": "BLUS31445", "name": "Borderlands: The Pre-Sequel (NTSC-U)"}, {"id": "BLUS31446", "name": "Call of Duty: Advanced Warfare (NTSC-U)"}, {"id": "BLUS31448", "name": "Duck Dynasty (NTSC-U)"}, {"id": "BLUS31449", "name": "Atelier Rorona Plus: The Alchemist of Arland (NTSC-U)"}, {"id": "BLUS31450", "name": "Adventure Time: The Secret of the Nameless Kingdom (NTSC-U)"}, {"id": "BLUS31452", "name": "GRID Autosport (NTSC-U)"}, {"id": "BLUS31453", "name": "Natural Doctrine (NTSC-U)"}, {"id": "BLUS31454", "name": "Just Dance 2015 (NTSC-U)"}, {"id": "BLUS31455", "name": "MX vs ATV SUPERCROSS (NTSC-U)"}, {"id": "BLUS31456", "name": "NBA 2K15 (NTSC-U)"}, {"id": "BLUS31458", "name": "Pac-Man and the Ghostly Adventures 2 (NTSC-U)"}, {"id": "BLUS31460", "name": "Kingdom Hearts 2.5 HD ReMIX (NTSC-U)"}, {"id": "BLUS31461", "name": "Class of Heroes 2G (NTSC-U)"}, {"id": "BLUS31464", "name": "WWE 2K15 (NTSC-U)"}, {"id": "BLUS31465", "name": "Assassin's Creed: Rogue (NTSC-U)"}, {"id": "BLUS31466", "name": "Call of Duty: Advanced Warfare (NTSC-U)"}, {"id": "BLUS31467", "name": "Guilty Gear Xrd SIGN (NTSC-U)"}, {"id": "BLUS31469", "name": "Persona 4 Arena Ultimax (NTSC-U)"}, {"id": "BLUS31471", "name": "F1 2014 (NTSC-U)"}, {"id": "BLUS31474", "name": "Tokyo Twilight Ghost Hunters (NTSC-U)"}, {"id": "BLUS31476", "name": "Tears to Tiara II: Heir of the Overload (NTSC-U)"}, {"id": "BLUS31478", "name": "Ar nosurge: Ode to an Unborn Star (NTSC-U)"}, {"id": "BLUS31480", "name": "Pro Evolution Soccer 2015 (NTSC-U)"}, {"id": "BLUS31485", "name": "NHL 15 (Ultimate Edition) (NTSC-U)"}, {"id": "BLUS31488", "name": "The Walking Dead: Season 2 - A Telltale Games Series (NTSC-U)"}, {"id": "BLUS31489", "name": "The Wolf Among Us (NTSC-U)"}, {"id": "BLUS31491", "name": "Metal Gear Solid V: The Phantom Pain (NTSC-U)"}, {"id": "BLUS31496", "name": "Saints Row: Gat Out of Hell (NTSC-U)"}, {"id": "BLUS31500", "name": "The Awakened Fate: Ultimatum (NTSC-U)"}, {"id": "BLUS31507", "name": "Dragon Ball: Xenoverse (NTSC-U)"}, {"id": "BLUS31509", "name": "WRC 4: FIA World Rally Championship (NTSC-U)"}, {"id": "BLUS31513", "name": "BlazBlue: Chrono Phantasma Extend (NTSC-U)"}, {"id": "BLUS31521", "name": "Madden NFL 16 (NTSC-U)"}, {"id": "BLUS31522", "name": "Disney infinity 3.0 (NTSC-U)"}, {"id": "BLUS31523", "name": "Xblaze Lost Memories (NTSC-U)"}, {"id": "BLUS31525", "name": "Atelier Shallie: Alchemists of the Dusk Sea (NTSC-U)"}, {"id": "BLUS31535", "name": "Dengeki Bunko: Fighting Climax (NTSC-U)"}, {"id": "BLUS31540", "name": "NHL Legacy (NTSC-U)"}, {"id": "BLUS31542", "name": "NBA 2K16 (NTSC-U)"}, {"id": "BLUS31543", "name": "FIFA 16 (NTSC-U)"}, {"id": "BLUS31554", "name": "Lost Dimension (NTSC-U)"}, {"id": "BLUS31560", "name": "NASCAR 15 (NTSC-U)"}, {"id": "BLUS31564", "name": "Pro Evolution Soccer 2016 (NTSC-U)"}, {"id": "BLUS31565", "name": "WWE 2K16 (NTSC-U)"}, {"id": "BLUS31566", "name": "Transformers: Devastation (NTSC-U)"}, {"id": "BLUS31568", "name": "Tony Hawks Pro Skater 5 (NTSC-U)"}, {"id": "BLUS31572", "name": "The Legend of Heroes: Trails of Cold Steel (NTSC-U)"}, {"id": "BLUS31578", "name": "LEGO Star Wars: The Force Awakens (NTSC-U)"}, {"id": "BLUS31584", "name": "Grand Theft Auto: San Andreas (NTSC-U)"}, {"id": "BLUS31586", "name": "Tales from the Borderlands (NTSC-U)"}, {"id": "BLUS31587", "name": "Aegis of Earth: Protonovus Assault (NTSC-U)"}, {"id": "BLUS31588", "name": "Guilty Gear Xrd: Revelator (NTSC-U)"}, {"id": "BLUS31589", "name": "Madden NFL 17 (NTSC-U)"}, {"id": "BLUS31591", "name": "BlazBlue: Central Fiction (NTSC-U)"}, {"id": "BLUS31593", "name": "FIFA 17 (NTSC-U)"}, {"id": "BLUS31595", "name": "Just Dance 2017 (NTSC-U)"}, {"id": "BLUS31597", "name": "The Legend of Heroes: Trails of Cold Steel II (NTSC-U)"}, {"id": "BLUS31598", "name": "Pro Evolution Soccer 2017 (NTSC-U)"}, {"id": "BLUS31599", "name": "WWE 2K17 (NTSC-U)"}, {"id": "BLUS31601", "name": "Odin Sphere Leifthrasir (NTSC-U)"}, {"id": "BLUS31604", "name": "Persona 5 (NTSC-U)"}, {"id": "BLUS31610", "name": "FIFA 18 (NTSC-U)"}, {"id": "BLUS31612", "name": "Pro Evolution Soccer 2018 (NTSC-U)"}, {"id": "BLUS31613", "name": "Just Dance 2018 (NTSC-U)"}, {"id": "BLUS31614", "name": "NBA 2K18 (NTSC-U)"}, {"id": "BLUS31617", "name": "FIFA 19 (NTSC-U)"}, {"id": "BLUS34554", "name": "Get Fit With Me! B (NTSC-U)"}, {"id": "BLUS41003", "name": "BioShock Infinite (NTSC-U)"}, {"id": "BLUS41006", "name": "Rockstar Games Collection: Edition 1 (NTSC-U)"}, {"id": "BLUS41007", "name": "Zone of the Enders HD Collection - Limited Edition (Includes demo of Metal Gear Rising: Revengence) (NTSC-U)"}, {"id": "BLUS41017", "name": "Injustice: Gods Among Us (NTSC-U)"}, {"id": "BLUS41019", "name": "Grand Theft Auto V (Special Edition) (NTSC-U)"}, {"id": "BLUS41021", "name": "Metal Gear Rising Revengeance (Limited Edition) (NTSC-U)"}, {"id": "BLUS41023", "name": "Sniper 2 Ghost Warrior (NTSC-U)"}, {"id": "BLUS41024", "name": "LEGO Harry Potter: Years 1-4 (NTSC-U)"}, {"id": "BLUS41027", "name": "Mortal Kombat vs. DC Universe (NTSC-U)"}, {"id": "BLUS41033", "name": "Metal Gear Solid: The Legacy Collection (NTSC-U)"}, {"id": "BLUS41034", "name": "Terraria (Collector's Edition) (NTSC-U)"}, {"id": "BLUS41035", "name": "Assassin's Creed IV: Black Flag (NTSC-U)"}, {"id": "BLUS41038", "name": "Dishonored (NTSC-U)"}, {"id": "BLUS41042", "name": "Magus (NTSC-U)"}, {"id": "BLUS41044", "name": "The Amazing Spider-Man 2 (NTSC-U)"}, {"id": "BLUS41045", "name": "Dark Souls II (NTSC-U)"}, {"id": "BLUS82001", "name": "Borderlands 2 (NTSC-U)"}, {"id": "BLUS83009", "name": "Metal Gear Solid: The Legacy Collection (NTSC-U)"}, {"id": "CDMAN1234", "name": "CD-Man Emulator"}, {"id": "CHET12345", "name": "Cheat Disc"}, {"id": "CNDR00001", "name": "Solar"}, {"id": "CNDR00002", "name": "Condor Updater"}, {"id": "CPCS01100", "name": "Dragon's Dogma: Dark Arisen (Special Package)"}, {"id": "CUSA01364", "name": "BlazBlue: Chrono Phantasma Extend"}, {"id": "DIENSPOOF", "name": "Spoofer"}, {"id": "ELONLOREP", "name": "Elongated Reptile"}, {"id": "EUAE00829", "name": "E-UAE: Amiga Emulator"}, {"id": "FBAN00000", "name": "FBA Next Emulator"}, {"id": "FCEU90000", "name": "FCEU Emulator"}, {"id": "GENP00001", "name": "Sega: Genesis Plus GX"}, {"id": "HBDB90000", "name": "DOSBox Emulator"}, {"id": "HBDM90000", "name": "PrBoom Doom"}, {"id": "HBFS90000", "name": "FUSE: Spectrum Emulator"}, {"id": "HBST90000", "name": "Atari Emulator"}, {"id": "HOP300606", "name": "Hakuouki: Junsouroku (Limited Edition)"}, {"id": "HTSS00003", "name": "Showtime"}, {"id": "IDPS00001", "name": "IDPS Viewer"}, {"id": "KTGS30187", "name": "Nobunaga no Yabou Online: Shinsei no Shou (Premium Box)"}, {"id": "KTGS30196", "name": "Shin Sangoku Musou 6 & Shin Sangoku Musou 6 Moushouden (Premium Box)"}, {"id": "KTGS30197", "name": "Musou Orochi 2 (Treasure Box)"}, {"id": "KTGS30212", "name": "Shin Hokuto Musou (Treasure Box)"}, {"id": "KTGS30233", "name": "Musou Orochi 2 Ultimate (Premium Box)"}, {"id": "KTGS30254", "name": "Sengoku Musou 4 (Premium Box)"}, {"id": "KTGS30255", "name": "Sengoku Musou 4 (Treasure Box)"}, {"id": "KTGS30259", "name": "Winning Post 8 (20th Anniversary Premium Box)"}, {"id": "KTGS30276", "name": "Nobunaga no Yabou Online: Kakusei no Shou (Treasure Box)"}, {"id": "KTGS30283", "name": "Sengoku Musou 4-II (Treasure Box)"}, {"id": "KTGS30295", "name": "Kagero: Mou Hitori no Princess (Premium Box)"}, {"id": "KTGS30320", "name": "Sophie no Atelier: Fushigi na Hon no Renkinjutsushi (Premium Box)"}, {"id": "LED0DISC0", "name": "LED Changer"}, {"id": "LV2LOADER", "name": "LV2 Loader"}, {"id": "MAME90000", "name": "MAME: Multiple Arcade Machine Emulator"}, {"id": "MDFN90000", "name": "Mednafen Emulator"}, {"id": "MDFN90002", "name": "Mednafen Emulator"}, {"id": "MRTC00002", "name": "Lost Planet 2"}, {"id": "MRTC00014", "name": "Mindjack"}, {"id": "NEOTRAIL1", "name": "Neo Trail"}, {"id": "NORSX0000", "name": "NORSX: A 2D Library for PSL1GHT"}, {"id": "NPBB30454", "name": "Gatling Gears"}, {"id": "NPEA00002", "name": "Gran Turismo HD Concept"}, {"id": "NPEA00004", "name": "Lemmings"}, {"id": "NPEA00006", "name": "Go! Puzzle"}, {"id": "NPEA00007", "name": "Operation Creature Feature"}, {"id": "NPEA00008", "name": "Aqua Vita"}, {"id": "NPEA00014", "name": "Super Stardust HD"}, {"id": "NPEA00015", "name": "Nucleus"}, {"id": "NPEA00016", "name": "Super Rub a Dub"}, {"id": "NPEA00017", "name": "WarHawk"}, {"id": "NPEA00019", "name": "Tekken 5: Dark Resurrection Online"}, {"id": "NPEA00020", "name": "Blast Factor"}, {"id": "NPEA00021", "name": "flOw"}, {"id": "NPEA00022", "name": "EyeCreate"}, {"id": "NPEA00028", "name": "Socom: Confrontation"}, {"id": "NPEA00029", "name": "Calling All Cars!"}, {"id": "NPEA00030", "name": "Mesmerize: Distort & Trace"}, {"id": "NPEA00036", "name": "LocoRoco Cocoreccho!"}, {"id": "NPEA00039", "name": "Go! Soduko"}, {"id": "NPEA00041", "name": "Tori-Emaki"}, {"id": "NPEA00047", "name": "High Velocity Bowling"}, {"id": "NPEA00052", "name": "Toy Home"}, {"id": "NPEA00053", "name": "PixelJunk Racers"}, {"id": "NPEA00054", "name": "Pain"}, {"id": "NPEA00055", "name": "Elefunk"}, {"id": "NPEA00057", "name": "WipEout HD"}, {"id": "NPEA00063", "name": "Riff: Everyday Shooter"}, {"id": "NPEA00065", "name": "Piyotama"}, {"id": "NPEA00066", "name": "Linger in Shadows"}, {"id": "NPEA00068", "name": "PixelJunk Monsters"}, {"id": "NPEA00071", "name": "echochrome"}, {"id": "NPEA00080", "name": "The Last Guy"}, {"id": "NPEA00088", "name": "Rachet and Clank: Quest for Booty"}, {"id": "NPEA00089", "name": "PixelJunk Eden"}, {"id": "NPEA00091", "name": "Buzz! Junior: Jungle Party"}, {"id": "NPEA00092", "name": "Buzz! Junior: Monster Rumble"}, {"id": "NPEA00093", "name": "Buzz! Junior: RoboJam"}, {"id": "NPEA00094", "name": "Flower"}, {"id": "NPEA00095", "name": "SIREN: Blood Curse"}, {"id": "NPEA00103", "name": "Rag Doll Kung Fu: Fists of Plastic"}, {"id": "NPEA00104", "name": "Savage Moon"}, {"id": "NPEA00107", "name": "Crash Commando"}, {"id": "NPEA00111", "name": "Fat Princess"}, {"id": "NPEA00112", "name": "Buzz! Junior: Dino Den"}, {"id": "NPEA00117", "name": "Warhawk (Demo)"}, {"id": "NPEA00119", "name": "Crash Commando"}, {"id": "NPEA00120", "name": "Linger in Shadows"}, {"id": "NPEA00123", "name": "Hustle Kings"}, {"id": "NPEA00124", "name": "Bejeweled 2"}, {"id": "NPEA00126", "name": "Zuma"}, {"id": "NPEA00130", "name": "Heavy Weapon: Atomic Tank"}, {"id": "NPEA00131", "name": "Peggle"}, {"id": "NPEA00132", "name": "Feeding Frenzy 2 - Shipwreck Showdown"}, {"id": "NPEA00133", "name": "Eat Them!"}, {"id": "NPEA00137", "name": ".detuned"}, {"id": "NPEA00140", "name": "SingStar Viewer"}, {"id": "NPEA00141", "name": "PixelJunk Shooter"}, {"id": "NPEA00142", "name": "Rag Doll Kung Fu: Fists of Plastic"}, {"id": "NPEA00143", "name": "Dead Nation: Complete"}, {"id": "NPEA00145", "name": "Hustle Kings"}, {"id": "NPEA00147", "name": "LittleBigPlanet (Demo)"}, {"id": "NPEA00154", "name": "Gravity Crash"}, {"id": "NPEA00181", "name": "PixelJunk Shooter 2"}, {"id": "NPEA00182", "name": "PixelJunk Racers: 2nd Lap"}, {"id": "NPEA00187", "name": "Buzz!: Quiz Player"}, {"id": "NPEA00189", "name": "Gundemonium Recollection"}, {"id": "NPEA00190", "name": "Hitogata Happa"}, {"id": "NPEA00193", "name": "Qlione"}, {"id": "NPEA00194", "name": "Buzz!: Quiz Player"}, {"id": "NPEA00196", "name": "Buzz!: Quiz Player"}, {"id": "NPEA00197", "name": "Buzz!: Quiz Player"}, {"id": "NPEA00205", "name": "Acceleration of Suguri: X Edition"}, {"id": "NPEA00206", "name": "Swords and Soldiers"}, {"id": "NPEA00207", "name": "Terrover"}, {"id": "NPEA00239", "name": "Tumble"}, {"id": "NPEA00241", "name": "LittleBigPlanet"}, {"id": "NPEA00243", "name": "Sackboy's Prehistoric Moves"}, {"id": "NPEA00247", "name": "EyePet: Move Edition"}, {"id": "NPEA00252", "name": "inFamous"}, {"id": "NPEA00255", "name": "God of War HD"}, {"id": "NPEA00256", "name": "God of War II HD"}, {"id": "NPEA00262", "name": "Qlione 2"}, {"id": "NPEA00264", "name": "Top Darts"}, {"id": "NPEA00266", "name": "DC Universe Online"}, {"id": "NPEA00271", "name": "Plants vs. Zombies"}, {"id": "NPEA00274", "name": "Slam Bolt Scrappers"}, {"id": "NPEA00275", "name": "Tokyo Jungle"}, {"id": "NPEA00278", "name": "Mag"}, {"id": "NPEA00279", "name": "ICO"}, {"id": "NPEA00280", "name": "Shadow of the Colossus HD"}, {"id": "NPEA00282", "name": "Beat Sketcher"}, {"id": "NPEA00287", "name": "Eat Them!"}, {"id": "NPEA00288", "name": "Journey"}, {"id": "NPEA00289", "name": "Sound Shapes"}, {"id": "NPEA00291", "name": "ModNation Racers"}, {"id": "NPEA00306", "name": "PixelJunk SideScroller"}, {"id": "NPEA00308", "name": "God Of War Chains Of Olympus"}, {"id": "NPEA00309", "name": "God of War: Ghost of Sparta"}, {"id": "NPEA00314", "name": "Rochard"}, {"id": "NPEA00315", "name": "MotorStorm: Apocalypse"}, {"id": "NPEA00322", "name": "Infamous: Festival of Blood"}, {"id": "NPEA00324", "name": "LittleBigPlanet 2"}, {"id": "NPEA00326", "name": "Tekken Tag Tournament HD"}, {"id": "NPEA00327", "name": "Tekken Tag Tournament 2 Prologue"}, {"id": "NPEA00331", "name": "Payday: The Heist"}, {"id": "NPEA00333", "name": "MotorStorm RC"}, {"id": "NPEA00336", "name": "RA.ONE - The Game"}, {"id": "NPEA00338", "name": "The Jak and Dexter Trilogy"}, {"id": "NPEA00339", "name": "Jak II HD"}, {"id": "NPEA00341", "name": "Sly Raccoon"}, {"id": "NPEA00342", "name": "Sly 2: Band of Thieves"}, {"id": "NPEA00343", "name": "Sly 3: Honour Among Thieves"}, {"id": "NPEA00356", "name": "Ratchet & Clank: All 4 One"}, {"id": "NPEA00357", "name": "Dare to Fly!"}, {"id": "NPEA00363", "name": "Uncharted: Drake's Fortune"}, {"id": "NPEA00365", "name": "Uncharted 2: Among Thieves"}, {"id": "NPEA00366", "name": "Malicious"}, {"id": "NPEA00368", "name": "Kite Fight"}, {"id": "NPEA00372", "name": "Best of PlayStation Network: Vol. 1"}, {"id": "NPEA00374", "name": "SingStar"}, {"id": "NPEA00375", "name": "Datura"}, {"id": "NPEA00378", "name": "Ratchet & Clank: QForce"}, {"id": "NPEA00385", "name": "Ratchet & Clank"}, {"id": "NPEA00386", "name": "Ratchet & Clank 2"}, {"id": "NPEA00387", "name": "Ratchet & Clank 3"}, {"id": "NPEA00394", "name": "Rain"}, {"id": "NPEA00395", "name": "The Unfinished Swan"}, {"id": "NPEA00413", "name": "PlayStation All-Stars Battle Royale"}, {"id": "NPEA00418", "name": "Killzone"}, {"id": "NPEA00420", "name": "DanceStar Digital"}, {"id": "NPEA00421", "name": "LittleBigPlanet Karting"}, {"id": "NPEA00423", "name": "Ratchet: Gladiator"}, {"id": "NPEA00430", "name": "Resistance: Fall of Man"}, {"id": "NPEA00433", "name": "Resogun"}, {"id": "NPEA00435", "name": "The Last of Us"}, {"id": "NPEA00438", "name": "Journey"}, {"id": "NPEA00439", "name": "Puppeteer"}, {"id": "NPEA00460", "name": "Doki Doki Universe"}, {"id": "NPEA00474", "name": "Hohokum"}, {"id": "NPEA00502", "name": "Gran Turismo 6"}, {"id": "NPEA00505", "name": "Helldivers"}, {"id": "NPEA00513", "name": "Beyond: Two Souls"}, {"id": "NPEA00514", "name": "Beyond: Two Souls"}, {"id": "NPEA00518", "name": "Entwined"}, {"id": "NPEA90001", "name": "Resistance: Fall of Man (Demo)"}, {"id": "NPEA90002", "name": "Gran Turismo HD Concept"}, {"id": "NPEA90003", "name": "Formula One: Championship Edition (Demo)"}, {"id": "NPEA90006", "name": "MotorStorm (Demo)"}, {"id": "NPEA90008", "name": "Genji: Days of the Blade (Demo)"}, {"id": "NPEA90009", "name": "Blast Factor (Demo)"}, {"id": "NPEA90011", "name": "Ridge Racer 7 (Demo)"}, {"id": "NPEA90014", "name": "Formula One: Championship Edition (Demo)"}, {"id": "NPEA90016", "name": "Heavenly Sword (Demo)"}, {"id": "NPEA90018", "name": "Uncharted: Drake's Fortune (Demo)"}, {"id": "NPEA90019", "name": "Folklore (Demo)"}, {"id": "NPEA90021", "name": "NBA 08 (Demo)"}, {"id": "NPEA90023", "name": "Everybody's Golf: 5 (Demo)"}, {"id": "NPEA90025", "name": "Echochrome (Demo)"}, {"id": "NPEA90026", "name": "PixelJunk Eden (Demo)"}, {"id": "NPEA90027", "name": "The Last Guy (Demo)"}, {"id": "NPEA90030", "name": "MotorStorm: Pacific Rift (Demo)"}, {"id": "NPEA90033", "name": "MotorStorm: Pacific Rift (Demo)"}, {"id": "NPEA90034", "name": "Killzone 2 (Demo)"}, {"id": "NPEA90036", "name": "Fat Princess (Demo)"}, {"id": "NPEA90041", "name": "Killzone 2 Behind the Bullet: Interactive Ad"}, {"id": "NPEA90043", "name": "Infamous (Demo)"}, {"id": "NPEA90044", "name": "Ghostbusters: The Video Game (Demo)"}, {"id": "NPEA90053", "name": "Heavy Rain (Demo)"}, {"id": "NPEA90055", "name": "Uncharted 2: Among Thieves (Demo)"}, {"id": "NPEA90064", "name": "Kung Fu Rider (Demo)"}, {"id": "NPEA90065", "name": "PlayStation Move: Heroes (Demo)"}, {"id": "NPEA90069", "name": "Beat Sketcher (Demo)"}, {"id": "NPEA90071", "name": "Echochrome II"}, {"id": "NPEA90076", "name": "Heavy Rain (Demo)"}, {"id": "NPEA90078", "name": "Time Crisis: Razing Storm (Demo)"}, {"id": "NPEA90084", "name": "Killzone 3 (Demo)"}, {"id": "NPEA90085", "name": "Killzone 3 Demo (3D)"}, {"id": "NPEA90086", "name": "Killzone: 3 (Open Beta)"}, {"id": "NPEA90088", "name": "Ape Escape: On the Move!"}, {"id": "NPEA90090", "name": "MotorStorm: Apocalypse (Demo)"}, {"id": "NPEA90101", "name": "God of War: Ghost of Sparta (Demo)"}, {"id": "NPEA90102", "name": "Resistance: 3 (Demo)"}, {"id": "NPEA90104", "name": "Start the Party! Save the World (Demo)"}, {"id": "NPEA90107", "name": "Move: Fitness (Demo)"}, {"id": "NPEA90111", "name": "Gran Turismo Academy 2012"}, {"id": "NPEA90112", "name": "Sorcery (Demo)"}, {"id": "NPEA90113", "name": "Sports Champions 2 (Demo)"}, {"id": "NPEA90115", "name": "God of War Ascension (Demo)"}, {"id": "NPEA90120", "name": "Sly Cooper: Thieves in Time (Demo)"}, {"id": "NPEA90123", "name": "God of War: Ascension Prison of the Damned (Demo)"}, {"id": "NPEA90124", "name": "Gran Turismo Academy 2013"}, {"id": "NPEA90127", "name": "Beyond Two Souls (Demo)"}, {"id": "NPEB00001", "name": "GripShift"}, {"id": "NPEB00002", "name": "Mortal Kombat II"}, {"id": "NPEB00003", "name": "Gauntlet II"}, {"id": "NPEB00004", "name": "Rampart"}, {"id": "NPEB00007", "name": "Championship Sprint"}, {"id": "NPEB00008", "name": "Q*bert"}, {"id": "NPEB00009", "name": "High Stakes on the Vegas Strip: Poker Edition"}, {"id": "NPEB00020", "name": "Super Puzzle Fighter II Turbo HD Remix"}, {"id": "NPEB00022", "name": "Bionic Commando Rearmed"}, {"id": "NPEB00023", "name": "Wolf of the Battlefield: Commando 3"}, {"id": "NPEB00024", "name": "Fatal Inertia"}, {"id": "NPEB00026", "name": "1942: Joint Strike"}, {"id": "NPEB00027", "name": "Metal Gear Solid 4 Database"}, {"id": "NPEB00031", "name": "Red Baron Arcade"}, {"id": "NPEB00032", "name": "Prince of Persia Classic"}, {"id": "NPEB00034", "name": "Geon"}, {"id": "NPEB00041", "name": "NovaStrike"}, {"id": "NPEB00043", "name": "Burnout Paradise"}, {"id": "NPEB00050", "name": "Dead Space"}, {"id": "NPEB00051", "name": "Dead Space"}, {"id": "NPEB00052", "name": "Mirror's Edge"}, {"id": "NPEB00059", "name": "Burn Zombie Burn"}, {"id": "NPEB00060", "name": "GTI Club+: Rally Côte d'Azur"}, {"id": "NPEB00062", "name": "Supersonic Acrobatic Rocket Powered Battle-Cars"}, {"id": "NPEB00063", "name": "Noby Noby Boy"}, {"id": "NPEB00065", "name": "Astro Tripper"}, {"id": "NPEB00066", "name": "Lumines Supernova"}, {"id": "NPEB00067", "name": "Mahjong Tables: Ancient Wisdom"}, {"id": "NPEB00068", "name": "Magic Orbz"}, {"id": "NPEB00069", "name": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode 1"}, {"id": "NPEB00070", "name": "Watchmen: The End is Nigh"}, {"id": "NPEB00071", "name": "Watchmen"}, {"id": "NPEB00072", "name": "Cuboid"}, {"id": "NPEB00073", "name": "OutRun: Online Arcade"}, {"id": "NPEB00074", "name": "Söldner-X: Himmelsstürmer"}, {"id": "NPEB00075", "name": "Cellfactor: Psychokinetic Wars"}, {"id": "NPEB00076", "name": "Bomberman Ultra"}, {"id": "NPEB00078", "name": "Flock!"}, {"id": "NPEB00079", "name": "PowerUp Forever"}, {"id": "NPEB00080", "name": "3 on 3 NHL Arcade"}, {"id": "NPEB00081", "name": "Worms"}, {"id": "NPEB00083", "name": "Texas Cheat'em"}, {"id": "NPEB00087", "name": "Marvel vs. Capcom"}, {"id": "NPEB00092", "name": "Battlefield 1943"}, {"id": "NPEB00096", "name": "Gunstar Heroes"}, {"id": "NPEB00097", "name": "Topatoi"}, {"id": "NPEB00098", "name": "The Punisher No Mercy"}, {"id": "NPEB00099", "name": "Zen Pinball"}, {"id": "NPEB00100", "name": "Trine"}, {"id": "NPEB00101", "name": "Call of Duty: Classic"}, {"id": "NPEB00104", "name": "Namco Museum Essentials"}, {"id": "NPEB00107", "name": "Invincible Tiger: The Legend of Han Tao"}, {"id": "NPEB00108", "name": "Watchmen: The End is Nigh: Part 2"}, {"id": "NPEB00110", "name": "Crystal Defenders"}, {"id": "NPEB00112", "name": "The Punisher: No Mercy"}, {"id": "NPEB00118", "name": "Shatter"}, {"id": "NPEB00119", "name": "Smash Cars"}, {"id": "NPEB00120", "name": "Mushroom Wars"}, {"id": "NPEB00122", "name": "Wakeboarding HD"}, {"id": "NPEB00123", "name": "Interpol: The Trail of Dr. Chaos"}, {"id": "NPEB00124", "name": "Command & Conquer: Red Alert 3: Commander's Challenge"}, {"id": "NPEB00128", "name": "Zombie Apocalypse"}, {"id": "NPEB00133", "name": "Matt Hazard: Blood Bath and Beyond"}, {"id": "NPEB00140", "name": "Hyperballoid HD"}, {"id": "NPEB00141", "name": "Mega Man 10"}, {"id": "NPEB00142", "name": "Comet Crash"}, {"id": "NPEB00143", "name": "Greed Corp"}, {"id": "NPEB00147", "name": "Blue Toad Murder Files: The Mysteries of Little Riddle"}, {"id": "NPEB00148", "name": "Vandal Hearts Flames of Judgement"}, {"id": "NPEB00149", "name": "Teenage Mutant Ninja Turtles: Turtles in Time: Re-Shelled"}, {"id": "NPEB00150", "name": "Braid"}, {"id": "NPEB00153", "name": "Sonic the Hedgehog 4: Episode I"}, {"id": "NPEB00157", "name": "Uno"}, {"id": "NPEB00158", "name": "Tank Battles Trial Version"}, {"id": "NPEB00160", "name": "Anarchy: Rush Hour"}, {"id": "NPEB00161", "name": "Death Track: Resurrection"}, {"id": "NPEB00162", "name": "Frogger Returns"}, {"id": "NPEB00163", "name": "Planet Minigolf"}, {"id": "NPEB00164", "name": "Blade Kitten"}, {"id": "NPEB00165", "name": "Critter Crunch"}, {"id": "NPEB00169", "name": "Hamilton's Great Adventure"}, {"id": "NPEB00170", "name": "Fret Nice"}, {"id": "NPEB00171", "name": "Brain Challenge"}, {"id": "NPEB00172", "name": "Polar Panic"}, {"id": "NPEB00173", "name": "Thexder Neo"}, {"id": "NPEB00174", "name": "Might & Magic Clash of Heroes"}, {"id": "NPEB00175", "name": "After Burner Climax"}, {"id": "NPEB00176", "name": "Top Gun"}, {"id": "NPEB00177", "name": "Söldner-X 2: Final Prototype"}, {"id": "NPEB00179", "name": "Hamster Ball"}, {"id": "NPEB00180", "name": "Catan"}, {"id": "NPEB00181", "name": "Sam & Max: The Devil's Playhouse Episode 1: The Penal Zone"}, {"id": "NPEB00183", "name": "Voodoo Dice"}, {"id": "NPEB00185", "name": "Ferrari: The Race Experience"}, {"id": "NPEB00186", "name": "Rocket Knight"}, {"id": "NPEB00191", "name": "Monkey Island: Special Edition"}, {"id": "NPEB00192", "name": "Sky Fighter"}, {"id": "NPEB00201", "name": "Lead and Gold: Gangs of the Wild West"}, {"id": "NPEB00205", "name": "Joe Danger"}, {"id": "NPEB00213", "name": "Test Yourself"}, {"id": "NPEB00214", "name": "Sam & Max: The Devil's Playhouse Episode 2: The Tomb of Sammun-M"}, {"id": "NPEB00215", "name": "Sam & Max: The Devil's Playhouse Episode 3: They Stole Max's Brain!"}, {"id": "NPEB00216", "name": "Sam & Max: The Devil's Playhouse Episode 4: Beyond the Alley o'D"}, {"id": "NPEB00218", "name": "Sam & Max: The Devil's Playhouse Episode 5: The City That Dares"}, {"id": "NPEB00220", "name": "Landit Bandit"}, {"id": "NPEB00221", "name": "TNT Racers"}, {"id": "NPEB00222", "name": "Pinballistik"}, {"id": "NPEB00223", "name": "Ricochet HD"}, {"id": "NPEB00225", "name": "DeathSpank"}, {"id": "NPEB00226", "name": "Earthworm Jim HD"}, {"id": "NPEB00239", "name": "Gotham City Imposters"}, {"id": "NPEB00242", "name": "NEOGEO STATION Magician Lord"}, {"id": "NPEB00246", "name": "Alpha Mission II"}, {"id": "NPEB00257", "name": "Machinarium"}, {"id": "NPEB00258", "name": "Scott Pilgrim vs. The World: The Game"}, {"id": "NPEB00283", "name": "Stacking"}, {"id": "NPEB00284", "name": "Costume Quest"}, {"id": "NPEB00286", "name": "My Aquarium"}, {"id": "NPEB00287", "name": "3D Ultra Minigolf Adventures 2"}, {"id": "NPEB00289", "name": "Dungeon Hunter Alliance"}, {"id": "NPEB00291", "name": "DeathSpank: Thongs of Virtue"}, {"id": "NPEB00292", "name": "Worms 2: Armageddon"}, {"id": "NPEB00293", "name": "Castle Crashers"}, {"id": "NPEB00299", "name": "Rush'n Attack Ex Patriot"}, {"id": "NPEB00300", "name": "Red Fraction: Battlegrounds"}, {"id": "NPEB00301", "name": "Spare Parts"}, {"id": "NPEB00303", "name": "Crazy Taxi"}, {"id": "NPEB00304", "name": "Sonic Adventure"}, {"id": "NPEB00305", "name": "Armageddon Riders"}, {"id": "NPEB00306", "name": "Explodemon"}, {"id": "NPEB00307", "name": "StarDrone"}, {"id": "NPEB00309", "name": "Dungeon Twister - Trial Version"}, {"id": "NPEB00310", "name": "Shank"}, {"id": "NPEB00311", "name": "Lara Croft and the Guardian of Light"}, {"id": "NPEB00315", "name": "Pac-Man Champion Edition DX"}, {"id": "NPEB00318", "name": "Dead Space: Extraction"}, {"id": "NPEB00326", "name": "Joe Danger"}, {"id": "NPEB00327", "name": "Medal of Honor: Frontline"}, {"id": "NPEB00328", "name": "Faery: Legends of Avalon"}, {"id": "NPEB00329", "name": "Flight Control HD"}, {"id": "NPEB00331", "name": "Kung-Fu Live"}, {"id": "NPEB00332", "name": "Hard Corps: Uprising"}, {"id": "NPEB00333", "name": "Galaga Legions DX"}, {"id": "NPEB00335", "name": "Kung-Fu Live"}, {"id": "NPEB00336", "name": "MicroBot"}, {"id": "NPEB00337", "name": "Crazy Machines Elements"}, {"id": "NPEB00338", "name": "Dead Space: Ignition"}, {"id": "NPEB00339", "name": "The Fancy Pants Adventures"}, {"id": "NPEB00341", "name": "Prince of Persia: The Sands of Time HD"}, {"id": "NPEB00342", "name": "Resident Evil 4 HD"}, {"id": "NPEB00347", "name": "Dead Space: Extraction"}, {"id": "NPEB00349", "name": "Funky Lab Rat"}, {"id": "NPEB00351", "name": "SEGA Bass Fishing"}, {"id": "NPEB00352", "name": "Quizball Goal"}, {"id": "NPEB00353", "name": "Red Faction: Guerrilla"}, {"id": "NPEB00365", "name": "Blacklight: Tango Down"}, {"id": "NPEB00366", "name": "Tomb Raider: Underworld"}, {"id": "NPEB00367", "name": "Magic: The Gathering - Duels of the Planeswalkers"}, {"id": "NPEB00368", "name": "TableTop Cricket"}, {"id": "NPEB00373", "name": "Blokus"}, {"id": "NPEB00374", "name": "Chime Super Deluxe"}, {"id": "NPEB00377", "name": "Hydrophobia Prophecy"}, {"id": "NPEB00378", "name": "Bang Bang Racing"}, {"id": "NPEB00379", "name": "Marvel Pinball"}, {"id": "NPEB00381", "name": "SEGA Rally Online Arcade"}, {"id": "NPEB00384", "name": "Ghostbusters: Sanctum of Slime"}, {"id": "NPEB00385", "name": "Dungeons & Dragons: Daggerdale"}, {"id": "NPEB00386", "name": "Section 8: Prejudice"}, {"id": "NPEB00388", "name": "Tales from Space: About a Blob"}, {"id": "NPEB00390", "name": "Prince of Persia - Two Thrones"}, {"id": "NPEB00393", "name": "Assassin's Creed"}, {"id": "NPEB00395", "name": "Hoard"}, {"id": "NPEB00401", "name": "Puzzle Dimension"}, {"id": "NPEB00409", "name": "Deadstorm Pirates"}, {"id": "NPEB00412", "name": "Super Hang-On"}, {"id": "NPEB00413", "name": "The Revenge of Shinobi"}, {"id": "NPEB00415", "name": "Alex Kidd In Miracle World"}, {"id": "NPEB00416", "name": "Monster World IV"}, {"id": "NPEB00435", "name": "Beyond Good & Evil HD"}, {"id": "NPEB00436", "name": "Prototype"}, {"id": "NPEB00437", "name": "Fast Draw Showdown"}, {"id": "NPEB00438", "name": "Dragon's Lair II: Time Warp"}, {"id": "NPEB00439", "name": "Space Ace"}, {"id": "NPEB00441", "name": "Puddle"}, {"id": "NPEB00445", "name": "Tetris"}, {"id": "NPEB00446", "name": "Renegade Ops"}, {"id": "NPEB00447", "name": "Back to the Future: The Game"}, {"id": "NPEB00454", "name": "Sine Mora"}, {"id": "NPEB00461", "name": "Dead Block"}, {"id": "NPEB00462", "name": "Assassin's Creed II"}, {"id": "NPEB00463", "name": "Outland"}, {"id": "NPEB00464", "name": "X-Men: The Arcade Game"}, {"id": "NPEB00466", "name": "From Dust"}, {"id": "NPEB00469", "name": "Spelunker HD"}, {"id": "NPEB00470", "name": "CellFactor: Psychokinetic Wars"}, {"id": "NPEB00473", "name": "Mercury Hg"}, {"id": "NPEB00475", "name": "Swarm"}, {"id": "NPEB00476", "name": "I Am Alive"}, {"id": "NPEB00477", "name": "Sonic the Hedgehog 2"}, {"id": "NPEB00478", "name": "Sonic the Hedgehog"}, {"id": "NPEB00479", "name": "Back to the Future - Episode 2: Get Tannen"}, {"id": "NPEB00484", "name": "Eufloria"}, {"id": "NPEB00503", "name": "Mass Effect 2"}, {"id": "NPEB00505", "name": "Worms Ultimate Mayhem"}, {"id": "NPEB00508", "name": "Streets of Rage II"}, {"id": "NPEB00509", "name": "SEGA Vintage Collection: Golden Axe"}, {"id": "NPEB00510", "name": "Gatling Gears"}, {"id": "NPEB00513", "name": "Ridge Racer 7 3D"}, {"id": "NPEB00514", "name": "Auditorium HD"}, {"id": "NPEB00515", "name": "Magic: The Gathering - Duels of the Planeswalkers 2012"}, {"id": "NPEB00516", "name": "Robot Rescue Revolution"}, {"id": "NPEB00521", "name": "Warlords"}, {"id": "NPEB00526", "name": "SEGA Vintage Collection: Altered Beast"}, {"id": "NPEB00527", "name": "Tom Clancy's Splinter Cell HD"}, {"id": "NPEB00528", "name": "Tom Clancy's Splinter Cell HD: Pandora Tomorrow"}, {"id": "NPEB00529", "name": "Burnout Crash!"}, {"id": "NPEB00530", "name": "SEGA Vintage Collection: Comix Zone"}, {"id": "NPEB00531", "name": "Star Raiders"}, {"id": "NPEB00534", "name": "De Blob 2"}, {"id": "NPEB00540", "name": "Alien Zombie Megadeath"}, {"id": "NPEB00542", "name": "Wrecked: Revenge Revisited"}, {"id": "NPEB00545", "name": "Rust Buccaneers"}, {"id": "NPEB00548", "name": "Dante's Inferno"}, {"id": "NPEB00549", "name": "Dante's Inferno"}, {"id": "NPEB00550", "name": "Dead Space 2"}, {"id": "NPEB00553", "name": "Resident Evil Code: Veronica X"}, {"id": "NPEB00554", "name": "Street Fighter III: 3rd Strike Online Edition"}, {"id": "NPEB00555", "name": "BlazeRush"}, {"id": "NPEB00556", "name": "Cubixx HD"}, {"id": "NPEB00557", "name": "Tom Clancy's Splinter: Chaos Theory HD"}, {"id": "NPEB00560", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2"}, {"id": "NPEB00563", "name": "Castlevania: Harmony of Despair"}, {"id": "NPEB00564", "name": "LIMBO"}, {"id": "NPEB00566", "name": "SkyDrift"}, {"id": "NPEB00569", "name": "Dragon Age II"}, {"id": "NPEB00570", "name": "Twisted Lands: Shadow Town"}, {"id": "NPEB00573", "name": "Dragon Age: Origins"}, {"id": "NPEB00575", "name": "Crysis"}, {"id": "NPEB00576", "name": "Zombie Apocalypse: Never Die Alone"}, {"id": "NPEB00577", "name": "EA Sports MMA"}, {"id": "NPEB00587", "name": "Need for Speed: Hot Persuit"}, {"id": "NPEB00592", "name": "Backbreaker Vengeance"}, {"id": "NPEB00593", "name": "Wizardry: Labyrinth of Lost Souls"}, {"id": "NPEB00594", "name": "Voltron: Defender of the Universe"}, {"id": "NPEB00595", "name": "Worms Crazy Golf"}, {"id": "NPEB00596", "name": "Max & the Magic Marker: Gold Edition"}, {"id": "NPEB00598", "name": "Arkedo Series - 01 Jump!"}, {"id": "NPEB00599", "name": "Far Cry 2"}, {"id": "NPEB00600", "name": "Assassin's Creed: Brotherhood"}, {"id": "NPEB00602", "name": "Mortal Kombat Arcade Kollection"}, {"id": "NPEB00612", "name": "Red Faction: Armageddon"}, {"id": "NPEB00614", "name": "Arkedo Series - 02 Swap!"}, {"id": "NPEB00615", "name": "Arkedo Series - 03 Pixel!"}, {"id": "NPEB00617", "name": "Babel Rising"}, {"id": "NPEB00620", "name": "Best Hazard Ultra"}, {"id": "NPEB00621", "name": "Okabu"}, {"id": "NPEB00622", "name": "Bulletstorm"}, {"id": "NPEB00623", "name": "Bulletstorm"}, {"id": "NPEB00630", "name": "Daytona USA"}, {"id": "NPEB00631", "name": "The Baconing"}, {"id": "NPEB00632", "name": "Driver: San Francisco"}, {"id": "NPEB00636", "name": "Warp"}, {"id": "NPEB00637", "name": "Saints Row 2"}, {"id": "NPEB00644", "name": "Scarygirl"}, {"id": "NPEB00645", "name": "Oddworld Stranger's Wrath"}, {"id": "NPEB00646", "name": "BurgerTime: World Tour"}, {"id": "NPEB00647", "name": "Pure Chess"}, {"id": "NPEB00648", "name": "Warhammer 40,000: Space Marine"}, {"id": "NPEB00649", "name": "Child of Eden"}, {"id": "NPEB00650", "name": "NBA Jam: On Fire Edition"}, {"id": "NPEB00651", "name": "Toki Toki"}, {"id": "NPEB00652", "name": "Dungeon Defenders"}, {"id": "NPEB00653", "name": "Crysis 2"}, {"id": "NPEB00654", "name": "LEGO Pirates of the Caribbean: The Video Game"}, {"id": "NPEB00668", "name": "Trine 2"}, {"id": "NPEB00669", "name": "Rock Of Ages"}, {"id": "NPEB00670", "name": "Awesomenauts"}, {"id": "NPEB00673", "name": "Red Johnson's Chronicles"}, {"id": "NPEB00677", "name": "CastleStorm"}, {"id": "NPEB00681", "name": "Metal Slug 2"}, {"id": "NPEB00684", "name": "Metal Gear Solid HD Collection"}, {"id": "NPEB00686", "name": "Metal Gear Solid: Peace Walker - HD Edition"}, {"id": "NPEB00687", "name": "Resident Evil 5: Gold Edition"}, {"id": "NPEB00688", "name": "FIFA 12"}, {"id": "NPEB00715", "name": "Bodycount"}, {"id": "NPEB00716", "name": "BloodRayne: Betrayal"}, {"id": "NPEB00717", "name": "Sonic the Hedgehog 4 - Episode II"}, {"id": "NPEB00720", "name": "Greg Hastings Paintball 2"}, {"id": "NPEB00721", "name": "Dead Island"}, {"id": "NPEB00722", "name": "Rocketbirds: Hardboiled Chicken"}, {"id": "NPEB00723", "name": "Battlefield 3"}, {"id": "NPEB00726", "name": "Darksiders"}, {"id": "NPEB00727", "name": "The Simpsons Arcade Game"}, {"id": "NPEB00731", "name": "Call of Duty: Modern Warfare 2"}, {"id": "NPEB00754", "name": "Real Steel"}, {"id": "NPEB00761", "name": "Red Johnson's Chronicles: One Against All"}, {"id": "NPEB00765", "name": "Smash 'N' Survive"}, {"id": "NPEB00767", "name": "Shoot Many Robots"}, {"id": "NPEB00768", "name": "Amy"}, {"id": "NPEB00769", "name": "Ion Assault HD"}, {"id": "NPEB00771", "name": "BioShock 2"}, {"id": "NPEB00774", "name": "Prince of Persia: The Forgotten Sands"}, {"id": "NPEB00777", "name": "Dust"}, {"id": "NPEB00787", "name": "Sonic CD"}, {"id": "NPEB00791", "name": "Deus Ex: Human Revolution"}, {"id": "NPEB00792", "name": "Deus Ex: Human Revolution"}, {"id": "NPEB00793", "name": "Deus Ex: Human Revolution"}, {"id": "NPEB00794", "name": "Under Siege"}, {"id": "NPEB00802", "name": "Assassin's Creed Embers"}, {"id": "NPEB00811", "name": "Zombie Driver HD"}, {"id": "NPEB00814", "name": "Shank 2"}, {"id": "NPEB00816", "name": "Resident Evil: The Darkside Chronicles"}, {"id": "NPEB00817", "name": "Resident Evil: The Umbrella Chronicles"}, {"id": "NPEB00818", "name": "Rayman Origins"}, {"id": "NPEB00821", "name": "Pool Nation"}, {"id": "NPEB00822", "name": "FIFA Street"}, {"id": "NPEB00828", "name": "Duke Nukem Forever"}, {"id": "NPEB00829", "name": "Mafia II"}, {"id": "NPEB00831", "name": "Hell Yeah! Wrath of the Dead Rabbit"}, {"id": "NPEB00833", "name": "Red Dead Redemption"}, {"id": "NPEB00838", "name": "Tiger Woods PGA Tour 13"}, {"id": "NPEB00839", "name": "Hitman: Blood Money HD"}, {"id": "NPEB00840", "name": "Hitman: Silent Assassin"}, {"id": "NPEB00841", "name": "Hitman: Contracts HD"}, {"id": "NPEB00847", "name": "Mortal Kombat"}, {"id": "NPEB00848", "name": "DiRT 3"}, {"id": "NPEB00850", "name": "L.A. Noire"}, {"id": "NPEB00851", "name": "Need for Speed: The Run"}, {"id": "NPEB00865", "name": "Mass Effect 3"}, {"id": "NPEB00866", "name": "Judge Dee - The City God Case"}, {"id": "NPEB00867", "name": "Hitman: Sniper Challenge"}, {"id": "NPEB00869", "name": "Marvel vs Capcom: Origins"}, {"id": "NPEB00870", "name": "Vampire Resurrection"}, {"id": "NPEB00872", "name": "Adam's Venture Chronicles"}, {"id": "NPEB00875", "name": "Catherine"}, {"id": "NPEB00876", "name": "Fuel Overdose"}, {"id": "NPEB00879", "name": "Rayman 3 HD"}, {"id": "NPEB00880", "name": "Assassin's Creed: Revelations"}, {"id": "NPEB00882", "name": "Grand Theft Auto IV"}, {"id": "NPEB00886", "name": "Mad Riders"}, {"id": "NPEB00888", "name": "Saints Row: The Third"}, {"id": "NPEB00890", "name": "Saints Row: The Third"}, {"id": "NPEB00891", "name": "Unearthed: Trail of Ibn Battuta - Episode 1"}, {"id": "NPEB00892", "name": "Tom Clancy's Ghost Recon Future Soldier"}, {"id": "NPEB00894", "name": "The Pinball Arcade"}, {"id": "NPEB00897", "name": "Captain Morgane and the Golden Turtle"}, {"id": "NPEB00900", "name": "Okami HD"}, {"id": "NPEB00902", "name": "Darksiders 2"}, {"id": "NPEB00904", "name": "Anomaly: Warzone Earth"}, {"id": "NPEB00906", "name": "Orc Attack: Flatulent Rebellion"}, {"id": "NPEB00907", "name": "Grand Theft Auto: Episodes from Liberty City"}, {"id": "NPEB00910", "name": "Skullgirls"}, {"id": "NPEB00913", "name": "Virtua Fighter 5: Final Showdown"}, {"id": "NPEB00914", "name": "Hitman: Absolution"}, {"id": "NPEB00915", "name": "Binary Domain"}, {"id": "NPEB00916", "name": "Rune Factory Oceans"}, {"id": "NPEB00923", "name": "The Expendables 2 Videogame"}, {"id": "NPEB00924", "name": "Jet Set Radio"}, {"id": "NPEB00925", "name": "MUD: FIM Motocross World Championship"}, {"id": "NPEB00934", "name": "The Darkness II"}, {"id": "NPEB00945", "name": "Crazy Strike Bowling"}, {"id": "NPEB00947", "name": "BIT.TRIP Presents...Runner2: Future Legend of Rhythm Alien"}, {"id": "NPEB00948", "name": "Michael Jackson: The Experience"}, {"id": "NPEB00949", "name": "Order Up!!"}, {"id": "NPEB00956", "name": "JoJo's Bizarre Adventure HD Trial"}, {"id": "NPEB00957", "name": "The Walking Dead"}, {"id": "NPEB00959", "name": "Feeding Frenzy 2: Shipwreck Showdown"}, {"id": "NPEB00964", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPEB00965", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPEB00966", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPEB00967", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPEB00968", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPEB00977", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPEB00978", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPEB00980", "name": "Capcom Arcade Cabinet"}, {"id": "NPEB00981", "name": "Blood Knights"}, {"id": "NPEB00984", "name": "Resident Evil: Operation Raccoon City"}, {"id": "NPEB00985", "name": "Resident Evil: Operation Raccoon City"}, {"id": "NPEB00986", "name": "Spec Ops: The Line"}, {"id": "NPEB00988", "name": "Rock Band Blitz"}, {"id": "NPEB00989", "name": "Far Cry Classic"}, {"id": "NPEB00992", "name": "Hitman: Absolution"}, {"id": "NPEB00993", "name": "Hitman: Absolution"}, {"id": "NPEB00997", "name": "The Amazing Spider-Man"}, {"id": "NPEB00999", "name": "International Snooker"}, {"id": "NPEB01009", "name": "Sniper Elite V2"}, {"id": "NPEB01017", "name": "007 Legends"}, {"id": "NPEB01018", "name": "007 Legends"}, {"id": "NPEB01019", "name": "SBK Generations"}, {"id": "NPEB01020", "name": "DmC: Devil May Cry"}, {"id": "NPEB01027", "name": "Wicked Monster BLAST!"}, {"id": "NPEB01028", "name": "Tony Hawk's Pro Skater HD"}, {"id": "NPEB01032", "name": "LEGO Batman 2: DC Super Heroes"}, {"id": "NPEB01033", "name": "Transformers: Fall of Cybertron"}, {"id": "NPEB01036", "name": "Girl Fight Trial"}, {"id": "NPEB01037", "name": "Max Payne 3"}, {"id": "NPEB01041", "name": "Knytt Underground"}, {"id": "NPEB01042", "name": "Need for Speed: Most Wanted"}, {"id": "NPEB01044", "name": "Worms Revolution"}, {"id": "NPEB01046", "name": "Sleeping Dogs"}, {"id": "NPEB01052", "name": "Defenders of Ardania"}, {"id": "NPEB01055", "name": "Kingdoms of Amalur: Reckoning"}, {"id": "NPEB01056", "name": "Pid"}, {"id": "NPEB01061", "name": "Ice Age 4: Continental Drift: Arctic Games"}, {"id": "NPEB01072", "name": "WRC 3"}, {"id": "NPEB01082", "name": "Legasista"}, {"id": "NPEB01086", "name": "Ridge Racer: Unbounded"}, {"id": "NPEB01088", "name": "Alien Rage"}, {"id": "NPEB01093", "name": "Test Drive: Ferrari Racing Legends"}, {"id": "NPEB01096", "name": "Far Cry 3"}, {"id": "NPEB01097", "name": "Night Into Dreams..."}, {"id": "NPEB01098", "name": "Game Of Thrones"}, {"id": "NPEB01099", "name": "Assassin's Creed III"}, {"id": "NPEB01107", "name": "F1 2012"}, {"id": "NPEB01109", "name": "Papo & Yo"}, {"id": "NPEB01110", "name": "Voodoo Chronicles: The First Sign"}, {"id": "NPEB01111", "name": "Dishonored"}, {"id": "NPEB01119", "name": "Birds of Steel"}, {"id": "NPEB01121", "name": "SSX"}, {"id": "NPEB01124", "name": "F1 Race Stars"}, {"id": "NPEB01127", "name": "A-Men"}, {"id": "NPEB01129", "name": "Dead or Alive 5"}, {"id": "NPEB01131", "name": "The Testament of Sherlock Holmes"}, {"id": "NPEB01133", "name": "Vanquish"}, {"id": "NPEB01134", "name": "Bayonetta"}, {"id": "NPEB01137", "name": "Worms"}, {"id": "NPEB01138", "name": "Worms Ultimate Mayhem"}, {"id": "NPEB01139", "name": "Worms 2: Armageddon"}, {"id": "NPEB01140", "name": "Tekken Tag Tournament 2"}, {"id": "NPEB01141", "name": "Guacamelee!"}, {"id": "NPEB01146", "name": "Dead Space 3"}, {"id": "NPEB01152", "name": "Cartoon Network: Punch Time Explosion XL"}, {"id": "NPEB01156", "name": "Batman: Arkham Asylum"}, {"id": "NPEB01158", "name": "Ni no Kuni: Wrath of the White Witch"}, {"id": "NPEB01160", "name": "Zuma's Revenge!"}, {"id": "NPEB01162", "name": "Sonic The Fighters"}, {"id": "NPEB01164", "name": "Fighting Vipers"}, {"id": "NPEB01166", "name": "Retro City Rampage"}, {"id": "NPEB01167", "name": "Joe Danger 2: The Movie"}, {"id": "NPEB01173", "name": "Shaun White Snowboarding"}, {"id": "NPEB01174", "name": "Persona 4 Arena"}, {"id": "NPEB01175", "name": "Demolition Inc"}, {"id": "NPEB01186", "name": "Zone of the Enders HD Collection"}, {"id": "NPEB01188", "name": "Devil May Cry HD Collection"}, {"id": "NPEB01195", "name": "Mass Effect"}, {"id": "NPEB01201", "name": "Brothers A Tale Of Two Sons"}, {"id": "NPEB01202", "name": "Demon's Souls"}, {"id": "NPEB01204", "name": "Call of Duty: Black Ops II"}, {"id": "NPEB01205", "name": "Call of Duty: Black Ops II"}, {"id": "NPEB01206", "name": "Call of Duty: Black Ops II"}, {"id": "NPEB01210", "name": "A-Men 2"}, {"id": "NPEB01212", "name": "Sacred Citadel"}, {"id": "NPEB01214", "name": "Call of Juarez: Gunslinger"}, {"id": "NPEB01217", "name": "Army of TWO: The Devil's Cartel"}, {"id": "NPEB01218", "name": "Magic: Duels of the Planeswalkers 2014"}, {"id": "NPEB01219", "name": "Bang! The Official Video Game"}, {"id": "NPEB01220", "name": "Scourge: Outbreak"}, {"id": "NPEB01222", "name": "GRID 2"}, {"id": "NPEB01233", "name": "Doodle God"}, {"id": "NPEB01234", "name": "Crysis 3"}, {"id": "NPEB01235", "name": "Angry Birds Trilogy"}, {"id": "NPEB01237", "name": "The Cave"}, {"id": "NPEB01238", "name": "Urban Trial Freestyle"}, {"id": "NPEB01244", "name": "Dynasty Warriors 7: Xtreme Legends"}, {"id": "NPEB01245", "name": "Dynasty Warriors 7"}, {"id": "NPEB01247", "name": "Dynasty Warriors 6 Empires"}, {"id": "NPEB01251", "name": "Champion Jockey: G1 Jockey & Gallop Racer"}, {"id": "NPEB01256", "name": "NASCAR The Game: Inside Line"}, {"id": "NPEB01268", "name": "Dragon's Dogma: Dark Arisen"}, {"id": "NPEB01269", "name": "Strength of the Sword 3"}, {"id": "NPEB01270", "name": "Terraria"}, {"id": "NPEB01275", "name": "Dungeons & Dragons: Chronicles of Mystara"}, {"id": "NPEB01280", "name": "Magrunner: Dark Pulse"}, {"id": "NPEB01283", "name": "Grand Theft Auto V"}, {"id": "NPEB01284", "name": "Atomic Ninjas"}, {"id": "NPEB01287", "name": "DuckTales Remastered"}, {"id": "NPEB01289", "name": "Air Conflicts: Pacific Carriers"}, {"id": "NPEB01290", "name": "BioShock Infinite"}, {"id": "NPEB01297", "name": "Strider"}, {"id": "NPEB01301", "name": "Mars War Logs"}, {"id": "NPEB01303", "name": "Battlefield 4"}, {"id": "NPEB01306", "name": "Q.U.B.E.: Director's Cut"}, {"id": "NPEB01308", "name": "Hunter's Trophy 2 - Australia"}, {"id": "NPEB01309", "name": "Hunter's Trophy 2 - America"}, {"id": "NPEB01316", "name": "Superfrog HD"}, {"id": "NPEB01321", "name": "Lightning Returns: Final Fantasy XIII"}, {"id": "NPEB01322", "name": "Far Cry 3: Blood Dragon"}, {"id": "NPEB01323", "name": "Deathmatch Village"}, {"id": "NPEB01324", "name": "WRC Powerslide"}, {"id": "NPEB01327", "name": "Ninja Gaiden 3: Razor's Edge"}, {"id": "NPEB01328", "name": "The Last Bounty Hunter"}, {"id": "NPEB01332", "name": "Farming Simulator"}, {"id": "NPEB01336", "name": "Earth Defense Force 2025"}, {"id": "NPEB01337", "name": "Thomas was Alone"}, {"id": "NPEB01340", "name": "NHL 14"}, {"id": "NPEB01341", "name": "Hotline Miami"}, {"id": "NPEB01347", "name": "Sonic Unleashed"}, {"id": "NPEB01348", "name": "Resonance of Fate"}, {"id": "NPEB01353", "name": "Luftrausers"}, {"id": "NPEB01356", "name": "Rayman Legends"}, {"id": "NPEB01357", "name": "Telltale Games' Poker Night 2"}, {"id": "NPEB01358", "name": "Stealth Inc.: A Clone in the Dark"}, {"id": "NPEB01361", "name": "Frozen Synapse Prime"}, {"id": "NPEB01363", "name": "SoulCalibur V"}, {"id": "NPEB01367", "name": "Rugby Challenge 2: The Lions Tour Edition"}, {"id": "NPEB01371", "name": "Hakuoki: Stories of the Shinsengumi"}, {"id": "NPEB01373", "name": "Narco Terror"}, {"id": "NPEB01378", "name": "LEGO Marvel: Super Heroes"}, {"id": "NPEB01380", "name": "Thunder Wolves"}, {"id": "NPEB01383", "name": "MotoGP 13"}, {"id": "NPEB01384", "name": "FIFA 14"}, {"id": "NPEB01386", "name": "Assassin's Creed: Liberty HD"}, {"id": "NPEB01387", "name": "How to Survive"}, {"id": "NPEB01388", "name": "Tales of Symphonia: Dawn of the New World HD"}, {"id": "NPEB01389", "name": "Tales of Symphonia HD"}, {"id": "NPEB01391", "name": "Final Fantasy X / X-2 HD Remaster"}, {"id": "NPEB01393", "name": "Hatsune Miku: Project Diva F"}, {"id": "NPEB01396", "name": "Assassin's Creed IV: Black Flag"}, {"id": "NPEB01400", "name": "Arcania: The Complete Tale"}, {"id": "NPEB01404", "name": "Saints Row IV"}, {"id": "NPEB01406", "name": "Tekken Revolution"}, {"id": "NPEB01407", "name": "Drakengard 3"}, {"id": "NPEB01408", "name": "Yaiba: Ninja Gaiden Z"}, {"id": "NPEB01409", "name": "Final Exam"}, {"id": "NPEB01410", "name": "Ibb & Obb"}, {"id": "NPEB01412", "name": "Need for Speed: Rivals"}, {"id": "NPEB01416", "name": "The Smurfs 2"}, {"id": "NPEB01417", "name": "Flashback HD"}, {"id": "NPEB01419", "name": "Spelunky"}, {"id": "NPEB01421", "name": "Proteus"}, {"id": "NPEB01424", "name": "Lone Survivor"}, {"id": "NPEB01425", "name": "Teenage Mutant Ninja Turtles: Out of the Shadows"}, {"id": "NPEB01427", "name": "Castle of Illusion: Starring Mickey Mouse"}, {"id": "NPEB01428", "name": "Armored Core: Verdict Day"}, {"id": "NPEB01432", "name": "Murdered: Soul Suspect"}, {"id": "NPEB01433", "name": "Watch Dogs"}, {"id": "NPEB01434", "name": "Castlevania: Lords of Shadow 2"}, {"id": "NPEB01437", "name": "Ms.Germinator"}, {"id": "NPEB01438", "name": "Ben 10 Omniverse 2"}, {"id": "NPEB01440", "name": "Pac-Man and the Ghostly Adventures"}, {"id": "NPEB01441", "name": "Castlevania Lords of Shadow - Mirrors of Vain HD"}, {"id": "NPEB01784", "name": "Payday 2"}, {"id": "NPEB01785", "name": "Cabela's Big Game Hunter: Pro Hunts"}, {"id": "NPEB01786", "name": "Dead or Alive 5 Ultimate"}, {"id": "NPEB01787", "name": "Battle of Tiles EX"}, {"id": "NPEB01789", "name": "Wolfenstein: The New Order"}, {"id": "NPEB01792", "name": "Street Fighter X Tekken"}, {"id": "NPEB01793", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge"}, {"id": "NPEB01795", "name": "One Piece: Pirate Warriors 2"}, {"id": "NPEB01796", "name": "Divekick"}, {"id": "NPEB01797", "name": "The Evil Within"}, {"id": "NPEB01801", "name": "NBA 2K14"}, {"id": "NPEB01804", "name": "Diablo III"}, {"id": "NPEB01805", "name": "Deus Ex: Human Revolution - Director's Cut"}, {"id": "NPEB01809", "name": "Pro Evolution Soccer 2014"}, {"id": "NPEB01814", "name": "Saint Seiya: Brave Soldiers"}, {"id": "NPEB01815", "name": "WWE 2K14"}, {"id": "NPEB01816", "name": "Air Conflicts: Vietnam"}, {"id": "NPEB01819", "name": "The Guided Fate Paradox"}, {"id": "NPEB01823", "name": "Dragon Ball Z: Battle of Z"}, {"id": "NPEB01824", "name": "Tales from Space: Mutant Blobs Attack"}, {"id": "NPEB01825", "name": "Angry Birds: Star Wars"}, {"id": "NPEB01826", "name": "R-Type Dimensions"}, {"id": "NPEB01827", "name": "SoulCalibur: Lost Swords"}, {"id": "NPEB01828", "name": "SoulCalibur II HD Online"}, {"id": "NPEB01832", "name": "Call of Duty: Ghosts"}, {"id": "NPEB01835", "name": "Call of Duty: Ghosts"}, {"id": "NPEB01836", "name": "Dragon's Crown"}, {"id": "NPEB01838", "name": "Truck Racer"}, {"id": "NPEB01839", "name": "Ace Combat Infinity"}, {"id": "NPEB01841", "name": "Bound by Flame"}, {"id": "NPEB01843", "name": "Just Dance 2014"}, {"id": "NPEB01844", "name": "Anna"}, {"id": "NPEB01853", "name": "Dark Souls 2"}, {"id": "NPEB01857", "name": "Adventure Time: Explore The Dungeon Because I DON'T KNOW!"}, {"id": "NPEB01858", "name": "Tales of Xillia 2"}, {"id": "NPEB01859", "name": "Rambo: The Video Game"}, {"id": "NPEB01861", "name": "Contrast"}, {"id": "NPEB01862", "name": "The LEGO Movie Videogame"}, {"id": "NPEB01863", "name": "R.U.S.E."}, {"id": "NPEB01864", "name": "Visualizer"}, {"id": "NPEB01865", "name": "Cabela's African Adventures"}, {"id": "NPEB01872", "name": "Aabs Animals"}, {"id": "NPEB01875", "name": "Vessel"}, {"id": "NPEB01878", "name": "Dustforce"}, {"id": "NPEB01881", "name": "The Wolf Among Us"}, {"id": "NPEB01882", "name": "Duke Nukem 3D: Megaton Edition"}, {"id": "NPEB01887", "name": "Carnivores HD: Dinosaur Hunter"}, {"id": "NPEB01888", "name": "Pacific Rim: The Video Game"}, {"id": "NPEB01889", "name": "Metal Gear Solid V: Ground Zeroes"}, {"id": "NPEB01892", "name": "Pac-Man Museum"}, {"id": "NPEB01893", "name": "FEZ"}, {"id": "NPEB01894", "name": "Backgammon Blitz"}, {"id": "NPEB01897", "name": "The Raven: Legacy of a Master Thief"}, {"id": "NPEB01899", "name": "Minecraft: PlayStation 3 Edition"}, {"id": "NPEB01900", "name": "NASCAR '14"}, {"id": "NPEB01901", "name": "Blood Knights"}, {"id": "NPEB01904", "name": "Best of Board Games"}, {"id": "NPEB01909", "name": "Valiant Hearts: The Great War"}, {"id": "NPEB01910", "name": "Abyss Odyssey"}, {"id": "NPEB01911", "name": "The Walking Dead: Season 2"}, {"id": "NPEB01912", "name": "Thief"}, {"id": "NPEB01914", "name": "Kick-Ass 2"}, {"id": "NPEB01915", "name": "MXGP: The Official Motocross Videogame"}, {"id": "NPEB01917", "name": "Chaos Code"}, {"id": "NPEB01921", "name": "Alien: Isolation"}, {"id": "NPEB01922", "name": "JoJo's Bizarre Adventure: All-Star Battle"}, {"id": "NPEB01926", "name": "Ragnarok Odyssey ACE"}, {"id": "NPEB01927", "name": "The Cube"}, {"id": "NPEB01928", "name": "Teslagrad"}, {"id": "NPEB01929", "name": "Oddworld: New 'n' Tasty!"}, {"id": "NPEB01933", "name": "Masquerade: The Baubles of Doom"}, {"id": "NPEB01934", "name": "Child of Light"}, {"id": "NPEB01938", "name": "MotoGP 13 Compact"}, {"id": "NPEB01945", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky"}, {"id": "NPEB01946", "name": "IHF Handball Challenge 14"}, {"id": "NPEB01947", "name": "2014 FIFA World Cup Brazil"}, {"id": "NPEB01952", "name": "MotoGP 14"}, {"id": "NPEB01959", "name": "Sherlock Holmes: Crimes and Punishments"}, {"id": "NPEB01964", "name": "Master Reboot"}, {"id": "NPEB01965", "name": "How to Train Your Dragon 2"}, {"id": "NPEB01968", "name": "Batman: Arkham Origins: Blackgate: Deluxe Edition"}, {"id": "NPEB01969", "name": "Short Peace: Ranko Tsukigime's Longest Day"}, {"id": "NPEB01976", "name": "Syberia"}, {"id": "NPEB01978", "name": "BlazBlue: Chrono Phantasma"}, {"id": "NPEB01979", "name": "Assassin's Creed IV: Black Flag: Freedom Cry"}, {"id": "NPEB01986", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution"}, {"id": "NPEB01996", "name": "Sportsfrieds"}, {"id": "NPEB01997", "name": "Plants vs. Zombies: Garden Warfare"}, {"id": "NPEB01998", "name": "Mugen Souls Z"}, {"id": "NPEB01999", "name": "Fairy Fencer F"}, {"id": "NPEB02001", "name": "Battle Princess of Arcadias"}, {"id": "NPEB02007", "name": "Hotline Miami 2: Wrong Number"}, {"id": "NPEB02009", "name": "Tiny Troopers Joint Ops"}, {"id": "NPEB02010", "name": "Yu-Gi-Oh! Millennium Duels"}, {"id": "NPEB02013", "name": "Hatsune Miku: Project Diva F 2nd"}, {"id": "NPEB02016", "name": "Syberia 2"}, {"id": "NPEB02017", "name": "Alien Shooter"}, {"id": "NPEB02021", "name": "Destiny"}, {"id": "NPEB02026", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition"}, {"id": "NPEB02027", "name": "Diablo III: Reaper of Souls - Ultimate Evil Edition"}, {"id": "NPEB02029", "name": "Invokers Tournament"}, {"id": "NPEB02032", "name": "Another World"}, {"id": "NPEB02036", "name": "Yakuza 4"}, {"id": "NPEB02037", "name": "Rogue Legacy"}, {"id": "NPEB02040", "name": "Cel Damage HD"}, {"id": "NPEB02048", "name": "Sacra Terra: Kiss of Death"}, {"id": "NPEB02052", "name": "Warriors Orochi 3 Ultimate"}, {"id": "NPEB02060", "name": "Dynasty Warriors: Gundam Reborn"}, {"id": "NPEB02061", "name": "Borderlands: The Pre-Sequel"}, {"id": "NPEB02076", "name": "Resident Evil"}, {"id": "NPEB02082", "name": "The Legend of Korra"}, {"id": "NPEB02086", "name": "Toybox Turbos"}, {"id": "NPEB02088", "name": "Call of Duty: Advanced Warfare"}, {"id": "NPEB02096", "name": "Dragon Fin Soup"}, {"id": "NPEB02100", "name": "Deadfall Adventures: Heart of Atlantis"}, {"id": "NPEB02102", "name": "Eiyuu Senki: The World Conquest"}, {"id": "NPEB02118", "name": "King Oddball"}, {"id": "NPEB02123", "name": "Dragon Ball Xenoverse"}, {"id": "NPEB02127", "name": "Race the Sun"}, {"id": "NPEB02128", "name": "Resident Evil Revelations 2 Trial"}, {"id": "NPEB02130", "name": "JUJU"}, {"id": "NPEB02133", "name": "Aaru's Awakening"}, {"id": "NPEB02140", "name": "Metal Gear Solid V: The Phantom Pain"}, {"id": "NPEB02150", "name": "Unmechanical: Extended"}, {"id": "NPEB02162", "name": "Badland: Game of the Year Edition"}, {"id": "NPEB02163", "name": "Costume Quest 2"}, {"id": "NPEB02164", "name": "A Boy and His Blob"}, {"id": "NPEB02190", "name": "Cosmophony"}, {"id": "NPEB02194", "name": "MotoGP 14 Compact"}, {"id": "NPEB02197", "name": "Life is Strange - Episode 1"}, {"id": "NPEB02199", "name": "Tower of Guns"}, {"id": "NPEB02203", "name": "Dead or Alive 5: Last Round"}, {"id": "NPEB02223", "name": "Kung Fu Panda: Showdown of Legendary Legends"}, {"id": "NPEB02225", "name": "Paranormal Pursuit: The Gifted Ones Collector's Edition"}, {"id": "NPEB02226", "name": "Resident Evil 0"}, {"id": "NPEB02228", "name": "Yakuza 5"}, {"id": "NPEB02239", "name": "Extreme Exorcism"}, {"id": "NPEB02245", "name": "Weird Park: The Final Show"}, {"id": "NPEB02246", "name": "Teenage Mutant Ninja Turtles: Mutants in Manhattan"}, {"id": "NPEB02250", "name": "XBLAZE Code: Embryo"}, {"id": "NPEB02251", "name": "Starwhal"}, {"id": "NPEB02252", "name": "Metal Slug 3"}, {"id": "NPEB02265", "name": "WRC 5"}, {"id": "NPEB02266", "name": "Call of Duty: Black Ops 3"}, {"id": "NPEB02282", "name": "The Swindle"}, {"id": "NPEB02285", "name": "Nova-111"}, {"id": "NPEB02288", "name": "Frozen Free Fall Snowball Fight"}, {"id": "NPEB02294", "name": "Minecraft Story Mode"}, {"id": "NPEB02301", "name": "King's Quest"}, {"id": "NPEB02315", "name": "Doodle Devil"}, {"id": "NPEB02316", "name": "Doodle Kingdom"}, {"id": "NPEB02321", "name": "Goat Simulator"}, {"id": "NPEB02323", "name": "Adam's Venture: Chronicles"}, {"id": "NPEB02346", "name": "Never Alone"}, {"id": "NPEB02365", "name": "Attack on Titan - Wings of Freedom"}, {"id": "NPEB02389", "name": "The Walking Dead: Michonne"}, {"id": "NPEB02398", "name": "Amplitude"}, {"id": "NPEB02404", "name": "Just Dance 2017"}, {"id": "NPEB02428", "name": "Barnanza"}, {"id": "NPEB02436", "name": "Persona 5"}, {"id": "NPEB02443", "name": "Steredenn"}, {"id": "NPEB30333", "name": "Microbot"}, {"id": "NPEB90003", "name": "Gripshift"}, {"id": "NPEB90006", "name": "The Darkness (Demo)"}, {"id": "NPEB90008", "name": "Ninja Gaiden Sigma (Demo)"}, {"id": "NPEB90009", "name": "Armored Core 4 (Demo)"}, {"id": "NPEB90016", "name": "Tom Clancy's Ghost Recon: Advanced Warfare 2 (Demo)"}, {"id": "NPEB90017", "name": "Harry Potter and the Order of the Phoenix (Demo)"}, {"id": "NPEB90018", "name": "Sega Rally Revo (Demo)"}, {"id": "NPEB90019", "name": "Clive Barker's Jericho (Demo)"}, {"id": "NPEB90020", "name": "Tony Hawk's Proving Ground (Demo)"}, {"id": "NPEB90021", "name": "Colin McRae: DiRT (Demo)"}, {"id": "NPEB90022", "name": "NBA Live 08 (Demo)"}, {"id": "NPEB90023", "name": "FIFA 08 (Demo)"}, {"id": "NPEB90024", "name": "Tiger Woods PGA Tour 08 (Demo)"}, {"id": "NPEB90025", "name": "Pro Evolution Soccer 2008 (Demo)"}, {"id": "NPEB90027", "name": "Bladestorm: The Hundred Years' War (Demo)"}, {"id": "NPEB90028", "name": "Stuntman Ignition (Demo)"}, {"id": "NPEB90029", "name": "The Simpsons Game (Demo)"}, {"id": "NPEB90030", "name": "Dynasty Warriors: Gundam (Demo)"}, {"id": "NPEB90031", "name": "Skate (Demo)"}, {"id": "NPEB90032", "name": "Juiced 2: Hot Import Nights (Demo)"}, {"id": "NPEB90033", "name": "The Club (Demo)"}, {"id": "NPEB90036", "name": "TimeShift (Demo)"}, {"id": "NPEB90038", "name": "Turok (Demo)"}, {"id": "NPEB90042", "name": "Need for Speed ProStreet (Demo)"}, {"id": "NPEB90044", "name": "Strangehold, John Woo Presents (Demo)"}, {"id": "NPEB90045", "name": "Kane and Lynch (Demo)"}, {"id": "NPEB90046", "name": "MX vs. ATV: Untamed (Demo)"}, {"id": "NPEB90047", "name": "Conan (Demo)"}, {"id": "NPEB90048", "name": "Burnout Paradise (Demo)"}, {"id": "NPEB90053", "name": "NBA 2K8 (Demo)"}, {"id": "NPEB90054", "name": "FIFA Street 3 (Demo)"}, {"id": "NPEB90055", "name": "Conflict Denied Ops (Demo)"}, {"id": "NPEB90059", "name": "Devil May Cry 4 (Demo)"}, {"id": "NPEB90060", "name": "UEFA Euro 2008 (Demo)"}, {"id": "NPEB90063", "name": "Enemy Territory: Quake Wars (Demo)"}, {"id": "NPEB90065", "name": "Sega Superstars Tennis (Demo)"}, {"id": "NPEB90066", "name": "The Bourne Conspiracy (Demo)"}, {"id": "NPEB90067", "name": "Condemned 2: Bloodshot (Demo)"}, {"id": "NPEB90068", "name": "Haze (Demo)"}, {"id": "NPEB90069", "name": "Dark Sector (Demo)"}, {"id": "NPEB90070", "name": "Racedriver: Grid (Demo)"}, {"id": "NPEB90071", "name": "Iron Man (Demo)"}, {"id": "NPEB90072", "name": "Overlord: Raising Hell (Demo)"}, {"id": "NPEB90073", "name": "Battlefield: Bad Company (Demo)"}, {"id": "NPEB90074", "name": "Dragon Ball Z Burst Limit (Demo)"}, {"id": "NPEB90075", "name": "Wolf of the Battlefield: Commando 3 (Demo)"}, {"id": "NPEB90076", "name": "Monster Madness: Grave Danger (Demo)"}, {"id": "NPEB90077", "name": "Sid Meier's Civilization Revolution (Demo)"}, {"id": "NPEB90079", "name": "1942: Joint Strike (Demo)"}, {"id": "NPEB90080", "name": "Naruto Shippuden: Ultimate Ninja: Storm (Demo)"}, {"id": "NPEB90083", "name": "FaceBreaker (Demo)"}, {"id": "NPEB90085", "name": "Top Spin 3 (Demo)"}, {"id": "NPEB90088", "name": "NBA Live 09 (Demo)"}, {"id": "NPEB90089", "name": "NHL 09 (Demo)"}, {"id": "NPEB90091", "name": "Fracture (Demo)"}, {"id": "NPEB90092", "name": "Pure (Demo)"}, {"id": "NPEB90093", "name": "Hail to the Chimp (Demo)"}, {"id": "NPEB90094", "name": "Star Wars: The Force Unleashed (Demo)"}, {"id": "NPEB90095", "name": "Tiger Woods PGA Tour 09 (Demo)"}, {"id": "NPEB90096", "name": "FIFA 09 (Demo)"}, {"id": "NPEB90097", "name": "Beijing 2008: The Official Game of the 2008 Summer Olympics (Demo)"}, {"id": "NPEB90098", "name": "NHL 2K9 (Demo)"}, {"id": "NPEB90099", "name": "Soul Calibur IV (Demo)"}, {"id": "NPEB90101", "name": "Brothers In Arms: Hell's Highway (Demo)"}, {"id": "NPEB90102", "name": "BioShock (Demo)"}, {"id": "NPEB90104", "name": "NBA 2K9 (Demo)"}, {"id": "NPEB90105", "name": "WWE Smackdown! vs. RAW 2009 (Demo)"}, {"id": "NPEB90106", "name": "Valkyria Chronicles (Demo)"}, {"id": "NPEB90109", "name": "Mercenaries 2: World in Flames (Demo)"}, {"id": "NPEB90111", "name": "Pro Evolution Soccer 2009 (Demo)"}, {"id": "NPEB90113", "name": "Tom Clancy's H.A.W.X (Demo)"}, {"id": "NPEB90114", "name": "Mirror's Edge (Demo)"}, {"id": "NPEB90115", "name": "LEGO Batman: The Video Game (Demo)"}, {"id": "NPEB90116", "name": "Metal Gear Solid 4 (Demo)"}, {"id": "NPEB90117", "name": "Alone in the Dark: Inferno (Demo)"}, {"id": "NPEB90118", "name": "Tom Clancy's EndWar (Demo)"}, {"id": "NPEB90120", "name": "GTI Club + Rally Cote D'Azur (Demo)"}, {"id": "NPEB90122", "name": "Metal Gear Online (Demo)"}, {"id": "NPEB90123", "name": "Dead Space: Dismemberment (Demo)"}, {"id": "NPEB90124", "name": "Resident Evil 5 (Demo)"}, {"id": "NPEB90130", "name": "The Lord of the Rings: Conquest (Demo)"}, {"id": "NPEB90131", "name": "Skate 2 (Demo)"}, {"id": "NPEB90132", "name": "Sonic Unleashed (Demo)"}, {"id": "NPEB90133", "name": "The Chronicles of Riddick: Assault on Dark Athena (Demo)"}, {"id": "NPEB90137", "name": "WWE: Legends of Wrestlemania (Demo)"}, {"id": "NPEB90138", "name": "Wanted: Weapons of Fate (Demo)"}, {"id": "NPEB90140", "name": "Wheelman (Demo)"}, {"id": "NPEB90141", "name": "Fight Night Round 4 (Demo)"}, {"id": "NPEB90146", "name": "Red Faction: Guerrilla (Demo)"}, {"id": "NPEB90148", "name": "Overlord II (Demo)"}, {"id": "NPEB90149", "name": "UFC: Undisputed 2009 (Demo)"}, {"id": "NPEB90150", "name": "Disney Pixar's Up: The Video Game (Demo)"}, {"id": "NPEB90151", "name": "Zen Pinball (Demo)"}, {"id": "NPEB90152", "name": "Tiger Woods PGA Tour 10 (Demo)"}, {"id": "NPEB90154", "name": "X Men Origins: Wolverine (Demo)"}, {"id": "NPEB90156", "name": "Mini Ninjas (Demo)"}, {"id": "NPEB90157", "name": "Crystal Defenders (Demo)"}, {"id": "NPEB90159", "name": "Marvel vs. Capcom 2 (Demo)"}, {"id": "NPEB90167", "name": "IL 2 Sturmovik: Birds of Prey (Demo)"}, {"id": "NPEB90169", "name": "Call of Juarez: Bound in Blood (Demo)"}, {"id": "NPEB90170", "name": "Batman: Arkham Asylum (Demo)"}, {"id": "NPEB90171", "name": "Fuel (Demo)"}, {"id": "NPEB90174", "name": "Brütal Legend (Demo)"}, {"id": "NPEB90175", "name": "NHL 10 (Demo)"}, {"id": "NPEB90176", "name": "Colin McRae: DiRT 2 (Demo)"}, {"id": "NPEB90177", "name": "Star Wars: The Clone Wars: Republic Heroes (Demo)"}, {"id": "NPEB90178", "name": "FIFA 10 (Demo)"}, {"id": "NPEB90179", "name": "The Punisher: No Mercy (Demo)"}, {"id": "NPEB90183", "name": "NBA Live 10 (Demo)"}, {"id": "NPEB90184", "name": "F.E.A.R 2 (Demo)"}, {"id": "NPEB90185", "name": "Katamari Forever (Demo)"}, {"id": "NPEB90186", "name": "Wet (Demo)"}, {"id": "NPEB90187", "name": "Ninja Gaiden Sigma 2 (Demo)"}, {"id": "NPEB90189", "name": "Lost Planet 2 (Demo)"}, {"id": "NPEB90190", "name": "Pro Evolution Soccer 2010 (Demo)"}, {"id": "NPEB90191", "name": "Darksiders (Demo)"}, {"id": "NPEB90192", "name": "Dragon Ball: Raging Blast (Demo)"}, {"id": "NPEB90193", "name": "Bayonetta (Demo)"}, {"id": "NPEB90194", "name": "Need for Speed: Shift (Demo)"}, {"id": "NPEB90196", "name": "NBA 2K10 (Demo)"}, {"id": "NPEB90198", "name": "Dark Void (Demo)"}, {"id": "NPEB90200", "name": "Trine (Demo)"}, {"id": "NPEB90201", "name": "Army of Two: The 40th Day (Demo)"}, {"id": "NPEB90202", "name": "MX vs. ATV: Reflex (Demo)"}, {"id": "NPEB90203", "name": "Smash Cars (Demo)"}, {"id": "NPEB90204", "name": "Mushroom Wars (Demo)"}, {"id": "NPEB90206", "name": "Dante's Inferno (Demo)"}, {"id": "NPEB90208", "name": "Fairytale Fights (Demo)"}, {"id": "NPEB90209", "name": "Topatoi: Spinning Through the Worlds (Demo)"}, {"id": "NPEB90210", "name": "Comet Crash (Demo)"}, {"id": "NPEB90212", "name": "Battlefield: Bad Company 2 (Multiplayer Demo)"}, {"id": "NPEB90213", "name": "LEGO Indiana Jones 2: The Adventure Continues (Demo)"}, {"id": "NPEB90215", "name": "Inferno Pool (Demo)"}, {"id": "NPEB90216", "name": "Alien vs. Predator 2 (Multiplayer Demo)"}, {"id": "NPEB90218", "name": "Mafia II"}, {"id": "NPEB90225", "name": "Thexder Neo"}, {"id": "NPEB90227", "name": "Söldner-X 2: Final Prototype"}, {"id": "NPEB90229", "name": "Sonic & SEGA All-Stars Racing (Demo)"}, {"id": "NPEB90231", "name": "Digger HD (Demo)"}, {"id": "NPEB90232", "name": "LEGO Harry Potter Years 1-4 (Demo)"}, {"id": "NPEB90233", "name": "Kane and Lynch 2: Dog Days (Demo)"}, {"id": "NPEB90234", "name": "Wakeboarding HD (Demo)"}, {"id": "NPEB90238", "name": "Majin and the Forsaken Kingdom"}, {"id": "NPEB90246", "name": "Tom Clancy's H.A.W.X 2 (Demo)"}, {"id": "NPEB90250", "name": "Blur (Multiplayer Demo)"}, {"id": "NPEB90251", "name": "Star Wars: The Force Unleashed II (Demo)"}, {"id": "NPEB90253", "name": "AquaPanic! (Demo)"}, {"id": "NPEB90255", "name": "Death Track: Resurrection (Demo)"}, {"id": "NPEB90260", "name": "NBA 2k11 (Demo)"}, {"id": "NPEB90261", "name": "Castlevania: Lords of Shadow (Demo)"}, {"id": "NPEB90263", "name": "Call of Duty: Modern Warfare 2 (Demo)"}, {"id": "NPEB90270", "name": "Vanquish"}, {"id": "NPEB90274", "name": "FIFA 11 (Demo)"}, {"id": "NPEB90277", "name": "Dead Space 2 (Demo)"}, {"id": "NPEB90279", "name": "Pro Evolution Soccer 2011 Euro (Demo)"}, {"id": "NPEB90284", "name": "Winter Sports 2011 (Demo)"}, {"id": "NPEB90285", "name": "Fist of the North Star: Ken's Rage"}, {"id": "NPEB90286", "name": "Sky Fighter"}, {"id": "NPEB90287", "name": "Dragon Ball: Raging Blast 2"}, {"id": "NPEB90293", "name": "Need for Speed: Hot Pursuit"}, {"id": "NPEB90295", "name": "Fight Night Champion (Demo)"}, {"id": "NPEB90304", "name": "LEGO Star Wars III: The Clone Wars"}, {"id": "NPEB90308", "name": "MotoGP 10/11 (Demo)"}, {"id": "NPEB90309", "name": "Bulletstorm (Demo)"}, {"id": "NPEB90318", "name": "Trinity: Souls of Zill O'll"}, {"id": "NPEB90319", "name": "Bionic Commando Rearmed 2"}, {"id": "NPEB90320", "name": "Crysis 2 (Multiplayer Demo)"}, {"id": "NPEB90321", "name": "No More Heroes: Hero's Paradise (Demo)"}, {"id": "NPEB90325", "name": "Virtua Tennis 4 (Demo)"}, {"id": "NPEB90327", "name": "Mortal Kombat (Demo)"}, {"id": "NPEB90328", "name": "El Shaddai: Ascension of the Metatron (Demo)"}, {"id": "NPEB90332", "name": "LEGO Pirates Of The Carribean The Video Game"}, {"id": "NPEB90334", "name": "Duke Nukem Forever (Demo)"}, {"id": "NPEB90343", "name": "Sonic Generations (Demo)"}, {"id": "NPEB90346", "name": "Apache: Air Assault 2010 (Demo)"}, {"id": "NPEB90357", "name": "FIFA 12 (Demo)"}, {"id": "NPEB90359", "name": "Final Fantasy: XIII-2 (Demo)"}, {"id": "NPEB90366", "name": "Dragon's Dogma (Demo)"}, {"id": "NPEB90373", "name": "LEGO Harry Potter Years 5-7 (Demo)"}, {"id": "NPEB90378", "name": "FIFA Street (Demo)"}, {"id": "NPEB90379", "name": "Happy Feet 2"}, {"id": "NPEB90385", "name": "Kingdoms of Amalur: Reckoning (Demo)"}, {"id": "NPEB90386", "name": "Top Gun: Hard Lock (Demo)"}, {"id": "NPEB90391", "name": "Rage (Demo)"}, {"id": "NPEB90392", "name": "SSX (Demo)"}, {"id": "NPEB90394", "name": "The King of Fighters XIII (Demo)"}, {"id": "NPEB90395", "name": "The Darkness: II (Demo)"}, {"id": "NPEB90404", "name": "Sniper Elite: V2 (Demo)"}, {"id": "NPEB90405", "name": "Batman: Arkham City (Demo)"}, {"id": "NPEB90408", "name": "DiRT: Showdown (Demo)"}, {"id": "NPEB90409", "name": "Spec Ops: The Line (Demo)"}, {"id": "NPEB90410", "name": "Summer Stars: 2012 (Demo)"}, {"id": "NPEB90418", "name": "MUD: FIM: Motorcross World Championships (Demo)"}, {"id": "NPEB90429", "name": "Ninja Gaiden: 3 (Demo)"}, {"id": "NPEB90430", "name": "Ridge Racer: Unbounded (Demo)"}, {"id": "NPEB90433", "name": "Disney Epic Mickey 2: The Power of Two (Demo)"}, {"id": "NPEB90434", "name": "LEGO Batman 2: DC Super Heroes (Demo)"}, {"id": "NPEB90444", "name": "FIFA 13"}, {"id": "NPEB90452", "name": "Ni no Kuni: Wrath of the White Witch - Journey to Another World (Demo)"}, {"id": "NPEB90453", "name": "NBA 2K13 (Demo)"}, {"id": "NPEB90455", "name": "Dead Space 3 (Demo)"}, {"id": "NPEB90462", "name": "Metal Gear Rising Revengance"}, {"id": "NPEB90464", "name": "Resident Evil: 6 (Demo)"}, {"id": "NPEB90469", "name": "Air Conflicts: Pacific Carriers"}, {"id": "NPEB90471", "name": "Sonic & All-Stars Racing Transformed (Demo)"}, {"id": "NPEB90473", "name": "DmC: Devil May Cry (Demo)"}, {"id": "NPEB90474", "name": "Naruto Shippuden: Ultimate Ninja Storm 3"}, {"id": "NPEB90478", "name": "Resident Evil Revelations (Demo)"}, {"id": "NPEB90482", "name": "Oddworld: Stranger's Wrath (Demo)"}, {"id": "NPEB90487", "name": "Page Chronica (Demo)"}, {"id": "NPEB90495", "name": "Injustice: Gods Among Us (Demo)"}, {"id": "NPEB90500", "name": "LEGO Marvel Super Heroes (Demo)"}, {"id": "NPEB90502", "name": "Saints Row IV Inauguration Station"}, {"id": "NPEB90505", "name": "Rayman Legends (Demo)"}, {"id": "NPEB90506", "name": "FIFA 14"}, {"id": "NPEB90520", "name": "Grid 2 (Demo)"}, {"id": "NPEB90521", "name": "Do Not Fall (Demo)"}, {"id": "NPEB90523", "name": "WRC4 FIA World Rally Championship (Demo)"}, {"id": "NPEB90527", "name": "Ethan: Meteor Hunter (Demo)"}, {"id": "NPEB90542", "name": "FIFA 15"}, {"id": "NPEB90553", "name": "Destiny (Demo)"}, {"id": "NPEB90557", "name": "Motorcycle Club (Demo)"}, {"id": "NPEB90560", "name": "LEGO Marvel's Avengers (Demo)"}, {"id": "NPEB90569", "name": "Pro Evolution Soccer 2018 (Demo)"}, {"id": "NPED00023", "name": "Eternal Quest"}, {"id": "NPED00027", "name": "Deadly Strike"}, {"id": "NPED00032", "name": "Dirt Track Devils"}, {"id": "NPED00050", "name": "Disney Princess: Enchanted Journey"}, {"id": "NPED00052", "name": "God Hand"}, {"id": "NPED00063", "name": "Grand Theft Auto 3"}, {"id": "NPED00075", "name": "Deus Ex"}, {"id": "NPED00099", "name": "Baroque"}, {"id": "NPED00347", "name": "Dead Space: Extraction"}, {"id": "NPEE00006", "name": "MediEvil"}, {"id": "NPEE00030", "name": "Kula World"}, {"id": "NPEE00039", "name": "Destruction Derby"}, {"id": "NPEE00040", "name": "Cool Boarders 2"}, {"id": "NPEE00051", "name": "G Police"}, {"id": "NPEF00005", "name": "Judge Dredd"}, {"id": "NPEF00021", "name": "Driver"}, {"id": "NPEF00029", "name": "Command & Conquer"}, {"id": "NPEF00042", "name": "Command and Conquer: Retaliation"}, {"id": "NPEF00047", "name": "Hercules"}, {"id": "NPEF00060", "name": "Guilty Gear"}, {"id": "NPEF00062", "name": "Future Cop: L.A.P.D."}, {"id": "NPEF00069", "name": "Final Fantasy VII"}, {"id": "NPEF00070", "name": "Final Fantasy VIII"}, {"id": "NPEF00071", "name": "Final Fantasy IX"}, {"id": "NPEF00082", "name": "Party Time with Winnie the Pooh"}, {"id": "NPEF00083", "name": "Vagrant Story"}, {"id": "NPEF00084", "name": "Lilo & Stitch: Trouble in Paradise"}, {"id": "NPEF00109", "name": "Tekken 2"}, {"id": "NPEF00112", "name": "Fear Effect 2: Retro Helix"}, {"id": "NPEF00114", "name": "Fighting Force 2"}, {"id": "NPEF00148", "name": "40 Winks"}, {"id": "NPEF00150", "name": "Parasite Eve: II"}, {"id": "NPEF00197", "name": "Fear Effect"}, {"id": "NPEF00203", "name": "Mickey's Wild Adventure"}, {"id": "NPEG00008", "name": "Super Stardust HD"}, {"id": "NPEG00009", "name": "Riff: Everyday Shooter"}, {"id": "NPEG90007", "name": "Echochrome (Demo)"}, {"id": "NPEG90015", "name": "PixelJunk Monsters Deluxe (Demo)"}, {"id": "NPEG90019", "name": "LittleBigPlanet (Demo)"}, {"id": "NPEG90026", "name": "ModNation Racers (Demo)"}, {"id": "NPEH00003", "name": "Brain Challenge"}, {"id": "NPEH00017", "name": "Final Fantasy: Crystal Defenders"}, {"id": "NPEH00020", "name": "Uno"}, {"id": "NPEH00031", "name": "James Cameron's Avatar: The Game"}, {"id": "NPEH00134", "name": "Final Fantasy III"}, {"id": "NPEH90009", "name": "Dynasty Warriors: Strikeforce"}, {"id": "NPEH90022", "name": "Final Fantasy: Crystal Defenders (Demo)"}, {"id": "NPEH90028", "name": "Army of Two: The 40th Day (Demo)"}, {"id": "NPEH90051", "name": "Hoard (Demo)"}, {"id": "NPEJ00062", "name": "Hitman: Absolution"}, {"id": "NPEJ00127", "name": "Sega Vintage Collection: ToeJam & Earl"}, {"id": "NPEJ00168", "name": "Watch Dogs"}, {"id": "NPEJ00180", "name": "Watch Dogs (Deluxe Edition)"}, {"id": "NPEJ00215", "name": "Castle of Illusion: Starring Mickey Mouse"}, {"id": "NPEJ00236", "name": "Batman: Arkham Collection"}, {"id": "NPEJ00275", "name": "Tales of Symphonia Chronicles"}, {"id": "NPEJ00305", "name": "Child of Light"}, {"id": "NPEJ00314", "name": "2014 FIFA World Cup Brazil"}, {"id": "NPEJ00326", "name": "The Amazing Spider-Man 2"}, {"id": "NPEJ00330", "name": "Cel Damage HD"}, {"id": "NPEJ00384", "name": "Dragon Fantasy Book I"}, {"id": "NPEK00076", "name": "inFamous"}, {"id": "NPEK00086", "name": "PAIN"}, {"id": "NPEK00107", "name": "Everybody's Golf: World Tour"}, {"id": "NPEK00117", "name": "echochrome"}, {"id": "NPEK00155", "name": "Killzone 2"}, {"id": "NPEK00160", "name": "Flower"}, {"id": "NPEK00161", "name": "Rag Doll Kung Fu: Fists of Plastic"}, {"id": "NPEK00165", "name": "God of War III"}, {"id": "NPEK00166", "name": "Uncharted 2: Among Thieves"}, {"id": "NPEK00168", "name": "DC Universe Online"}, {"id": "NPEK00182", "name": "MAG"}, {"id": "NPEK00184", "name": "ModNation Racers"}, {"id": "NPEK00188", "name": "Gravity Crash"}, {"id": "NPEK00191", "name": "Hustle Kings"}, {"id": "NPEK00192", "name": "PixelJunk Shooter"}, {"id": "NPEK00227", "name": "Uncharted 3: Drake's Deception"}, {"id": "NPEL00074", "name": "Mirror's Edge"}, {"id": "NPEL00079", "name": "Prince of Persia"}, {"id": "NPEL00095", "name": "FIFA Soccer 09"}, {"id": "NPEL00111", "name": "Tekken 6"}, {"id": "NPEL00120", "name": "Final Fantasy XIII"}, {"id": "NPEL00123", "name": "Burnout Paradise: The Ultimate Box"}, {"id": "NPEL00124", "name": "Lumines Supernova"}, {"id": "NPEL00125", "name": "F.E.A.R. 2: Project Origin"}, {"id": "NPEL00126", "name": "Watchmen: The End is Nigh"}, {"id": "NPEL00127", "name": "Battlefield 1943"}, {"id": "NPEL00128", "name": "Split Second"}, {"id": "NPEL00129", "name": "R.U.S.E."}, {"id": "NPEL00133", "name": "Batman: Arkham Asylum"}, {"id": "NPEL00137", "name": "Red Dead Redemption"}, {"id": "NPEL00146", "name": "Front Mission Evolved"}, {"id": "NPEL00158", "name": "Trine"}, {"id": "NPEL00162", "name": "Shatter"}, {"id": "NPEL00167", "name": "Just Cause 2"}, {"id": "NPEL00172", "name": "Planet 51: The Game"}, {"id": "NPEL00182", "name": "Mushroom Wars"}, {"id": "NPEL00183", "name": "Digger HD"}, {"id": "NPEL00188", "name": "Yakuza 3"}, {"id": "NPEL00288", "name": "Final Fantasy XIII-2"}, {"id": "NPEL00560", "name": "Brothers: A Tale of Two Sons"}, {"id": "NPEL00594", "name": "Disney Castle of Illusion starring Mickey Mouse"}, {"id": "NPEO00051", "name": "LittleBigPlanet"}, {"id": "NPEO50012", "name": "Crash Commando"}, {"id": "NPEO50015", "name": "Rag Doll Kung Fu: Fists of Plastic"}, {"id": "NPEO50024", "name": "PixelJunk Shooter"}, {"id": "NPEP00170", "name": "Tales of Graces f Theme"}, {"id": "NPEP50025", "name": "Command & Conquer: Red Alert 3"}, {"id": "NPEP50029", "name": "Topatoi: Spinning Through the Worlds"}, {"id": "NPEP50032", "name": "The Punisher: No Mercy"}, {"id": "NPEP50033", "name": "Zen Pinball Theme"}, {"id": "NPEZ00011", "name": "BreakQuest"}, {"id": "NPEZ00021", "name": "Pinball Dreams"}, {"id": "NPEZ00023", "name": "Bubble Trubble"}, {"id": "NPEZ00024", "name": "Freekscape: Escape from Hell"}, {"id": "NPEZ00026", "name": "Championship Manager 2010"}, {"id": "NPEZ00029", "name": "Zombie Tycoon"}, {"id": "NPEZ00041", "name": "Blast Off"}, {"id": "NPEZ00043", "name": "Aero Racer"}, {"id": "NPEZ00044", "name": "Age of Zombies"}, {"id": "NPEZ00093", "name": "Tetris"}, {"id": "NPEZ00103", "name": "Zombie Tycoon"}, {"id": "NPEZ00115", "name": "Alien Zombie Death"}, {"id": "NPEZ00117", "name": "DynoGems"}, {"id": "NPEZ00128", "name": "Telegraph Crosswords"}, {"id": "NPEZ00134", "name": "Young Thor"}, {"id": "NPEZ00137", "name": "Flick Sports Fishing"}, {"id": "NPEZ00141", "name": "Retro Cave Flyer"}, {"id": "NPEZ00143", "name": "Manic Monkey Mayhem"}, {"id": "NPEZ00158", "name": "Hysteria Project"}, {"id": "NPEZ00174", "name": "5-in-1 Arcade Hits"}, {"id": "NPEZ00184", "name": "Apache Overkill"}, {"id": "NPEZ00199", "name": "Enigmo"}, {"id": "NPEZ00205", "name": "4x4 Jam"}, {"id": "NPEZ00212", "name": "Fly Fu"}, {"id": "NPEZ00222", "name": "N.O.V.A.: Near Orbit Vanguard Alliance"}, {"id": "NPEZ00232", "name": "Angry Birds"}, {"id": "NPEZ00235", "name": "Mini Squadron"}, {"id": "NPEZ00243", "name": "Edge"}, {"id": "NPEZ00250", "name": "Zenonia"}, {"id": "NPEZ00320", "name": "Me Monstar: Hear Me Roar!"}, {"id": "NPEZ00321", "name": "I Must Run!"}, {"id": "NPEZ00322", "name": "A Space Shooter for 2 Bucks!"}, {"id": "NPEZ00325", "name": "Dr. Mini Games"}, {"id": "NPEZ00327", "name": "Mad Blocker Alpha: Revenge of the Fuzzies"}, {"id": "NPEZ00344", "name": "One Epic Game"}, {"id": "NPHA00001", "name": "Gran Turismo HD"}, {"id": "NPHA80001", "name": "Go! Sudoku"}, {"id": "NPHA80002", "name": "WarHawk"}, {"id": "NPHA80003", "name": "Super Stardust HD"}, {"id": "NPHA80009", "name": "Piyotama"}, {"id": "NPHA80029", "name": "Toy Home"}, {"id": "NPHA80030", "name": "Dark Mist"}, {"id": "NPHA80035", "name": "PAIN"}, {"id": "NPHA80038", "name": "Elefunk"}, {"id": "NPHA80041", "name": "echochrome"}, {"id": "NPHA80043", "name": "Lair"}, {"id": "NPHA80044", "name": "The Last Guy"}, {"id": "NPHA80047", "name": "SOCOM: U.S. Navy SEALs - Confrontation"}, {"id": "NPHA80049", "name": "Super Rub'a'Dub"}, {"id": "NPHA80050", "name": "The Last Guy (Demo)"}, {"id": "NPHA80053", "name": "Crash Commando"}, {"id": "NPHA80054", "name": "WarHawk (Demo)"}, {"id": "NPHA80055", "name": "Rag Doll Kung Fu: Fists of Plastic"}, {"id": "NPHA80056", "name": "Savage Moon"}, {"id": "NPHA80057", "name": "Everybody's Putter Golf with Toro"}, {"id": "NPHA80058", "name": "Trash Box"}, {"id": "NPHA80060", "name": "Killzone 2 (Demo)"}, {"id": "NPHA80066", "name": "Fat Princess"}, {"id": "NPHA80067", "name": "LittleBigPlanet (Demo)"}, {"id": "NPHA80068", "name": "inFamous (Demo)"}, {"id": "NPHA80075", "name": "Hustle Kings"}, {"id": "NPHA80079", "name": "Ratchet & Clank Future: A Crack in Time Clank (Demo)"}, {"id": "NPHA80086", "name": "Heavy Rain"}, {"id": "NPHA80094", "name": "Sports Champions"}, {"id": "NPHA80117", "name": "MAG (Beta)"}, {"id": "NPHA80133", "name": "PlayStation Move Heroes (Demo)"}, {"id": "NPHA80140", "name": "Killzone 3 (Single Player Demo)"}, {"id": "NPHA80153", "name": "Resistance 3 (Demo)"}, {"id": "NPHA80160", "name": "Medieval Moves: Deadmund's Quest (Demo)"}, {"id": "NPHA80186", "name": "Move Fitness (Demo)"}, {"id": "NPHA80206", "name": "The Last of Us (Demo)"}, {"id": "NPHA80264", "name": "Lost in the rain"}, {"id": "NPHB00010", "name": "High Stakes on the Vegas Strip: Poker Edition"}, {"id": "NPHB00014", "name": "SEGA Rally Revo (Demo)"}, {"id": "NPHB00017", "name": "Stranglehold: John Woo Presents (Demo)"}, {"id": "NPHB00025", "name": "PixelJunk Monsters Encore (Demo)"}, {"id": "NPHB00026", "name": "Burnout Paradise (Demo)"}, {"id": "NPHB00027", "name": "Devil May Cry (Demo)"}, {"id": "NPHB00033", "name": "Armored Core for Answer (Demo)"}, {"id": "NPHB00034", "name": "Bionic Commando: Rearmed"}, {"id": "NPHB00035", "name": "Battle Fantasia (Demo)"}, {"id": "NPHB00036", "name": "Fatal Inertia: EX (Demo)"}, {"id": "NPHB00038", "name": "PixelJunk Eden (Demo)"}, {"id": "NPHB00040", "name": "Wolf of the Battlefield: Commando 3 (Demo)"}, {"id": "NPHB00042", "name": "1942: Joint Strike (Demo)"}, {"id": "NPHB00045", "name": "FIFA 09 (Demo)"}, {"id": "NPHB00052", "name": "Burnout Paradise"}, {"id": "NPHB00056", "name": "Eternal Sonata (Demo)"}, {"id": "NPHB00057", "name": "Mirror's Edge (Demo)"}, {"id": "NPHB00059", "name": "Lumines Supernova"}, {"id": "NPHB00065", "name": "Metal Gear Solid 4: Guns of the Patriots (Demo)"}, {"id": "NPHB00067", "name": "Metal Gear Solid 4: Guns of the Patriots (Demo)"}, {"id": "NPHB00070", "name": "Resident Evil 5 (Demo)"}, {"id": "NPHB00072", "name": "World Soccer: Winning Eleven 2009 (Demo)"}, {"id": "NPHB00073", "name": "Flock!"}, {"id": "NPHB00080", "name": "Skate 2 (Demo)"}, {"id": "NPHB00083", "name": "The Lord of the Rings: Conquest (Demo)"}, {"id": "NPHB00088", "name": "Mahjong Tales: Ancient Wisdom"}, {"id": "NPHB00089", "name": "Magic Orbz"}, {"id": "NPHB00090", "name": "Cuboid"}, {"id": "NPHB00091", "name": "Spelunker HD"}, {"id": "NPHB00092", "name": "Catan"}, {"id": "NPHB00093", "name": "Catan"}, {"id": "NPHB00094", "name": "Catan"}, {"id": "NPHB00097", "name": "Watchmen: The End is Nigh"}, {"id": "NPHB00098", "name": "Battlefield 1943 (Demo)"}, {"id": "NPHB00099", "name": "Watchmen: The End is Nigh Part 2 (Demo)"}, {"id": "NPHB00107", "name": "Red Faction: Guerrilla (Demo)"}, {"id": "NPHB00108", "name": "Marvel vs. Capcom"}, {"id": "NPHB00110", "name": "Fight Night Round 4 (Demo)"}, {"id": "NPHB00119", "name": "Tiger Woods PGA Tour 10 (Demo)"}, {"id": "NPHB00122", "name": "Madden NFL 10 (Demo)"}, {"id": "NPHB00123", "name": "Topatoi: Spinning Through the Worlds"}, {"id": "NPHB00125", "name": "Bejeweled 2 (Demo)"}, {"id": "NPHB00126", "name": "Zuma (Demo)"}, {"id": "NPHB00131", "name": "FIFA 10 (Demo)"}, {"id": "NPHB00134", "name": "Teenage Mutant Ninja Turtles: Turtles in Time Re-Shelled (Demo)"}, {"id": "NPHB00135", "name": "NBA Live 10 (Demo)"}, {"id": "NPHB00145", "name": "Mushroom Wars"}, {"id": "NPHB00147", "name": "Brütal Legend (Demo)"}, {"id": "NPHB00153", "name": "Need for Speed: Shift (Demo)"}, {"id": "NPHB00176", "name": "Spelunker Black"}, {"id": "NPHB00185", "name": "Dante's Inferno (Demo)"}, {"id": "NPHB00186", "name": "Battlefield: Bad Company 2 (Demo)"}, {"id": "NPHB00188", "name": "Söldner-X 2: Final Prototype"}, {"id": "NPHB00191", "name": "PixelJunk Shooter (Demo)"}, {"id": "NPHB00194", "name": "Peggle"}, {"id": "NPHB00256", "name": "Swords & Soldiers"}, {"id": "NPHB00272", "name": "MicroBot"}, {"id": "NPHB00277", "name": "DeathSpank: Thongs of Virtue"}, {"id": "NPHB00285", "name": "Dungeon Hunter Alliance"}, {"id": "NPHB00305", "name": "The Fancy Pants Adventures"}, {"id": "NPHB00307", "name": "Plants vs. Zombies"}, {"id": "NPHB00317", "name": "Top Spin 4 (Demo)"}, {"id": "NPHB00325", "name": "Tetris"}, {"id": "NPHB00331", "name": "Red Faction: Battlegrounds"}, {"id": "NPHB00334", "name": "Tales from Space: About a Blob (Demo)"}, {"id": "NPHB00344", "name": "Hard Corps: Uprising"}, {"id": "NPHB00356", "name": "Burnout Crash!"}, {"id": "NPHB00369", "name": "Sonic Generations (Demo)"}, {"id": "NPHB00374", "name": "LIMBO"}, {"id": "NPHB00410", "name": "Rochard"}, {"id": "NPHB00453", "name": "The House of the Dead III"}, {"id": "NPHB00456", "name": "Vampire Resurrection"}, {"id": "NPHB00499", "name": "Invincible Knight"}, {"id": "NPHB00522", "name": "E.X. Troopers (Demo)"}, {"id": "NPHB00525", "name": "Chaos Code"}, {"id": "NPHB00575", "name": "Final Fantasy X / X-2 HD Remaster"}, {"id": "NPHB00668", "name": "Eiyuu Densetsu: Sen no Kiseki"}, {"id": "NPHB00704", "name": "Eiyuu Densetsu: Sen no Kiseki II"}, {"id": "NPHB00708", "name": "Persona4 the ULTIMAX Ultra Suplex Hold"}, {"id": "NPHG00005", "name": "echochrome"}, {"id": "NPHG00035", "name": "LittleBigPlanet (Demo)"}, {"id": "NPHG00080", "name": "ModNation Racers"}, {"id": "NPHH00061", "name": "FIFA 10"}, {"id": "NPHJ00004", "name": "Dino Crisis"}, {"id": "NPHJ00227", "name": "Final Fantasy V"}, {"id": "NPHK80050", "name": "GripShift"}, {"id": "NPHK80055", "name": "Cash, Guns and Chaos DLX"}, {"id": "NPHK80057", "name": "Championship Sprint"}, {"id": "NPHK80061", "name": "Gauntlet II"}, {"id": "NPHK80070", "name": "Calling All Cars!"}, {"id": "NPHK80079", "name": "Go! Sports Skydiving"}, {"id": "NPHK80087", "name": "Photo Gallery"}, {"id": "NPHK80090", "name": "inFamous"}, {"id": "NPHK80091", "name": "Trash Box"}, {"id": "NPHK80114", "name": "Home: Loco Island Personal Space Teaser"}, {"id": "NPHK80117", "name": "Fat Princess: Fistful of Cake"}, {"id": "NPHL00021", "name": "Casino Royale"}, {"id": "NPHL00029", "name": "Surf's Up"}, {"id": "NPHL00030", "name": "Spider-Man 3"}, {"id": "NPHL00051", "name": "Sammi Show Mi 2007"}, {"id": "NPHL00088", "name": "Tekken 6"}, {"id": "NPHL00119", "name": "Final Fantasy XIII"}, {"id": "NPHP00039", "name": "Last Rebellion"}, {"id": "NPHY00008", "name": "Tenchu 3 Portable"}, {"id": "NPIA00005", "name": "PlayStation Home"}, {"id": "NPIA00006", "name": "Photo Gallery"}, {"id": "NPJA00001", "name": "Everyday Together"}, {"id": "NPJA00002", "name": "Blast Factor"}, {"id": "NPJA00003", "name": "Go! Puzzle"}, {"id": "NPJA00004", "name": "Oiedeyo LocoRoco!! Boo Boo Cocoreccho!"}, {"id": "NPJA00005", "name": "Lemmings"}, {"id": "NPJA00006", "name": "Go! Sudoku"}, {"id": "NPJA00007", "name": "flOw"}, {"id": "NPJA00008", "name": "Warhawk"}, {"id": "NPJA00009", "name": "Go! Sports Ski (Demo)"}, {"id": "NPJA00010", "name": "Gran Turismo HD Concept"}, {"id": "NPJA00011", "name": "Calling All Cars!"}, {"id": "NPJA00012", "name": "Star Strike HD"}, {"id": "NPJA00013", "name": "Super Rub'a'Dub"}, {"id": "NPJA00014", "name": "Dark Mist"}, {"id": "NPJA00017", "name": "Piyotama"}, {"id": "NPJA00018", "name": "Bacterius"}, {"id": "NPJA00020", "name": "Boku no Natsuyasumi 3 (Demo)"}, {"id": "NPJA00021", "name": "Gran Turismo 5 Prologue Spec III"}, {"id": "NPJA00022", "name": "Snakeball"}, {"id": "NPJA00026", "name": "Shiki-tei"}, {"id": "NPJA00027", "name": "echochrome"}, {"id": "NPJA00029", "name": "The Last Guy"}, {"id": "NPJA00030", "name": "Elefunk"}, {"id": "NPJA00032", "name": "Mr. PAIN"}, {"id": "NPJA00034", "name": "SOCOM: U.S. Navy SEALs Confrontation"}, {"id": "NPJA00035", "name": "The Last Guy"}, {"id": "NPJA00036", "name": "Linger in Shadows"}, {"id": "NPJA00038", "name": "Rag Doll Kung Fu: Fists of Plastic"}, {"id": "NPJA00039", "name": "Flower"}, {"id": "NPJA00042", "name": "Gomibako"}, {"id": "NPJA00043", "name": "Qruton"}, {"id": "NPJA00044", "name": "Super Rub'a'Dub"}, {"id": "NPJA00045", "name": ".detuned"}, {"id": "NPJA00046", "name": "Shuukan Toro Station"}, {"id": "NPJA00047", "name": "Gravity Crash"}, {"id": "NPJA00048", "name": "Fat Princess"}, {"id": "NPJA00049", "name": "Hustle Kings"}, {"id": "NPJA00055", "name": "Free! Free! Bowling"}, {"id": "NPJA00067", "name": "God of War: Rakujitsu no Hisoukyoku HD"}, {"id": "NPJA00075", "name": "Tokyo Jungle"}, {"id": "NPJA00076", "name": "Datura"}, {"id": "NPJA00080", "name": "Sorcery"}, {"id": "NPJA00081", "name": "Sound Shapes"}, {"id": "NPJA00087", "name": "The Unfinished Swan"}, {"id": "NPJA00088", "name": "PlayStation All-Stars Battle Royale"}, {"id": "NPJA00092", "name": "Sports Champions 2"}, {"id": "NPJA00097", "name": "Beyond: Two Souls"}, {"id": "NPJA00103", "name": "Aquanaut's Holiday: Kakusareta Kiroku"}, {"id": "NPJA00104", "name": "White Knight Chronicles II"}, {"id": "NPJA00109", "name": "Doki Doki Universe"}, {"id": "NPJA00113", "name": "Gran Turismo 6"}, {"id": "NPJA00127", "name": "Destiny"}, {"id": "NPJA40001", "name": "Ratchet & Clank 1-2-3: Ginga * Saikyou Gorgeous Pack"}, {"id": "NPJA90006", "name": "Blast Factor (Demo)"}, {"id": "NPJA90009", "name": "Lemmings"}, {"id": "NPJA90020", "name": "Minna no Golf 5"}, {"id": "NPJA90024", "name": "Minna no Golf 5 (Demo)"}, {"id": "NPJA90025", "name": "MotorStorm"}, {"id": "NPJA90061", "name": "Gran Turismo 5: Prologue (Demo)"}, {"id": "NPJA90063", "name": "Uncharted: Drake's Fortune (Demo)"}, {"id": "NPJA90067", "name": "echochrome (Demo)"}, {"id": "NPJA90068", "name": "Siren: Blood Curse (Demo)"}, {"id": "NPJA90070", "name": "Siren: New Translation"}, {"id": "NPJA90071", "name": "The Last Guy (Demo)"}, {"id": "NPJA90074", "name": "LittleBigPlanet (Beta)"}, {"id": "NPJA90077", "name": "Aquanaut's Holiday"}, {"id": "NPJA90086", "name": "Killzone 2"}, {"id": "NPJA90092", "name": "Killzone 2 (Demo)"}, {"id": "NPJA90097", "name": "LittleBigPlanet (Demo)"}, {"id": "NPJA90104", "name": "MAG (Beta)"}, {"id": "NPJA90107", "name": "Rag Doll Kung Fu: Fists of Plastic (Demo)"}, {"id": "NPJA90119", "name": "Heavy Rain"}, {"id": "NPJA90120", "name": "Fat Princess"}, {"id": "NPJA90130", "name": "MAG"}, {"id": "NPJA90172", "name": "Bleach Soul Ignition"}, {"id": "NPJA90185", "name": "Eat Them! (Demo)"}, {"id": "NPJA90220", "name": "Carnival Island"}, {"id": "NPJA90259", "name": "Beyond: Two Souls (Demo)"}, {"id": "NPJB00001", "name": "Tekken 5: Dark Resurrection"}, {"id": "NPJB00003", "name": "PixelJunk Monsters"}, {"id": "NPJB00004", "name": "Fatal Inertia EX"}, {"id": "NPJB00005", "name": "PachiPara DL: Hyper Umi in Carib"}, {"id": "NPJB00006", "name": "Noby Noby Boy"}, {"id": "NPJB00007", "name": "PixelJunk Eden"}, {"id": "NPJB00008", "name": "Bionic Commando Rearmed"}, {"id": "NPJB00009", "name": "Angel Love Online"}, {"id": "NPJB00011", "name": "Burnout Paradise"}, {"id": "NPJB00012", "name": "Namco Museum.comm"}, {"id": "NPJB00013", "name": "Lumines Supernova"}, {"id": "NPJB00014", "name": "Puzzle Quest: Challenge of the Warlords"}, {"id": "NPJB00015", "name": "Catan"}, {"id": "NPJB00016", "name": "Brain Challenge"}, {"id": "NPJB00017", "name": "Simple 500 Series Vol. 1: The Mahjong: Tsuushin Taikyoku Kinoudzuke"}, {"id": "NPJB00018", "name": "Bomberman Ultra"}, {"id": "NPJB00019", "name": "3 on 3 NHL Arcade"}, {"id": "NPJB00021", "name": "Puzzle Quest: Galactrix"}, {"id": "NPJB00022", "name": "Texas Cheat 'Em"}, {"id": "NPJB00023", "name": "Crystal Defenders"}, {"id": "NPJB00024", "name": "GTI Club+: Rally Côte d'Azur"}, {"id": "NPJB00025", "name": "Marvel vs. Capcom 2: New Age of Heroes"}, {"id": "NPJB00026", "name": "Evangelion (Demo)"}, {"id": "NPJB00027", "name": "Battlefield 1943"}, {"id": "NPJB00032", "name": "Angel Senki"}, {"id": "NPJB00034", "name": "RayStorm HD"}, {"id": "NPJB00035", "name": "Sonic the Hedgehog 4: Episode I"}, {"id": "NPJB00036", "name": "Matt Hazard: Blood Bath and Beyond"}, {"id": "NPJB00038", "name": "Vandal Hearts: Flames of Judgement"}, {"id": "NPJB00039", "name": "Wizardry: The Labyrinth of Lost Souls"}, {"id": "NPJB00040", "name": "Madden NFL Arcade"}, {"id": "NPJB00041", "name": "Frogger Returns"}, {"id": "NPJB00043", "name": "RockMan 10: Uchuukara no Kyoui!!"}, {"id": "NPJB00046", "name": "After Burner: Climax"}, {"id": "NPJB00047", "name": "Hatsune Miku: Project Diva Dreamy Theater"}, {"id": "NPJB00057", "name": "Mahjong World"}, {"id": "NPJB00058", "name": "Trine"}, {"id": "NPJB00059", "name": "PachiPara 15: Super Umi Monogatari in Okinawa 2"}, {"id": "NPJB00060", "name": "Daikoukai Jidai Online"}, {"id": "NPJB00063", "name": "PixelJunk Racers: 2nd Lap"}, {"id": "NPJB00065", "name": "Elemental Monster"}, {"id": "NPJB00066", "name": "Blue Oasis: Sakana no Iyashi Kuukan"}, {"id": "NPJB00069", "name": "Voodoo Dice"}, {"id": "NPJB00070", "name": "Malicious"}, {"id": "NPJB00071", "name": "Battle Fantasia"}, {"id": "NPJB00072", "name": "Ikki Online"}, {"id": "NPJB00073", "name": "Braid"}, {"id": "NPJB00074", "name": "Astro Tripper"}, {"id": "NPJB00075", "name": "Greed Corp"}, {"id": "NPJB00076", "name": "Dark Awake: The King Has No Name"}, {"id": "NPJB00077", "name": "Lara Croft and the Guardian of Light"}, {"id": "NPJB00078", "name": "PachiPara 16: Gingira Paradise 2"}, {"id": "NPJB00079", "name": "Pac-Man Championship Edition DX/Galaga Legions DX"}, {"id": "NPJB00081", "name": "Hard Corps: Uprising"}, {"id": "NPJB00084", "name": "BioHazard 4 HD"}, {"id": "NPJB00087", "name": "Crazy Taxi"}, {"id": "NPJB00088", "name": "Lead and Gold: Gangs of the Wild West"}, {"id": "NPJB00089", "name": "Castle Crashers"}, {"id": "NPJB00093", "name": "Super Hang-On"}, {"id": "NPJB00094", "name": "Sega Ages Online: Alex Kidd no Miracle World"}, {"id": "NPJB00097", "name": "MicroBot"}, {"id": "NPJB00099", "name": "Wizardry: Torawareshi Bourei no Machi"}, {"id": "NPJB00100", "name": "Moon Diver"}, {"id": "NPJB00103", "name": "Blokus"}, {"id": "NPJB00104", "name": "Sekai Saikyou Ginsei Igo: Hybrid Monte Carlo"}, {"id": "NPJB00105", "name": "Comet Crash"}, {"id": "NPJB00108", "name": "PixelJunk Shooter 2"}, {"id": "NPJB00110", "name": "Flight Control HD"}, {"id": "NPJB00113", "name": "The Fancy Pants Adventures"}, {"id": "NPJB00114", "name": "PachiPara 17: Shinkai Monogatari with Agnes Ram"}, {"id": "NPJB00115", "name": "Earthworm Jim HD"}, {"id": "NPJB00116", "name": "Planet Minigolf"}, {"id": "NPJB00119", "name": "The Misshitsukara no Dasshutsu (Simple 500 Series Vol. 2)"}, {"id": "NPJB00120", "name": "Swarm"}, {"id": "NPJB00123", "name": "Metal Gear Solid: Peace Walker HD Edition"}, {"id": "NPJB00124", "name": "Red Faction: Battlegrounds"}, {"id": "NPJB00127", "name": "Sonic the Hedgehog 2"}, {"id": "NPJB00128", "name": "Comix Zone"}, {"id": "NPJB00130", "name": "Bare Knuckle II: Shitou e no Chinkon Uta"}, {"id": "NPJB00131", "name": "Altered Beast"}, {"id": "NPJB00134", "name": "Hatsune Miku: Project Diva - Dreamy Theater 2nd"}, {"id": "NPJB00135", "name": "BioHazard Code: Veronica Kanzenban"}, {"id": "NPJB00136", "name": "Tetris"}, {"id": "NPJB00138", "name": "Castlevania: Harmony of Despair"}, {"id": "NPJB00139", "name": "Burnout CRASH!"}, {"id": "NPJB00142", "name": "Magic: The Gathering - Duels of the Planeswalkers 2012"}, {"id": "NPJB00146", "name": "Street Fighter III: Third Strike Online Edition"}, {"id": "NPJB00149", "name": "Bakuretsu Gundan Renegade: Renegade Operations"}, {"id": "NPJB00150", "name": "Crysis"}, {"id": "NPJB00153", "name": "Joe Danger"}, {"id": "NPJB00154", "name": "Black Knight Sword"}, {"id": "NPJB00155", "name": "LIMBO"}, {"id": "NPJB00156", "name": "Metal Gear Solid 3: Snake Eater HD Edition"}, {"id": "NPJB00159", "name": "Elevator Action Deluxe"}, {"id": "NPJB00160", "name": "Bulletstorm"}, {"id": "NPJB00161", "name": "Daytona USA"}, {"id": "NPJB00164", "name": "Sonic the Hedgehog 4: Episode II"}, {"id": "NPJB00165", "name": "Gladiator VS"}, {"id": "NPJB00167", "name": "Joysound Dive"}, {"id": "NPJB00169", "name": "Real Steel"}, {"id": "NPJB00171", "name": "The Misshitsukara no Dasshutsu: Tsukiyo no Mansion-Hen (Simple 500 Series Vol. 3)"}, {"id": "NPJB00172", "name": "Tom Clancy's H.A.W.X. (Demo)"}, {"id": "NPJB00173", "name": "BioHazard: The Darkside Chronicles"}, {"id": "NPJB00174", "name": "BioHazard: Umbrella Chronicles"}, {"id": "NPJB00176", "name": "Lumines Supernova (Promo)"}, {"id": "NPJB00177", "name": "Magic: The Gathering - Duels of the Planeswalkers 2013"}, {"id": "NPJB00178", "name": "Mobile Suit Gundam: Battle Operation"}, {"id": "NPJB00179", "name": "Moe Moe Daisensou * Gendaiban++"}, {"id": "NPJB00181", "name": "Red Johnson's Chronicles"}, {"id": "NPJB00185", "name": "Need for Speed: The Run"}, {"id": "NPJB00186", "name": "Colin McRae: DiRT 3 (Complete Edition)"}, {"id": "NPJB00187", "name": "Minna de Spelunker"}, {"id": "NPJB00189", "name": "Shutsugeki!! Otometachi no Senjou 2: Yuukoku o Kakeru Koujo no Tsubasa"}, {"id": "NPJB00190", "name": "Sangoku Hime: Senkou no Taika - Akatsuki no Haryuu"}, {"id": "NPJB00191", "name": "PixelJunk 4am"}, {"id": "NPJB00193", "name": "Anubis: Zone of the Enders HD Edition"}, {"id": "NPJB00195", "name": "Okami Zekkeihan"}, {"id": "NPJB00201", "name": "Hatsune Miku: Project Diva - Dreamy Theater Extend"}, {"id": "NPJB00202", "name": "Battlefield 3"}, {"id": "NPJB00203", "name": "BioHazard 5: Alternative Edition"}, {"id": "NPJB00207", "name": "Jojo no Kimyou na Bouken: Miraihe no Isan HD Ver."}, {"id": "NPJB00208", "name": "Quantum Conundrum"}, {"id": "NPJB00210", "name": "Capcom Arcade Cabinet"}, {"id": "NPJB00212", "name": "Taiheiyou no Arashi: Senkan Yamato, Akatsuki ni Shutsugekisu"}, {"id": "NPJB00213", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2"}, {"id": "NPJB00215", "name": "BioHazard: Operation Raccoon City"}, {"id": "NPJB00218", "name": "Jigoku da Suki! Hell Yeah!"}, {"id": "NPJB00220", "name": "Heavy Fire: Afghanistan"}, {"id": "NPJB00227", "name": "Gal*Gun"}, {"id": "NPJB00229", "name": "The King of Fighters XIII"}, {"id": "NPJB00233", "name": "Daisenryaku Perfect: Senjou no Hasha"}, {"id": "NPJB00234", "name": "Ao no Eiyuu: Birds of Steel"}, {"id": "NPJB00235", "name": "E.X. Troopers"}, {"id": "NPJB00236", "name": "Tekken Tag Tournament 2"}, {"id": "NPJB00239", "name": "F1 2012"}, {"id": "NPJB00240", "name": "SSX"}, {"id": "NPJB00246", "name": "Bayonetta"}, {"id": "NPJB00248", "name": "Musou Orochi 2"}, {"id": "NPJB00252", "name": "Fighting Vipers"}, {"id": "NPJB00253", "name": "Sangokushi 12"}, {"id": "NPJB00254", "name": "Absolute: Supercars"}, {"id": "NPJB00261", "name": "Shin Sangoku Musou 5 Empires"}, {"id": "NPJB00264", "name": "Bladestorm: Hyakunen Sensou"}, {"id": "NPJB00265", "name": "Nobunaga no Yabou: Tendou with Power-Up Kit"}, {"id": "NPJB00266", "name": "Shin Sangoku Musou MultiRaid Special"}, {"id": "NPJB00269", "name": "Champion Jockey: G1 Jockey & Gallop Racer"}, {"id": "NPJB00271", "name": "Sengoku Musou 3 Empires"}, {"id": "NPJB00273", "name": "Lollipop Chainsaw"}, {"id": "NPJB00274", "name": "Shin Sangoku Musou: Multi Raid 2 HD Version"}, {"id": "NPJB00275", "name": "Binary Domain"}, {"id": "NPJB00277", "name": "Shin Sangoku Musou 6 Empires"}, {"id": "NPJB00278", "name": "DmC: Devil May Cry"}, {"id": "NPJB00280", "name": "Yakuza 1 & 2 HD Edition"}, {"id": "NPJB00281", "name": "Metal Gear Rising: Revengeance"}, {"id": "NPJB00286", "name": "YouTube"}, {"id": "NPJB00287", "name": "Hatsune Miku: Project Diva F"}, {"id": "NPJB00288", "name": "XBLAZE Code: Embryo"}, {"id": "NPJB00289", "name": "Spelunker Collection"}, {"id": "NPJB00292", "name": "Eiyuu Densetsu: Sora no Kiseki FC Kai HD Edition"}, {"id": "NPJB00294", "name": "Ace Combat: Assault Horizon"}, {"id": "NPJB00297", "name": "R-Type Dimensions"}, {"id": "NPJB00298", "name": "Magic: Duels of the Planeswalkers 2014"}, {"id": "NPJB00301", "name": "Monster Hunter Frontier G"}, {"id": "NPJB00302", "name": "Max Anarchy"}, {"id": "NPJB00305", "name": "Battle of Tiles EX"}, {"id": "NPJB00309", "name": "Persona 4: The Ultimate in Mayonaka Arena"}, {"id": "NPJB00310", "name": "BioHazard Revelations: Unveiled Edition"}, {"id": "NPJB00312", "name": "Vampire Resurrection"}, {"id": "NPJB00314", "name": "Muv-Luv Alternative: Total Eclipse"}, {"id": "NPJB00316", "name": "Shin Hokuto Musou"}, {"id": "NPJB00317", "name": "Unmei no Doukutsu: The Cave"}, {"id": "NPJB00318", "name": "Daisenryaku: Dai Toua Kouboushi - Tora Tora Tora Ware Kishuu Ni Seikou Seri"}, {"id": "NPJB00319", "name": "BioHazard 6"}, {"id": "NPJB00321", "name": "Cyber Troopers Virtual On"}, {"id": "NPJB00322", "name": "Skullgirls"}, {"id": "NPJB00323", "name": "Daito Giken Koushiki Pachi-Slot Simulator Hihouden: Taiyou o Motomeru Monotachi"}, {"id": "NPJB00326", "name": "The Amazing Spider Man 2"}, {"id": "NPJB00327", "name": "Winning Post 7 2013"}, {"id": "NPJB00328", "name": "One Piece: Kaizoku Musou 2"}, {"id": "NPJB00330", "name": "Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition"}, {"id": "NPJB00331", "name": "Jojo no Kimyou na Bouken: All-Star Battle"}, {"id": "NPJB00332", "name": "Army of Two: The Devil's Cartel"}, {"id": "NPJB00335", "name": "Dragon's Dogma: Dark Arisen"}, {"id": "NPJB00337", "name": "The Idolm@ster 2"}, {"id": "NPJB00341", "name": "Clannad"}, {"id": "NPJB00346", "name": "Dream C Club: Complete Edipyon!"}, {"id": "NPJB00347", "name": "Dream C Club Zero: Special Edipyon!"}, {"id": "NPJB00348", "name": "Akiba's Trip 2"}, {"id": "NPJB00349", "name": "Strider Hiryu"}, {"id": "NPJB00350", "name": "Kamisama to Unmei Kakumei no Paradox"}, {"id": "NPJB00352", "name": "Z/X: Zillions of enemy X - Zekkai no Crusade"}, {"id": "NPJB00354", "name": "BlazBlue: Chrono Phantasma"}, {"id": "NPJB00357", "name": "Gundam breaker"}, {"id": "NPJB00359", "name": "Eiyuu Densetsu: Sora no Kiseki the 3rd Kai HD Edition"}, {"id": "NPJB00361", "name": "Ninja Gaiden 3: Razor's Edge"}, {"id": "NPJB00362", "name": "Attouteki Yuugi: Mugen Souls Z"}, {"id": "NPJB00363", "name": "BioShock Infinite"}, {"id": "NPJB00365", "name": "Makai Senki Disgaea 3"}, {"id": "NPJB00366", "name": "Chaos Code"}, {"id": "NPJB00368", "name": "Shin Sangoku Musou 6 (PlayStation 3 the Best)"}, {"id": "NPJB00369", "name": "Shin Sangoku Musou 6 Moushouden (PlayStation 3 the Best)"}, {"id": "NPJB00370", "name": "Monster Hunter Portable 3rd HD Ver."}, {"id": "NPJB00371", "name": "Onechanbara Z: Kagura with NoNoNo!"}, {"id": "NPJB00372", "name": "Chikyuu Boueigun 4"}, {"id": "NPJB00377", "name": "Battlefield 4"}, {"id": "NPJB00379", "name": "Ketsui: Kizuna Jigoku Tachi Extra"}, {"id": "NPJB00383", "name": "Terraria"}, {"id": "NPJB00384", "name": "Vividred Operation: Hyper Intimate Power"}, {"id": "NPJB00386", "name": "Vividred Operation: Mayonnaise Operation with Akane!"}, {"id": "NPJB00389", "name": "White Album 2: Shiawase no Mukougawa"}, {"id": "NPJB00390", "name": "Date A Live: Rinne Utopia"}, {"id": "NPJB00391", "name": "Arcadias no Ikusahime"}, {"id": "NPJB00394", "name": "Call of Juarez: Gunslinger"}, {"id": "NPJB00398", "name": "Maji de Watashi ni Koi Shinasai! R"}, {"id": "NPJB00403", "name": "Escha and Logy no Atelier: Tasogare no Sora no Renkinjutsushi"}, {"id": "NPJB00404", "name": "Tekken Revolution"}, {"id": "NPJB00405", "name": "Watch Dogs"}, {"id": "NPJB00407", "name": "Dungeons & Dragons: Mystara Eiyuu Senki"}, {"id": "NPJB00408", "name": "Assassin's Creed IV: Black Flag"}, {"id": "NPJB00409", "name": "Eiyuu Densetsu: Sen no Kiseki"}, {"id": "NPJB00411", "name": "Dead or Alive 5 Ultimate"}, {"id": "NPJB00412", "name": "Ore no Imouto ga Konnani Kawaii Wake ga Nai. Happy End"}, {"id": "NPJB00415", "name": "Farming Simulator"}, {"id": "NPJB00416", "name": "Tales of Symphonia: Unisonant Pack"}, {"id": "NPJB00418", "name": "Sangoku Hime 2: Kouki Houkou - Mezameshi Taiga"}, {"id": "NPJB00422", "name": "Sengoku Basara 4"}, {"id": "NPJB00424", "name": "Disorder 6"}, {"id": "NPJB00425", "name": "Nobunaga no Yabou Online: Tenka Mugen no Shou"}, {"id": "NPJB00426", "name": "Yaiba: Ninja Gaiden Z"}, {"id": "NPJB00427", "name": "Eiyuu * Senki"}, {"id": "NPJB00428", "name": "FIFA 14: World Class Soccer"}, {"id": "NPJB00431", "name": "BioShock"}, {"id": "NPJB00432", "name": "BioShock 2"}, {"id": "NPJB00433", "name": "Need for Speed: Rivals"}, {"id": "NPJB00435", "name": "Hatsune Miku: Project DIVA F 2nd"}, {"id": "NPJB00436", "name": "Zone of the Enders HD Edition"}, {"id": "NPJB00437", "name": "Sangokushi 12 Taisenban"}, {"id": "NPJB00438", "name": "Sangokushi 12 with Power-Up Kit"}, {"id": "NPJB00440", "name": "Kazoku Keikaku: Re:Tsumugu Ito"}, {"id": "NPJB00442", "name": "Jikkyou Powerful Pro Yakyuu 2013"}, {"id": "NPJB00443", "name": "Musou Orochi 2 Ultimate"}, {"id": "NPJB00445", "name": "Castle of Illusion: Starring Mickey Mouse"}, {"id": "NPJB00446", "name": "Air Conflicts: Vietnam"}, {"id": "NPJB00448", "name": "Dragon Ball Z: Battle of Z"}, {"id": "NPJB00453", "name": "Final Fantasy XIV Online: Shinsei Eorzea"}, {"id": "NPJB00454", "name": "Fairy Fencer F"}, {"id": "NPJB00456", "name": "AKB1/149: Love Election"}, {"id": "NPJB00458", "name": "Final Fantasy X / X-2 HD Remaster"}, {"id": "NPJB00460", "name": "Borderlands 2"}, {"id": "NPJB00461", "name": "Batman: Arkham Origins"}, {"id": "NPJB00462", "name": "Puyo Puyo Tetris"}, {"id": "NPJB00464", "name": "Sengoku Musou 2 Empires HD Version"}, {"id": "NPJB00465", "name": "Super Heroine Chronicle: Chou Heroine Senki"}, {"id": "NPJB00466", "name": "SoulCalibur: Lost Swords"}, {"id": "NPJB00468", "name": "Rozen Maiden: Wechseln Sie Welt ab"}, {"id": "NPJB00470", "name": "Urban Trial Freestyle"}, {"id": "NPJB00471", "name": "Sengoku Musou 2 with Moushouden & Empires HD Version"}, {"id": "NPJB00475", "name": "Blazing Angels 2: Secret Missions of WWII"}, {"id": "NPJB00479", "name": "Phantom Breaker: Extra"}, {"id": "NPJB00481", "name": "Ace Combat Infinity"}, {"id": "NPJB00486", "name": "iM@s Channel"}, {"id": "NPJB00487", "name": "Winning Post 8"}, {"id": "NPJB00488", "name": "&: Sora no Mukou de Saki Masuyou ni"}, {"id": "NPJB00489", "name": "Shin Koihime Musou: Otome Taisen * Sangokushi Engi"}, {"id": "NPJB00491", "name": "Kaihou Shoujo SIN"}, {"id": "NPJB00492", "name": "Aabs Animals"}, {"id": "NPJB00509", "name": "Shin Rorona no Atelier: Hajimari no Monogatari - Arland no Renkinjutsushi"}, {"id": "NPJB00512", "name": "Kidou Senshi Gundam: Extreme VS Full Boost"}, {"id": "NPJB00516", "name": "Grand Theft Auto V"}, {"id": "NPJB00519", "name": "Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu!"}, {"id": "NPJB00520", "name": "Dai-3-Ji Super Robot Taisen Z Jigoku-hen"}, {"id": "NPJB00521", "name": "Super Robot Taisen OG Dark Prison"}, {"id": "NPJB00523", "name": "Rainbow Moon"}, {"id": "NPJB00527", "name": "Call of Duty: Ghosts"}, {"id": "NPJB00528", "name": "Call of Duty: Ghosts"}, {"id": "NPJB00529", "name": "Motto! SoniComi"}, {"id": "NPJB00530", "name": "Infinite Stratos 2: Ignition Hearts"}, {"id": "NPJB00533", "name": "Shin Gundam Musou"}, {"id": "NPJB00534", "name": "Sengoku Musou 4"}, {"id": "NPJB00535", "name": "Sonic & All-Stars Racing Transformed"}, {"id": "NPJB00537", "name": "Pacific Rim: The Video Game"}, {"id": "NPJB00540", "name": "Arcana Heart 3: LOVEMAX!!!!!"}, {"id": "NPJB00542", "name": "Mato Kurenai Yuugekitai: Tokyo Twilight Ghosthunters"}, {"id": "NPJB00546", "name": "Final Exam"}, {"id": "NPJB00551", "name": "Saints Row IV (Ultra Super Ultimate Deluxe Edition)"}, {"id": "NPJB00560", "name": "Assassin's Creed III"}, {"id": "NPJB00561", "name": "Child of Light"}, {"id": "NPJB00562", "name": "Assassin's Creed III: Lady Liberty HD"}, {"id": "NPJB00566", "name": "AquaPazza: AquaPlus Dream Match"}, {"id": "NPJB00568", "name": "Brothers: Futari no Musuko no Monogatari"}, {"id": "NPJB00570", "name": "Lost Dimension"}, {"id": "NPJB00572", "name": "Shin Sangoku Musou Online Z"}, {"id": "NPJB00573", "name": "Ar Nosurge: Umareizeru Hoshi E Inoru Uta"}, {"id": "NPJB00574", "name": "2014 FIFA World Cup Brazil"}, {"id": "NPJB00575", "name": "Alien Rage"}, {"id": "NPJB00576", "name": "Harem Tengoku da to Omottara Yandere Jigoku Datta"}, {"id": "NPJB00577", "name": "Kamen Rider: Battride War II"}, {"id": "NPJB00579", "name": "Wolfenstein: The New Order"}, {"id": "NPJB00580", "name": "Dengeki Bunko: Fighting Climax"}, {"id": "NPJB00582", "name": "Dream C Club Gogo."}, {"id": "NPJB00584", "name": "Contrast"}, {"id": "NPJB00586", "name": "Assassin's Creed IV: Black Flag: Freedom Cry"}, {"id": "NPJB00589", "name": "World Soccer Winning Eleven 2014: Aoki Samurai no Chousen"}, {"id": "NPJB00593", "name": "Muv-Luv: photonflowers*"}, {"id": "NPJB00601", "name": "One Piece: Unlimited World R"}, {"id": "NPJB00606", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution"}, {"id": "NPJB00609", "name": "BloodRayne: Crimson Slayer"}, {"id": "NPJB00611", "name": "The IdolM@ster: One for All"}, {"id": "NPJB00612", "name": "Fukumen Toushi: Masked Warrior"}, {"id": "NPJB00615", "name": "Psycho Break"}, {"id": "NPJB00619", "name": "Shallie no Atelier: Tasogare no Umi no Renkinjutsushi"}, {"id": "NPJB00620", "name": "To Heart 2 DX Plus"}, {"id": "NPJB00632", "name": "Diablo III: Ultimate Evil Edition"}, {"id": "NPJB00645", "name": "Borderlands: The Pre-Sequel"}, {"id": "NPJB00646", "name": "Magical Beat"}, {"id": "NPJB00648", "name": "Super Robot Taisen OG Saga - Masou Kishin F - Coffin of the End"}, {"id": "NPJB00653", "name": "Biohazard HD Remaster"}, {"id": "NPJB00667", "name": "World Soccer Winning Eleven 2015"}, {"id": "NPJB00674", "name": "XBLAZE: Lost Memories"}, {"id": "NPJB00680", "name": "Sengoku Hime 5: Senkatatsu Haoh no Keifu"}, {"id": "NPJB00683", "name": "Bladestorm: Hyakunen Sensou & Nightmare"}, {"id": "NPJB00686", "name": "White Album 2: Shiawase no Mukougawa (AquaPrice 2800)"}, {"id": "NPJB00687", "name": "Nitroplus Blasterz: Heroines Infinite Duel"}, {"id": "NPJB00688", "name": "Sengoku Basara 4: Sumeragi"}, {"id": "NPJB00692", "name": "Dai-3-Ji Super Robot Taisen Z Tengoku-hen"}, {"id": "NPJB00695", "name": "JOYSOUND.TV Plus"}, {"id": "NPJB00705", "name": "Rewrite"}, {"id": "NPJB00706", "name": "Sengoku Musou 4-II"}, {"id": "NPJB00712", "name": "One Piece: Kaizoku Musou 3"}, {"id": "NPJB00717", "name": "Dragon Quest Heroes: Anryuu to Sekaiju no Shiro"}, {"id": "NPJB00720", "name": "Kagero: Mou Hitori no Princess"}, {"id": "NPJB00722", "name": "Daisenryaku: Dai Toua Kouboushi - Dainijisekaitaisen Boppatsu - Suujiku Sentai Rengougun Zensekaisen"}, {"id": "NPJB00727", "name": "Star Ocean 5: Integrity and Faithlessness"}, {"id": "NPJB00738", "name": "Angel Senki (Rerelease)"}, {"id": "NPJB00744", "name": "Mato Kurenai Yuugekitai: Daybreak Special Gigs"}, {"id": "NPJB00749", "name": "Gundam Battle Operation Next"}, {"id": "NPJB00764", "name": "Sophie no Atelier: Fushigi na Hon no Renkinjutsushi"}, {"id": "NPJB00769", "name": "Persona 5"}, {"id": "NPJB00785", "name": "Dengeki Bunko: Fighting Climax"}, {"id": "NPJB00813", "name": "Shin Sangoku Musou: Eiketsuden"}, {"id": "NPJB00818", "name": "Berserk Musou"}, {"id": "NPJB00823", "name": "Asdivine Hearts"}, {"id": "NPJB00832", "name": "Jikkyou Powerful Pro Yakyuu Championship 2017"}, {"id": "NPJB60001", "name": "Monster Hunter Portable 2nd G Monster Data Chishikisho"}, {"id": "NPJB60076", "name": "Binary Domain"}, {"id": "NPJB60148", "name": "Nerawareta Gakuen Kanzenban Shiryoushuu"}, {"id": "NPJB60188", "name": "Gekijouban Macross F Digital Archives"}, {"id": "NPJB70001", "name": "NEOGEO STATION Fatal Fury: King Of Fighters"}, {"id": "NPJB90001", "name": "Ridge Racer 7 (Demo)"}, {"id": "NPJB90011", "name": "Ninja Gaiden Sigma (Demo)"}, {"id": "NPJB90021", "name": "Bladestorm: The Hundred Years' War (Demo)"}, {"id": "NPJB90030", "name": "Imabi Kisou (Demo)"}, {"id": "NPJB90042", "name": "G1 Jockey 4 2007 - (Demo)"}, {"id": "NPJB90043", "name": "Agarest Senki (Demo)"}, {"id": "NPJB90053", "name": "Metal Gear Online (Demo)"}, {"id": "NPJB90061", "name": "World Soccer: Winning Eleven 2008 (Demo)"}, {"id": "NPJB90062", "name": "FIFA 08 (Demo)"}, {"id": "NPJB90064", "name": "Vampire Rain: Altered Species (Demo)"}, {"id": "NPJB90066", "name": "Burnout Paradise (Demo)"}, {"id": "NPJB90067", "name": "Armored Core: For Answer (Demo)"}, {"id": "NPJB90068", "name": "Need for Speed: ProStreet (Demo)"}, {"id": "NPJB90071", "name": "Ryu ga Gotoku Kenzan! - Demo 1"}, {"id": "NPJB90072", "name": "Ryu ga Gotoku Kenzan! - Demo 2"}, {"id": "NPJB90076", "name": "Sega Rally Revo (Demo)"}, {"id": "NPJB90085", "name": "Devil May Cry 4 (Demo)"}, {"id": "NPJB90100", "name": "Haze (Demo)"}, {"id": "NPJB90105", "name": "Battle Fantasia (Demo)"}, {"id": "NPJB90107", "name": "Dark Sector (Demo)"}, {"id": "NPJB90112", "name": "Battlefield: Bad Company (Demo)"}, {"id": "NPJB90119", "name": "Dragon Ball Z: Burst Limit (Demo)"}, {"id": "NPJB90130", "name": "SoulCalibur IV (Demo)"}, {"id": "NPJB90132", "name": "Eternal Sonata (Demo)"}, {"id": "NPJB90139", "name": "FIFA 09 (Demo)"}, {"id": "NPJB90140", "name": "Mirror's Edge (Demo)"}, {"id": "NPJB90144", "name": "World Soccer: Winning Eleven 2009 (Demo)"}, {"id": "NPJB90147", "name": "Fallout 3"}, {"id": "NPJB90149", "name": "Metal Gear Solid 4: Guns of the Patriots (Demo)"}, {"id": "NPJB90150", "name": "World Soccer: Winning Eleven 2009"}, {"id": "NPJB90152", "name": "BioHazard 5 (Demo)"}, {"id": "NPJB90154", "name": "Yakuza 3"}, {"id": "NPJB90156", "name": "Valkyria Chronicles (Demo)"}, {"id": "NPJB90159", "name": "BioShock (Demo)"}, {"id": "NPJB90160", "name": "Naruto Shippuden: Ultimate Ninja Storm (Demo)"}, {"id": "NPJB90162", "name": "Sonic Unleashed (Demo)"}, {"id": "NPJB90163", "name": "WWE: Legends of Wrestlemania (Demo)"}, {"id": "NPJB90167", "name": "Crystal Defenders (Demo)"}, {"id": "NPJB90172", "name": "Tom Clancy's H.A.W.X. (Demo)"}, {"id": "NPJB90176", "name": "Lumines Supernova (Promo)"}, {"id": "NPJB90177", "name": "Crystal Defenders"}, {"id": "NPJB90178", "name": "X Blades"}, {"id": "NPJB90183", "name": "End of Eternity: Battle"}, {"id": "NPJB90185", "name": "Tales of Vesperia"}, {"id": "NPJB90187", "name": "UFC Undisputed 2009 (Demo)"}, {"id": "NPJB90196", "name": "The King of Fighters XII (Demo)"}, {"id": "NPJB90205", "name": "FIFA 10 (Demo)"}, {"id": "NPJB90207", "name": "Ninja Gaiden Sigma 2 (Demo)"}, {"id": "NPJB90212", "name": "Bayonetta (Demo)"}, {"id": "NPJB90223", "name": "End of Eternity: Playable t.A.B. (Demo)"}, {"id": "NPJB90227", "name": "UNO"}, {"id": "NPJB90233", "name": "PixelJunk Shooter (Demo)"}, {"id": "NPJB90235", "name": "Fallout 3"}, {"id": "NPJB90237", "name": "Thexder Neo"}, {"id": "NPJB90253", "name": "Naruto Shippuden: Ultimate Ninja Storm 2 (Demo)"}, {"id": "NPJB90257", "name": "Majin and the Forsaken Kingdom"}, {"id": "NPJB90277", "name": "Space Invaders: Infinity Gene"}, {"id": "NPJB90295", "name": "Trinity: Zill Ol'll Zero (Demo) 2"}, {"id": "NPJB90302", "name": "Tales of Graces"}, {"id": "NPJB90310", "name": "Trinity: Zill Ol'll Zero (Demo) 1"}, {"id": "NPJB90317", "name": "Catherine (Demo)"}, {"id": "NPJB90342", "name": "Nail'd"}, {"id": "NPJB90346", "name": "Final Fantasy XIII-2"}, {"id": "NPJB90434", "name": "SSX"}, {"id": "NPJB90534", "name": "E.X. Troopers (Demo)"}, {"id": "NPJB90541", "name": "BioHazard 6 (Demo)"}, {"id": "NPJB90576", "name": "Spelunker HD (Demo)"}, {"id": "NPJB90591", "name": "One Piece: Pirate Warriors 2 (Demo)"}, {"id": "NPJB90614", "name": "Puyo Puyo Tetris"}, {"id": "NPJB90626", "name": "Hanasaku Manimani"}, {"id": "NPJB90690", "name": "Yakuza Ishin - (Demo)"}, {"id": "NPJB90717", "name": "Double Dragon Neon"}, {"id": "NPJB90797", "name": "Arslan The Warriors Of Legend (Demo)"}, {"id": "NPJC00012", "name": "Saru! Get You! 3"}, {"id": "NPJD00001", "name": "BioHazard Code: Veronica Kanzenban"}, {"id": "NPJD00004", "name": "Contra: Shattered Solider"}, {"id": "NPJD00005", "name": "Dragon Force"}, {"id": "NPJD00009", "name": "Dynamite Cop"}, {"id": "NPJD00010", "name": "Castlevania: Lament of Innocence"}, {"id": "NPJD00011", "name": "Dead or Alive 2: Hardcore"}, {"id": "NPJD00015", "name": "Capcom vs. SNK 2: Millionaire Fighting 2001"}, {"id": "NPJD00029", "name": "Capcom Fighting Jam"}, {"id": "NPJG00116", "name": "ModNation Racers"}, {"id": "NPJG90019", "name": "echochrome"}, {"id": "NPJG90078", "name": "The Eye of Judgement"}, {"id": "NPJH90065", "name": "R-Type Tactics 2: Operation Bitter Chocolate"}, {"id": "NPJH90087", "name": "Shinsengumi Portable"}, {"id": "NPJH90088", "name": "Tenchu Kurenai Portable"}, {"id": "NPJI00001", "name": "Arc the Lad"}, {"id": "NPJI00018", "name": "Arc the Lad II"}, {"id": "NPJI00032", "name": "Saru! Get You!"}, {"id": "NPJI00044", "name": "Alundra"}, {"id": "NPJI00050", "name": "Arc the Lad III"}, {"id": "NPJI00055", "name": "Addie no Okurimono: To Moze from Addie"}, {"id": "NPJI00072", "name": "AirAssault"}, {"id": "NPJJ00005", "name": "Bishi Bashi Special"}, {"id": "NPJJ00011", "name": "The Adventure of Puppet Princess: Marl Oukoku no Ningyou Hime"}, {"id": "NPJJ00015", "name": "A. IV Evolution Global"}, {"id": "NPJJ00024", "name": "Arcade Hits: Raiden (Major Wave)"}, {"id": "NPJJ00028", "name": "A5: A-Ressha de Ikou 5"}, {"id": "NPJJ00037", "name": "Bakumatsu Rouman: Gekka no Kenshi"}, {"id": "NPJJ00062", "name": "AI Mahjong Selection (MajorWave 1500)"}, {"id": "NPJJ00071", "name": "Chippoke Ralph no Daibouken: The Adventure of Little Ralph"}, {"id": "NPJJ00072", "name": "AI Shogi Selection (Major Wave 1500)"}, {"id": "NPJJ00080", "name": "Athena ~Awakening from the ordinary life~"}, {"id": "NPJJ00107", "name": "Arcade Hits: Frisky Tom"}, {"id": "NPJJ00108", "name": "Moon Cresta (Major Wave Arcade Hits)"}, {"id": "NPJJ00114", "name": "Seirei Hata RayBlade"}, {"id": "NPJJ00129", "name": "BioHazard 2"}, {"id": "NPJJ00132", "name": "Athena no Kateiban: Family Game"}, {"id": "NPJJ00135", "name": "Wai Wai Kusayakyuu"}, {"id": "NPJJ00141", "name": "Baroque Syndrome"}, {"id": "NPJJ00151", "name": "Arcade Hits: Shienryu (MajorWave Series)"}, {"id": "NPJJ00165", "name": "Acid"}, {"id": "NPJJ00172", "name": "Brave Fencer Musashiden"}, {"id": "NPJJ00178", "name": "B.L.U.E.: Legend of Water"}, {"id": "NPJJ00179", "name": "Aquanaut no Kyuujitsu: Memories of Summer 1996"}, {"id": "NPJJ00187", "name": "Arkanoid Returns"}, {"id": "NPJJ00188", "name": "Aquanaut no Kyuujitsu 2"}, {"id": "NPJJ00191", "name": "Beltlogger 9"}, {"id": "NPJJ00255", "name": "Advanced V.G."}, {"id": "NPJJ00260", "name": "Final Fantasy VII International"}, {"id": "NPJJ00265", "name": "Final Fantasy Tactics"}, {"id": "NPJJ00277", "name": "Gaia Seed: Project Seed Trap"}, {"id": "NPJJ00291", "name": "Epica Stella"}, {"id": "NPJJ00328", "name": "Sentimental Graffiti"}, {"id": "NPJJ00345", "name": "Simple 1500 Series Vol. 32: The Boxing"}, {"id": "NPJJ00401", "name": "0 Kara no Mahjong: Mahjong Youchien - Tamago Gumi"}, {"id": "NPJJ00419", "name": "Battle Sugoroku: Hunter (SuperLite 1500 Series)"}, {"id": "NPJJ00422", "name": "Simple 1500 Series Vol. 95: The Hikouki"}, {"id": "NPJJ00426", "name": "Hooockey!! (SuperLite 1500 Series)"}, {"id": "NPJJ00432", "name": "0 Kara no Shogi: Shogi Youchien - Ayumi Kumi"}, {"id": "NPJJ00434", "name": "Anoko Doko Noko"}, {"id": "NPJJ00444", "name": "Chocobo's Dungeon 2"}, {"id": "NPJJ00447", "name": "Akagawa Jirou: Yasoukyoku"}, {"id": "NPJJ00449", "name": "Akagawa Jirou: Yasoukyoku 2"}, {"id": "NPJJ00453", "name": "Angolmois 99 (SuperLite 1500 Series)"}, {"id": "NPJJ00458", "name": "Battle Athletess: Daiundoukai Alternative"}, {"id": "NPJJ00472", "name": "Favorite Dear: Enkan no Monogatari"}, {"id": "NPJJ00488", "name": "Favorite Dear: Junpaku no Yogensha"}, {"id": "NPJJ00489", "name": "Akumajou Dracula X: Gekka no Yasoukyoku"}, {"id": "NPJJ00491", "name": "Asuka 120% Special: Burning Fest Special"}, {"id": "NPJJ00503", "name": "Akagawa Jirou: Majotachi no Nemuri: Fukkatsusai"}, {"id": "NPJJ00510", "name": "CyberBots: Full Metal Madness"}, {"id": "NPJJ00523", "name": "Asuka 120% Excellent: Burning Fest. Excellent"}, {"id": "NPJJ00524", "name": "First Queen IV: Varcia Senki"}, {"id": "NPJJ00546", "name": "Chrono Trigger"}, {"id": "NPJJ00564", "name": "Aero Dive"}, {"id": "NPJJ00596", "name": "'99 Kosuhien"}, {"id": "NPJJ00609", "name": "Dungeon Shoutenkai: Densetsu no Ken Hajimemashita"}, {"id": "NPJJ00615", "name": "Blaster Master"}, {"id": "NPJJ00631", "name": "Action Bass"}, {"id": "NPJJ00643", "name": "The Bistro"}, {"id": "NPJJ00680", "name": "Neo Planet"}, {"id": "NPJJ00682", "name": "Abe a Go Go"}, {"id": "NPJJ00684", "name": "Abe '99"}, {"id": "NPJJ00685", "name": "Heroine Dream"}, {"id": "NPJJ00686", "name": "Heroine Dream 2"}, {"id": "NPJJ00696", "name": "Smash Court 2"}, {"id": "NPJJ00704", "name": "Akumajou Nendaiki: Akumajo Dracula"}, {"id": "NPJJ30001", "name": "Bomberman '94"}, {"id": "NPJJ30002", "name": "Sengoku Mahjong"}, {"id": "NPJJ30003", "name": "Devil Crash"}, {"id": "NPJJ30004", "name": "Takahashi Meijin no Shin Bouken Jima"}, {"id": "NPJJ30005", "name": "Joshoken Necromancer"}, {"id": "NPJJ30006", "name": "Super Star Soldier"}, {"id": "NPJJ30007", "name": "Dungeon Explorer"}, {"id": "NPJJ30009", "name": "Power Sports"}, {"id": "NPJJ30010", "name": "Power League 4"}, {"id": "NPJJ30011", "name": "Gate of Thunder"}, {"id": "NPJJ30012", "name": "PC Genjin"}, {"id": "NPJJ30013", "name": "Dungeon Explorer II"}, {"id": "NPJJ30014", "name": "PC Genjin 2"}, {"id": "NPJJ30015", "name": "Winds of Thunder"}, {"id": "NPJJ30016", "name": "Blazing Lazers"}, {"id": "NPJJ30017", "name": "PC Genjin 3"}, {"id": "NPJJ30018", "name": "The Kung Fu"}, {"id": "NPJJ30019", "name": "Alien Crush"}, {"id": "NPJJ30020", "name": "Dai Makai-Mura"}, {"id": "NPJJ30021", "name": "Gradius"}, {"id": "NPJJ30022", "name": "Soldier Blade"}, {"id": "NPJJ30024", "name": "Detana!! TwinBee"}, {"id": "NPJJ30025", "name": "Battle Ace"}, {"id": "NPJJ30026", "name": "Victory Run: Eikou no 13,000KM"}, {"id": "NPJJ30027", "name": "Neutopia: Frey no Shou"}, {"id": "NPJJ30028", "name": "Neutopia II"}, {"id": "NPJJ30029", "name": "Tengai Makyou: Ziria"}, {"id": "NPJJ30030", "name": "Salamander"}, {"id": "NPJJ30031", "name": "Gradius II: Gofer no Yabou"}, {"id": "NPJJ30033", "name": "Mugen Senshi Valis"}, {"id": "NPJJ30034", "name": "Valis II"}, {"id": "NPJJ30035", "name": "Benkei Gaiden"}, {"id": "NPJJ30036", "name": "Tengai Makyou II: Manji Maru"}, {"id": "NPJJ30038", "name": "Ys I + II"}, {"id": "NPJJ30039", "name": "Ys III: Wanderers from Ys"}, {"id": "NPJJ30040", "name": "Ys IV: The Dawn of Ys"}, {"id": "NPJJ30041", "name": "Aldynes: The Mission Code for Rage Crisis"}, {"id": "NPJJ30043", "name": "Cho Aniki"}, {"id": "NPJJ30044", "name": "Moto Roader II"}, {"id": "NPJJ30045", "name": "Double Dungeons"}, {"id": "NPJJ30046", "name": "Kaizou Chounin Shubibinman"}, {"id": "NPJJ30047", "name": "Kaizou Chounin Shubibinman 2: Atanaru Teki"}, {"id": "NPJJ30048", "name": "Langrisser: Hikari no Matsuei"}, {"id": "NPJJ30051", "name": "Galaga '88"}, {"id": "NPJJ30052", "name": "Splatterhouse"}, {"id": "NPJJ30054", "name": "Chiki Chiki Boys"}, {"id": "NPJJ30055", "name": "R-Type"}, {"id": "NPJJ30059", "name": "Kaizou Chounin Shubibinman 3: Ikai no Princess"}, {"id": "NPJK00001", "name": "Xamd: Lost Memories"}, {"id": "NPJY90007", "name": "Yuusha 30: Princess 30"}, {"id": "NPUA00073", "name": "PAIN"}, {"id": "NPUA30002", "name": "Bejeweled 2"}, {"id": "NPUA30003", "name": "Zuma"}, {"id": "NPUA30004", "name": "Heavy Weapon: Atomic Tank"}, {"id": "NPUA30005", "name": "Peggle"}, {"id": "NPUA30006", "name": "Feeding Frenzy 2: Shipwreck Showdown"}, {"id": "NPUA30013", "name": "Switchball"}, {"id": "NPUA30014", "name": "Groovin' Blocks"}, {"id": "NPUA30016", "name": "Revenge of the Wounded Dragons"}, {"id": "NPUA30029", "name": "Gundemonium Recollection"}, {"id": "NPUA30030", "name": "Hitogata Happa"}, {"id": "NPUA30031", "name": "GundeadliGne - Gundemonium Collection"}, {"id": "NPUA30032", "name": "Crescent Pale Mist"}, {"id": "NPUA30033", "name": "Qlione"}, {"id": "NPUA30035", "name": "Swords and Soldiers"}, {"id": "NPUA30036", "name": "Akimi Village"}, {"id": "NPUA30037", "name": "TerRover"}, {"id": "NPUA30054", "name": "Qlione 2"}, {"id": "NPUA30060", "name": "Slam Bolt Scrappers"}, {"id": "NPUA30061", "name": "Rochard"}, {"id": "NPUA30066", "name": "Sideway"}, {"id": "NPUA30073", "name": "Payday: The Heist"}, {"id": "NPUA30373", "name": "LIMBO"}, {"id": "NPUA70004", "name": "MLB 08 The Show (Demo)"}, {"id": "NPUA70006", "name": "NBA 09 The Inside"}, {"id": "NPUA70021", "name": "PixelJunk Eden (Demo)"}, {"id": "NPUA70032", "name": "MLB 09 The Show (Demo)"}, {"id": "NPUA70034", "name": "Killzone 2"}, {"id": "NPUA70046", "name": "inFamous (Demo)"}, {"id": "NPUA70060", "name": "SingStar Viewer"}, {"id": "NPUA70080", "name": "God of War 3 E3 (Demo)"}, {"id": "NPUA70088", "name": "Heavy Rain (Demo)"}, {"id": "NPUA70096", "name": "ModNation Racers (QORE Demo)"}, {"id": "NPUA70102", "name": "Kung Fu Rider (Demo)"}, {"id": "NPUA70107", "name": "Beat Sketcher (Demo)"}, {"id": "NPUA70112", "name": "Heavy Rain (Demo)"}, {"id": "NPUA70140", "name": "MotorStorm: Apocalypse (Demo)"}, {"id": "NPUA70153", "name": "Uncharted 3 Drake's Deception Beta"}, {"id": "NPUA70175", "name": "Resistance 3 - Haven (Demo)"}, {"id": "NPUA70180", "name": "Uncharted 3: Drake's Deception Subway"}, {"id": "NPUA70181", "name": "Ratchet & Clank: All 4 One - (Demo)"}, {"id": "NPUA70192", "name": "Twisted Metal"}, {"id": "NPUA70196", "name": "GT Academy 2012"}, {"id": "NPUA70216", "name": "God of War: Ascension Multiplayer Beta"}, {"id": "NPUA70218", "name": "Journey: Collector's Edition"}, {"id": "NPUA70257", "name": "The Last of Us (Demo)"}, {"id": "NPUA72074", "name": "Beyond: Two Souls (Demo)"}, {"id": "NPUA80001", "name": "flOw"}, {"id": "NPUA80002", "name": "Blast Factor"}, {"id": "NPUA80008", "name": ".detuned"}, {"id": "NPUA80009", "name": "Linger in Shadows"}, {"id": "NPUA80011", "name": "Go! Sudoku"}, {"id": "NPUA80012", "name": "Lemmings"}, {"id": "NPUA80018", "name": "NBA 07 (Demo)"}, {"id": "NPUA80019", "name": "Gran Turismo HD Concept"}, {"id": "NPUA80022", "name": "Go! Puzzle"}, {"id": "NPUA80025", "name": "Blast Factor"}, {"id": "NPUA80026", "name": "Super Rub'a'Dub"}, {"id": "NPUA80034", "name": "Lemmings (Demo)"}, {"id": "NPUA80044", "name": "High Velocity Bowling"}, {"id": "NPUA80063", "name": "Super Rub 'a' Dub"}, {"id": "NPUA80064", "name": "Nucleus"}, {"id": "NPUA80068", "name": "Super Stardust HD"}, {"id": "NPUA80069", "name": "LocoRoco Cocoreccho!"}, {"id": "NPUA80070", "name": "Go! Sports Ski"}, {"id": "NPUA80072", "name": "Snakeball"}, {"id": "NPUA80073", "name": "Pain"}, {"id": "NPUA80075", "name": "Gran Turismo 5 Prologue"}, {"id": "NPUA80077", "name": "WarHawk"}, {"id": "NPUA80083", "name": "Flower"}, {"id": "NPUA80088", "name": "Calling All Cars!"}, {"id": "NPUA80091", "name": "Piyotama"}, {"id": "NPUA80092", "name": "Go! Sports Skydiving"}, {"id": "NPUA80093", "name": "WarHawk"}, {"id": "NPUA80095", "name": "EyeCreate"}, {"id": "NPUA80098", "name": "Everyday Shooter"}, {"id": "NPUA80100", "name": "PixelJunk Racers"}, {"id": "NPUA80103", "name": "Heavenly Sword (Demo)"}, {"id": "NPUA80104", "name": "Toy Home"}, {"id": "NPUA80105", "name": "WipEout HD"}, {"id": "NPUA80108", "name": "PixelJunk Monsters Encore"}, {"id": "NPUA80112", "name": "NBA 08 (Demo)"}, {"id": "NPUA80127", "name": "Aquatopia"}, {"id": "NPUA80128", "name": "The Trials of Topoq"}, {"id": "NPUA80129", "name": "Operation Creature Feature"}, {"id": "NPUA80132", "name": "Mesmerize"}, {"id": "NPUA80133", "name": "Tori-Emaki"}, {"id": "NPUA80134", "name": "echochrome"}, {"id": "NPUA80136", "name": "SIREN: Blood Curse"}, {"id": "NPUA80137", "name": "Wheel of Fortune"}, {"id": "NPUA80139", "name": "Fat Princess"}, {"id": "NPUA80145", "name": "Ratchet & Clank Future - Quest For Booty"}, {"id": "NPUA80154", "name": "The Last Guy"}, {"id": "NPUA80157", "name": "Elefunk"}, {"id": "NPUA80160", "name": "PixelJunk Eden"}, {"id": "NPUA80216", "name": "Crash Commando"}, {"id": "NPUA80217", "name": "Rad Doll Kung Fu"}, {"id": "NPUA80219", "name": "Xamd: Lost Memories"}, {"id": "NPUA80227", "name": "Jeopardy!"}, {"id": "NPUA80228", "name": "Savage Moon"}, {"id": "NPUA80230", "name": "Buzz! Junior: Jungle Party"}, {"id": "NPUA80231", "name": "Buzz! Junior: Monster Rally"}, {"id": "NPUA80232", "name": "Buzz! Junior: RoboJam"}, {"id": "NPUA80253", "name": "PixelJunk Shooter"}, {"id": "NPUA80275", "name": "Journey"}, {"id": "NPUA80291", "name": "Hustle Kings"}, {"id": "NPUA80292", "name": "Gravity Crash"}, {"id": "NPUA80316", "name": "PlayStation All-Stars Battle Royale"}, {"id": "NPUA80319", "name": "NUMBLAST"}, {"id": "NPUA80358", "name": "Dead Nation: Road of Devastation"}, {"id": "NPUA80395", "name": "PixelJunk Racers 2nd Lap"}, {"id": "NPUA80470", "name": "Tumble"}, {"id": "NPUA80472", "name": "LittleBigPlanet"}, {"id": "NPUA80473", "name": "Echochrome II"}, {"id": "NPUA80479", "name": "Sackboy's Prehistoric Moves"}, {"id": "NPUA80480", "name": "inFamous"}, {"id": "NPUA80483", "name": "Buzz! Quiz Player"}, {"id": "NPUA80488", "name": "Eat Them!"}, {"id": "NPUA80490", "name": "God of War HD"}, {"id": "NPUA80491", "name": "God of War II HD"}, {"id": "NPUA80499", "name": "Motorstorm 3D Rift"}, {"id": "NPUA80523", "name": "Tokyo Jungle"}, {"id": "NPUA80535", "name": "ModNation Racers"}, {"id": "NPUA80538", "name": "PixelJunk 4am - Live Viewer"}, {"id": "NPUA80543", "name": "Sound Shapes"}, {"id": "NPUA80618", "name": "Jak and Dexter Collection"}, {"id": "NPUA80636", "name": "God of War: Ghost of Sparta HD"}, {"id": "NPUA80637", "name": "God of War: Chains of Olympus HD"}, {"id": "NPUA80638", "name": "InFamous 2"}, {"id": "NPUA80642", "name": "Ratchet & Clank: QForce"}, {"id": "NPUA80643", "name": "Ratchet & Clank"}, {"id": "NPUA80646", "name": "Ratchet: Deadlocked"}, {"id": "NPUA80657", "name": "inFamous 2: Festival of Blood"}, {"id": "NPUA80661", "name": "MotorStorm: Apocalypse"}, {"id": "NPUA80662", "name": "LittleBigPlanet 2"}, {"id": "NPUA80676", "name": "ICO"}, {"id": "NPUA80677", "name": "Shadow of the Colossus"}, {"id": "NPUA80694", "name": "Datura"}, {"id": "NPUA80695", "name": "Ratchet & Clank: All 4 One"}, {"id": "NPUA80697", "name": "Uncharted: Drake's Fortune"}, {"id": "NPUA80698", "name": "Uncharted 2: Among Thieves"}, {"id": "NPUA80706", "name": "Jak and Daxter: The Precursor Legacy"}, {"id": "NPUA80707", "name": "Jak II HD"}, {"id": "NPUA80719", "name": "Rain"}, {"id": "NPUA80754", "name": "When Vikings Attack"}, {"id": "NPUA80765", "name": "Hot Shot Golf: Out of Bounds Complete Collection"}, {"id": "NPUA80783", "name": "Hohokum"}, {"id": "NPUA80788", "name": "Grave Diggers"}, {"id": "NPUA80789", "name": "Duke War!!"}, {"id": "NPUA80790", "name": "Nostril Shot"}, {"id": "NPUA80797", "name": "Malicious"}, {"id": "NPUA80848", "name": "LittleBigPlanet Karting"}, {"id": "NPUA80853", "name": "Everybody Dance"}, {"id": "NPUA80856", "name": "Killzone"}, {"id": "NPUA80864", "name": "Hot Shots Golf: World Invitational"}, {"id": "NPUA80870", "name": "CounterSpy"}, {"id": "NPUA80875", "name": "Sly Cooper: Thieves in Time Full Game Trial"}, {"id": "NPUA80882", "name": "Bentley's Hackpack"}, {"id": "NPUA80900", "name": "Resogun"}, {"id": "NPUA80930", "name": "Helldivers"}, {"id": "NPUA80966", "name": "Ratchet & Clank Future: A Crack In Time"}, {"id": "NPUA80969", "name": "MLB 14: The Show"}, {"id": "NPUA80982", "name": "MLB 13: The Show Home Run Derby Edition"}, {"id": "NPUA81049", "name": "Gran Turismo 6"}, {"id": "NPUA81051", "name": "Entwined"}, {"id": "NPUA81052", "name": "Doki Doki Universe"}, {"id": "NPUA81087", "name": "Beyond: Two Souls"}, {"id": "NPUA81116", "name": "LittleBigPlanet 3"}, {"id": "NPUA98103", "name": "Uncharted: Drake's Fortune (Demo)"}, {"id": "NPUA98153", "name": "Ratchet & Clank Future: Tools of Destruction (Demo)"}, {"id": "NPUA98202", "name": "The Unfinished Swan"}, {"id": "NPUB02299", "name": "Pumped BMX +"}, {"id": "NPUB30001", "name": "Cash, Guns and Chaos DLX"}, {"id": "NPUB30002", "name": "GripShift"}, {"id": "NPUB30003", "name": "Rampage World Tour"}, {"id": "NPUB30004", "name": "Mortal Kombat 2"}, {"id": "NPUB30006", "name": "Gauntlet II"}, {"id": "NPUB30007", "name": "Championship Sprint"}, {"id": "NPUB30009", "name": "Tekken 5 Dark Resurrection"}, {"id": "NPUB30010", "name": "Q*bert"}, {"id": "NPUB30016", "name": "High Stakes on the Vegas Strip: Poker Edition"}, {"id": "NPUB30017", "name": "Super Puzzle Fighter II Turbo HD Remix"}, {"id": "NPUB30018", "name": "Rocketman: Axis of Evil"}, {"id": "NPUB30021", "name": "Wolf of the Battlefield: Commando 3"}, {"id": "NPUB30022", "name": "Bionic Commando Rearmed"}, {"id": "NPUB30023", "name": "Fatal Inertia EX"}, {"id": "NPUB30024", "name": "1942: Joint Strike"}, {"id": "NPUB30025", "name": "NovaStrike"}, {"id": "NPUB30028", "name": "Assault Heroes"}, {"id": "NPUB30030", "name": "Red Baron Arcade"}, {"id": "NPUB30031", "name": "Prince of Persia Classic"}, {"id": "NPUB30032", "name": "Noby Noby Boy"}, {"id": "NPUB30033", "name": "Age of Booty"}, {"id": "NPUB30034", "name": "Super Street Fighter 2 Turbo HD"}, {"id": "NPUB30035", "name": "Supersonic Acrobatic Rocket-Powered Battle-Cars"}, {"id": "NPUB30036", "name": "Mega Man 9"}, {"id": "NPUB30039", "name": "Soldner-X Himmelssturmer"}, {"id": "NPUB30040", "name": "Burnout Paradise"}, {"id": "NPUB30041", "name": "Puzzle Quest: Challenge of the Warlords"}, {"id": "NPUB30042", "name": "CellFactor: Psychokinetic Wars"}, {"id": "NPUB30043", "name": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode 1"}, {"id": "NPUB30044", "name": "GTI Club+: Rally Côte d'Azur"}, {"id": "NPUB30045", "name": "Mahjong Tales: Ancient Wisdom"}, {"id": "NPUB30046", "name": "Burn Zombie Burn!"}, {"id": "NPUB30047", "name": "Magic Orbz"}, {"id": "NPUB30048", "name": "Lumines Supernova"}, {"id": "NPUB30050", "name": "Watchmen: The End is Nigh"}, {"id": "NPUB30051", "name": "Bomberman Ultra"}, {"id": "NPUB30052", "name": "Flock!"}, {"id": "NPUB30054", "name": "Cuboid"}, {"id": "NPUB30056", "name": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode 2"}, {"id": "NPUB30057", "name": "Droplitz"}, {"id": "NPUB30058", "name": "3 on 3 NHL Arcade"}, {"id": "NPUB30059", "name": "Critter Crunch"}, {"id": "NPUB30061", "name": "Comet Crash"}, {"id": "NPUB30062", "name": "Astro Tripper"}, {"id": "NPUB30063", "name": "Topatoi: Spinning Through the Worlds"}, {"id": "NPUB30064", "name": "Texas Cheat 'Em"}, {"id": "NPUB30065", "name": "Call of Duty: Classic"}, {"id": "NPUB30066", "name": "Diner Dash"}, {"id": "NPUB30067", "name": "Military Madness: Nectaris"}, {"id": "NPUB30068", "name": "Marvel vs. Capcom 2: New Age of Heroes"}, {"id": "NPUB30069", "name": "Zombie Apocalypse"}, {"id": "NPUB30070", "name": "The Punisher: No Mercy"}, {"id": "NPUB30071", "name": "Watchmen The End Is Nigh"}, {"id": "NPUB30072", "name": "Puzzle Quest: Galactrix"}, {"id": "NPUB30073", "name": "Invincible Tiger: The Legend of Han Tao"}, {"id": "NPUB30074", "name": "Wolfenstein 3D"}, {"id": "NPUB30077", "name": "Battlefield 1943 Online"}, {"id": "NPUB30078", "name": "Gunstar Heroes"}, {"id": "NPUB30084", "name": "Star Trek: D-A-C"}, {"id": "NPUB30086", "name": "Namco Museum Essentials"}, {"id": "NPUB30087", "name": "Final Fight: Double Impact"}, {"id": "NPUB30089", "name": "Digger HD"}, {"id": "NPUB30091", "name": "Shatter"}, {"id": "NPUB30092", "name": "Crystal Defenders"}, {"id": "NPUB30093", "name": "Hasbro Family Game Night"}, {"id": "NPUB30096", "name": "Hard Corps: Uprising"}, {"id": "NPUB30097", "name": "Smash Cars"}, {"id": "NPUB30098", "name": "Wakeboarding HD"}, {"id": "NPUB30099", "name": "Mushroom Wars"}, {"id": "NPUB30100", "name": "Interpol: The Trail of Dr. Chaos"}, {"id": "NPUB30101", "name": "Hamster Ball"}, {"id": "NPUB30102", "name": "Matt Hazard: Blood Bath and Beyond"}, {"id": "NPUB30104", "name": "Inferno Pool"}, {"id": "NPUB30105", "name": "Soldner X-2: Final Prototype"}, {"id": "NPUB30106", "name": "Anarchy: Rush Hour"}, {"id": "NPUB30107", "name": "Teenage Mutant Ninja Turtles: Turtles In Time Re-Shelled"}, {"id": "NPUB30110", "name": "Pinballistik"}, {"id": "NPUB30112", "name": "Rush'N Attack Ex-Patriot"}, {"id": "NPUB30113", "name": "Polar Panic"}, {"id": "NPUB30114", "name": "Mega Man 10"}, {"id": "NPUB30116", "name": "Top Gun"}, {"id": "NPUB30118", "name": "Frogger Returns"}, {"id": "NPUB30120", "name": "Earthworm Jim HD"}, {"id": "NPUB30123", "name": "Rocket Knight"}, {"id": "NPUB30125", "name": "Puzzlegeddon"}, {"id": "NPUB30126", "name": "BattleFantasia"}, {"id": "NPUB30127", "name": "Sonic the Hedgehog 4: Episode I"}, {"id": "NPUB30130", "name": "Greed Corp"}, {"id": "NPUB30131", "name": "Bionic Commando Rearmed 2"}, {"id": "NPUB30133", "name": "Braid"}, {"id": "NPUB30134", "name": "Madden NFL Arcade"}, {"id": "NPUB30140", "name": "Days of Thunder: NASCAR Edition"}, {"id": "NPUB30141", "name": "Alien Breed: Impact"}, {"id": "NPUB30142", "name": "Record of Agarest War"}, {"id": "NPUB30144", "name": "Sky Fighter"}, {"id": "NPUB30145", "name": "Death Track: Resurrection"}, {"id": "NPUB30146", "name": "NBA Unrivaled"}, {"id": "NPUB30147", "name": "Fret Nice"}, {"id": "NPUB30148", "name": "Super Stacker Party"}, {"id": "NPUB30151", "name": "After Burner Climax"}, {"id": "NPUB30152", "name": "Spelunker HD"}, {"id": "NPUB30154", "name": "Tank Battles"}, {"id": "NPUB30155", "name": "TV Show King"}, {"id": "NPUB30156", "name": "3D Ultra Mini Golf Adventures 2"}, {"id": "NPUB30158", "name": "Brain Challenge"}, {"id": "NPUB30159", "name": "Blue Toad Murder Files: The Mysteries of Little Riddle"}, {"id": "NPUB30160", "name": "UNO"}, {"id": "NPUB30161", "name": "Section 8"}, {"id": "NPUB30162", "name": "Scott Pilgrim vs. the World: The Game"}, {"id": "NPUB30165", "name": "DeathSpank"}, {"id": "NPUB30167", "name": "The Price is Right"}, {"id": "NPUB30172", "name": "Ricochet"}, {"id": "NPUB30174", "name": "Might & Magic: Clash of Heroes"}, {"id": "NPUB30181", "name": "Castle Crashers"}, {"id": "NPUB30182", "name": "Marvel Pinball"}, {"id": "NPUB30183", "name": "Kickbeat"}, {"id": "NPUB30185", "name": "Sam & Max: The Devil's Playhouse Episode 1: The Penal Zone"}, {"id": "NPUB30186", "name": "Voodoo Dice"}, {"id": "NPUB30188", "name": "Family Feud"}, {"id": "NPUB30189", "name": "Hyperballoid HD"}, {"id": "NPUB30192", "name": "Dream Chronicles"}, {"id": "NPUB30203", "name": "Aqua Panic!"}, {"id": "NPUB30206", "name": "Joe Danger"}, {"id": "NPUB30210", "name": "Storm"}, {"id": "NPUB30217", "name": "Dragon's Lair"}, {"id": "NPUB30219", "name": "Sam & Max: The Devil's Playhouse Episode 2: The Tomb of Sammun-M"}, {"id": "NPUB30220", "name": "Sam & Max: The Devil's Playhouse Episode 3: They Stole Max's Brain!"}, {"id": "NPUB30221", "name": "Sam & Max: The Devil's Playhouse Episode 4: Beyond the Alley o'D"}, {"id": "NPUB30222", "name": "Sam & Max: The Devil's Playhouse Episode 5: The City That Dares"}, {"id": "NPUB30223", "name": "Test Yourself"}, {"id": "NPUB30224", "name": "Blacklight Tango Down Online"}, {"id": "NPUB30225", "name": "Lara Croft and the Guardian of Light"}, {"id": "NPUB30226", "name": "Tetris"}, {"id": "NPUB30227", "name": "Dungeon Hunter Alliance"}, {"id": "NPUB30228", "name": "Lead and Gold: Gangs of the Wild West"}, {"id": "NPUB30230", "name": "Worms 2: Armageddon"}, {"id": "NPUB30231", "name": "Kick-Ass: The Game"}, {"id": "NPUB30232", "name": "Shank"}, {"id": "NPUB30233", "name": "Hydrophobia Prophecy"}, {"id": "NPUB30235", "name": "Labyrinth Legends"}, {"id": "NPUB30242", "name": "Crazy Taxi"}, {"id": "NPUB30243", "name": "Tecmo Bowl Throwback"}, {"id": "NPUB30245", "name": "Auditorium HD"}, {"id": "NPUB30248", "name": "Elemental Monster: Online Card Game"}, {"id": "NPUB30249", "name": "Sonic Adventure"}, {"id": "NPUB30250", "name": "Faery: Legends of Avalon"}, {"id": "NPUB30251", "name": "Dungeon Defenders"}, {"id": "NPUB30252", "name": "Gotham City Imposters"}, {"id": "NPUB30253", "name": "Blade Kitten"}, {"id": "NPUB30255", "name": "My Aquarium"}, {"id": "NPUB30257", "name": "NEOGEO STATION League Bowling"}, {"id": "NPUB30258", "name": "Metal Slug NEOGEO"}, {"id": "NPUB30259", "name": "NEOGEO STATION Super Sidekicks"}, {"id": "NPUB30260", "name": "Fatal Fury: King of Fighters"}, {"id": "NPUB30261", "name": "Art of Fighting"}, {"id": "NPUB30262", "name": "Baseball Stars Professional"}, {"id": "NPUB30263", "name": "Alpha Mission II"}, {"id": "NPUB30264", "name": "Magician Lord"}, {"id": "NPUB30265", "name": "Samurai Shodown"}, {"id": "NPUB30266", "name": "NEOGEO STATION The King Of Fighters '94"}, {"id": "NPUB30267", "name": "Costume Quest"}, {"id": "NPUB30268", "name": "Modern Combat: Domination"}, {"id": "NPUB30269", "name": "Dead Space: Ignition"}, {"id": "NPUB30275", "name": "Absolute Supercars"}, {"id": "NPUB30278", "name": "TNT Racers"}, {"id": "NPUB30280", "name": "Retro/Grade"}, {"id": "NPUB30283", "name": "Tales of Monkey Island 1: Launch of the Screaming Narwhal"}, {"id": "NPUB30284", "name": "Tales of Monkey Island 2: The Siege of Spinner Cay"}, {"id": "NPUB30285", "name": "Tales of Monkey Island 3: Lair of the Leviathan"}, {"id": "NPUB30286", "name": "Tales of Monkey Island 4: The Trial and Execution of Guybrush Threepwood"}, {"id": "NPUB30287", "name": "Tales of Monkey Island 5: Rise of the Pirate God"}, {"id": "NPUB30288", "name": "Medal of Honor: Frontline"}, {"id": "NPUB30290", "name": "Stacking"}, {"id": "NPUB30292", "name": "DeathSpank: Thongs of Virtue"}, {"id": "NPUB30295", "name": "Red Faction: Guerrilla"}, {"id": "NPUB30296", "name": "Red Faction: Battlegrounds"}, {"id": "NPUB30297", "name": "The UnderGarden"}, {"id": "NPUB30301", "name": "Street Fighter III: Third Strike Online Edition"}, {"id": "NPUB30302", "name": "Crysis"}, {"id": "NPUB30303", "name": "Prince of Persia: The Sands of Time HD"}, {"id": "NPUB30304", "name": "Pac-Man Championship Edition DX"}, {"id": "NPUB30305", "name": "Space Invaders Infinity Game"}, {"id": "NPUB30308", "name": "All Zombies Must Die!"}, {"id": "NPUB30309", "name": "Deadliest Warrior: The Game"}, {"id": "NPUB30310", "name": "Spare Parts"}, {"id": "NPUB30311", "name": "Tales from Space: About a Blob"}, {"id": "NPUB30312", "name": "Resident Evil 4 HD"}, {"id": "NPUB30314", "name": "Dead Space: Extraction"}, {"id": "NPUB30315", "name": "Joe Danger"}, {"id": "NPUB30318", "name": "Dungeons & Dragons: Daggerdale"}, {"id": "NPUB30320", "name": "X-Men - The Arcade Game"}, {"id": "NPUB30321", "name": "Galaga Legions DX"}, {"id": "NPUB30323", "name": "Alex Kidd In Miracle World"}, {"id": "NPUB30324", "name": "Monster World IV"}, {"id": "NPUB30326", "name": "Super Hang-On"}, {"id": "NPUB30327", "name": "Wonder Boy in Monster World"}, {"id": "NPUB30330", "name": "Magic: The Gathering - Duels of the Planeswalkers"}, {"id": "NPUB30331", "name": "Trine 2"}, {"id": "NPUB30333", "name": "MicroBot"}, {"id": "NPUB30335", "name": "Alien Breed 2: Assault"}, {"id": "NPUB30336", "name": "Alien Breed 3: Descent"}, {"id": "NPUB30337", "name": "Dead Space: Extraction"}, {"id": "NPUB30338", "name": "Superstars V8 Racing"}, {"id": "NPUB30339", "name": "Funky Lab Rat"}, {"id": "NPUB30340", "name": "Dungeon Twister"}, {"id": "NPUB30343", "name": "The Fancy Pants Adventures"}, {"id": "NPUB30345", "name": "Moon Diver"}, {"id": "NPUB30346", "name": "Swarm"}, {"id": "NPUB30347", "name": "4 Elements HD"}, {"id": "NPUB30350", "name": "Cubixx HD"}, {"id": "NPUB30352", "name": "SEGA Bass Fishing"}, {"id": "NPUB30358", "name": "Batman: Arkham City"}, {"id": "NPUB30365", "name": "Ghostbusters: Sanctum of Slime"}, {"id": "NPUB30367", "name": "Blokus"}, {"id": "NPUB30368", "name": "Jeremy McGrath's Offroad"}, {"id": "NPUB30370", "name": "Tomb Raider: Underworld"}, {"id": "NPUB30372", "name": "Chime Super Deluxe"}, {"id": "NPUB30373", "name": "LIMBO"}, {"id": "NPUB30375", "name": "SEGA Rally Online Arcade"}, {"id": "NPUB30376", "name": "Kung-Fu Live"}, {"id": "NPUB30377", "name": "BloodRayne: Betrayal"}, {"id": "NPUB30378", "name": "Hollywood Squares"}, {"id": "NPUB30382", "name": "Ferrari: The Race Experience"}, {"id": "NPUB30383", "name": "I Am Alive"}, {"id": "NPUB30384", "name": "BurgerTime: World Tour"}, {"id": "NPUB30385", "name": "Worms Crazy Golf"}, {"id": "NPUB30386", "name": "Space Ace"}, {"id": "NPUB30387", "name": "Prince of Persia: The Two Thrones"}, {"id": "NPUB30388", "name": "Prince of Persia - Warrior Within"}, {"id": "NPUB30389", "name": "Prototype"}, {"id": "NPUB30390", "name": "Dragon's Lair II: Time Warp"}, {"id": "NPUB30391", "name": "RISK Factions"}, {"id": "NPUB30392", "name": "BioShock 2"}, {"id": "NPUB30395", "name": "StrongBad's Cool Game For Attractive People - Episode 1: Homestar Ruiner"}, {"id": "NPUB30401", "name": "Back to the Future: The Game - Episode 1: It's About Time"}, {"id": "NPUB30403", "name": "StarDrone"}, {"id": "NPUB30408", "name": "Magic: The Gathering - Duels of the Planeswalkers 2012"}, {"id": "NPUB30409", "name": "Back to the Future: The Game - Episode 2: Get Tannen"}, {"id": "NPUB30410", "name": "Back to the Future: The Game - Episode 3: Citizen Brown"}, {"id": "NPUB30411", "name": "Back to the Future: The Game - Episode 4: Double Visions"}, {"id": "NPUB30412", "name": "Back to the Future: The Game - Episode 5: OUTATIME"}, {"id": "NPUB30413", "name": "Borderlands"}, {"id": "NPUB30417", "name": "Tetris"}, {"id": "NPUB30418", "name": "From Dust"}, {"id": "NPUB30419", "name": "Mercury Hg"}, {"id": "NPUB30420", "name": "Star Raiders"}, {"id": "NPUB30422", "name": "Hoard"}, {"id": "NPUB30423", "name": "Assassin's Creed II"}, {"id": "NPUB30424", "name": "Prince of Persia"}, {"id": "NPUB30425", "name": "Arcana Heart 3"}, {"id": "NPUB30426", "name": "Red Johnson's Chronicles"}, {"id": "NPUB30428", "name": "Elevator Action Deluxe"}, {"id": "NPUB30431", "name": "Warlords"}, {"id": "NPUB30433", "name": "Crazy Machines Elements"}, {"id": "NPUB30434", "name": "Rainbow Moon"}, {"id": "NPUB30439", "name": "Puddle"}, {"id": "NPUB30441", "name": "SEGA Vintage Collection: Golden Axe"}, {"id": "NPUB30442", "name": "Sonic the Hedgehog"}, {"id": "NPUB30443", "name": "Sonic the Hedgehog 2"}, {"id": "NPUB30444", "name": "Streets of Rage II"}, {"id": "NPUB30446", "name": "Wanted Corp."}, {"id": "NPUB30448", "name": "Nelson Tethers: Puzzle Agent"}, {"id": "NPUB30449", "name": "Pure"}, {"id": "NPUB30450", "name": "Split Second"}, {"id": "NPUB30451", "name": "Assassin's Creed"}, {"id": "NPUB30452", "name": "Wizardry: Labyrinth of Lost Souls"}, {"id": "NPUB30453", "name": "Eufloria"}, {"id": "NPUB30454", "name": "Gatling Gears"}, {"id": "NPUB30455", "name": "Tom Clancy's Splinter Cell: Pandora Tomorrow HD"}, {"id": "NPUB30456", "name": "Tom Clancy's Splinter Cell HD"}, {"id": "NPUB30457", "name": "Ridge Racer 7 3D"}, {"id": "NPUB30458", "name": "Hamilton's Great Adventure"}, {"id": "NPUB30459", "name": "SEGA Vintage Collection: Altered Beast"}, {"id": "NPUB30460", "name": "SEGA Vintage Collection: Comix Zone"}, {"id": "NPUB30461", "name": "Learning With the PooYoos: Episode 1"}, {"id": "NPUB30463", "name": "Apples to Apples"}, {"id": "NPUB30464", "name": "Burnout CRASH!"}, {"id": "NPUB30466", "name": "De Blob 2"}, {"id": "NPUB30467", "name": "Resident Evil Code: Veronica X HD"}, {"id": "NPUB30468", "name": "Mortal Kombat Arcade Kollection"}, {"id": "NPUB30470", "name": "Battle: Los Angeles"}, {"id": "NPUB30471", "name": "Midnight Club: Los Angeles"}, {"id": "NPUB30473", "name": "Warhammer 40,000: Kill Team"}, {"id": "NPUB30474", "name": "Time Machine: Rogue Pilot"}, {"id": "NPUB30475", "name": "Dragon Age: Origins"}, {"id": "NPUB30476", "name": "Dragon Age II"}, {"id": "NPUB30477", "name": "Dead Space 2"}, {"id": "NPUB30478", "name": "Dante's Inferno"}, {"id": "NPUB30480", "name": "Twisted Land: Shadow Town"}, {"id": "NPUB30481", "name": "Mix Superstar"}, {"id": "NPUB30482", "name": "Dead Block"}, {"id": "NPUB30483", "name": "Sine Mora"}, {"id": "NPUB30484", "name": "SkyDrift"}, {"id": "NPUB30490", "name": "Deadliest Warrior: Legends"}, {"id": "NPUB30491", "name": "Ugly Americans: Apocalypsegeddon"}, {"id": "NPUB30493", "name": "Daytona USA"}, {"id": "NPUB30494", "name": "Wonder Boy in Monster Land"}, {"id": "NPUB30498", "name": "Sam & Max: Beyond Time and Space Episode 1: Ice Station Santa"}, {"id": "NPUB30499", "name": "Jurassic Park The Game - Episode 1"}, {"id": "NPUB30502", "name": "Tom Clancy's Ghost Recon: Advanced Warfighter 2"}, {"id": "NPUB30503", "name": "Tom Clancy's Rainbow Six: Vegas 2"}, {"id": "NPUB30505", "name": "Castlevania: Harmony of Despair"}, {"id": "NPUB30506", "name": "Zombie Apocalypse: Never Die Alone"}, {"id": "NPUB30509", "name": "EA Sports MMA"}, {"id": "NPUB30510", "name": "Armageddon Riders"}, {"id": "NPUB30513", "name": "The Baconing"}, {"id": "NPUB30514", "name": "Okabu"}, {"id": "NPUB30515", "name": "Machinarium"}, {"id": "NPUB30517", "name": "Sam & Max: Beyond Time and Space Episode 2: Moai Better Blues"}, {"id": "NPUB30518", "name": "Sam & Max: Beyond Time and Space Episode 3: Night of the Raving"}, {"id": "NPUB30519", "name": "Sam & Max: Beyond Time and Space Episode 4: Chariots of the Dogs"}, {"id": "NPUB30520", "name": "Sam & Max: Beyond Time and Space Episode 5: What's New Beelzebub"}, {"id": "NPUB30521", "name": "Need for Speed: Hot Pursuit"}, {"id": "NPUB30522", "name": "Assassin's Creed: Brotherhood"}, {"id": "NPUB30523", "name": "Far Cry 2"}, {"id": "NPUB30524", "name": "Voltron: Defender of the Universe"}, {"id": "NPUB30525", "name": "Puzzle Dimension"}, {"id": "NPUB30528", "name": "Tiger Woods PGA Tour 12: The Masters"}, {"id": "NPUB30532", "name": "Deep Black"}, {"id": "NPUB30534", "name": "Scene It? Movie Night"}, {"id": "NPUB30536", "name": "Babel Rising"}, {"id": "NPUB30537", "name": "CastleStorm"}, {"id": "NPUB30539", "name": "Shift 2: Unleashed"}, {"id": "NPUB30543", "name": "Warp"}, {"id": "NPUB30544", "name": "Bulletstorm"}, {"id": "NPUB30545", "name": "Alice: Madness Returns"}, {"id": "NPUB30547", "name": "NCAA Football 12"}, {"id": "NPUB30552", "name": "Beat Hazard Ultra"}, {"id": "NPUB30555", "name": "Toy Story 3"}, {"id": "NPUB30556", "name": "Bolt"}, {"id": "NPUB30557", "name": "Cars 2"}, {"id": "NPUB30558", "name": "NBA Jam: On Fire Edition"}, {"id": "NPUB30560", "name": "LEGO Pirates of the Caribbean: The Video Game"}, {"id": "NPUB30562", "name": "Max & the Magic Marker: Gold Edition"}, {"id": "NPUB30563", "name": "The Simpsons Arcade Game"}, {"id": "NPUB30564", "name": "Resident Evil 5: Gold Edition"}, {"id": "NPUB30565", "name": "Brothers in Arms: Hell's Highway"}, {"id": "NPUB30566", "name": "James Cameron's Avatar The Game"}, {"id": "NPUB30569", "name": "Dead Space"}, {"id": "NPUB30570", "name": "FIFA 12"}, {"id": "NPUB30571", "name": "Hasbro Family Game Night 3"}, {"id": "NPUB30572", "name": "Homefront"}, {"id": "NPUB30573", "name": "Zen Pinball 2"}, {"id": "NPUB30575", "name": "Saints Row 2"}, {"id": "NPUB30576", "name": "Warhammer 40,000: Space Marine"}, {"id": "NPUB30577", "name": "Awesomenauts"}, {"id": "NPUB30578", "name": "Frogger Hyper Arcade Edition"}, {"id": "NPUB30579", "name": "Sonic Adventure 2 HD Trial"}, {"id": "NPUB30580", "name": "The House of the Dead III"}, {"id": "NPUB30581", "name": "Sonic the Hedgehog 4 - Episode II"}, {"id": "NPUB30582", "name": "Red Johnson's Chronicles"}, {"id": "NPUB30583", "name": "Battlefield: Bad Company 2"}, {"id": "NPUB30584", "name": "Call of Duty: Black Ops"}, {"id": "NPUB30588", "name": "Call of Duty 4: Modern Warfare"}, {"id": "NPUB30589", "name": "Counter Strike: Global Offensive"}, {"id": "NPUB30590", "name": "Tekken Tag Tournament HD"}, {"id": "NPUB30591", "name": "Tekken Tag Tournament 2 Prologue"}, {"id": "NPUB30592", "name": "Monopoly Streets"}, {"id": "NPUB30593", "name": "Darksiders"}, {"id": "NPUB30594", "name": "Mortal Kombat vs. DC Universe"}, {"id": "NPUB30597", "name": "Rocketbirds: Hardboiled Chicken"}, {"id": "NPUB30600", "name": "Shoot Many Robots"}, {"id": "NPUB30601", "name": "Quantum Conundrum"}, {"id": "NPUB30603", "name": "The House of the Dead 4"}, {"id": "NPUB30605", "name": "Real Steel"}, {"id": "NPUB30606", "name": "Just Cause 2"}, {"id": "NPUB30612", "name": "Learning With the PooYoos: Episode 2"}, {"id": "NPUB30613", "name": "AMY"}, {"id": "NPUB30614", "name": "Orc Attack: Flatulent Rebellion"}, {"id": "NPUB30616", "name": "Bang Bang Racing"}, {"id": "NPUB30617", "name": "Tales from Space: Mutant Blobs Attack"}, {"id": "NPUB30619", "name": "Choplifter HD"}, {"id": "NPUB30620", "name": "Papo & Yo"}, {"id": "NPUB30621", "name": "Bellator: MMA Onslaught"}, {"id": "NPUB30623", "name": "JAM Live Music Arcade"}, {"id": "NPUB30624", "name": "Sonic CD"}, {"id": "NPUB30625", "name": "Virtua Fighter 5: Final Showdown"}, {"id": "NPUB30626", "name": "Planets Under Attack"}, {"id": "NPUB30627", "name": "Magic: The Gathering - Duels of the Planeswalkers 2013"}, {"id": "NPUB30630", "name": "Red Johnson's Chronicles - One Against All"}, {"id": "NPUB30631", "name": "Phineas and Ferb Across the 2nd Dimension"}, {"id": "NPUB30632", "name": "Prince of Persia: The Forgotten Sands"}, {"id": "NPUB30637", "name": "Call of Juarez: Bound in Blood"}, {"id": "NPUB30638", "name": "Red Dead Redemption"}, {"id": "NPUB30639", "name": "Red Dead Redemption: Undead Nightmare"}, {"id": "NPUB30643", "name": "Dust 514"}, {"id": "NPUB30645", "name": "Skullgirls Trial"}, {"id": "NPUB30648", "name": "Resident Evil: The Darkside Chronicles"}, {"id": "NPUB30649", "name": "Super Street Fighter 4"}, {"id": "NPUB30650", "name": "Resident Evil: Umbrella Chronicles"}, {"id": "NPUB30656", "name": "Mafia II"}, {"id": "NPUB30657", "name": "Crazy Strike Bowling"}, {"id": "NPUB30660", "name": "World Gone Sour"}, {"id": "NPUB30661", "name": "Rayman Origins"}, {"id": "NPUB30662", "name": "Crysis 2: Maximum Edition"}, {"id": "NPUB30664", "name": "Need for Speed: The Run"}, {"id": "NPUB30665", "name": "NFL Blitz"}, {"id": "NPUB30666", "name": "Darkstalkers Resurrection"}, {"id": "NPUB30671", "name": "Mad Dog McCree"}, {"id": "NPUB30672", "name": "Guacamelee!"}, {"id": "NPUB30674", "name": "Foosball 2012"}, {"id": "NPUB30676", "name": "The Cave"}, {"id": "NPUB30680", "name": "DiRT 3"}, {"id": "NPUB30681", "name": "Zack Zero"}, {"id": "NPUB30682", "name": "Dead Rising 2: Off The Record"}, {"id": "NPUB30685", "name": "Kane & Lynch 2: Dog Days"}, {"id": "NPUB30686", "name": "Mini Ninjas"}, {"id": "NPUB30692", "name": "Clan of Champions"}, {"id": "NPUB30696", "name": "Ion Assault HD"}, {"id": "NPUB30698", "name": "Catherine"}, {"id": "NPUB30699", "name": "Scarygirl"}, {"id": "NPUB30700", "name": "Saints Row: The Third"}, {"id": "NPUB30707", "name": "Assassin's Creed: Revelations"}, {"id": "NPUB30708", "name": "Warriors Orochi 3"}, {"id": "NPUB30709", "name": "Rotastic"}, {"id": "NPUB30712", "name": "Mad Riders"}, {"id": "NPUB30713", "name": "The Pinball Arcade"}, {"id": "NPUB30714", "name": "Rayman 3 HD"}, {"id": "NPUB30718", "name": "The Expendables 2 Videogame"}, {"id": "NPUB30719", "name": "Black Knight Sword"}, {"id": "NPUB30720", "name": "Okami HD"}, {"id": "NPUB30722", "name": "Closure"}, {"id": "NPUB30724", "name": "Bayonetta"}, {"id": "NPUB30729", "name": "Wheels of Destruction"}, {"id": "NPUB30733", "name": "BIT.TRIP Presents...Runner2: Future Legend of Rhythm Alien"}, {"id": "NPUB30736", "name": "Girl Fight"}, {"id": "NPUB30737", "name": "Far Cry Classic Trial"}, {"id": "NPUB30741", "name": "The Walking Dead"}, {"id": "NPUB30742", "name": "Battlefield 3"}, {"id": "NPUB30743", "name": "Toki Tori"}, {"id": "NPUB30744", "name": "Hitman: Absolution"}, {"id": "NPUB30745", "name": "Binary Domain"}, {"id": "NPUB30746", "name": "Spartacus Legends"}, {"id": "NPUB30747", "name": "Tiger Woods PGA Tour 13"}, {"id": "NPUB30749", "name": "Rock Band Blitz"}, {"id": "NPUB30750", "name": "Hell Yeah! Wrath of the Dead Rabbit"}, {"id": "NPUB30751", "name": "Doctor Who: The Eternity Clock"}, {"id": "NPUB30753", "name": "NCAA Football 13"}, {"id": "NPUB30754", "name": "Batman: Arkham City"}, {"id": "NPUB30755", "name": "Way of the Samurai 4"}, {"id": "NPUB30757", "name": "Crysis 3"}, {"id": "NPUB30759", "name": "Medal of Honor: Warfighter"}, {"id": "NPUB30761", "name": "NHL 12"}, {"id": "NPUB30764", "name": "Double Dragon Neon"}, {"id": "NPUB30765", "name": "Doc Clock - The Toasted Sandwich of Time"}, {"id": "NPUB30766", "name": "Dragon Age: Inquisition"}, {"id": "NPUB30768", "name": "JoJo's Bizarre Adventure HD"}, {"id": "NPUB30769", "name": "Capcom Arcade Cabinet"}, {"id": "NPUB30771", "name": "Record of Agarest War 2"}, {"id": "NPUB30773", "name": "Bejeweled 3"}, {"id": "NPUB30776", "name": "Record of Agarest War Zero"}, {"id": "NPUB30778", "name": "Michael Jackson: The Experience"}, {"id": "NPUB30779", "name": "Hitman Contracts HD"}, {"id": "NPUB30780", "name": "Hitman 2: Slient Assassin HD"}, {"id": "NPUB30781", "name": "Hitman: Blood Money HD"}, {"id": "NPUB30783", "name": "Pure Chess"}, {"id": "NPUB30784", "name": "Tom Clancy's Ghost Recon: Future Soldier"}, {"id": "NPUB30786", "name": "Spec Ops: The Line"}, {"id": "NPUB30787", "name": "Call of Duty: Modern Warfare 3"}, {"id": "NPUB30789", "name": "Need for Speed: Most Wanted"}, {"id": "NPUB30793", "name": "Realms of Ancient War"}, {"id": "NPUB30796", "name": "ToeJam and Earl"}, {"id": "NPUB30797", "name": "ToeJam and Earl in Panic on Funkotron"}, {"id": "NPUB30798", "name": "NiGHTS into dreams..."}, {"id": "NPUB30800", "name": "Psych Yourself"}, {"id": "NPUB30801", "name": "Prototype 2"}, {"id": "NPUB30802", "name": "Madagascar 3: The Video Game"}, {"id": "NPUB30804", "name": "Two Worlds II GOTY"}, {"id": "NPUB30806", "name": "CSI: Fatal Conspiracy"}, {"id": "NPUB30807", "name": "LEGO Batman 2: DC Super Heroes"}, {"id": "NPUB30808", "name": "Doom Classic Complete"}, {"id": "NPUB30809", "name": "Brave: The Video Game"}, {"id": "NPUB30815", "name": "Air Conflicts: Secret Wars"}, {"id": "NPUB30817", "name": "Worms Revolution"}, {"id": "NPUB30818", "name": "Sleeping Dogs"}, {"id": "NPUB30819", "name": "Big Sky Infinity"}, {"id": "NPUB30820", "name": "Knytt Underground"}, {"id": "NPUB30824", "name": "Transformers: Fall of Cybertron"}, {"id": "NPUB30825", "name": "Far Cry 3"}, {"id": "NPUB30826", "name": "Assassin's Creed III"}, {"id": "NPUB30828", "name": "Naughty Bear: Panic in Paradise"}, {"id": "NPUB30829", "name": "Jet Set Radio"}, {"id": "NPUB30830", "name": "DmC: Devil May Cry"}, {"id": "NPUB30832", "name": "The Amazing Spider-Man"}, {"id": "NPUB30834", "name": "Anomaly Warzone Earth"}, {"id": "NPUB30835", "name": "FIFA 13"}, {"id": "NPUB30836", "name": "One Piece: Pirate Warriors"}, {"id": "NPUB30837", "name": "The King of Fighters XIII"}, {"id": "NPUB30838", "name": "Mirror's Edge"}, {"id": "NPUB30839", "name": "Retro City Rampage"}, {"id": "NPUB30840", "name": "Guardians of the Middle-Earth"}, {"id": "NPUB30843", "name": "Champion Jockey: G1 Jockey & Gallop Racer"}, {"id": "NPUB30845", "name": "Dynasty Warriors 6 Empires"}, {"id": "NPUB30846", "name": "Dynasty Warriors 7 Empires"}, {"id": "NPUB30847", "name": "Dynasty Warriors 7: Xtreme Legends"}, {"id": "NPUB30849", "name": "Fist of the North Star: Ken's Rage 2"}, {"id": "NPUB30851", "name": "Ninja Gaiden Sigma"}, {"id": "NPUB30856", "name": "Dyad"}, {"id": "NPUB30857", "name": "Disney Epic Mickey 2: The Power of Two"}, {"id": "NPUB30859", "name": "Zombie Tycoon 2 Brainhov Revenge"}, {"id": "NPUB30860", "name": "Legasista"}, {"id": "NPUB30861", "name": "American Mensa Academy"}, {"id": "NPUB30863", "name": "Alien Rage"}, {"id": "NPUB30864", "name": "Sacred Citadel"}, {"id": "NPUB30865", "name": "Dance Magic"}, {"id": "NPUB30867", "name": "Adam's Venture Chronicles"}, {"id": "NPUB30869", "name": "Carnivores HD: Dinosaur Hunter"}, {"id": "NPUB30872", "name": "Zeno Clash II"}, {"id": "NPUB30874", "name": "Fuse"}, {"id": "NPUB30876", "name": "Alien Spidy"}, {"id": "NPUB30878", "name": "A-Men"}, {"id": "NPUB30881", "name": "Zuma's Revenge!"}, {"id": "NPUB30882", "name": "Germinator"}, {"id": "NPUB30886", "name": "Family Guy Back To The Multiverse"}, {"id": "NPUB30888", "name": "Dishonored"}, {"id": "NPUB30892", "name": "SSX"}, {"id": "NPUB30898", "name": "Borderlands 2"}, {"id": "NPUB30899", "name": "Tekken Tag Tournament 2"}, {"id": "NPUB30902", "name": "Max Payne 3"}, {"id": "NPUB30903", "name": "Yu-Gi-Oh! 5D's Decade Duels Plus"}, {"id": "NPUB30905", "name": "Pid"}, {"id": "NPUB30906", "name": "Dead Space 3"}, {"id": "NPUB30910", "name": "Demon's Souls"}, {"id": "NPUB30911", "name": "Rune Factory - Tides of Destiny"}, {"id": "NPUB30913", "name": "Tom Clancy's EndWar"}, {"id": "NPUB30916", "name": "Heavy Fire: Afghanistan"}, {"id": "NPUB30919", "name": "Mountain Crime: Requital"}, {"id": "NPUB30920", "name": "Batman: Arkham Asylum"}, {"id": "NPUB30922", "name": "Zombie Driver HD"}, {"id": "NPUB30923", "name": "Persona 4 Arena"}, {"id": "NPUB30926", "name": "Derrick The Deadfin"}, {"id": "NPUB30927", "name": "Sonic the Fighters"}, {"id": "NPUB30929", "name": "Fighting Vipers"}, {"id": "NPUB30930", "name": "F1 Race Stars"}, {"id": "NPUB30932", "name": "Ni no Kuni: Wrath of the White Witch"}, {"id": "NPUB30933", "name": "Magic: Duels of the Planeswalkers 2014"}, {"id": "NPUB30934", "name": "Mamorukun Curse!"}, {"id": "NPUB30935", "name": "Oddworld: Munch's Oddysee HD"}, {"id": "NPUB30938", "name": "Dollar Da$h"}, {"id": "NPUB30940", "name": "Mad Dog II: The Lost Gold"}, {"id": "NPUB30943", "name": "Terraria"}, {"id": "NPUB30957", "name": "Guilty Gear XX A Core Plus"}, {"id": "NPUB30958", "name": "Ibb & Obb"}, {"id": "NPUB30966", "name": "Page Choronica"}, {"id": "NPUB30977", "name": "Voodoo Chronicles: The First Sign"}, {"id": "NPUB30978", "name": "LEGO The Lord of the Rings"}, {"id": "NPUB30981", "name": "Jeopardy!"}, {"id": "NPUB30982", "name": "Wheel of Fortune"}, {"id": "NPUB30985", "name": "LEGO Harry Potter: Years 5-7"}, {"id": "NPUB30987", "name": "Army of TWO: The Devil's Cartel"}, {"id": "NPUB30988", "name": "Devil May Cry HD Collection"}, {"id": "NPUB30989", "name": "Brothers: A Tale of Two Sons"}, {"id": "NPUB30993", "name": "Dog Fights 1942"}, {"id": "NPUB31052", "name": "Mass Effect"}, {"id": "NPUB31053", "name": "The Walking Dead: Survival Instinct"}, {"id": "NPUB31054", "name": "Call of Duty: Black Ops 2"}, {"id": "NPUB31062", "name": "Under Defeat HD: Deluxe Edition"}, {"id": "NPUB31064", "name": "Joe Danger 2"}, {"id": "NPUB31067", "name": "Naughty Bear: Gold Edition"}, {"id": "NPUB31069", "name": "Deadpool"}, {"id": "NPUB31071", "name": "Aliens: Colonial Marines"}, {"id": "NPUB31075", "name": "GRID 2"}, {"id": "NPUB31078", "name": "Karateka"}, {"id": "NPUB31079", "name": "Call of Juarez: Gunslinger"}, {"id": "NPUB31083", "name": "Final Fantasy XIII-2"}, {"id": "NPUB31085", "name": "Alien Breed"}, {"id": "NPUB31092", "name": "Urban Trial Freestyle"}, {"id": "NPUB31096", "name": "Anarchy Reigns"}, {"id": "NPUB31097", "name": "Jetpack Joyride"}, {"id": "NPUB31099", "name": "Castle of Illusion: Starring Mickey Mouse"}, {"id": "NPUB31105", "name": "Racquet Sports"}, {"id": "NPUB31117", "name": "Dragon's Dogma: Dark Arisen"}, {"id": "NPUB31118", "name": "Dragon Fantasy Book I"}, {"id": "NPUB31126", "name": "DuckTales Remastered"}, {"id": "NPUB31127", "name": "Dungeons & Dragons: Chronicles of Mystara"}, {"id": "NPUB31129", "name": "Magrunner: Dark Pulse"}, {"id": "NPUB31132", "name": "Star Wars Pinball"}, {"id": "NPUB31133", "name": "Tales of Graces f"}, {"id": "NPUB31134", "name": "Motorbike"}, {"id": "NPUB31136", "name": "Tales of Xillia"}, {"id": "NPUB31139", "name": "Strider"}, {"id": "NPUB31140", "name": "God Mode"}, {"id": "NPUB31142", "name": "Far Cry 3: Blood Dragon"}, {"id": "NPUB31144", "name": "Sniper: Ghost Warrior 2"}, {"id": "NPUB31145", "name": "Dead Island: Riptide"}, {"id": "NPUB31147", "name": "Heavy Fire: Shattered Spear"}, {"id": "NPUB31148", "name": "Battlefield 4"}, {"id": "NPUB31150", "name": "Mars: War Logs"}, {"id": "NPUB31154", "name": "Grand Theft Auto V"}, {"id": "NPUB31155", "name": "Earth Defense Force: Insect Armageddon"}, {"id": "NPUB31160", "name": "The Smurfs 2"}, {"id": "NPUB31161", "name": "Do Not Fall"}, {"id": "NPUB31164", "name": "Earth Defense Force 2025"}, {"id": "NPUB31165", "name": "Serious Sam 3: BFE"}, {"id": "NPUB31177", "name": "Cloudberry Kingdom"}, {"id": "NPUB31179", "name": "Deadly Premonition: The Director's Cut"}, {"id": "NPUB31180", "name": "Castle of Illusion: Starring Mickey Mouse"}, {"id": "NPUB31181", "name": "Injustice: Gods Among Us"}, {"id": "NPUB31183", "name": "Madden NFL 25"}, {"id": "NPUB31184", "name": "Ninja Gaiden 3: Razor's Edge"}, {"id": "NPUB31186", "name": "Eat Lead: The Return of Matt Hazard"}, {"id": "NPUB31188", "name": "Killer Is Dead"}, {"id": "NPUB31189", "name": "Time and Eternity"}, {"id": "NPUB31191", "name": "Hunter's Trophy 2 - America"}, {"id": "NPUB31192", "name": "Hunter's Trophy 2 - Australia"}, {"id": "NPUB31193", "name": "Tales of Symphonia HD"}, {"id": "NPUB31194", "name": "Tales of Symphonia: Dawn of the New World HD"}, {"id": "NPUB31197", "name": "Deathmatch Village"}, {"id": "NPUB31198", "name": "XCOM: Enemy Within Commander Edition"}, {"id": "NPUB31199", "name": "Luftrausers"}, {"id": "NPUB31200", "name": "Hotline Miami"}, {"id": "NPUB31202", "name": "Destiny"}, {"id": "NPUB31204", "name": "Sonic Unleashed"}, {"id": "NPUB31207", "name": "NHL 14"}, {"id": "NPUB31209", "name": "Sanctum 2"}, {"id": "NPUB31210", "name": "Telltale Games' Poker Night 2"}, {"id": "NPUB31217", "name": "Teenage Mutant Ninja Turtles: Out of the Shadows"}, {"id": "NPUB31219", "name": "Metro: Last Light"}, {"id": "NPUB31221", "name": "RIPD The Game"}, {"id": "NPUB31223", "name": "FIFA 14"}, {"id": "NPUB31224", "name": "Fast & Furious: Showdown"}, {"id": "NPUB31225", "name": "Narco Terror"}, {"id": "NPUB31226", "name": "Hakuoki: Stories of the Shinsengumi"}, {"id": "NPUB31227", "name": "Beer Pong!"}, {"id": "NPUB31230", "name": "Ride to Hell: Retribution"}, {"id": "NPUB31231", "name": "Farming Simulator"}, {"id": "NPUB31233", "name": "Wolfenstein 3D"}, {"id": "NPUB31235", "name": "Dragon's Crown"}, {"id": "NPUB31236", "name": "LEGO Marvel: Super Heroes"}, {"id": "NPUB31240", "name": "How to Survive"}, {"id": "NPUB31241", "name": "Hatsune Miku: Project Diva F"}, {"id": "NPUB31243", "name": "Thomas was Alone"}, {"id": "NPUB31244", "name": "Assassin's Creed: Liberation HD"}, {"id": "NPUB31245", "name": "Armored Core: Verdict Day"}, {"id": "NPUB31246", "name": "Assassin's Creed IV: Black Flag"}, {"id": "NPUB31247", "name": "Final Fantasy X/X-2 HD Remaster"}, {"id": "NPUB31248", "name": "Tom Clancy's Splinter Cell: Blacklist"}, {"id": "NPUB31249", "name": "Arcania: The Complete Tale"}, {"id": "NPUB31250", "name": "Tekken Revolution"}, {"id": "NPUB31251", "name": "Drakengard 3"}, {"id": "NPUB31252", "name": "Need for Speed: Rivals"}, {"id": "NPUB31254", "name": "Watch Dogs"}, {"id": "NPUB31255", "name": "Final Fantasy XIV Online: A Realm Reborn"}, {"id": "NPUB31256", "name": "Yaiba: Ninja Gaiden Z"}, {"id": "NPUB31257", "name": "Saints Row IV"}, {"id": "NPUB31258", "name": "Final Exam"}, {"id": "NPUB31259", "name": "Painkiller: Hell & Damnation"}, {"id": "NPUB31260", "name": "Stealth Inc: A Clone in the Dark"}, {"id": "NPUB31261", "name": "Batman: Arkham Origins"}, {"id": "NPUB31262", "name": "Hot Wheels: World's Best Driver"}, {"id": "NPUB31265", "name": "Flashback"}, {"id": "NPUB31266", "name": "The Bureau: XCOM Declassified"}, {"id": "NPUB31270", "name": "Shake Spears!"}, {"id": "NPUB31271", "name": "Atomic Ninjas"}, {"id": "NPUB31272", "name": "Giana Sisters: Twisted Dreams"}, {"id": "NPUB31277", "name": "BlazBlue: Chrono Phantasma"}, {"id": "NPUB31278", "name": "Marvel Puzzle Quest"}, {"id": "NPUB31279", "name": "Divekick"}, {"id": "NPUB31282", "name": "Adventure Time: Explore The Dungeon Because I DON'T KNOW!"}, {"id": "NPUB31283", "name": "Ben 10 Omniverse 2"}, {"id": "NPUB31284", "name": "Thunder Wolves"}, {"id": "NPUB31285", "name": "Murdered: Soul Suspect"}, {"id": "NPUB31287", "name": "Battle of Tiles EX"}, {"id": "NPUB31288", "name": "Spelunky"}, {"id": "NPUB31289", "name": "Dead or Alive 5 Ultimate"}, {"id": "NPUB31290", "name": "Pac-Man and the Ghostly Adventures"}, {"id": "NPUB31291", "name": "Sniper Elite V2"}, {"id": "NPUB31293", "name": "Air Conflicts: Pacific Carriers"}, {"id": "NPUB31294", "name": "Payday 2"}, {"id": "NPUB31295", "name": "One Piece: Pirate Warriors 2"}, {"id": "NPUB31297", "name": "Wolfenstein: The New Order"}, {"id": "NPUB31298", "name": "Stick It To The Man"}, {"id": "NPUB31299", "name": "Diablo III"}, {"id": "NPUB31301", "name": "Call of Duty: Ghosts"}, {"id": "NPUB31306", "name": "South Park: The Stick of Truth"}, {"id": "NPUB31307", "name": "Angry Birds: Star Wars"}, {"id": "NPUB31308", "name": "Cabela's Big Game Hunter: Pro Hunts"}, {"id": "NPUB31309", "name": "Cabela's African Adventures"}, {"id": "NPUB31310", "name": "SpongeBob SquarePants: Plankton's Robotic Revenge"}, {"id": "NPUB31311", "name": "NBA 2K14"}, {"id": "NPUB31313", "name": "Zone of the Enders HD Edition"}, {"id": "NPUB31314", "name": "Zone of the Enders: The 2nd Runner HD Edition"}, {"id": "NPUB31317", "name": "Dragon Fantasy Book II"}, {"id": "NPUB31319", "name": "Splice"}, {"id": "NPUB31320", "name": "The Guided Fate Paradox"}, {"id": "NPUB31322", "name": "Dragon Ball Z: Battle of Z"}, {"id": "NPUB31323", "name": "Just Dance 2014"}, {"id": "NPUB31325", "name": "Lone Survivor: The Director's Cut"}, {"id": "NPUB31335", "name": "Air Conflicts: Vietnam"}, {"id": "NPUB31336", "name": "AquaPazza: AquaPlus Dream Match"}, {"id": "NPUB31339", "name": "Transformers: Rise of the Dark Spark"}, {"id": "NPUB31340", "name": "Chaos Code"}, {"id": "NPUB31341", "name": "Super Motherload"}, {"id": "NPUB31343", "name": "WWE 2K14"}, {"id": "NPUB31345", "name": "SoulCalibur: Lost Swords"}, {"id": "NPUB31346", "name": "R-Type Dimensions"}, {"id": "NPUB31347", "name": "Ace Combat Infinity"}, {"id": "NPUB31350", "name": "Defense Technica (Trial)"}, {"id": "NPUB31351", "name": "The Amazing Spider-Man 2"}, {"id": "NPUB31352", "name": "Castlevania: Lords of Shadow - Mirror of Fate HD"}, {"id": "NPUB31354", "name": "Anna - Extended Edition"}, {"id": "NPUB31358", "name": "Dark Souls 2"}, {"id": "NPUB31359", "name": "Kung Fu Rabbit"}, {"id": "NPUB31364", "name": "Contrast"}, {"id": "NPUB31365", "name": "Aabs Animals"}, {"id": "NPUB31366", "name": "Soul Calibur II HD Online"}, {"id": "NPUB31367", "name": "Tiny Brains"}, {"id": "NPUB31368", "name": "Dustforce"}, {"id": "NPUB31371", "name": "Raiden IV: OverKill"}, {"id": "NPUB31372", "name": "Castlevania: Lords of Shadow 2"}, {"id": "NPUB31375", "name": "Dynasty Warriors 7"}, {"id": "NPUB31378", "name": "Duke Nukem 3D: Megaton Edition"}, {"id": "NPUB31382", "name": "XBLAZE Code: Embryo"}, {"id": "NPUB31383", "name": "Pac-Man Museum"}, {"id": "NPUB31384", "name": "Young Justice: Legacy"}, {"id": "NPUB31385", "name": "Ethan: Meteor Hunter"}, {"id": "NPUB31387", "name": "Pacific Rim: The Video Game"}, {"id": "NPUB31389", "name": "Hyperdimension Neptunia Victory"}, {"id": "NPUB31391", "name": "JoJo's Bizarre Adventure: All-Star Battle"}, {"id": "NPUB31392", "name": "The Evil Within"}, {"id": "NPUB31394", "name": "Blood Knights"}, {"id": "NPUB31395", "name": "NASCAR '14"}, {"id": "NPUB31396", "name": "Velocity Ultra"}, {"id": "NPUB31397", "name": "Abyss Odyssey"}, {"id": "NPUB31400", "name": "Valiant Hearts: The Great War"}, {"id": "NPUB31401", "name": "The Raven: Legacy of a Master Thief"}, {"id": "NPUB31404", "name": "The Walking Dead: Season 2"}, {"id": "NPUB31406", "name": "Ragnarok Odyssey ACE"}, {"id": "NPUB31407", "name": "Forest Legends: the Call of Love"}, {"id": "NPUB31410", "name": "Slender - The Arrival"}, {"id": "NPUB31413", "name": "Best of Arcade Games"}, {"id": "NPUB31414", "name": "Oddworld: New 'n' Tasty!"}, {"id": "NPUB31415", "name": "Mutant Mudds Deluxe"}, {"id": "NPUB31416", "name": "Rambo: The Video Game"}, {"id": "NPUB31417", "name": "How to Train Your Dragon 2"}, {"id": "NPUB31419", "name": "Minecraft: PlayStation 3 Edition"}, {"id": "NPUB31420", "name": "Ace Combat Infinity"}, {"id": "NPUB31421", "name": "2014 FIFA World Cup Brazil"}, {"id": "NPUB31423", "name": "Backgammon Blitz"}, {"id": "NPUB31424", "name": "The Swapper"}, {"id": "NPUB31425", "name": "Titan Attacks!"}, {"id": "NPUB31428", "name": "Atelier Escha and Logy: Alchemists of the Dusk Sky"}, {"id": "NPUB31430", "name": "Child of Light"}, {"id": "NPUB31436", "name": "Middle-earth: Shadow of Mordor"}, {"id": "NPUB31440", "name": "Alien: Isolation"}, {"id": "NPUB31441", "name": "Batman: Arkham Origins: Blackgate: Deluxe Edition"}, {"id": "NPUB31443", "name": "Tales of Xillia 2"}, {"id": "NPUB31445", "name": "Skullgirls Encore"}, {"id": "NPUB31447", "name": "Vessel"}, {"id": "NPUB31448", "name": "FEZ"}, {"id": "NPUB31450", "name": "Assassin's Creed IV: Black Flag: Freedom Cry"}, {"id": "NPUB31453", "name": "Ultratron"}, {"id": "NPUB31455", "name": "Yu-Gi-Oh! Millennium Duels"}, {"id": "NPUB31459", "name": "Bound by Flame"}, {"id": "NPUB31462", "name": "Master Reboot"}, {"id": "NPUB31464", "name": "Mugen Souls Z"}, {"id": "NPUB31466", "name": "Cel Damage HD"}, {"id": "NPUB31467", "name": "R.B.I. Baseball 14"}, {"id": "NPUB31468", "name": "Syberia"}, {"id": "NPUB31471", "name": "Jimmie Johnson's Anything With an Engine"}, {"id": "NPUB31472", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution"}, {"id": "NPUB31473", "name": "Fairy Fencer F"}, {"id": "NPUB31476", "name": "Pier Solar And The Great Architects"}, {"id": "NPUB31479", "name": "One Piece Unlimited World Red"}, {"id": "NPUB31481", "name": "Hotline Miami 2: Wrong Number"}, {"id": "NPUB31483", "name": "Tiny Troopers Joint Ops"}, {"id": "NPUB31486", "name": "Battle Princess of Arcadias"}, {"id": "NPUB31489", "name": "El Chavo Kart"}, {"id": "NPUB31493", "name": "Blood of the Werewolf"}, {"id": "NPUB31494", "name": "Cartoon Network: Punch Time Explosion XL"}, {"id": "NPUB31496", "name": "Escape Dead Island"}, {"id": "NPUB31497", "name": "The Treasures of Montezuma 4 Trial"}, {"id": "NPUB31500", "name": "Teenage Mutant Ninja Turtles Danger of the Ooze"}, {"id": "NPUB31502", "name": "Diablo III: Ultimate Evil Edition"}, {"id": "NPUB31505", "name": "Warriors Orochi 3 Ultimate"}, {"id": "NPUB31506", "name": "Constant C"}, {"id": "NPUB31510", "name": "Yakuza 4"}, {"id": "NPUB31511", "name": "Battlefield: Hardline"}, {"id": "NPUB31514", "name": "MouseCraft"}, {"id": "NPUB31518", "name": "Resident Evil Revelations 2 Trial"}, {"id": "NPUB31519", "name": "Borderlands: The Pre-Sequel"}, {"id": "NPUB31522", "name": "Atelier Rorona Plus: The Alchemist of Arland"}, {"id": "NPUB31523", "name": "Adventure Time: The Secret of the Nameless Kingdom"}, {"id": "NPUB31529", "name": "Just Dance 2015"}, {"id": "NPUB31531", "name": "Dynasty Warriors: Gundam Reborn"}, {"id": "NPUB31532", "name": "Race the Sun"}, {"id": "NPUB31538", "name": "Chariot"}, {"id": "NPUB31541", "name": "Class of Heroes 2G"}, {"id": "NPUB31544", "name": "Geometry Wars³: Dimensions Evolved"}, {"id": "NPUB31546", "name": "WWE 2K15"}, {"id": "NPUB31547", "name": "Assassin's Creed: Rogue"}, {"id": "NPUB31552", "name": "Resident Evil HD Remaster"}, {"id": "NPUB31553", "name": "Call of Duty: Advanced Warfare (Day Zero Edition)"}, {"id": "NPUB31554", "name": "Super Mega Baseball"}, {"id": "NPUB31556", "name": "The Voice: I Want You"}, {"id": "NPUB31560", "name": "Toybox Turbos"}, {"id": "NPUB31564", "name": "Samurai Warriors 4"}, {"id": "NPUB31573", "name": "Tokyo Twilight Ghost Hunters"}, {"id": "NPUB31579", "name": "Ar Nosurge: Ode to an Unborn Star"}, {"id": "NPUB31580", "name": "OlliOlli"}, {"id": "NPUB31589", "name": "Deadfall Adventure Heart of Atlantis"}, {"id": "NPUB31590", "name": "Don't Starve: Giant Edition"}, {"id": "NPUB31592", "name": "The Bridge"}, {"id": "NPUB31595", "name": "Frozen Synapse Prime"}, {"id": "NPUB31596", "name": "Motorcycle Club"}, {"id": "NPUB31597", "name": "Legend of Kay Anniversary"}, {"id": "NPUB31604", "name": "Saints Row: Gat Out of Hell"}, {"id": "NPUB31605", "name": "Unmechanical: Extended"}, {"id": "NPUB31613", "name": "The Awakened Fate: Ultimatum"}, {"id": "NPUB31617", "name": "Hyper Void"}, {"id": "NPUB31623", "name": "Dragon Ball: Xenoverse"}, {"id": "NPUB31626", "name": "JUJU"}, {"id": "NPUB31630", "name": "Badland: Game of the Year Edition"}, {"id": "NPUB31632", "name": "Stealth Inc 2: A Game of Clones"}, {"id": "NPUB31633", "name": "Metal Gear Solid 4: Guns of the Patriots"}, {"id": "NPUB31636", "name": "Life is Strange"}, {"id": "NPUB31637", "name": "King's Quest"}, {"id": "NPUB31640", "name": "Sparkle 2"}, {"id": "NPUB31647", "name": "J-STARS Victory VS+"}, {"id": "NPUB31651", "name": "King Oddball"}, {"id": "NPUB31652", "name": "Dragon Fin Soup"}, {"id": "NPUB31655", "name": "Crimsonland"}, {"id": "NPUB31658", "name": "Yakuza 5"}, {"id": "NPUB31660", "name": "World Hunter"}, {"id": "NPUB31664", "name": "Adventure Time: Finn and Jake Investigations (Demo)"}, {"id": "NPUB31670", "name": "Krinkle Krusher"}, {"id": "NPUB31672", "name": "Tennis in the Face"}, {"id": "NPUB31682", "name": "Shovel Knight"}, {"id": "NPUB31686", "name": "Monster Jam Battlegrounds"}, {"id": "NPUB31689", "name": "Resident Evil 0"}, {"id": "NPUB31702", "name": "Sparkle Unleashed Trial"}, {"id": "NPUB31705", "name": "Five Star Wrestling"}, {"id": "NPUB31719", "name": "NOVA-111"}, {"id": "NPUB31726", "name": "Frozen Free Fall - Snowball Fight"}, {"id": "NPUB31732", "name": "Back To Bed"}, {"id": "NPUB31733", "name": "Mighty No. 9"}, {"id": "NPUB31742", "name": "Goosebumps: The Game"}, {"id": "NPUB31743", "name": "WWE 2K16"}, {"id": "NPUB31752", "name": "Deception IV: The Nightmare Princess"}, {"id": "NPUB31774", "name": "Doodle Kingdom"}, {"id": "NPUB31795", "name": "Battle Trivia Knockout"}, {"id": "NPUB31798", "name": "Eiyuu Senki: The World Conquest"}, {"id": "NPUB31805", "name": "Aegis of Earth: Protonovus Assault"}, {"id": "NPUB31813", "name": "Sky Force Anniversary"}, {"id": "NPUB31817", "name": "Just Dance 2017"}, {"id": "NPUB31836", "name": "The Legend of Heroes: Trails of Cold Steel II"}, {"id": "NPUB31837", "name": "Pro Evolution Soccer 2017"}, {"id": "NPUB31838", "name": "WWE 2K17"}, {"id": "NPUB31842", "name": "Vidas 99"}, {"id": "NPUB31845", "name": "Batman: The Telltale Series"}, {"id": "NPUB31847", "name": "Tokyo Twilight Ghost Hunters: Daybreak Special Gigs"}, {"id": "NPUB31848", "name": "Persona 5"}, {"id": "NPUB31858", "name": "Cars 3: Driven to Win"}, {"id": "NPUB31863", "name": "Revenant Saga"}, {"id": "NPUB31868", "name": "UNDER NIGHT IN-BIRTH Exe:Late[st]"}, {"id": "NPUB50001", "name": "Dragon's Lair Trilogy"}, {"id": "NPUB50021", "name": "Call of Duty: Ghosts"}, {"id": "NPUB50042", "name": "Watch Dogs (Gold Edition)"}, {"id": "NPUB50101", "name": "Tales of Symphonia Chronicles"}, {"id": "NPUB50108", "name": "Call of Duty: Ghosts: Gold Edition"}, {"id": "NPUB50143", "name": "Call of Duty: Advanced Warfare (Digital Pro Edition)"}, {"id": "NPUB50203", "name": "Pro Evolution Soccer 2015"}, {"id": "NPUB90001", "name": "Cash, Guns and Chaos DLX"}, {"id": "NPUB90002", "name": "GripShift"}, {"id": "NPUB90004", "name": "Def Jam: Icon"}, {"id": "NPUB90025", "name": "Dynasty Warriors: Gundam"}, {"id": "NPUB90029", "name": "NBA 08 Live (Demo)"}, {"id": "NPUB90033", "name": "Need for Speed ProStreet (Demo)"}, {"id": "NPUB90035", "name": "All Pro Football 2K8"}, {"id": "NPUB90041", "name": "Super Puzzle Fighter II Turbo HD Remix"}, {"id": "NPUB90042", "name": "Colin McRae: DiRT"}, {"id": "NPUB90043", "name": "Clive Barker's Jericho (Demo)"}, {"id": "NPUB90051", "name": "Bourne (Demo)"}, {"id": "NPUB90053", "name": "Juiced 2: Hot Import Nights (Demo)"}, {"id": "NPUB90060", "name": "NBA 2k8 (Demo)"}, {"id": "NPUB90062", "name": "Burnout Paradise (Demo)"}, {"id": "NPUB90070", "name": "Battlefield: Bad Company (Demo)"}, {"id": "NPUB90074", "name": "Devil May Cry 4 (Demo)"}, {"id": "NPUB90084", "name": "Condemned 2 (Demo)"}, {"id": "NPUB90092", "name": "Enemy Territory Quake Wars (Demo)"}, {"id": "NPUB90102", "name": "Grid (Demo)"}, {"id": "NPUB90104", "name": "1942: Joint Strike"}, {"id": "NPUB90105", "name": "Wolf of the Battlefield: Commando 3"}, {"id": "NPUB90120", "name": "NASCAR 09 (Demo)"}, {"id": "NPUB90121", "name": "F.E.A.R. 2: Project Origin (Demo)"}, {"id": "NPUB90126", "name": "Metal Gear Solid 4: Guns of the Patriots Database"}, {"id": "NPUB90127", "name": "Top Spin 3"}, {"id": "NPUB90128", "name": "LEGO Indiana Jones The Original Adventures"}, {"id": "NPUB90129", "name": "Wall-E"}, {"id": "NPUB90133", "name": "Call of Duty World At War CO-OP (Demo)"}, {"id": "NPUB90138", "name": "Madden 09 (Demo)"}, {"id": "NPUB90139", "name": "NBA Live 09 (Demo)"}, {"id": "NPUB90158", "name": "NBA 2k9 (Demo)"}, {"id": "NPUB90169", "name": "Supersonic Acrobatic Rocket-Powered Battle-Cars"}, {"id": "NPUB90170", "name": "LEGO Batman: The Videogame"}, {"id": "NPUB90175", "name": "Alone in the Dark (Demo)"}, {"id": "NPUB90183", "name": "GTI Club+ Rally Cote D'Azur"}, {"id": "NPUB90194", "name": "Sonic Unleashed (Demo)"}, {"id": "NPUB90198", "name": "The Punisher: No Mercy (Demo)"}, {"id": "NPUB90199", "name": "Chronicles of Riddick Assault On Dark Athena (Demo)"}, {"id": "NPUB90207", "name": "Mafia II (Demo)"}, {"id": "NPUB90215", "name": "Afro Samurai (Demo)"}, {"id": "NPUB90220", "name": "Watchmen: The End is Nigh"}, {"id": "NPUB90225", "name": "Aliens vs. Predator"}, {"id": "NPUB90227", "name": "Katamari Forever (Demo)"}, {"id": "NPUB90239", "name": "ZEN Pinball (Demo)"}, {"id": "NPUB90248", "name": "Wolfenstein DEMO"}, {"id": "NPUB90253", "name": "Mini Ninjas"}, {"id": "NPUB90268", "name": "Brutal Legend"}, {"id": "NPUB90274", "name": "Ninja Gaiden Sigma 2 (Demo)"}, {"id": "NPUB90281", "name": "Fuel (Demo)"}, {"id": "NPUB90289", "name": "NBA Live 10 (Demo)"}, {"id": "NPUB90296", "name": "Dark Void (Demo)"}, {"id": "NPUB90310", "name": "WET (Demo)"}, {"id": "NPUB90320", "name": "NBA 2k10 (Demo)"}, {"id": "NPUB90323", "name": "Dragon Ball Raging Blast (Demo)"}, {"id": "NPUB90342", "name": "topatoi (Demo)"}, {"id": "NPUB90345", "name": "Comet Crash (Demo)"}, {"id": "NPUB90347", "name": "Battlefield Bad Company 2"}, {"id": "NPUB90350", "name": "LEGO Indiana Jones 2 The Adventure Continues"}, {"id": "NPUB90359", "name": "Just Cause 2 (Demo)"}, {"id": "NPUB90361", "name": "Dynasty Warriors: Strikeforce (Demo)"}, {"id": "NPUB90363", "name": "Thexder Neo (Demo)"}, {"id": "NPUB90365", "name": "UFC Undisputed 2010"}, {"id": "NPUB90375", "name": "Skate 3 (Demo)"}, {"id": "NPUB90393", "name": "Wakeboarding HD (Demo)"}, {"id": "NPUB90417", "name": "Death Track: Resurrection"}, {"id": "NPUB90418", "name": "Hamster Ball"}, {"id": "NPUB90425", "name": "Shank"}, {"id": "NPUB90438", "name": "DJ Hero 2 (Demo)"}, {"id": "NPUB90448", "name": "Apache Air Assault (Demo)"}, {"id": "NPUB90455", "name": "Warriors: Legends of Troy"}, {"id": "NPUB90478", "name": "Vanquish"}, {"id": "NPUB90488", "name": "Need for Speed Hot Pursuit (Demo)"}, {"id": "NPUB90506", "name": "Mass Effect 2 (Demo)"}, {"id": "NPUB90530", "name": "Ace Combat Assault Horizon"}, {"id": "NPUB90542", "name": "Top Spin 4"}, {"id": "NPUB90578", "name": "Mortal Kombat (Demo)"}, {"id": "NPUB90616", "name": "Binary Domain (Demo)"}, {"id": "NPUB90632", "name": "Saints Row: The Third - Initiation Station"}, {"id": "NPUB90645", "name": "Catherine (Demo)"}, {"id": "NPUB90651", "name": "Rage (Demo)"}, {"id": "NPUB90655", "name": "Bodycount"}, {"id": "NPUB90677", "name": "NBA 2k12 (Demo)"}, {"id": "NPUB90732", "name": "SSX (Demo)"}, {"id": "NPUB90734", "name": "Winter Stars (Demo)"}, {"id": "NPUB90746", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations (Demo)"}, {"id": "NPUB90767", "name": "Blades of Time"}, {"id": "NPUB90772", "name": "Resident Evil 6 (Demo)"}, {"id": "NPUB90789", "name": "Lego Batman 2 DC Super Heroes"}, {"id": "NPUB90811", "name": "F1 2012 (Demo)"}, {"id": "NPUB90844", "name": "Dead Space 3"}, {"id": "NPUB90846", "name": "Ni no Kuni: Wrath of the White Witch - Journey to Another World (Demo)"}, {"id": "NPUB90864", "name": "Resident Evil 6 (Demo)"}, {"id": "NPUB90925", "name": "Metal Gear Rising: Revengeance (Demo)"}, {"id": "NPUB90930", "name": "Metal Gear Rising: Revengeance (Demo)"}, {"id": "NPUB90936", "name": "NCAA Football 14"}, {"id": "NPUB90938", "name": "Resident Evil Revelations"}, {"id": "NPUB90939", "name": "Naruto Shippuden: Ultimate Ninja Storm 3 (Demo)"}, {"id": "NPUB90941", "name": "Oddworld: Stranger's Wrath (Demo)"}, {"id": "NPUB90950", "name": "Ninja Gaiden 3 Razors Edge (Demo)"}, {"id": "NPUB90955", "name": "Injustice: Gods Among Us (Demo)"}, {"id": "NPUB90958", "name": "Hatsune Miku: Project DIVA F (Demo)"}, {"id": "NPUB90964", "name": "LEGO Marvel Super Heroes (Demo)"}, {"id": "NPUB90969", "name": "Rayman Legends (Demo)"}, {"id": "NPUB90983", "name": "Dragon Ball Z: Battle of Z (Demo)"}, {"id": "NPUB90984", "name": "Castlevania: Lords of Shadow 2"}, {"id": "NPUB90991", "name": "The LEGO Movie Videogame (Demo)"}, {"id": "NPUB90994", "name": "LEGO The Hobbit (Demo)"}, {"id": "NPUB91001", "name": "Zombeer (Demo)"}, {"id": "NPUB91011", "name": "Naruto Shippuden: Ultimate Ninja Storm Revolution"}, {"id": "NPUB91022", "name": "LEGO Jurassic World (Demo)"}, {"id": "NPUB91024", "name": "Motorcycle Club (Demo)"}, {"id": "NPUB91026", "name": "LEGO Marvel's Avengers (Demo)"}, {"id": "NPUB91029", "name": "NASCAR '15 (Demo)"}, {"id": "NPUB91036", "name": "FIFA 17 (Demo)"}, {"id": "NPUB91037", "name": "Pro Evolution Soccer 2017 (Demo)"}, {"id": "NPUD20461", "name": "Blood Rayne 2"}, {"id": "NPUD20666", "name": "Disgaea: Hour of Darkness"}, {"id": "NPUD20862", "name": "Blood Rayne 2"}, {"id": "NPUD21269", "name": "Bully"}, {"id": "NPUD21397", "name": "Disgaea 2: Cursed Memories"}, {"id": "NPUD21717", "name": "Dora the Explorer: Dora Saves the Mermaids"}, {"id": "NPUD21718", "name": "Go Diego Go! Safari Rescue"}, {"id": "NPUD21794", "name": "Go Diego Go! Great Dinosaur Rescue"}, {"id": "NPUD21796", "name": "Dora the Explorer: Dora Saves the Snow Princess"}, {"id": "NPUD21923", "name": "Dora the Explorer: Dora Saves the Crystal Kingdom"}, {"id": "NPUF30005", "name": "Tall Unlimited: Japan Import"}, {"id": "NPUF30008", "name": "Alien Crush"}, {"id": "NPUF30009", "name": "Neutopia"}, {"id": "NPUF30010", "name": "Super Star Soldier"}, {"id": "NPUF30012", "name": "Bonk's Adventure"}, {"id": "NPUF30014", "name": "New Adventure Island"}, {"id": "NPUF30016", "name": "Soldier Blade"}, {"id": "NPUF30025", "name": "Yakiniku Bugyou"}, {"id": "NPUF30060", "name": "Sarara's Little Shop"}, {"id": "NPUF30062", "name": "Neo Planet"}, {"id": "NPUF30063", "name": "Heroine Dream 2"}, {"id": "NPUF30064", "name": "Heroine Dream"}, {"id": "NPUG80086", "name": "flOw"}, {"id": "NPUH90032", "name": "Unbound Saga: Between the Panels Issue 3"}, {"id": "NPUI94103", "name": "Jumping Flash!"}, {"id": "NPUI94108", "name": "Jumping Flash! 2"}, {"id": "NPUI94154", "name": "Crash Bandicoot 2: Cortex Strikes Back"}, {"id": "NPUI94227", "name": "MediEvil"}, {"id": "NPUI94244", "name": "Crash Bandicoot: Warped"}, {"id": "NPUI94426", "name": "Crash Team Racing"}, {"id": "NPUI94476", "name": "Hot Shots Golf 2"}, {"id": "NPUI94508", "name": "2Xtreme"}, {"id": "NPUI94900", "name": "Crash Bandicoot"}, {"id": "NPUJ00027", "name": "Blood Omen: Legacy of Kain"}, {"id": "NPUJ00042", "name": "Gex"}, {"id": "NPUJ00067", "name": "Castlevania: Symphony of the Night"}, {"id": "NPUJ00433", "name": "Fighting Force"}, {"id": "NPUJ00553", "name": "Alundra"}, {"id": "NPUJ00585", "name": "Klonoa: Door to Phantomile"}, {"id": "NPUJ00594", "name": "Metal Gear Solid"}, {"id": "NPUJ00693", "name": "Dead in the Water"}, {"id": "NPUJ00708", "name": "Legacy of Kain: Soul Reaver"}, {"id": "NPUJ00806", "name": "Gex 3: Deep Cover Gecko"}, {"id": "NPUJ00843", "name": "Reel Fishing II"}, {"id": "NPUJ00879", "name": "Final Fantasy V"}, {"id": "NPUJ00892", "name": "Final Fantasy VIII"}, {"id": "NPUJ00900", "name": "Final Fantasy VI"}, {"id": "NPUJ00922", "name": "Dino Crisis"}, {"id": "NPUJ01013", "name": "Legend of Mana"}, {"id": "NPUJ01041", "name": "Chrono Cross"}, {"id": "NPUJ01115", "name": "Harvest Moon: Back to Nature"}, {"id": "NPUJ01212", "name": "Metal Slug X"}, {"id": "NPUJ01224", "name": "Arc the Lad"}, {"id": "NPUJ01251", "name": "Final Fantasy IX"}, {"id": "NPUJ01252", "name": "Arc the Lad II"}, {"id": "NPUJ01253", "name": "Arc the Lad III"}, {"id": "NPUJ01255", "name": "Arc Arena Monster Tournament"}, {"id": "NPUJ01279", "name": "Dino Crisis 2"}, {"id": "NPUJ01301", "name": "Ford Racing"}, {"id": "NPUJ01324", "name": "Breath of Fire IV"}, {"id": "NPUJ01363", "name": "Chrono Trigger"}, {"id": "NPUJ01384", "name": "Castlevania Chronicles"}, {"id": "NPUJ01509", "name": "Jigsaw Madness"}, {"id": "NPUJ01541", "name": "Final Fantasy Origins"}, {"id": "NPUJ94163", "name": "Final Fantasy VII"}, {"id": "NPUJ94199", "name": "Bloody Roar"}, {"id": "NPUJ94221", "name": "Final Fantasy Tactics"}, {"id": "NPUJ94424", "name": "Bloody Roar II"}, {"id": "NPUJ94457", "name": "Grandia"}, {"id": "NPUJ94646", "name": "Lilo & Stitch"}, {"id": "NPUL00128", "name": "Incubus: Love Hurts"}, {"id": "NPUL00129", "name": "Tenacious D: The Complete Masterworks"}, {"id": "NPUL00148", "name": "Hulk vs. Thor"}, {"id": "NPUL00149", "name": "Hulk vs. Wolverine"}, {"id": "NPUL00161", "name": "Watchmen: The End is Nigh"}, {"id": "NPUL00170", "name": "Watchmen: Black Freighter"}, {"id": "NPUL00174", "name": "Yes Man: Jim Carrey, Extreme Yes Man"}, {"id": "NPUL00180", "name": "Year One"}, {"id": "NPUP00046", "name": "Hulu Plus"}, {"id": "NPUP10028", "name": "YouTube"}, {"id": "NPUX80405", "name": "Earth Shield"}, {"id": "NPUZ00004", "name": "Let's Golf"}, {"id": "NPUZ00005", "name": "Hero of Sparta"}, {"id": "NPUZ00010", "name": "Bloons"}, {"id": "NPUZ00013", "name": "Freekscape: Escape From Hell"}, {"id": "NPUZ00014", "name": "Fieldrunners"}, {"id": "NPUZ00021", "name": "Blast Off"}, {"id": "NPUZ00022", "name": "Echoes"}, {"id": "NPUZ00023", "name": "Aero Racer"}, {"id": "NPUZ00024", "name": "Age of Zombies"}, {"id": "NPUZ00030", "name": "Kahoots"}, {"id": "NPUZ00031", "name": "Break Quest"}, {"id": "NPUZ00036", "name": "Dyno Gems"}, {"id": "NPUZ00046", "name": "Dracula: Undead Awakening"}, {"id": "NPUZ00069", "name": "Alien Zombie Death"}, {"id": "NPUZ00072", "name": "Hysteria Project"}, {"id": "NPUZ00091", "name": "Ice Road Truckers"}, {"id": "NPUZ00104", "name": "4x4 Jam"}, {"id": "NPUZ00190", "name": "A Space Shooter for 2 Bucks!"}, {"id": "NPUZ00193", "name": "Karimogi"}, {"id": "NPUZ00197", "name": "Enigmo"}, {"id": "NPUZ00210", "name": "Mad Blocker Alpha: Revenge of the Fuzzies"}, {"id": "NPUZ00212", "name": "Duael Invaders"}, {"id": "NPUZ00231", "name": "Me Monstar: Hear Me Roar!"}, {"id": "NPUZ00243", "name": "Edge"}, {"id": "XCES00001", "name": "Ratchet & Clank: QForce (PAL)"}, {"id": "XCES00008", "name": "Ratchet & Clank: Into the Nexus (PAL)"}, {"id": "XCUS00001", "name": "Ratchet and Clank: Full Frontal Assault (NTSC-U)"}, {"id": "NPJA00073", "name": "ICO®"}, {"id": "NPJA00074", "name": "ワンダと巨像®"}], "version": 1} ================================================ FILE: updater.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # # PS3GameUpdateDownloader by shinrax2 # builtin import time import tempfile import os import platform import json import subprocess import shlex import sys # local files import utils # pip packages import FreeSimpleGUI as sg if os.path.exists( os.path.join(tempfile.gettempdir(), "PS3GUDUpdate.json") ) and os.path.isfile(os.path.join(tempfile.gettempdir(), "PS3GUDUpdate.json")): with open( os.path.join(tempfile.gettempdir(), "PS3GUDUpdate.json"), "r", encoding="utf8" ) as f: data = json.loads(f.read()) sg.change_look_and_feel("DarkAmber") layout = [ [ sg.Text( "Waiting for main application to exit", size=(40, 3), key="updater_text" ) ], [ sg.ProgressBar( 100, orientation="h", size=(40, 20), key="updater_progressbar" ) ], ] window = sg.Window("PS3GUD Updater", layout) window.finalize() window.Refresh() text = window["updater_text"] bar = window["updater_progressbar"] utils.waitForMainAppExit(pid=data["pid"], window=window) text.Update("Checking for updates") window.Refresh() rel = utils.UpdaterGithubRelease(os.path.join(data["dir"], "release.json")) resp = rel.checkForNewRelease() if isinstance(resp, dict): text.Update("Found new release!") rel.downloadNewRelease(data["dir"], window) exename = utils.getMainExecutableBasename() + utils.getExecutableSuffix() if utils.isAppFrozen(): file = os.path.join(data["dir"], exename) else: file = "python3 " + os.path.join(data["dir"], exename) if platform.system() == "Linux": file = shlex.split(file) subprocess.Popen(file) window.close() ================================================ FILE: utils.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # #PS3GameUpdateDownloader downloads PS3 game updates from official Sony servers #Copyright (C) 2023 shinrax2 # #This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. # #This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # #You should have received a copy of the GNU General Public License along with this program. If not, see . #built-in import datetime import os import platform import json import urllib.parse import tempfile import shutil import zipfile import subprocess import sys import setuptools import shlex import traceback import hashlib #pip packages import requests import psutil #local files import PS3GUD class Logger(): def __init__(self, window=None): logdir = "./logs" now = str(datetime.datetime.now()).split(".")[0].replace(" ", "_").replace(":", "-") if os.path.exists(logdir) == False: os.mkdir(logdir) logfile = os.path.join(logdir, "log-"+now+".txt") self.logfile = open(logfile, "w", encoding="utf8") if window != None: self.window = window else: self.window = None def log(self, text, level="i"): if level == "i": level = "[INFO]" elif level == "w": level = "[WARN]" elif level == "e": level = "[ERROR]" if type(text) != str: text = str(text) log = level+" "+str(datetime.datetime.now())+" "+text if self.window != None: print(log) self.window.Refresh() self.logfile.write(log+"\n") self.logfile.flush() os.fsync(self.logfile.fileno()) def __del__(self): self.logfile.close() class Loc(): def __init__(self): self.locList = [] self.locDir = "./loc/" self.currentLoc = {} self._scanForLoc() self.setLoc() def _scanForLoc(self): locFiles = [pos_json for pos_json in os.listdir(self.locDir) if pos_json.endswith('.json')] for loc in locFiles: with open(os.path.join(self.locDir,loc), "r", encoding="utf8") as j: l = json.loads(j.read()) self.locList.append({"language_name":l["language_name"]["string"], "language_short":l["language_short"]["string"]}) del(l) def getLocs(self): return self.locList def getLoc(self): return self.getKey("language_short") def setLoc(self, loc=None): if loc != None: for l in self.locList: if l["language_short"] == loc: with open(os.path.join(self.locDir, (l["language_short"]+".json")), "r", encoding="utf8") as f: self.currentLoc = json.loads(f.read()) else: with open(os.path.join(self.locDir, "./en.json"), "r", encoding="utf8") as f: self.fallbackLoc = json.loads(f.read()) self.currentLoc = self.fallbackLoc def getKey(self, key, args=[]): try: return massFormat(self.currentLoc[key]["string"], args) except KeyError: try: return massFormat(self.fallbackLoc[key]["string"], args) except KeyError: return "ERROR \""+key+"\"" class UpdaterGithubRelease(): def __init__(self, releaseFile): self.rF = releaseFile self.release = {} self.resp = {} with open(self.rF, "r", encoding="utf8") as f: self.release = json.loads(f.read()) ps3 = PS3GUD.PS3GUD() ps3.setLoc(Loc()) ps3.loadConfig() self.proxies = ps3.proxies def getVersion(self): return self.release["version"] def getCommitID(self): try: return self.release["commitid"] except KeyError: return "None" def getChangelog(self): #returns text body from latest github release without formatting characters return massReplace(["```"], "", self.resp["body"]) def getRightAssetNum(self): num = 0 for asset in self.resp["assets"]: if asset["browser_download_url"].endswith(getArchiveSuffix()+".zip"): return num num += 1 return -1 def getRightAssetNumSHA256(self): num = 0 for asset in self.resp["assets"]: if asset["browser_download_url"].endswith(getArchiveSuffix()+".zip.sha256"): return num num += 1 return -1 def checkForNewRelease(self): try: url = urllib.parse.urljoin(urllib.parse.urljoin(urllib.parse.urljoin("https://api.github.com/repos/" ,self.release["author"]+"/"), self.release["repo"]+"/"), "releases/latest") resp = requests.get(url, proxies=self.proxies) data = resp.content self.resp = json.loads(data) except requests.exceptions.ConnectionError: return False if self.release["version"] < self.resp["tag_name"]: assetnum = self.getRightAssetNum() if assetnum > -1: rel = {} rel["version"] = self.resp["tag_name"] rel["releaseUrlWeb"] = urllib.parse.urljoin(urllib.parse.urljoin(urllib.parse.urljoin("https://github.com/" ,self.release["author"]+"/"), self.release["repo"]+"/"), "releases/latest") rel["releaseUrlDl"] = self.resp["assets"][assetnum]["browser_download_url"] else: return 2 return rel else: return 1 def downloadNewRelease(self, cwd, window): text = window["updater_text"] bar = window["updater_progressbar"] tdir = tempfile.gettempdir() url = self.resp["assets"][self.getRightAssetNum()]["browser_download_url"] shaurl = self.resp["assets"][self.getRightAssetNumSHA256()]["browser_download_url"] local_filename = os.path.join(tdir, os.path.basename(url)) chunk_size=8192 count = 0 already_loaded = 0 with requests.get(url, stream=True, proxies=self.proxies) as r: r.raise_for_status() size = int(r.headers["content-length"]) with open(local_filename, 'wb') as f: for chunk in r.iter_content(chunk_size=chunk_size): if chunk: f.write(chunk) count += 1 already_loaded = count * chunk_size if already_loaded / size > 1: already_loaded = size percentage = already_loaded / size * 100 label = f"Downloading update: {formatSize(already_loaded)}/{formatSize(size)} ({percentage}%)" text.Update(label) bar.UpdateBar(percentage) window.Refresh() if int(os.path.getsize(local_filename)) == int(self.resp["assets"][0]["size"]): text.Update("Verifying update") window.Refresh() if requests.get(shaurl, proxies=self.proxies).content.decode("ascii") == sha256File(local_filename): text.Update("Backing up stuff") window.Refresh() #backup config and downloadedPKGs if os.path.exists(os.path.join(cwd, "config.json")) and os.path.isfile(os.path.join(cwd, "config.json")): shutil.copy2(os.path.join(cwd, "config.json"), os.path.join(tdir, "config.json")) if os.path.exists(os.path.join(tdir, "downloadedPKGs")) and os.path.isdir(os.path.join(tdir, "downloadedPKGs")): shutil.rmtree(os.path.join(tdir, "downloadedPKGs")) if os.path.exists(os.path.join(cwd, "downloadedPKGs")) and os.path.isdir(os.path.join(cwd, "downloadedPKGs")): shutil.copytree(os.path.join(cwd, "downloadedPKGs"), os.path.join(tdir, "downloadedPKGs")) rmDirContents(cwd) tzipdir = os.path.join(tdir, "PS3GUDUpdate") if os.path.exists(tzipdir) == False and os.path.isfile(tzipdir) == False: os.mkdir(tzipdir) text.Update("Extracting update") window.Refresh() with zipfile.ZipFile(local_filename, "r") as zipf: zipf.extractall(tzipdir) if len(os.listdir(tzipdir)) == 1: if os.path.isdir(os.path.join(tzipdir, os.listdir(tzipdir)[0])): copysrc = os.path.join(tzipdir, os.listdir(tzipdir)[0]) else: copysrc = tzipdir else: copysrc = tzipdir text.Update("Installing update") window.Refresh() setuptools.distutils.dir_util.copy_tree(copysrc, cwd) text.Update("Restoring backedup stuff and cleaning up") window.Refresh() #restore config and downloadedPKGs if os.path.exists(os.path.join(tdir, "config.json")) and os.path.isfile(os.path.join(tdir, "config.json")): shutil.copy2(os.path.join(tdir, "config.json"), os.path.join(cwd, "config.json")) os.remove(os.path.join(tdir, "config.json")) if os.path.exists(os.path.join(tdir, "downloadedPKGs")) and os.path.isdir(os.path.join(tdir, "downloadedPKGs")): shutil.copytree(os.path.join(tdir, "downloadedPKGs"), os.path.join(cwd, "downloadedPKGs")) shutil.rmtree(os.path.join(tdir, "downloadedPKGs")) os.remove(local_filename) os.remove(os.path.join(tdir, "PS3GUDUpdate.json")) shutil.rmtree(tzipdir) def startUpdater(self): suffix = getExecutableSuffix() if isAppFrozen(): file = "PS3GUDup"+suffix else: file = "updater"+suffix #write current install dir to tempfile data = { "dir": os.getcwd(), "pid": os.getpid() } with open(os.path.join(tempfile.gettempdir(), "PS3GUDUpdate.json"), "w", encoding="utf8") as f: f.write(json.dumps(data, sort_keys=True, indent=4)) #copy updater shutil.copy2(os.path.join(os.getcwd(), file), os.path.join(tempfile.gettempdir(), file)) if isAppFrozen() == False: #copy depency if app not compiled shutil.copy2(os.path.join(os.getcwd(), "utils.py"), os.path.join(tempfile.gettempdir(), "utils.py")) shutil.copy2(os.path.join(os.getcwd(), "PS3GUD.py"), os.path.join(tempfile.gettempdir(), "PS3GUD.py")) if isAppFrozen() == False: if platform.system() == "Windows": subprocess.Popen("python3 "+os.path.join(tempfile.gettempdir(), file)) if platform.system() == "Linux": subprocess.Popen(shlex.split("python3 "+os.path.join(tempfile.gettempdir(), file))) else: subprocess.Popen(os.path.join(tempfile.gettempdir(), file)) sys.exit() def formatSize(size): if float(size) > 1024-1 and float(size) < 1024*1024 : #KiB return str(format(float(size)/1024, '.2f'))+"KiB" elif float(size) > 1024*1024-1 and float(size) < 1024*1024*1024: #MiB return str(format(float(size)/1024/1024, '.2f'))+"MiB" elif float(size) > 1024*1024*1024-1: #GiB return str(format(float(size)/1024/1024/1024, '.2f'))+"GiB" else: #Bytes return str(size)+"B" def massReplace(find, replace, stri): out = stri for item in find: out = out.replace(item, replace) return out def massFormat(stri, args): return stri.format(*args) def filterIllegalCharsFilename(path): if platform.system() == "Windows": return massReplace([":","/","\\","*","?","<",">","\"","|"], "", path) elif platform.system() == "Linux": return massReplace(["/", "\x00"], "", path) elif platform.system() == "Darwin": return massReplace(["/", "\x00", ":"], "", path) def rmDirContents(folder_path): for file_object in os.listdir(folder_path): file_object_path = os.path.join(folder_path, file_object) if os.path.isfile(file_object_path) or os.path.islink(file_object_path): os.unlink(file_object_path) else: shutil.rmtree(file_object_path) def isAppFrozen(): #check if app was compiled with pyinstaller if getattr(sys, "frozen", False): state = True else: state = False return state def getExecutableSuffix(): #get right suffix for starting updater, etc. suffix = "" if isAppFrozen(): if platform.system() == "Windows": suffix = ".exe" else: suffix = ".py" return suffix def getArchiveSuffix(): #get right archive for downloading new updates if isAppFrozen(): if platform.system() == "Windows": suffix = "win" elif platform.system() == "Linux": suffix = "linux" if platform.architecture()[0] == "32bit": suffix += "32" elif platform.architecture()[0] == "64bit": suffix += "64" else: suffix = "source" return suffix def logUncaughtException(exctype, value, tb): now = str(datetime.datetime.now()).split(".")[0].replace(" ", "_").replace(":", "-") if os.path.exists("logs") == False: os.mkdir("logs") with open(os.path.join("logs", "Crash-"+now+".txt"), "w") as f: f.write("Uncaught exception:\nType: "+str(exctype)+"\nValue: "+str(value)+"\nTraceback:\n") for item in traceback.format_list(traceback.extract_tb(tb)): f.write(item) def cleanupAfterUpdate(): suffix = getExecutableSuffix() if os.path.exists(os.path.join(tempfile.gettempdir(), "PS3GUDup"+suffix)) and os.path.isfile(os.path.join(tempfile.gettempdir(), "PS3GUDup"+suffix)): os.remove(os.path.join(tempfile.gettempdir(), "PS3GUDup"+suffix)) if os.path.exists(os.path.join(tempfile.gettempdir(), "PS3GUDUpdate.json")) and os.path.isfile(os.path.join(tempfile.gettempdir(), "PS3GUDUpdate.json")): os.remove(os.path.join(tempfile.gettempdir(), "PS3GUDUpdate.json")) if isAppFrozen() == False: if os.path.exists(os.path.join(tempfile.gettempdir(), "utils.py")) and os.path.isfile(os.path.join(tempfile.gettempdir(), "utils.py")): os.remove(os.path.join(tempfile.gettempdir(), "utils.py")) if os.path.exists(os.path.join(tempfile.gettempdir(), "PS3GUD.py")) and os.path.isfile(os.path.join(tempfile.gettempdir(), "PS3GUD.py")): os.remove(os.path.join(tempfile.gettempdir(), "PS3GUD.py")) def sha256File(file): hash = hashlib.sha256() with open(file, "rb") as f: for block in iter(lambda: f.read(4096), b""): hash.update(block) return hash.hexdigest() def getMainExecutableBasename(): name = "" if isAppFrozen(): name = "PS3GUD" else: name = "main_ps3gud" return name def waitForMainAppExit(pid = None, window = None): exename = (getMainExecutableBasename()+getExecutableSuffix()).lower() print(f"looking for {exename} (PID: {pid if pid is not None else 'No PID given'})") sleep_interval = 0.05 if pid == None: for p in psutil.process_iter(attrs=["pid", "name", "cmdline"]): if window is not None: window.Refresh() if exename in p.info["name"].lower() or exename in (' '.join(p.info["cmdline"])).lower(): pid = p.info["pid"] print(f"found {exename} with pid: {pid}") if pid is not None: try: proc = psutil.Process(pid) except psutil.NoSuchProcess: return print(f"waiting for {exename}(PID: {pid}) with interval of {sleep_interval}s") while True: if psutil.pid_exists(pid) and (proc.name().lower() == exename or exename in (' '.join(proc.cmdline())).lower()): if window is not None: window.Refresh() time.sleep(sleep_interval) else: break