├── .gitattributes ├── .gitignore ├── ArtemisPS3-GUI ├── ArtemisPS3-GUI.vcxproj ├── ArtemisPS3-GUI.vcxproj.filters ├── ArtemisPS3-GUI.vcxproj.user ├── ICON0.PNG ├── ICON0_NEW.PNG ├── ICON0_OLD.PNG ├── MAMBA_PRX_Loader_Payload │ ├── Make_All.bat │ ├── Make_Clean.bat │ ├── Makefile │ ├── Makefile_3.55 │ ├── Makefile_3.55D │ ├── Makefile_4.21 │ ├── Makefile_4.21D │ ├── Makefile_4.30 │ ├── Makefile_4.30D │ ├── Makefile_4.31 │ ├── Makefile_4.40 │ ├── Makefile_4.41 │ ├── Makefile_4.41D │ ├── Makefile_4.46 │ ├── Makefile_4.46D │ ├── Makefile_4.50 │ ├── Makefile_4.50D │ ├── Makefile_4.53 │ ├── Makefile_4.53D │ ├── Makefile_4.55 │ ├── Makefile_4.55D │ ├── Makefile_4.60 │ ├── Makefile_4.60D │ ├── Makefile_4.65 │ ├── Makefile_4.65D │ ├── Makefile_4.66 │ ├── Makefile_4.66D │ ├── Makefile_4.70 │ ├── Makefile_4.70D │ ├── Makefile_4.75 │ ├── Makefile_4.75D │ ├── Makefile_4.76 │ ├── Makefile_4.76D │ ├── Makefile_4.78 │ ├── Makefile_4.78D │ ├── lv2 │ │ ├── include │ │ │ └── lv2 │ │ │ │ ├── debug.h │ │ │ │ ├── error.h │ │ │ │ ├── interrupt.h │ │ │ │ ├── io.h │ │ │ │ ├── libc.h │ │ │ │ ├── lv2.h │ │ │ │ ├── macros.h.S │ │ │ │ ├── memory.h │ │ │ │ ├── modules.h │ │ │ │ ├── object.h │ │ │ │ ├── patch.h │ │ │ │ ├── process.h │ │ │ │ ├── security.h │ │ │ │ ├── storage.h │ │ │ │ ├── symbols.h │ │ │ │ ├── synchronization.h │ │ │ │ ├── syscall.h │ │ │ │ ├── thread.h │ │ │ │ ├── time.h │ │ │ │ └── usb.h │ │ └── src │ │ │ ├── debug.S │ │ │ ├── io.S │ │ │ ├── libc.S │ │ │ ├── memory.S │ │ │ ├── memory_c.c │ │ │ ├── modules.S │ │ │ ├── modules_c.c │ │ │ ├── process.S │ │ │ ├── syscall.S │ │ │ ├── thread.S │ │ │ ├── thread_c.c │ │ │ └── time.S │ ├── payload.ld │ ├── payload_src │ │ ├── main.c │ │ └── start.S │ └── ps3dev │ │ └── ppu │ │ ├── bin │ │ ├── ppu-gcc.exe │ │ └── ppu-objcopy.exe │ │ ├── lib │ │ └── gcc │ │ │ └── ppu │ │ │ └── 4.2.0 │ │ │ └── include │ │ │ ├── README │ │ │ ├── altivec.h │ │ │ ├── decfloat.h │ │ │ ├── float.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── ppc-asm.h │ │ │ ├── spe.h │ │ │ ├── ssp │ │ │ ├── ssp.h │ │ │ ├── stdio.h │ │ │ ├── string.h │ │ │ └── unistd.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── syslimits.h │ │ │ ├── unwind.h │ │ │ └── varargs.h │ │ ├── libexec │ │ └── gcc │ │ │ └── ppu │ │ │ └── 4.2.0 │ │ │ ├── cc1.exe │ │ │ ├── cc1plus.exe │ │ │ ├── collect2.exe │ │ │ └── install-tools │ │ │ ├── fixinc.sh │ │ │ ├── fixincl.exe │ │ │ └── mkheaders │ │ ├── ppu │ │ ├── bin │ │ │ ├── as.exe │ │ │ └── ld.exe │ │ └── include │ │ │ ├── _ansi.h │ │ │ ├── alloca.h │ │ │ ├── machine │ │ │ ├── _types.h │ │ │ ├── ansi.h │ │ │ ├── endian.h │ │ │ ├── fastmath.h │ │ │ ├── ieeefp.h │ │ │ ├── malloc.h │ │ │ ├── param.h │ │ │ ├── setjmp-dj.h │ │ │ ├── setjmp.h │ │ │ ├── stdlib.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ └── types.h │ │ │ ├── newlib.h │ │ │ ├── reent.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ └── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── config.h │ │ │ ├── dirent.h │ │ │ ├── fcntl.h │ │ │ ├── features.h │ │ │ ├── file.h │ │ │ ├── iconvnls.h │ │ │ ├── lock.h │ │ │ ├── param.h │ │ │ ├── queue.h │ │ │ ├── reent.h │ │ │ ├── resource.h │ │ │ ├── sched.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdio.h │ │ │ ├── string.h │ │ │ ├── syslimits.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── types.h │ │ │ ├── unistd.h │ │ │ ├── utime.h │ │ │ └── wait.h │ │ └── rename bin_ to bin (also in ppu folder) ├── PSL1GHTBuilder.exe ├── README.md ├── data │ ├── background_music_mp3.bin │ ├── berion.txt │ ├── bgimg.png │ ├── cheat.png │ ├── circle_error_dark.png │ ├── circle_error_light.png │ ├── circle_loading_bg.png │ ├── circle_loading_seek.png │ ├── comfortaa_bold.ttf │ ├── comfortaa_light.ttf │ ├── comfortaa_regular.ttf │ ├── data_old │ │ ├── background.png │ │ ├── background_music_mp3.bin │ │ ├── cousinereg_ttf.bin │ │ ├── desc_about.jpg │ │ ├── desc_about.png │ │ ├── desc_cheats.png │ │ ├── desc_options.png │ │ ├── desc_start.jpg │ │ ├── desc_start.png │ │ ├── electromagnetic_lungs_ttf.bin │ │ ├── icon_about.png │ │ ├── icon_cheats.png │ │ ├── icon_onlinecheats.png │ │ ├── icon_options.png │ │ ├── icon_start.png │ │ ├── icon_usercheats.png │ │ ├── logo.png │ │ ├── logo_ghost.png │ │ ├── menu_bar.png │ │ ├── neuropol_ttf.bin │ │ ├── project.png │ │ ├── sel_bar1.png │ │ ├── sel_bar2.png │ │ ├── sources │ │ │ ├── icon_onlinecheats.psd │ │ │ ├── icon_options.psd │ │ │ ├── icon_usercheats.psd │ │ │ ├── logo.psd │ │ │ ├── neuropol.ttf │ │ │ ├── project.psd │ │ │ └── ubuntureg.ttf │ │ ├── spu_soundmodule.bin │ │ ├── ubuntumono_ttf.bin │ │ └── ubuntureg_ttf.bin │ ├── edit_ico_add.png │ ├── edit_ico_del.png │ ├── edit_shadow.png │ ├── footer_ico_circle.png │ ├── footer_ico_cross.png │ ├── footer_ico_lt.png │ ├── footer_ico_rt.png │ ├── footer_ico_square.png │ ├── footer_ico_triangle.png │ ├── header_dot.png │ ├── header_ico_abt.png │ ├── header_ico_cht.png │ ├── header_ico_opt.png │ ├── header_ico_xmb.png │ ├── header_line.png │ ├── help.png │ ├── mark_arrow.png │ ├── mark_line.png │ ├── mark_line_nowork.png │ ├── opt_off.png │ ├── opt_on.png │ ├── preview │ │ ├── about (rev A).jpg │ │ ├── about (rev B).jpg │ │ ├── cheats (cheatlist, adding).jpg │ │ ├── cheats (cheatlist, view).jpg │ │ ├── cheats (gamelist, adding).jpg │ │ ├── cheats (gamelist, view).jpg │ │ ├── cheats (loading, error).jpg │ │ ├── cheats (loading, seeking).jpg │ │ ├── help.jpg │ │ ├── options (english).jpg │ │ ├── options (polish).jpg │ │ ├── title screen (new logo).jpg │ │ └── title screen (old logo).jpg │ ├── scroll_bg.png │ ├── scroll_lock.png │ ├── spu_soundmodule.bin │ ├── titlescr_ico_abt.png │ ├── titlescr_ico_cht.png │ ├── titlescr_ico_opt.png │ ├── titlescr_ico_xmb.png │ └── titlescr_logo.png ├── font informations.txt ├── font.zip ├── include │ ├── codes.h │ ├── common.h │ ├── lv2_utils.h │ ├── mamba_prx_loader.h │ ├── menu.h │ ├── menu_about.h │ ├── menu_cheats.h │ ├── menu_options.h │ └── ps3mapi_ps3_lib.h ├── libfont │ ├── Makefile │ ├── build │ │ ├── libfont.d │ │ └── libfont.o │ ├── include │ │ └── libfont.h │ ├── libfont.a │ └── source │ │ └── libfont.c ├── makefile ├── pkgfiles │ ├── ICON0.PNG │ └── USRDIR │ │ ├── NewCore │ │ └── sys_init_osd.self │ │ ├── USERLIST │ │ ├── 007 Legends BLUS30983 01.01.ncl │ │ ├── 1942 Joint Strike NPUB30024 01.00.ncl │ │ ├── 2014 FIFA World Cup Brazil BLUS31389 01.01.ncl │ │ ├── 3D Dot Game Heroes BLES00875 01.00.ncl │ │ ├── 3D Dot Game Heroes BLES00875 01.01.ncl │ │ ├── 3D Dot Game Heroes BLJM60180 01.01.ncl │ │ ├── A.C.E. Another Century's Episode R BLJS10081 01.02.ncl │ │ ├── A.C.E. Another Century's Episode R.ncl │ │ ├── Adventure Time Explore The Dungeon Because I DON'T KNOW! BLES01961 01.00.ncl │ │ ├── Adventure Time Secret Of The Nameless Kingdom BLUS31450 01.00.ncl │ │ ├── Aegis Of Earth Protonovus Assault NPUB31805 01.01.ncl │ │ ├── After Burner Climax NPUB30151 01.00.ncl │ │ ├── Agarest Generations Of War BLES00594 01.00.ncl │ │ ├── Agarest Generations Of War Zero BLES01305 01.01.ncl │ │ ├── Agarest Senki 2 BLJM60273 01.04.ncl │ │ ├── Agarest Senki 2 BLJM60273.ncl │ │ ├── Agarest Senki BLJM60038 01.02.ncl │ │ ├── Agarest Senki Zero BLJM60156 01.03.ncl │ │ ├── Akiba's Trip 2 Undead And Undressed 01.02.ncl │ │ ├── Akiba's Trip 2 Undead And Undressed BLJM61105 01.00.ncl │ │ ├── Akiba's Trip 2 Undead And Undressed BLUS31425 01.00 BLJM61105 01.03.ncl │ │ ├── Alice Madness Returns BLUS30607 01.00.ncl │ │ ├── Alien Breed 2 Assault NPEB00345 NPUB30335 01.00.ncl │ │ ├── Alien Breed 3 Descent NPEB00346 NPUB30336 01.00.ncl │ │ ├── Alien Breed Impact NPEB00260 01.00.ncl │ │ ├── Alien Breed Impact NPUB30141 01.00.ncl │ │ ├── Alien Breed NPUB31085 01.00.ncl │ │ ├── Alien Isolation BLES01697 01.00.ncl │ │ ├── Alien Rage NPUB30863 01.00.ncl │ │ ├── Aliens Colonial Marines BLES01455 BLUS30862 01.05.ncl │ │ ├── Aliens Colonial Marines BLES01770 01.05.ncl │ │ ├── Aliens Vs Predator BLES00585 BLUS30340 BLUS30493 01.00.ncl │ │ ├── Alone In the Dark BLES00422 01.02.ncl │ │ ├── Altered Beast NPEB00526 01.00.ncl │ │ ├── Amy NPUB30613 01.00.ncl │ │ ├── Angry Birds Star Wars BLUS31273 01.01.ncl │ │ ├── Aqua Panic NPUB30203 01.00.ncl │ │ ├── Ar Nosurge An Ode To An Unborn Star BLUS31478 01.00.ncl │ │ ├── Ar Tonelico 3 Sekia Shuuen Nn Hikigane Wa Shoujo Nn Uta Ga Hiku BLJS10075 01.01.ncl │ │ ├── Ar Tonelico Qoga Knell Of Ar Ciel BLES01102 01.00.ncl │ │ ├── Ar Tonelico Qoga Knell Of Ar Ciel BLUS30639 01.00.ncl │ │ ├── Arcadias No Ikusahime BLJS10224 01.00.ncl │ │ ├── Arcania The Complete Tale BLES01783 01.00.ncl │ │ ├── Armored Core 4 BLJM60012 01.05.ncl │ │ ├── Armored Core For Answer BLJM60066 01.02.ncl │ │ ├── Armored Core For Answer BLJM60066 01.35.ncl │ │ ├── Armored Core V BLES01440 01.01.ncl │ │ ├── Armored Core Verdict Day BLES01898 01.00.ncl │ │ ├── Armored Core Verdict Day BLES01898 BLJM61014 BLUS31194 01.01.ncl │ │ ├── Army Of Two The 40th Day BLES00659 01.00.ncl │ │ ├── Army Of Two The Devil's Cartel BLES01763 BLUS31069 01.00.ncl │ │ ├── Army Of Two The Devil's Cartel BLES01763 BLUS31069 01.01.ncl │ │ ├── Arslan Senki X Musou BLJM61308 01.00.ncl │ │ ├── Arslan Senki X Musou BLJM61308 01.03.ncl │ │ ├── Arslan Senki X Musou BLJM61308 01.04.ncl │ │ ├── Assassin's Creed 2 BLES00669 01.01.ncl │ │ ├── Assassin's Creed 2 BLES00670 01.02.ncl │ │ ├── Assassin's Creed 2 BLJM60185 01.01.ncl │ │ ├── Assassin's Creed 2 BLJM60233 01.01.ncl │ │ ├── Assassin's Creed 2 BLJM60499 01.00.ncl │ │ ├── Assassin's Creed 2 BLUS30364 01.01.ncl │ │ ├── Assassin's Creed 2 NPUB30423 01.00.ncl │ │ ├── Assassin's Creed 3 Special Edition BLES01667 01.01.ncl │ │ ├── Assassin's Creed 3 Special Edition BLES01668 01.01.ncl │ │ ├── Assassin's Creed 4 Black Flag BLES01882 01.00.ncl │ │ ├── Assassin's Creed 4 Black Flag BLES01882 01.01.ncl │ │ ├── Assassin's Creed 4 Black Flag BLES01882 01.04.ncl │ │ ├── Assassin's Creed 4 Black Flag BLES01883 01.00.ncl │ │ ├── Assassin's Creed 4 Black Flag BLES01883 01.01.ncl │ │ ├── Assassin's Creed 4 Black Flag BLES01883 01.03.ncl │ │ ├── Assassin's Creed 4 Black Flag BLJM61056 01.00.ncl │ │ ├── Assassin's Creed 4 Black Flag BLJM61056 01.01.ncl │ │ ├── Assassin's Creed 4 Black Flag BLJM61056 01.03.ncl │ │ ├── Assassin's Creed Brotherhood BLES00909 01.01.ncl │ │ ├── Assassin's Creed Brotherhood BLES00909 02.03.ncl │ │ ├── Assassin's Creed Brotherhood BLJM60250 01.01.ncl │ │ ├── Assassin's Creed Brotherhood BLUS30537 01.01.ncl │ │ ├── Assassin's Creed Brotherhood Ezio Saga NPJB00231 01.00.ncl │ │ ├── Assassin's Creed Brotherhood.ncl │ │ ├── Assassin's Creed Ezio Saga BLJM67011 01.00.ncl │ │ ├── Assassin's Creed Ezio Saga NPJB00230 01.00.ncl │ │ ├── Assassin's Creed Liberation NPEB01386 01.00.ncl │ │ ├── Assassin's Creed NPJB00214 01.00.ncl │ │ ├── Assassin's Creed Revelations BLES01385 01.04.ncl │ │ ├── Assassin's Creed Revelations BLES01467 01.01.ncl │ │ ├── Assassin's Creed Revelations BLES01467 01.04.ncl │ │ ├── Assassin's Creed Revelations NPUB30707 01.01.ncl │ │ ├── Assassin's Creed Rogue BLES02061 01.01.ncl │ │ ├── Assassin's Creed Rogue BLUS31465 01.01.ncl │ │ ├── Atelier Ayesha Alchemist Of Dusk BLUS31152 01.00.ncl │ │ ├── Atelier Escha And Logy Alchemists Of The Dusk Sky BLES01992 01.00.ncl │ │ ├── Atelier Meruru The Apprentice Of Arland BLES01593 01.01.ncl │ │ ├── Atelier Rorona Plus The Alchemist Of Arland BLES02047 BLES02050 01.00.ncl │ │ ├── Atelier Rorona The Alchemist Of Arland BLUS30465 01.00.ncl │ │ ├── Atelier Rorona The Alchemist Of Arland.ncl │ │ ├── Atelier Shallie Alchemists Of The Dusk Sea BLUS31525 01.00 01.01.ncl │ │ ├── Atelier Totori The Adventurer Of Arland BLUS30735 01.00.ncl │ │ ├── Atelier Totori The Adventurer Of Arland.ncl │ │ ├── Attouteki Yuugi Mugen Souls BLJM60456 01.00.ncl │ │ ├── Attouteki Yuugi Mugen Souls Z BLES02022 BLJM61028 01.00.ncl │ │ ├── Avatar The Legend Of Korra NPUB31537 01.00.ncl │ │ ├── Ayesha No Atelier Tasogare No Daichi No Renkinjutsushi BLJM60486 01.03.ncl │ │ ├── Batman Arkham Asylum BLJM60193 01.00.ncl │ │ ├── Batman Arkham Asylum GOTY BLES00827 01.00.ncl │ │ ├── Batman Arkham Asylum GOTY BLUS30515 01.00.ncl │ │ ├── Batman Arkham City BLUS30538 01.00.ncl │ │ ├── Batman Arkham City BLUS30978 01.00.ncl │ │ ├── Batman Arkham Origins BLES01784 01.01.ncl │ │ ├── Batman Arkham Origins BLES01784 01.02.ncl │ │ ├── Batman Arkham Origins BLUS31147 BLUS31207 01.00.ncl │ │ ├── Batman Arkham Origins BLUS31147 BLUS31207 01.02.ncl │ │ ├── Batman Arkham Origins BLUS31147 BLUS31207 01.06.ncl │ │ ├── Batman Arkham Origins Blackgate NPEB01968 01.00.ncl │ │ ├── Battle Fantasia BLJM60077 01.01.ncl │ │ ├── Battle Princess Of Arcadias NPUB31486 01.00.ncl │ │ ├── Battlefield 3 BLAS50380 01.00.ncl │ │ ├── Battlefield 3 BLUS30762 01.01.ncl │ │ ├── Battlefield 4 BLUS31162 1.00.ncl │ │ ├── Battlefield 4 BLUS31162 1.01.ncl │ │ ├── Bayonetta BLES00599 BLUS30367 01.00.ncl │ │ ├── Bayonetta BLES00599 BLUS30367 01.01.ncl │ │ ├── Bayonetta BLJM60174 01.00.ncl │ │ ├── Bayonetta NPEB01134 01.00.ncl │ │ ├── Bayonetta.ncl │ │ ├── Beat Hazard Ultra NPUB30552 NPEB00620 01.00.ncl │ │ ├── Binary Domain BLES01211 01.00.ncl │ │ ├── Binary Domain BLES01211 01.02.ncl │ │ ├── Binary Domain BLUS30729 01.00.ncl │ │ ├── Binary Domain NPEB00915 01.02.ncl │ │ ├── BioShock 2 BLES00728 01.01.ncl │ │ ├── BioShock 2 BLJS10078 01.03.ncl │ │ ├── BioShock 2 BLUS30420 01.01.ncl │ │ ├── BioShock BLES00316 01.00.ncl │ │ ├── BioShock BLJS10041 01.10.ncl │ │ ├── BioShock BLUS30166 01.00.ncl │ │ ├── BioShock Infinite BLES01705 01.01.ncl │ │ ├── BioShock Infinite BLES01705 01.02.ncl │ │ ├── BioShock Infinite BLES01705 01.07.ncl │ │ ├── BioShock Infinite BLJS10207 01.01.ncl │ │ ├── BioShock Infinite BLUS30629 01.01.ncl │ │ ├── BioShock Infinite BLUS30629 01.02.ncl │ │ ├── Biohazard 4 BLJM60372 01.01.ncl │ │ ├── Biohazard 4 NPJB00084 01.03.ncl │ │ ├── Biohazard 5 Alternative Edition BLJM60199 01.00.ncl │ │ ├── Biohazard 5 Alternative Edition BLJM60199 01.01.ncl │ │ ├── Biohazard 5 BLJM90001 01.03.ncl │ │ ├── Biohazard 5 BLJM90001 02.00.ncl │ │ ├── Biohazard 6 BLES01465 BLJM60405 BLUS30855 01.03.ncl │ │ ├── Biohazard 6 BLES01465 BLJM60405 NPUB30984 01.02.ncl │ │ ├── Biohazard 6 BLJM60405 01.02.ncl │ │ ├── Biohazard Code Veronica X BLJM60372 01.01.ncl │ │ ├── Biohazard Code Veronica X NPJB00135 01.01.ncl │ │ ├── Biohazard Remaster BLJM61211 01.00.ncl │ │ ├── Biohazard Remaster NPJB00653 01.00.ncl │ │ ├── Biohazard Revelations BLJM60518 01.00.ncl │ │ ├── Bionic Commando Rearmed 2 NPUB30131 01.00.ncl │ │ ├── Bladestorm Hyakunen Sensou BLJM60009 01.00.ncl │ │ ├── Bladestorm Hyakunen Sensou BLJM60009 01.02.ncl │ │ ├── Bladestorm Hyakunen Sensou BLJM60009.ncl │ │ ├── Bladestorm The Hundred Years' War BLES00113 BLUS30070 01.00.ncl │ │ ├── Bladestorm The Hundred Years' War.ncl │ │ ├── BlazBlue Calamity Trigger BLJM60157 01.00.ncl │ │ ├── BlazBlue Calamity Trigger BLJM60157 01.02.ncl │ │ ├── BlazBlue Chrono Phantasma BLUS31213 01.00.ncl │ │ ├── BlazBlue Chrono Phantasma Extend BLJS10300 01.00.ncl │ │ ├── BlazBlue Continuum Shift BLJM60238 01.02.ncl │ │ ├── BlazBlue Continuum Shift BLJM60238 01.03.ncl │ │ ├── BlazBlue Continuum Shift BLUS30576 01.01.ncl │ │ ├── Bleach Soul Ignition BCJS30077 01.00.ncl │ │ ├── Bleach Soul Resurreccion BLUS30769 01.02.ncl │ │ ├── Borderlands 2 BLES01684 01.00.ncl │ │ ├── Borderlands 2 BLES01684 01.01.ncl │ │ ├── Borderlands 2 BLES01684 01.02.ncl │ │ ├── Borderlands The Pre-Sequel BLES02058 BLUS31445 01.01.ncl │ │ ├── Bound By Flame BLES01952 01.00.ncl │ │ ├── Bulletstorm BLES01134 01.03.ncl │ │ ├── Bulletstorm BLES01134 BLUS30651 01.01.ncl │ │ ├── Burnout Paradise BLUS30061 01.00.ncl │ │ ├── Cabela's African Adventures BLUS31275 01.00.ncl │ │ ├── Cabela's Big Game Hunter Pro Hunts BLUS31274 01.00.ncl │ │ ├── Cabela's Big Game Hunter Pro Hunts BLUS31274 01.01.ncl │ │ ├── Call Of Duty 3 BLUS30012 01.00.ncl │ │ ├── Call Of Duty 4 Modern Warfare BLES00148 BLJS10013 01.00.ncl │ │ ├── Call Of Duty Black Ops 2 BLES01717 01.00.ncl │ │ ├── Call Of Duty Black Ops BLES01031 BLES01032 BLUS30591 01.00.ncl │ │ ├── Call Of Duty Black Ops Dubbed Edition BLJM60287 01.00.ncl │ │ ├── Call Of Duty Black Ops Subtitle BLJM60286 01.13.ncl │ │ ├── Call Of Duty Classic NPEB00101 01.00.ncl │ │ ├── Call Of Duty Ghosts BLES01945 01.03.ncl │ │ ├── Call Of Duty Ghosts BLES01945 BLES01948 BLUS31270 01.02.ncl │ │ ├── Call Of Duty Ghosts BLUS31270 01.03.ncl │ │ ├── Call Of Duty Ghosts BLUS31270 01.16.ncl │ │ ├── Call Of Duty Modern Warfare 2 BLUS30377 01.00.ncl │ │ ├── Call Of Duty Modern Warfare 3 BLES01428 BLUS30838 01.21.ncl │ │ ├── Call Of Duty World At War BLES00354 BLUS30192 01.01.ncl │ │ ├── Capcom Arcade Cabinet 1942 NPEB00980 01.00.ncl │ │ ├── Capcom Arcade Cabinet 1943 The Battle Of Midway NPEB00980 01.00.ncl │ │ ├── Capcom Arcade Cabinet Avengers NPEB00980 01.00.ncl │ │ ├── Capcom Arcade Cabinet Black Tiger NPEB00980 01.00.ncl │ │ ├── Castle Crashers NPUB30181 01.00.ncl │ │ ├── Castlevania Harmony Of Despair NPEB00563 01.00.ncl │ │ ├── Castlevania Lords Of Shadow - Mirror Of Fate NPEB01441 01.00.ncl │ │ ├── Castlevania Lords Of Shadow 2 BLES01644 BLUS30999 01.00.ncl │ │ ├── Castlevania Lords Of Shadow 2 BLES01644 BLUS30999 01.01.ncl │ │ ├── Castlevania Lords Of Shadow BLES01047 01.00.ncl │ │ ├── Castlevania Lords Of Shadow BLES01047 01.01.ncl │ │ ├── Castlevania Lords Of Shadow BLES01047 01.03.ncl │ │ ├── Castlevania Lords Of Shadow BLJM60284 01.01.ncl │ │ ├── Castlevania Lords Of Shadow BLUS30339 01.03.ncl │ │ ├── Castlevania Lords Of Shadow.ncl │ │ ├── Catherine BLES01459 01.00.ncl │ │ ├── Catherine BLJM60215 01.00.ncl │ │ ├── Catherine BLUS30428 01.00.ncl │ │ ├── Catherine BLUS30428.ncl │ │ ├── Chikyuu Boueigun 4 BLJS10209 01.02.ncl │ │ ├── Child Of Light NPUB31430 01.00.ncl │ │ ├── Child Of Light NPUB31430 01.02.ncl │ │ ├── Chou Jigen Game Neptune BLJM60247 01.01.ncl │ │ ├── Chou Jigen Game Neptune BLJM60247 01.02.ncl │ │ ├── Chou Jigen Game Neptune BLJM60247 01.04.ncl │ │ ├── Chou Jigen Game Neptune MK2 BLJM60992 01.00.ncl │ │ ├── Chou Jigen Game Neptune MK2 BLJM60992 01.01.ncl │ │ ├── Clash Of The Titans BLES00841 01.00.ncl │ │ ├── Class Of Heroes 2G NPUB31541 01.00.ncl │ │ ├── Clock Tower 2 NPJJ00630.ncl │ │ ├── Comix Zone NPEB00530 01.00.ncl │ │ ├── Command And Conquer Red Alert 3 Ultimate Edition BLES00508 01.00.ncl │ │ ├── Conan BLES00076 01.00.ncl │ │ ├── Condemned 2 BLES00219 01.00.ncl │ │ ├── Condemned 2 Bloodshot BLUS30115 01.00.ncl │ │ ├── Condemned 2 Bloodshot BLUS30115 01.01.ncl │ │ ├── Cosmophony NPEB02190 01.00.ncl │ │ ├── Crescent Pale Mist NPUA30032 01.00.ncl │ │ ├── Cross Edge BLES00650 BLUS30348 01.00.ncl │ │ ├── Crysis 2 BLES01060 BLUS30631 01.00.ncl │ │ ├── Crysis 2 NPEB00653 01.00.ncl │ │ ├── Crysis 3 BLJM60530 01.03.ncl │ │ ├── Crysis 3 BLUS30976 01.00.ncl │ │ ├── Crysis NPUB30302 01.00.ncl │ │ ├── Crystal Defenders NPUB30092 01.00.ncl │ │ ├── Dai-2-Ji Super Robot Taisen OG BLJS10133 01.00.ncl │ │ ├── Dai-3-Ji Super Robot Taisen Z Jigoku-Hen BLJS10256.ncl │ │ ├── Dai-3-Ji Super Robot Taisen Z Tengoku-Hen BLJS10299 01.01.ncl │ │ ├── Dai-3-Ji Super Robot Taisen Z Tengoku-Hen BLJS10299 01.02.ncl │ │ ├── Dante's Inferno BLES00713 01.04.ncl │ │ ├── Dante's Inferno BLES00713 BLUS30405 01.00.ncl │ │ ├── Dante's Inferno Divine Edition BLUS30405 01.04.ncl │ │ ├── Dark Sector BLUS30116 01.00.ncl │ │ ├── Dark Souls 2 BLUS41045 01.01.ncl │ │ ├── Dark Souls BLES01396 01.05.ncl │ │ ├── Dark Souls BLES01402 01.00.ncl │ │ ├── Dark Souls BLJM60517 01.08.ncl │ │ ├── Dark Souls BLJM60993 01.05.ncl │ │ ├── Dark Souls BLUS30782 01.05.ncl │ │ ├── Dark Souls Prepare To Die Edition BLES01765 01.01.ncl │ │ ├── Darksiders 2 BLES01597 BLUS30829 01.02.ncl │ │ ├── Darksiders BLES00705 BLUS30320 01.00.ncl │ │ ├── Darksiders NPEB00726 01.00.ncl │ │ ├── Darksiders Shinpan No Toki BLJM60204 01.01.ncl │ │ ├── Darksiders.ncl │ │ ├── Dead Island BLES00749 01.04.ncl │ │ ├── Dead Island BLJS10148 01.02.ncl │ │ ├── Dead Island BLUS30790 01.04.ncl │ │ ├── Dead Island GOTY BLUS31026 01.00.ncl │ │ ├── Dead Island NPEB00721 01.00.ncl │ │ ├── Dead Island NPJB00630 01.00.ncl │ │ ├── Dead Island Riptide BLES01739 BLUS31052 01.00.ncl │ │ ├── Dead Island Riptide BLJS10228 01.00.ncl │ │ ├── Dead Island Riptide BLUS31025 01.01.ncl │ │ ├── Dead Island Riptide NPJB00413 01.00.ncl │ │ ├── Dead Island Riptide NPUB31145 01.00.ncl │ │ ├── Dead Island Riptide.ncl │ │ ├── Dead Nation NPEA00143 01.00.ncl │ │ ├── Dead Nation NPUA80358 01.03.ncl │ │ ├── Dead Nation NPUA80358 01.08.ncl │ │ ├── Dead Or Alive 5 BLES01623 01.00.ncl │ │ ├── Dead Or Alive 5 BLJM60513 01.00.ncl │ │ ├── Dead Or Alive 5 ULTIMATE BLES01907 01.00.ncl │ │ ├── Dead Or Alive 5 ULTIMATE BLJM61085 01.00.ncl │ │ ├── Dead Or Alive 5 ULTIMATE NPUB31289 01.01.ncl │ │ ├── Dead Rising 2 BLES00948 BLUS30439 01.00.ncl │ │ ├── Dead Rising 2 BLJM60221 01.00.ncl │ │ ├── Dead Rising 2 BLUS30439 01.02.ncl │ │ ├── Dead Rising 2 Off The Record BLES01302 BLJM60341 BLUS30763 NPUB30862 01.01.ncl │ │ ├── Dead Rising 2 Off The Record NPUB30862 01.00.ncl │ │ ├── Dead Space 2 BLES01040 BLUS30624 BLUS30680 01.01.ncl │ │ ├── Dead Space 2 BLUS30624 01.00.ncl │ │ ├── Dead Space 2 BLUS30624 01.02.ncl │ │ ├── Dead Space 3 BLES01733 BLUS31053 01.00.ncl │ │ ├── Dead Space 3 BLES01733 BLUS31053 01.02.ncl │ │ ├── Dead Space BLES00308 BLES00309 01.00.ncl │ │ ├── Dead Space BLUS30177 01.01.ncl │ │ ├── Dead Space Extraction NPUB30314 NPUB30337 01.00.ncl │ │ ├── Dead Space Ignition NPUB30269 01.00.ncl │ │ ├── Deadly Premonition The Director's Cut BLES01776 01.00.ncl │ │ ├── Deadly Premonition The Director's Cut NPUB31179 01.00.ncl │ │ ├── Deadpool BLES01789 BLUS31146 01.00.ncl │ │ ├── Deception 4 Blood Ties BLES01997 01.00.ncl │ │ ├── Deception 4 Blood Ties NPUB31752 01.00.ncl │ │ ├── Demon's Souls BCAS20071 01.00.ncl │ │ ├── Demon's Souls BCJS30022 01.00.ncl │ │ ├── Demon's Souls BCJS30022 01.04.ncl │ │ ├── Demon's Souls BLES00932 01.00.ncl │ │ ├── Demon's Souls BLUS30443 01.00.ncl │ │ ├── Demon's Souls.ncl │ │ ├── Deus Ex Human Revolution BLES01150 BLES01151 BLES01928 BLUS30476 01.00.ncl │ │ ├── Deus Ex Human Revolution Director's Cut BLES01928 01.00.ncl │ │ ├── Deus Ex Human Revolution Director's Cut NPEB01805 01.00.ncl │ │ ├── Devil May Cry 1 BLES01228 BLUS30764 01.00.ncl │ │ ├── Devil May Cry 2 BLES01228 BLUS30764 01.00.ncl │ │ ├── Devil May Cry 3 BLES01228 BLUS30764 01.00.ncl │ │ ├── Devil May Cry 4 BLES00186 BLUS30092 01.01.ncl │ │ ├── Diablo 3 BLES01921 01.00.ncl │ │ ├── Diablo 3 BLES01921 01.01.ncl │ │ ├── Diablo 3 BLES01921 01.02.ncl │ │ ├── Diablo 3 BLUS31221 01.02.ncl │ │ ├── Diablo 3 Reaper Of Souls BLUS31437 01.02.ncl │ │ ├── Dino Crisis 2 NPUJ01279.ncl │ │ ├── Dino Crisis NPUJ00922.ncl │ │ ├── Disgaea 3 Absence Of Justice BLES00452 01.00.ncl │ │ ├── Disgaea 3 Absence Of Justice BLUS30181 01.00.ncl │ │ ├── Disgaea 3 Absence Of Justice BLUS30181 02.30.ncl │ │ ├── Disgaea 3 Absence Of Justice BLUS30181.ncl │ │ ├── Disgaea 4 A Promise Unforgotten BLUS30727 01.01.ncl │ │ ├── Disgaea 4 A Promise Unforgotten BLUS30727 01.13.ncl │ │ ├── Disgaea D2 A Brighter Darkness BLES01939 01.00.ncl │ │ ├── Disgaea D2 A Brighter Darkness BLES01939 01.40.ncl │ │ ├── Disgaea Dimension 2 BLJS10206 01.00.ncl │ │ ├── Disgaea Dimension 2 BLJS10206 01.10.ncl │ │ ├── Dishonored BLES01674 01.03.ncl │ │ ├── Dishonored BLJM60520 01.02.ncl │ │ ├── Disney Castle Of Illusion Starring Mickey Mouse NPUB31099 01.00.ncl │ │ ├── Disney Ducktales Remastered NPEB01287 01.00.ncl │ │ ├── Disney Ducktales Remastered NPEB01287 01.01.ncl │ │ ├── Disney Ducktales Remastered NPUB31126 01.00.ncl │ │ ├── Disney Epic Mickey 2 The Power Of Two BLES01627 01.00.ncl │ │ ├── DmC Devil May Cry BLES01698 01.00.ncl │ │ ├── DmC Devil May Cry BLUS30723 01.01.ncl │ │ ├── DmC Devil May Cry NPUB30830 01.00.ncl │ │ ├── Doom 3 BFG Edition BLUS31024 01.01.ncl │ │ ├── Doom Classic Complete NPUB30808 01.00.ncl │ │ ├── Double Dragon Neon NPUB30764 01.01.ncl │ │ ├── Drag-On Dragoon 3 BLJM61043 01.00.ncl │ │ ├── Drag-On Dragoon 3 BLJM61043 01.01.ncl │ │ ├── Dragon Age Inquisition BLUS30997 01.00.ncl │ │ ├── Dragon Age Origins.ncl │ │ ├── Dragon Ball Raging Blast 2 BLES00978 01.00.ncl │ │ ├── Dragon Ball Raging Blast 2.ncl │ │ ├── Dragon Ball Raging Blast BLES00693 BLUS30431 01.00.ncl │ │ ├── Dragon Ball Raging Blast BLJS10066 01.00.ncl │ │ ├── Dragon Ball Xenoverse BLES02096 01.01.ncl │ │ ├── Dragon Ball Xenoverse BLJS10292 01.00.ncl │ │ ├── Dragon Ball Z Battle Of Z BLES01941 01.00.ncl │ │ ├── Dragon Ball Z Battle Of Z BLJS10234 01.01.ncl │ │ ├── Dragon Ball Z Burst Limit BLJS10020 01.00.ncl │ │ ├── Dragon Quest Heroes Yamiryuu To Sekaiju No Shiro BLJM61256 01.00.ncl │ │ ├── Dragon Quest Heroes Yamiryuu To Sekaiju No Shiro BLJM61256 01.01.ncl │ │ ├── Dragon Quest Heroes Yamiryuu To Sekaiju No Shiro BLJM61256 01.02.ncl │ │ ├── Dragon Quest Heroes Yamiryuu To Sekaiju No Shiro BLJM61256 01.03.ncl │ │ ├── Dragon's Crown BLJM61041 01.00.ncl │ │ ├── Dragon's Crown BLUS30767 01.00.ncl │ │ ├── Dragon's Dogma BLES01356 01.00.ncl │ │ ├── Dragon's Dogma BLES01356 01.03.ncl │ │ ├── Dragon's Dogma BLUS30720 01.01.ncl │ │ ├── Dragon's Dogma BLUS30720 01.03.ncl │ │ ├── Dragon's Dogma Dark Arisen BLES01794 01.00.ncl │ │ ├── Dragon's Dogma Dark Arisen BLJM61012 BLUS31155 01.01.ncl │ │ ├── Dragon's Dogma Dark Arisen NPUB31117 01.00.ncl │ │ ├── Drakengard 3 BLUS31197 01.01.ncl │ │ ├── Drakengard 3 BLUS31197 NPUB31251 01.00.ncl │ │ ├── Duke Nukem Forever BLES01147 01.01.ncl │ │ ├── Dynasty Warriors 7 Empires BLES01795 01.00.ncl │ │ ├── Dynasty Warriors 7 Xtreme Legends BLES01496 01.01.ncl │ │ ├── Dynasty Warriors 7 Xtreme Legends BLES01496.ncl │ │ ├── Dynasty Warriors 7 Xtreme Legends BLUS30690 01.00.ncl │ │ ├── Dynasty Warriors 8 BLUS31185 01.00.ncl │ │ ├── Dynasty Warriors 8 NPEB01364 01.00.ncl │ │ ├── Dynasty Warriors 8 Xtreme Legends BLUS31402 01.00.ncl │ │ ├── Dynasty Warriors Gundam 2 BLES00528 01.00.ncl │ │ ├── Dynasty Warriors Gundam 3 BLES01301 BLUS30703 01.00.ncl │ │ ├── Dynasty Warriors Gundam Reborn BLES02057 01.00.ncl │ │ ├── Dynasty Warriors Strikeforce BLJM60172.ncl │ │ ├── Dynasty Warriors Strikeforce.ncl │ │ ├── Earth Defense Force 2025 BLES01847 BLUS31160 01.00.ncl │ │ ├── Earthworm Jim NPEB00226 01.00.ncl │ │ ├── Earthworm Jim NPUB30120 01.00.ncl │ │ ├── Eiyuu Densetsu Sen No Kiseki 2 BLJM61183 01.03.ncl │ │ ├── Eiyuu Densetsu Sen No Kiseki BLJM61059 01.00.ncl │ │ ├── Eiyuu Densetsu Sen No Kiseki BLJM61059 01.02.ncl │ │ ├── Eiyuu Densetsu Sen No Kiseki BLJM61059 01.03.ncl │ │ ├── El Shaddai Ascension Of The Metatron BLJS10117 01.01.ncl │ │ ├── Elevator Action Deluxe NPUB30428 01.00.ncl │ │ ├── Enchant Arm BLJS10003 01.04.ncl │ │ ├── Enchanted Arms BLES00049 01.00.ncl │ │ ├── End Of Eternity BLJM60187 01.00.ncl │ │ ├── Enemy Front BLUS30996 01.00.ncl │ │ ├── Enslaved Odyssey To The West BLES00989 01.00.ncl │ │ ├── Escape From Dead Island BLUS31433 01.00.ncl │ │ ├── Escha And Logy Atelier Tasogare No Sora Nn Renkinjutsushi BLJM61050 01.00.ncl │ │ ├── Escha And Logy Atelier Tasogare No Sora Nn Renkinjutsushi BLJM61050 01.01.ncl │ │ ├── Eternal Sonata BLUS30161 01.00.ncl │ │ ├── F.E.A.R. 2 Project Origin BLUS30251 01.00.ncl │ │ ├── F.E.A.R. 2 Project Origin BLUS30251 01.03.ncl │ │ ├── F.E.A.R. 3 BLUS30511 01.00.ncl │ │ ├── F.E.A.R. 3 BLUS30511 01.01.ncl │ │ ├── F.E.A.R. BLES00035 BLUS30003 01.00.ncl │ │ ├── FIFA 14 BLES01876 01.04.ncl │ │ ├── FIFA 14 BLES01876 01.05.ncl │ │ ├── FIFA 15 BLUS31443 01.00.ncl │ │ ├── FIFA Soccer 12 NPEB00688 01.01.ncl │ │ ├── Fairy Fencer F BLJM61090 01.00.ncl │ │ ├── Fairy Fencer F BLUS31423 01.00.ncl │ │ ├── Fallout 3 GOTY Edition BLUS30451 01.00.ncl │ │ ├── Fallout New Vegas Ultimate Edition BLES01475 01.00.ncl │ │ ├── Family Guy Back To The Multiverse BLES01625 01.00.ncl │ │ ├── Far Cry 2 BLUS30178 01.00.ncl │ │ ├── Far Cry 3 BLJM60532 01.01.ncl │ │ ├── Far Cry 3 Blood Dragon NPUB31142 01.01.ncl │ │ ├── Far Cry 3 NPEB01096 01.01.ncl │ │ ├── Far Cry 4 BLES02011 BLUS31420 01.01.ncl │ │ ├── Final Exam NPEB01409 01.00.ncl │ │ ├── Final Exam NPUB31258 01.00.ncl │ │ ├── Final Fantasy X Remaster BLES01880 01.00.ncl │ │ ├── Final Fantasy X Remaster BLJM61093 01.00.ncl │ │ ├── Final Fantasy X Remaster BLUS31211 01.00.ncl │ │ ├── Final Fantasy X-2 Remaster BLES01880 01.00.ncl │ │ ├── Final Fantasy X-2 Remaster BLJM61093 01.00.ncl │ │ ├── Final Fantasy X-2 Remaster BLUS31211 01.00.ncl │ │ ├── Final Fantasy XIII BCAS25005 01.00.ncl │ │ ├── Final Fantasy XIII BCAS25005.ncl │ │ ├── Final Fantasy XIII BLJM67005 01.04.ncl │ │ ├── Final Fantasy XIII MRTC00003 01.00.ncl │ │ ├── Final Fantasy XIII-2 BLES01269 01.06.ncl │ │ ├── Final Fantasy XIII-2 BLJM60382 01.06.ncl │ │ ├── Final Fantasy XIII-2 BLJM60382 01.07.ncl │ │ ├── Final Fantasy XIII-2 BLUS30776 01.06.ncl │ │ ├── Final Fantasy XIII.ncl │ │ ├── Final Fight Double Impact NPUB30087 01.00.ncl │ │ ├── Fist Of The North Star Ken's Rage 2 BLES01801 01.00.ncl │ │ ├── Fist Of The North Star Ken's Rage BLES01062 01.01.ncl │ │ ├── Fist Of The North Star Ken's Rage NPUB30849 01.00.ncl │ │ ├── Folklore BCAS20013 BCES00050 BCUS98147 01.00.ncl │ │ ├── Folklore BCES00050 01.10.ncl │ │ ├── Fracture BLES00329 01.01.ncl │ │ ├── From Dust NPUB30418 01.00.ncl │ │ ├── Front Mission Evolved BLES00788 BLUS30395 01.00 BLJM60206 01.01.ncl │ │ ├── Front Mission Evolved BLJM60206 01.02.ncl │ │ ├── Fuse BLES01724 01.00.ncl │ │ ├── Fuse BLUS31040 01.00.ncl │ │ ├── G.I. Joe The Rise Of Cobra BLAS50133 01.00.ncl │ │ ├── Galaga Legions DX NPEB00333 01.00.ncl │ │ ├── Galaga Legions DX NPUB30321 01.00.ncl │ │ ├── Gekijouban Macross F Itsuwarino Utahime - Hybrid Pack BLJS93001 01.02.ncl │ │ ├── Genji Days Of The Blade BCES00002 01.00.ncl │ │ ├── Genji Days Of The Blade BCUS98131 01.00.ncl │ │ ├── Genji Kamui Souran BCAS20002 01.01.ncl │ │ ├── Genji Kamui Souran BCJS30002 01.01.ncl │ │ ├── Geometry Wars 3 Dimensions NPUB31544 01.03.ncl │ │ ├── Ghostbusters BCES00642 BLUS30307 01.03.ncl │ │ ├── Goat Simulator NPEB02321 01.01.ncl │ │ ├── God Of War 1 BCES00800 BCUS98229 01.00.ncl │ │ ├── God Of War 2 BCES00800 BCUS98229 01.00.ncl │ │ ├── God Of War 3 BCAS25003 01.03.ncl │ │ ├── God Of War 3 BCES00510 01.00.ncl │ │ ├── God Of War 3 BCES00799 BCUS98111 01.00.ncl │ │ ├── God Of War 3 BCJS37001 01.00.ncl │ │ ├── God Of War Ascension BCAS25016 BCES01741 01.00.ncl │ │ ├── God Of War Ascension BCUS98232 01.00.ncl │ │ ├── God Of War Chains Of Olympus BCES01277 01.00.ncl │ │ ├── God Of War Chains Of Olympus NPUA80637 01.00.ncl │ │ ├── God Of War Ghost Of Sparta BCES01277 01.00.ncl │ │ ├── God Of War Ghost Of Sparta NPUA80636 01.00.ncl │ │ ├── Golden Axe Beast Rider BLUS30209 01.00.ncl │ │ ├── Gran Turismo 5 BCAS20108 01.00.ncl │ │ ├── Gran Turismo 5 BCAS20108 01.09.ncl │ │ ├── Gran Turismo 5 BCES00569 BCUS98114 01.00.ncl │ │ ├── Gran Turismo 5 BCES00569 BCUS98114 01.09.ncl │ │ ├── Gran Turismo 5 PROLOGUE BCJS30017 01.03.ncl │ │ ├── Gran Turismo 5 PROLOGUE BCJS30017 03.00.ncl │ │ ├── Grand Theft Auto IV BLES00229 BLUS30127 01.01.ncl │ │ ├── Grand Theft Auto IV Complete Edition BLES01128 01.00.ncl │ │ ├── Grand Theft Auto IV Complete Edition BLJM60346 01.00.ncl │ │ ├── Grand Theft Auto IV Complete Edition.ncl │ │ ├── Grand Theft Auto IV Episodes From Liberty City BLES00887 01.00.ncl │ │ ├── Grand Theft Auto IV Episodes From Liberty City BLJM60235 01.00.ncl │ │ ├── Grand Theft Auto IV Episodes From Liberty City BLUS30524 01.00.ncl │ │ ├── Grand Theft Auto IV Episodes From Liberty City NPEB00907 01.00.ncl │ │ ├── Grand Theft Auto IV Frist Edition.ncl │ │ ├── Grand Theft Auto San Andreas BLES02219 NPEB02369 01.00.ncl │ │ ├── Grand Theft Auto San Andreas BLUS31584 01.00.ncl │ │ ├── Grand Theft Auto V BLES01807 01.00.ncl │ │ ├── Grand Theft Auto V BLES01807 01.01.ncl │ │ ├── Grand Theft Auto V BLES01807 01.02.ncl │ │ ├── Grand Theft Auto V BLES01807 01.04.ncl │ │ ├── Grand Theft Auto V BLES01807 01.06.ncl │ │ ├── Grand Theft Auto V BLJM61019 01.00.ncl │ │ ├── Grand Theft Auto V BLUS31156 01.00.ncl │ │ ├── Grand Theft Auto V BLUS31156 01.04.ncl │ │ ├── Grand Theft Auto V BLUS31156 01.05.ncl │ │ ├── Guilty Gear Xrd -SIGN- BLJS10289 01.00.ncl │ │ ├── Gundam Breaker 2 BLJS10286 01.03.ncl │ │ ├── Gundam Breaker BLJS10197 01.00.ncl │ │ ├── Gundam Musou 2 BLJM60111 01.03.ncl │ │ ├── Gundam Musou 3 BLJM60300 01.00.ncl │ │ ├── Gundam Musou 3 BLJM60300 01.02.ncl │ │ ├── Gundam Musou 3 JPN.ncl │ │ ├── Gundam Musou BLJM60018 01.01.ncl │ │ ├── Hard Corps Uprising NPEB00332 NPJB00081 01.00.ncl │ │ ├── Hard Corps Uprising NPUB30096 01.00.ncl │ │ ├── Hatsune Miku Project Diva F 2nd BLJM61079 01.00.ncl │ │ ├── Hatsune Miku Project Diva F 2nd BLJM61079 01.01.ncl │ │ ├── Hatsune Miku Project Diva F 2nd BLUS31431 01.00.ncl │ │ ├── Hatsune Miku Project Diva F BLJM60527 01.00.ncl │ │ ├── Haze BLES00169 01.36.ncl │ │ ├── Heavenly Sword BCAS20016 01.00.ncl │ │ ├── Heavenly Sword BCES00078 01.00.ncl │ │ ├── Heavenly Sword BCES00078 01.10.ncl │ │ ├── Heavy Weapon Atomic Tank NPUA30004 01.00.ncl │ │ ├── Hellboy The Science Of Evil BLES00090 01.01.ncl │ │ ├── Hitman Absolution BLES01403 01.00.ncl │ │ ├── Hitman Absolution BLES01403 01.01.ncl │ │ ├── Hitman Absolution BLES01641 01.00.ncl │ │ ├── Hitman Absolution BLJM61003 01.00.ncl │ │ ├── Hitman Absolution NPUB30744 01.00.ncl │ │ ├── Hitman Blood Money NPUB30781 01.00.ncl │ │ ├── Hokuto Musou BLJM60196 01.02.ncl │ │ ├── Hokuto Musou International BLJM60303 01.00.ncl │ │ ├── Homefront BLES00962 01.00.ncl │ │ ├── Homefront NPUB30572 01.04.ncl │ │ ├── How To Survive NPEB01387 01.00.ncl │ │ ├── How To Survive NPEB01387 02.00.ncl │ │ ├── Hunted The Demon's Forge BLES01310 01.01.ncl │ │ ├── Hyperdimension Neptunia BLUS30701 01.00.ncl │ │ ├── Hyperdimension Neptunia Victory BLES01788 01.00.ncl │ │ ├── Hyperdimension Neptunia Victory BLUS31150.ncl │ │ ├── Hyperdimension Neptunia mk2 BLUS30901 01.00.ncl │ │ ├── Hyperdimension Neptunia.ncl │ │ ├── I Am Alive NPUB30383 01.00.ncl │ │ ├── Ico BCES01097 01.01.ncl │ │ ├── Ico BCJS30070 01.00.ncl │ │ ├── Initial D Extreme Stage BLJM60055 01.01.ncl │ │ ├── Inversion BLUS30360 01.00.ncl │ │ ├── Iron Man BLES00247 01.00.ncl │ │ ├── Iron Sky Invasion BLES01786 01.00.ncl │ │ ├── JUJU NPEB02130 01.00.ncl │ │ ├── Jak And Daxter The Precursor Legacy NPUA80706 01.00.ncl │ │ ├── James Cameron's Avatar BLES00667 01.00.ncl │ │ ├── Jikkyou Powerful Pro Yakyuu 2013 BLJM61083 01.01.ncl │ │ ├── Jojo No Kimyou Na Bouken All-Star Battle BLJS10217 01.00.ncl │ │ ├── Jojo No Kimyou Na Bouken All-Star Battle BLJS10217 01.01.ncl │ │ ├── Jojo No Kimyou Na Bouken All-Star Battle BLJS10217.ncl │ │ ├── Just Cause 2 BLES00517 BLUS30400 01.02.ncl │ │ ├── Kamen Rider Battride War BLJS10220 01.01.ncl │ │ ├── Kami Jigen Game Neptune V BLJM60492 01.02.ncl │ │ ├── Kamisama To Unmei Kakumei No Paradox BLJS10202 01.00.ncl │ │ ├── Kane And Lynch 2 Dog Days BLES00604 01.00.ncl │ │ ├── Katamari Forever BLES00658 01.00.ncl │ │ ├── Katamari Forever BLUS30336 01.00.ncl │ │ ├── Ken To Mahou To Gakuen Mono 2G BLJM60278 01.02.ncl │ │ ├── Ken To Mahou To Gakuen Mono 3 BLJM60258 01.03.ncl │ │ ├── Ketsui Kizuna Jigoku Tachi Extra BLJM61060 01.00.ncl │ │ ├── Kidou Senshi Gundam Extreme VS Full Boost BLJS10250 01.10.ncl │ │ ├── Kidou Senshi Gundam Senki Record U.C. 0081 BLJS10050 01.00.ncl │ │ ├── Kidou Senshi Gundam Senki Record U.C. 0081 BLJS10050 01.01.ncl │ │ ├── Kidou Senshi Gundam Senki Record U.C. 0081 BLJS10050 01.02.ncl │ │ ├── Kidou Senshi Gundam Target In Sight BLJS10002 01.00.ncl │ │ ├── Kidou Senshi Gundam UC BLJS10154 01.01.ncl │ │ ├── Killer Is Dead BLES01856 01.00.ncl │ │ ├── Killer Is Dead BLJS10215 BLUS31186 01.00.ncl │ │ ├── Killzone 2 BCAS20066 01.02.ncl │ │ ├── Killzone 2 BCES00081 BCUS98116 01.29.ncl │ │ ├── Killzone 2 BCUS98116 01.01.ncl │ │ ├── Killzone 3 BCES01007 01.00.ncl │ │ ├── Killzone 3 BCES01007 01.01.ncl │ │ ├── Killzone 3 BCES01007 BCUS98234 01.14.ncl │ │ ├── Kingdom Hearts 1.5 HD ReMIX BLJM60589 01.00.ncl │ │ ├── Kingdom Hearts 1.5 HD ReMIX BLUS31212 01.00.ncl │ │ ├── Kingdom Hearts 2.5 HD ReMIX BLES02070 01.00.ncl │ │ ├── Kingdom Hearts 2.5 HD ReMIX BLJM61220 01.00.ncl │ │ ├── Kingdom Hearts 2.5 HD ReMIX BLUS31460 01.00.ncl │ │ ├── Kingdom Hearts Birth By Sleep Final Mix BLUS31460 01.00.ncl │ │ ├── Kingdom Hearts Chain Of Memories.ncl │ │ ├── Kingdoms Of Amalur Reckoning BLES01251 BLUS30710 01.02.ncl │ │ ├── Kingdoms Of Amalur Reckoning NPUB30814 01.00.ncl │ │ ├── Knights Contract BLES01001 01.00 BLJS10088 01.01.ncl │ │ ├── L.A. Noire BLES00933 01.02.ncl │ │ ├── L.A. Noire BLES00933 BLUS30554 01.00.ncl │ │ ├── LEGO Batman 2 DC Super Heores BLES01613 01.00.ncl │ │ ├── LEGO Batman 2 DC Super Heores BLUS30837 01.01.ncl │ │ ├── LEGO Batman 3 Beyond Gotham BLUS31434 01.00.ncl │ │ ├── LEGO Batman 3 Beyond Gotham BLUS31434 01.01.ncl │ │ ├── LEGO Batman 3 Beyond Gotham BLUS31434 01.02.ncl │ │ ├── LEGO Batman The Videogame BLUS30175 01.01.ncl │ │ ├── LEGO Jurassic World BLES02132 01.01.ncl │ │ ├── LEGO Marvel Super Heroes BLES01831 01.02 BLUS31161 01.03.ncl │ │ ├── LEGO Marvel Super Heroes BLES01831 01.03.ncl │ │ ├── LEGO Marvel's Avengers BLUS31550 01.00.ncl │ │ ├── LEGO Star Wars 3 The Clone Wars BLES00934 BLUS30540 01.01.ncl │ │ ├── LEGO The Hobbit BLUS31392 01.00.ncl │ │ ├── Lair BCAS20014 01.00.ncl │ │ ├── Lara Croft And The Guardian Of Light NPUB30225 01.00.ncl │ │ ├── Last Rebellion BLES00861 01.02.ncl │ │ ├── Last Rebellion BLJS10070 01.02.ncl │ │ ├── Legasista NPUB30860 01.00.ncl │ │ ├── Lemmings NPUA80012 02.00.ncl │ │ ├── Lightning Returns Final Fantasy XIII BCAS20279 01.01.ncl │ │ ├── Lightning Returns Final Fantasy XIII BLES01811 01.00.ncl │ │ ├── Lightning Returns Final Fantasy XIII BLES01811 01.01.ncl │ │ ├── Lightning Returns Final Fantasy XIII BLJM60558 01.00.ncl │ │ ├── Lightning Returns Final Fantasy XIII BLJM60558 01.01.ncl │ │ ├── Lightning Returns Final Fantasy XIII NPJB00326 01.01.ncl │ │ ├── LittleBigPlanet 2 BCAS20113 01.00.ncl │ │ ├── LittleBigPlanet 2 BCES00850 01.00.ncl │ │ ├── LittleBigPlanet 3 01.02.ncl │ │ ├── LittleBigPlanet BCAS20058 02.00.ncl │ │ ├── LittleBigPlanet BCAS20078 01.30.ncl │ │ ├── Lollipop Chainsaw BLES01525 01.00.ncl │ │ ├── Lollipop Chainsaw PE BLJS10125 01.00.ncl │ │ ├── Lollipop Chainsaw PE BLUS30917 01.00.ncl │ │ ├── Lost Dimension 01.01.ncl │ │ ├── Lost Dimension BLUS31554 01.00.ncl │ │ ├── Lost Planet 2 MRTC00002 01.01.ncl │ │ ├── Lost Planet 3 BLUS31020 01.00.ncl │ │ ├── Lost Planet Extreme Condition 01.11.ncl │ │ ├── Lost Planet Extreme Condition BLES00198 01.00.ncl │ │ ├── Macross 30 Ginga O Tsunagi Utagoe BLJS10184 01.01.ncl │ │ ├── Mafia 2 BLES00521 01.01.ncl │ │ ├── Mafia 2 Director's Cut BLES01165 BLUS30712 01.03.ncl │ │ ├── Majin And the Forsaken Kingdom BLUS30472 01.00.ncl │ │ ├── Makai Senki Disgaea 3 Append Disc BLJS10063 01.00.ncl │ │ ├── Makai Senki Disgaea 3 BLJS10011 01.03.ncl │ │ ├── Makai Senki Disgaea 3 BLJS10011 05.10.ncl │ │ ├── Makai Senki Disgaea 3.ncl │ │ ├── Makai Senki Disgaea 4 BLJS10095 02.10.ncl │ │ ├── Makai Senki Disgaea 4 BLJS10096.ncl │ │ ├── Malicious NPEA00366 01.00.ncl │ │ ├── Malicious NPJB00070 01.00.ncl │ │ ├── Mamorukun Curse! NPUB30934 01.01.ncl │ │ ├── Marvel Ultimate Alliance 2 BLES00546 BLUS30294 01.00.ncl │ │ ├── Marvel Vs Capcom 2 NPUB30068 01.00.ncl │ │ ├── Marvel Vs. Capcom 3 Fate Of Two Worlds BLES01026 BLJM60256 BLUS30410 01.03.ncl │ │ ├── Marvel Vs. Capcom 3 Fate Of Two Worlds BLES01026 BLUS30410 01.02.ncl │ │ ├── Marvel Vs. Capcom 3 Fate Of Two Worlds BLES01026 BLUS30410 01.03.ncl │ │ ├── Marvel Vs. Capcom 3 Fate Of Two Worlds BLJM60256.ncl │ │ ├── Marvel Vs. Capcom 3 Fate Of Two Worlds SE BLUS30714 01.00 BLJM60256 01.02.ncl │ │ ├── Marvel Vs. Capcom 3 Fate Of Two Worlds.ncl │ │ ├── Mass Effect 3 BLES01462 01.00.ncl │ │ ├── Mass Effect 3 BLES01462 01.05.ncl │ │ ├── Mass Effect 3 BLES01462 01.07.ncl │ │ ├── Mass Effect 3 BLUS30853 01.00.ncl │ │ ├── Mass Effect 3 BLUS30853 01.05.ncl │ │ ├── Mass Effect 3 BLUS30853 01.07.ncl │ │ ├── Max Anarchy BLJM60305 01.00.ncl │ │ ├── Max Payne 3 BLES00942 BLES01656 BLJM60463 01.00.ncl │ │ ├── Max Payne 3 BLES00942 BLES01656 BLJM60463 01.05.ncl │ │ ├── Max Payne 3 BLUS30557 01.00.ncl │ │ ├── Max Payne 3 BLUS30557 01.09.ncl │ │ ├── Medal Of Honor BLAS50238 01.01.ncl │ │ ├── Medal Of Honor Frontline NPEB00308 01.00.ncl │ │ ├── Medal Of Honor Warfighter BLUS30990 01.00.ncl │ │ ├── Mega Man 10 NPUB30114 01.00.ncl │ │ ├── Mega Man 9 NPUB30036 01.00.ncl │ │ ├── Mercenaries 2 World In Flames BLUS30056 01.00.ncl │ │ ├── Metal Gear Rising Revengeance BLES01750 01.00.ncl │ │ ├── Metal Gear Rising Revengeance BLES01750 01.01.ncl │ │ ├── Metal Gear Rising Revengeance BLES01750 BLUS31045 01.04.ncl │ │ ├── Metal Gear Rising Revengeance BLJM60554 01.03.ncl │ │ ├── Metal Gear Solid 2 Sons Of Liberty BLES01419 BLUS30847 01.03.ncl │ │ ├── Metal Gear Solid 2 Sons Of Liberty BLJM91001 01.00.ncl │ │ ├── Metal Gear Solid 2 Sons Of Liberty NPEB00685 01.00.ncl │ │ ├── Metal Gear Solid 3 Snake Eater BLES01419 BLUS30847 01.03.ncl │ │ ├── Metal Gear Solid 3 Snake Eater BLJM91001 01.00.ncl │ │ ├── Metal Gear Solid 3 Snake Eater NPEB00684 01.00.ncl │ │ ├── Metal Gear Solid 4 Guns Of The Patriots BLES00246 BLUS30109 01.01.ncl │ │ ├── Metal Gear Solid 4 Guns Of The Patriots BLJM67001 01.03.ncl │ │ ├── Metal Gear Solid 5 Ground Zeroes BLES01971 BLUS31369 NPUB31318 01.01.ncl │ │ ├── Metal Gear Solid Peacewalker BLES01419 01.00 BLJM61001 01.04.ncl │ │ ├── Metal Gear Solid Peacewalker BLES01419 BLUS30847 01.03.ncl │ │ ├── Metal Gear Solid Peacewalker BLJM91001 01.00.ncl │ │ ├── Metal Gear Solid Peacewalker NPEB00686 01.00.ncl │ │ ├── Metal Gear Solid VR Missions BLES01419 BLUS30847 01.03.ncl │ │ ├── Metal Slug 2 NPEB00681 01.00.ncl │ │ ├── Metro Last Light BLUS31184 01.02.ncl │ │ ├── Middle-Earth Shadow Of Mordor BLUS31059 01.01.ncl │ │ ├── Midnight Club Los Angeles Complete Edition BLUS30442 01.00.ncl │ │ ├── Minecraft NPUB31419 01.04.ncl │ │ ├── Mini Ninjas BLUS30284 01.00.ncl │ │ ├── Mist Of Chaos BLJM60022 01.05.ncl │ │ ├── Modern Combat Domination NPEB00290 01.00.ncl │ │ ├── Moon Diver NPUB30345 01.00.ncl │ │ ├── Mortal Kombat 1 NPUB30468 01.00.ncl │ │ ├── Mortal Kombat 1 NPUB30468 01.02.ncl │ │ ├── Mortal Kombat 2 NPEB00002 NPUB30468 01.00.ncl │ │ ├── Mortal Kombat 2 NPUB30468 01.00.ncl │ │ ├── Mortal Kombat 2 NPUB30468 01.02.ncl │ │ ├── Mortal Kombat BLES01132 01.05.ncl │ │ ├── Mortal Kombat BLES01132 BLUS30522 NPUB30668 01.02.ncl │ │ ├── Mortal Kombat BLUS30522 01.00.ncl │ │ ├── Mortal Kombat BLUS30522 01.05.ncl │ │ ├── Mortal Kombat Komplete Edition BLES01508 01.05.ncl │ │ ├── Mortal Kombat NPEB00847 01.05.ncl │ │ ├── Mortal Kombat VS DC Universe BLES00441 01.01 BLUS30246 01.02.ncl │ │ ├── Mortal Kombat VS DC Universe BLUS30246 01.00.ncl │ │ ├── MotorStorm Apocalypse BCES00484 01.00.ncl │ │ ├── MotorStorm Apocalypse BCES00484 BCUS98242 01.02 BCES01104 01.04.ncl │ │ ├── MotorStorm Pacific Rift BCUS98155 01.02.ncl │ │ ├── Mugen Souls BLES01723 01.00.ncl │ │ ├── Mugen Souls Z BLES02022 01.01.ncl │ │ ├── Mugen Souls Z BLES02022 BLJM61028 01.00.ncl │ │ ├── Murdered Soul Suspect BLES01836 01.00.ncl │ │ ├── Musou Orochi 2 BLJM60417 01.00.ncl │ │ ├── Musou Orochi 2 BLJM60417 01.01.ncl │ │ ├── Musou Orochi 2 BLJM60417 01.04.ncl │ │ ├── Musou Orochi 2 BLJM60417 01.05.ncl │ │ ├── Musou Orochi 2 Ultimate BLJM61084 01.00.ncl │ │ ├── Musou Orochi 2 Ultimate BLJM61084 01.01.ncl │ │ ├── Musou Orochi 2 Ultimate BLJM61084 01.02.ncl │ │ ├── Musou Orochi 2 Ultimate BLJM61084 01.06.ncl │ │ ├── Musou Orochi Z BLAS50130 01.01.ncl │ │ ├── Musou Orochi Z BLJM60139 01.01.ncl │ │ ├── NBA 2K10 BLES00655 01.00.ncl │ │ ├── NBA 2K11 BLUS30574 01.01.ncl │ │ ├── NBA 2K15 BLUS31456 01.00.ncl │ │ ├── NEOGEO Station Metal Slug NPUB30258 01.00.ncl │ │ ├── Narco Terror NPEB01373 01.00.ncl │ │ ├── Naruto Narutimate Ninja Storm BLJS10043 01.01.ncl │ │ ├── Naruto Shippuden Narutimate Ninja Storm 2 BLJS10084 01.00.ncl │ │ ├── Naruto Shippuden Narutimate Ninja Storm 3 BLJS10200 01.00.ncl │ │ ├── Naruto Shippuden Narutimate Ninja Storm 3 BLJS10200 01.01.ncl │ │ ├── Naruto Shippuden Narutimate Ninja Storm Generations BLJS10156 01.00.ncl │ │ ├── Naruto Shippuden Ultimate Ninja Storm 2 BLES00952 BLUS30495 01.00.ncl │ │ ├── Naruto Shippuden Ultimate Ninja Storm 3 BLUS31066 01.00.ncl │ │ ├── Naruto Shippuden Ultimate Ninja Storm 3 BLUS31066 01.01.ncl │ │ ├── Naruto Shippuden Ultimate Ninja Storm 3 Full Burst BLUS31350 01.00.ncl │ │ ├── Naruto Shippuden Ultimate Ninja Storm Generations BLES01481 01.00.ncl │ │ ├── Naruto Ultimate Ninja Storm BLES00371 01.00.ncl │ │ ├── Naughty Bear Gold Edition BLUS30700 01.00.ncl │ │ ├── Need For Speed Hot Pursuit BLAS50266 BLES00949 01.00.ncl │ │ ├── Need For Speed Most Wanted BLES01659 BLUS31010 01.00.ncl │ │ ├── Need For Speed ProStreet BLJM60059 01.00.ncl │ │ ├── Need For Speed Shift 2 Unleashed BLES01066 01.01.ncl │ │ ├── NeverDead BLES01303 BLUS30654 01.00.ncl │ │ ├── Ni No Kuni Wrath Of The White Witch BLES01555 01.01.ncl │ │ ├── Ni No Kuni Wrath Of The White Witch BLUS30947 01.00.ncl │ │ ├── Ni No Kuni Wrath Of The White Witch NPUB30932 01.00.ncl │ │ ├── Nier BLUS30481 01.01.ncl │ │ ├── Nier Replicant BLJM60223 01.00.ncl │ │ ├── Ninja Gaiden 3 BLES01524 01.00.ncl │ │ ├── Ninja Gaiden 3 BLES01524 01.01.ncl │ │ ├── Ninja Gaiden 3 BLJM60447 01.03.ncl │ │ ├── Ninja Gaiden 3 Razor's Edge BLES01524 01.01.ncl │ │ ├── Ninja Gaiden 3 Razor's Edge BLJM61010 01.00.ncl │ │ ├── Ninja Gaiden 3 Razor's Edge BLUS31175 01.00.ncl │ │ ├── Ninja Gaiden 3 Razor's Edge NPUB31184 01.00.ncl │ │ ├── Ninja Gaiden Sigma 2 BLAS50160 01.00.ncl │ │ ├── Ninja Gaiden Sigma 2 BLES00736 01.03.ncl │ │ ├── Ninja Gaiden Sigma 2 BLES00736 BLJM60168 BLUS30380 01.00.ncl │ │ ├── Ninja Gaiden Sigma 2 BLES00736 BLJM60168 BLUS30380 01.01.ncl │ │ ├── Ninja Gaiden Sigma 2 BLJM60168 01.01 OR 01.03.ncl │ │ ├── Ninja Gaiden Sigma 2 BLUS30380 01.01.ncl │ │ ├── Ninja Gaiden Sigma 2 BLUS30380 01.02.ncl │ │ ├── Ninja Gaiden Sigma 2 NPUB30852 01.00.ncl │ │ ├── Ninja Gaiden Sigma 2.ncl │ │ ├── Ninja Gaiden Sigma BLES00072 01.00 BLUS30036 01.01 BLJS10005 01.02.ncl │ │ ├── Ninja Gaiden Sigma BLJS10005 01.00.ncl │ │ ├── Ninja Gaiden Sigma BLJS10005 01.01.ncl │ │ ├── Ninja Gaiden Sigma BLUS30036 01.00.ncl │ │ ├── Ninja Gaiden Sigma NPUB30851 01.00.ncl │ │ ├── Ninja Gaiden Sigma.ncl │ │ ├── Ninokuni Shiroki Seihai No Joou BLJS10150 01.01.ncl │ │ ├── Ninokuni Shiroki Seihai No Joou BLJS10150 02.00.ncl │ │ ├── Ninokuni Shiroki Seihai No Joou BLJS10150 03.00.ncl │ │ ├── No More Heroes Heroes' Paradise BLES01101 BLJS10072 01.01.ncl │ │ ├── Okami Zekkeihan BLJM60467 01.00.ncl │ │ ├── One Piece Kaizoku Musou 2 BLJM60572 01.00.ncl │ │ ├── One Piece Kaizoku Musou 3 BLJM61261 01.00.ncl │ │ ├── One Piece Kaizoku Musou BLJM60416 01.00.ncl │ │ ├── One Piece Pirate Warriors 2 BLES01913 01.00.ncl │ │ ├── One Piece Pirate Warriors 2.ncl │ │ ├── One Piece Pirate Warriors 3 BLES02140 01.00.ncl │ │ ├── One Piece Pirate Warriors 3 NPUB31676 01.00.ncl │ │ ├── One Piece Pirate Warriors BLES01672 01.01.ncl │ │ ├── One Piece Unlimited World Red BLES02020 01.00.ncl │ │ ├── One Piece Unlimited World Red BLJS10272 01.00.ncl │ │ ├── Onechanbara Z Kagura With NoNoNo! BLJS10221 01.00.ncl │ │ ├── Ore No Imouto Ga Konnani Kawaii Wake Ga Nai. Happy End BLJS10238 01.01.ncl │ │ ├── Overlord II BLUS30317 01.00.ncl │ │ ├── Overlord Raising Hell BLES00257 01.00.ncl │ │ ├── Pac-Man Championship Edition DX NPEB00315 01.00.ncl │ │ ├── Pachipara 15 Super Umi Monogatari In Okinawa 2 BLJS10079 01.00.ncl │ │ ├── Painkiller Hell And Damnation BLES01791 01.00.ncl │ │ ├── Parasite Eve NPUJ00662.ncl │ │ ├── Payday The Heist NPUA30073 01.00.ncl │ │ ├── Persona 4 Arena BLUS30985 01.00.ncl │ │ ├── Plants Vs Zombies NPEA00271 NPUA30059 01.01.ncl │ │ ├── Plants Vs Zombies NPUA30059 01.00.ncl │ │ ├── Power Smash 3 BLJM60017 01.02.ncl │ │ ├── Prince Of Persia 1 The Sands Of Time BLES01092 01.01.ncl │ │ ├── Prince Of Persia 2 Warriors Within BLES01092 01.01.ncl │ │ ├── Prince Of Persia 3 The Two Thrones BLES01092 01.01.ncl │ │ ├── Prince Of Persia The Forgotten Sands BLES00840 01.00.ncl │ │ ├── Prince Of Persia The Forgotten Sands BLUS30401 01.00.ncl │ │ ├── Prince Of Persia The Forgotten Sands BLUS30401 01.01.ncl │ │ ├── Pro Evolution Soccer 2014 BLUS31322 01.00.ncl │ │ ├── Pro Evolution Soccer 2014 BLUS31322 01.01.ncl │ │ ├── Pro Yakyuu Spirits 2011 BLJM60281 01.01.ncl │ │ ├── Pro Yakyuu Spirits 2013 BLAS50575 01.00.ncl │ │ ├── Pro Yakyuu Spirits 2015 01.01.ncl │ │ ├── Prototype 2 BLES01532 BLUS30756 01.00.ncl │ │ ├── Prototype BLUS30145 01.00 BLES00269 01.01.ncl │ │ ├── Psycho Break BLES01916 BLJM61235 NPEB01797 01.03.ncl │ │ ├── Pupeteer BCES00935 01.00.ncl │ │ ├── Pupeteer NPEA00439 01.00.ncl │ │ ├── Quantum Theory BLES00868 01.02.ncl │ │ ├── Rage BLES01426 01.00 BLUS30485 01.01.ncl │ │ ├── Ragnarok Odyssey ACE BLUS31386 01.00.ncl │ │ ├── Ragnarok Odyssey ACE BLUS31386 01.01.ncl │ │ ├── Raiden IV Overkill NPUB31371 01.00.ncl │ │ ├── Rainbow Moon NPUB30434.ncl │ │ ├── Rambo BLES01963 01.00.ncl │ │ ├── Ratchet And Clank 1 BCES01503 01.00.ncl │ │ ├── Ratchet And Clank 1 BCJS30084 BCUS98282 01.00.ncl │ │ ├── Ratchet And Clank 2 Going Commando BCES01503 01.00.ncl │ │ ├── Ratchet And Clank 2 Going Commando BCJS30084 BCUS98282 01.00.ncl │ │ ├── Ratchet And Clank 3 Totsugeki! Galactic Rangers BCJS30084 BCUS98282 01.00.ncl │ │ ├── Ratchet And Clank 3 Up Your Arsenal BCES01503 01.00.ncl │ │ ├── Ratchet And Clank 3 Up Your Arsenal BCJS30084 BCUS98282 01.00.ncl │ │ ├── Ratchet And Clank All 4 One BCAS20200 BCES01141 BCJS30081 BCUS98175 NPEA00356 01.03.ncl │ │ ├── Ratchet And Clank Full Frontal Assault BCUS98380 01.04 NPJA00089 01.00.ncl │ │ ├── Ratchet And Clank Full Frontal Assault NPUA80642 01.00.ncl │ │ ├── Ratchet And Clank Future 2 BCJS30038 01.00.ncl │ │ ├── Ratchet And Clank Future 2 BCJS30038 01.20.ncl │ │ ├── Ratchet And Clank Future A Crack In Time BCAS20098 01.00.ncl │ │ ├── Ratchet And Clank Future A Crack In Time BCES00726 01.00.ncl │ │ ├── Ratchet And Clank Future A Crack In Time BCES00726 01.20.ncl │ │ ├── Ratchet And Clank Future A Crack In Time BCUS98124 01.00.ncl │ │ ├── Ratchet And Clank Future A Crack In Time BCUS98124 01.02.ncl │ │ ├── Ratchet And Clank Future Quest For Booty BCAS20052 BCES00301 01.00.ncl │ │ ├── Ratchet And Clank Future Tools Of Destruction BCAS20023 01.00.ncl │ │ ├── Ratchet And Clank Future Tools Of Destruction BCES00052 01.00.ncl │ │ ├── Ratchet And Clank Future Tools Of Destruction BCJS30014 01.00.ncl │ │ ├── Ratchet And Clank Future Tools Of Destruction BCUS98127 01.00.ncl │ │ ├── Ratchet And Clank Ginga Sentai QForce NPJA00089 01.04.ncl │ │ ├── Ratchet And Clank Into The Nexus BCUS99245 01.00.ncl │ │ ├── Ratchet And Clank Nexus BCES01908 01.00.ncl │ │ ├── Ratchet And Clank Nexus BCES01908 01.01.ncl │ │ ├── Ratchet And Clank QForce BCES01594 01.04.ncl │ │ ├── Ratchet Deadlocked NPUA80646 01.00.ncl │ │ ├── RayStorm NPJB00034 01.00.ncl │ │ ├── Rayman Origins BLES01386 01.00.ncl │ │ ├── Rayman Origins BLES01387 BLUS30836 NPEB00818 01.01.ncl │ │ ├── Record Of The Agarest War 2 BLUS30881 01.04.ncl │ │ ├── Record Of The Agarest War Zero BLUS30686 01.00.ncl │ │ ├── Red Dead Redemption BLES00680 01.04.ncl │ │ ├── Red Dead Redemption BLUS30418 01.00.ncl │ │ ├── Red Dead Redemption BLUS30418 01.07.ncl │ │ ├── Red Dead Redemption GOTY Edition BLES01294 01.00.ncl │ │ ├── Red Dead Redemption Undead Nightmare BLES01179 01.00.ncl │ │ ├── Red Dead Redemption Undead Nightmare BLUS30711 01.00.ncl │ │ ├── Red Faction Armageddon BLUS30585 01.00.ncl │ │ ├── Red Faction Guerrilla BLES000498 01.04.ncl │ │ ├── Red Faction Guerrilla BLES000592 01.04.ncl │ │ ├── Red Seeds Profile BLES10073 01.00.ncl │ │ ├── Remember Me BLES01701 01.00.ncl │ │ ├── Remember Me BLES01701 NPUB31080 01.00.ncl │ │ ├── Resident Evil 4 NPEB00342 01.00.ncl │ │ ├── Resident Evil 5 Gold Edition BLES00485 BLUS30491 02.00.ncl │ │ ├── Resident Evil 5 Gold Edition BLES00816 01.00.ncl │ │ ├── Resident Evil 5 Gold Edition BLES00816 01.01.ncl │ │ ├── Resident Evil 5 Gold Edition BLUS30491 01.00.ncl │ │ ├── Resident Evil 5 Gold Edition BLUS30491 01.01.ncl │ │ ├── Resident Evil 5 Gold.ncl │ │ ├── Resident Evil 5.ncl │ │ ├── Resident Evil 6 BLES01465 01.02.ncl │ │ ├── Resident Evil 6 BLES01465 01.04.ncl │ │ ├── Resident Evil 6 BLES01465 BLJM60405 BLUS30855 01.03.ncl │ │ ├── Resident Evil 6 BLES01465 BLJM60405 NPUB30984 01.02.ncl │ │ ├── Resident Evil 6 BLUS30855 01.00.ncl │ │ ├── Resident Evil 6 NPUB30984 01.03.ncl │ │ ├── Resident Evil Code Veronica X NPEB00533 01.02.ncl │ │ ├── Resident Evil Code Veronica X NPUB30467 01.00.ncl │ │ ├── Resident Evil Code Veronica X NPUB30467 01.01.ncl │ │ ├── Resident Evil Operation Raccoon City BLES01288 01.00.ncl │ │ ├── Resident Evil Operation Raccoon City BLES01288 01.03.ncl │ │ ├── Resident Evil Operation Raccoon City BLUS30750 01.00.ncl │ │ ├── Resident Evil Remaster NPUB31552 01.00.ncl │ │ ├── Resident Evil Revelations 01.00.ncl │ │ ├── Resident Evil Revelations 2 NPUB31518 01.00.ncl │ │ ├── Resident Evil Revelations BLES01773 01.00.ncl │ │ ├── Resident Evil Revelations BLES01773 01.01.ncl │ │ ├── Resident Evil Revelations BLUS31051 01.00.ncl │ │ ├── Resident Evil Revelations BLUS31051 01.01.ncl │ │ ├── Resident Evil Revelations NPUB30991 01.00.ncl │ │ ├── Resident Evil Revelations NPUB30991 01.01.ncl │ │ ├── Resident Evil The Darkside Chronicles NPUB30648 01.00.ncl │ │ ├── Resident Evil The Umbrella Chronicles NPUB30650 01.00.ncl │ │ ├── Resident Evil Zero NPEB02226 01.00.ncl │ │ ├── Resistance 2 BCAS20055 BCUS98120 01.00.ncl │ │ ├── Resistance 3 BCES01118 BCUS98176 01.00.ncl │ │ ├── Resistance Fall Of Man BCUS98107 01.00.ncl │ │ ├── Resogun NPEA00433 01.01.ncl │ │ ├── Resonance Of Fate BLES00789 BLUS30484 01.00.ncl │ │ ├── Retro City Rampage NPEB01166 01.00.ncl │ │ ├── Ridge Racer 7 3D License Version NPUB30457 01.00.ncl │ │ ├── Ridge Racer 7 BCAS20001 BLJS10001 01.00.ncl │ │ ├── Ridge Racer 7 BCES00009 01.00.ncl │ │ ├── Ridge Racer 7 BLUS30001 01.02.ncl │ │ ├── Ridge Racer 7 BLUS30001.ncl │ │ ├── Ridge Racer 7 NPUB30457.ncl │ │ ├── Rocket Knight NPEB00186 NPUB30123 01.00.ncl │ │ ├── Rorona No Atelier Arland No Renkinjutsushi BLJM60154 01.01.ncl │ │ ├── Rorona No Atelier Arland No Renkinjutsushi BLJM60154 01.03.ncl │ │ ├── Rorona No Atelier Arland No Renkinjutsushi BV BLJM55018 01.02.ncl │ │ ├── Rune Factory Ocean BLES01550 01.00.ncl │ │ ├── Rune Factory Ocean JPN.ncl │ │ ├── Rune Factory Tides Of Destiny BLUS30759 01.00.ncl │ │ ├── Rush'N Attack Ex-Patriot NPUB30112 01.00 NPEB00299 01.01.ncl │ │ ├── Ryu Ga Gotoku 3 BLJM55012 02.00.ncl │ │ ├── Ryu Ga Gotoku 3 BLJM60132 01.02.ncl │ │ ├── Ryu Ga Gotoku 3 BLJM60132 01.08.ncl │ │ ├── Ryu Ga Gotoku 4 Densetsu O Tsugumono BLJM60208 01.01.ncl │ │ ├── Ryu Ga Gotoku 5 Yume Kanaeshi Mono BLJM60489 01.00.ncl │ │ ├── Ryu Ga Gotoku Kenzan! BLJM60064 01.01.ncl │ │ ├── Ryu Ga Gotoku Of The End BLJM60316 01.02.ncl │ │ ├── Ryu Ga Gotoku Zero BLJM61249 01.00.ncl │ │ ├── SOCOM 4 U.S. Navy SEALs BCAS20121 BCES00938 BCJS30052 BCUS98135 01.00.ncl │ │ ├── Saint Seiya Brave Soldiers BLJS10236 01.00.ncl │ │ ├── Saint Seiya Brave Soldiers BLJS10236 01.01.ncl │ │ ├── Saint Seiya Sanctuary Battle BLES01421 01.00.ncl │ │ ├── Saint Seiya Senki BLJS10152 01.00.ncl │ │ ├── Saints Row 2 BLES00373 BLUS30201 01.00.ncl │ │ ├── Saints Row 4 BLUS31205 01.00.ncl │ │ ├── Saints Row 4 BLUS31205 01.01.ncl │ │ ├── Saints Row 4 BLUS31205 01.06.ncl │ │ ├── Saints Row The Third BLES01342 01.00.ncl │ │ ├── Saints Row The Third.ncl │ │ ├── Samurai Dou 3 BLJS10039 01.01.ncl │ │ ├── Samurai Dou 3 PLUS BLJS50009 01.01.ncl │ │ ├── Samurai Warriors 4 NPUB31564 01.00.ncl │ │ ├── Samurai Warriors 4 NPUB31564 01.01.ncl │ │ ├── San Goku Shi 12 With Power-Up Kit BLJM61078 01.00.ncl │ │ ├── Scott Pilgrim vs The World NPUB30162 01.00.ncl │ │ ├── Sengoku Basara 3 BLJM60218 01.00.ncl │ │ ├── Sengoku Basara 3 Samurai Heroes MRTC00005 01.00.ncl │ │ ├── Sengoku Basara 3 Utage BLJM60389 01.00.ncl │ │ ├── Sengoku Basara 4 BLJM61063 01.00.ncl │ │ ├── Sengoku Basara 4 Sumeragi BLJM61248 01.01.ncl │ │ ├── Sengoku Basara 4 Sumeragi NPJB00688 01.01.ncl │ │ ├── Sengoku Musou 3 Z BLJM60313 01.02 01.03.ncl │ │ ├── Sengoku Musou 3 Z BLJM60313.ncl │ │ ├── Sengoku Musou 4 BLJM61144 NPJB00534 01.00.ncl │ │ ├── Sengoku Musou 4 Empires BLJM61307 01.00.ncl │ │ ├── Sengoku Musou 4 Empires BLJM61307 01.01.ncl │ │ ├── Sengoku Musou 4-2 BLJM61257 01.00.ncl │ │ ├── Senjou No Valkyria BLJM55008 01.00.ncl │ │ ├── Senjou No Valkyria BLJM60063 01.01.ncl │ │ ├── Senjou No Valkyria BLJM60063 01.20.ncl │ │ ├── Shadow Of The Colossus BCES01097 01.00.ncl │ │ ├── Shadow Of The Colossus BCES01097 01.01.ncl │ │ ├── Shadow Of The Colossus NPUA80677 01.00.ncl │ │ ├── Shadows Of The Damned BLES01276 01.00.ncl │ │ ├── Shadows Of The Damned BLUS30653 01.00.ncl │ │ ├── Shallie No Atelier Tasogare No Umi No Renkinjutsushi BLJM61192 01.01.ncl │ │ ├── Shallie No Atelier Tasogare No Umi No Renkinjutsushi NPJB00619 01.01.ncl │ │ ├── Shin Gundam Musou BLJM61140 01.00.ncl │ │ ├── Shin Hayarigami 01.00.ncl │ │ ├── Shin Hokuto Musou BLJM60553 01.00.ncl │ │ ├── Shin Hokuto Musou BLJM60553 01.01.ncl │ │ ├── Shin Rorona No Atelier Majimari No Monogatari - Arland No Renkinjutsushi BLJM61127 01.00.ncl │ │ ├── Shin Rorona No Atelier Majimari No Monogatari - Arland No Renkinjutsushi BLJM61127 01.01.ncl │ │ ├── Shin Sangoku Muou MultiRaid Special BLAS50163 01.01.ncl │ │ ├── Shin Sangoku Muou MultiRaid Special BLJM60172 01.01.ncl │ │ ├── Shin Sangoku Muou MultiRaid Special BLJM60172 01.04.ncl │ │ ├── Shin Sangoku Muou MultiRaid Special BLJM60172.ncl │ │ ├── Shin Sangoku Musou 5 BLAS50068 01.00.ncl │ │ ├── Shin Sangoku Musou 5 BLJM60041 01.00.ncl │ │ ├── Shin Sangoku Musou 5 Empires BLAS50115 01.00.ncl │ │ ├── Shin Sangoku Musou 5 Empires BLJM60126 01.01.ncl │ │ ├── Shin Sangoku Musou 6 BLAS50308 01.00.ncl │ │ ├── Shin Sangoku Musou 6 BLJM60291.ncl │ │ ├── Shin Sangoku Musou 6 EMPIRES.ncl │ │ ├── Shin Sangoku Musou 6 Moushouden BLAS50413 01.00.ncl │ │ ├── Shin Sangoku Musou 6 Moushouden BLAS50413 01.01.ncl │ │ ├── Shin Sangoku Musou 6 Moushouden BLJM61000 01.00.ncl │ │ ├── Shin Sangoku Musou 7 BLAS50582 01.01.ncl │ │ ├── Shin Sangoku Musou 7 BLJM60586 01.01.ncl │ │ ├── Shin Sangoku Musou 7 BLJM60586 01.05.ncl │ │ ├── Shin Sangoku Musou 7 Empires BLJM61225 01.01.ncl │ │ ├── Shin Sangoku Musou 7 Empires Demo NPJB90723 01.00.ncl │ │ ├── Shin Sangoku Musou 7 Moushouden BLAS50672 01.00.ncl │ │ ├── Shin Sangoku Musou 7 Moushouden BLJM61128 01.00.ncl │ │ ├── Shin Sangoku Musou 7 Moushouden BLJM61128 01.01.ncl │ │ ├── Shining Resonance BLJM61156 01.00.ncl │ │ ├── Shirokishi Monogatari Hikari To Yami No Kakusei BCJS30042 01.00.ncl │ │ ├── Shoot Many Robots NPEB00767 NPUB30600 01.00.ncl │ │ ├── Shovel Knight NPUB31682 01.00.ncl │ │ ├── Silent Hill 2 BLES01504 01.00.ncl │ │ ├── Silent Hill 2 BLES01504 01.01.ncl │ │ ├── Silent Hill 2 BLJM60425 01.01.ncl │ │ ├── Silent Hill 2 BLUS30810 01.00.ncl │ │ ├── Silent Hill 2 BLUS30810 01.02.ncl │ │ ├── Silent Hill 3 BLES01504 01.00.ncl │ │ ├── Silent Hill 3 BLJM60425 01.01.ncl │ │ ├── Silent Hill 3 BLUS30810 01.00.ncl │ │ ├── Silent Hill 3 BLUS30810 01.02.ncl │ │ ├── Silent Hill Downpour BLJM60391 01.00.ncl │ │ ├── Silent Hill Downpour BLJM60391 01.01.ncl │ │ ├── Silent Hill Downpour BLUS30565 01.00.ncl │ │ ├── Silent Hill Downpour BLUS30565 01.01.ncl │ │ ├── Silent Hill Homecoming BLES00460 01.00.ncl │ │ ├── Silent Hill Homecoming BLUS30169 01.00.ncl │ │ ├── Silent Hill NPUJ00707.ncl │ │ ├── Sine Mora NPEB00454 01.00.ncl │ │ ├── Sine Mora NPUB30483 01.00.ncl │ │ ├── Singularity BLES00560 BLUS30296 01.00.ncl │ │ ├── Siren Blood Curse BCES00294 01.00.ncl │ │ ├── Siren Blood Curse NPUA80136 01.00.ncl │ │ ├── Siren New Translation BCAS20047 01.01.ncl │ │ ├── Siren New Translation BCJS30020 01.00.ncl │ │ ├── Sleeping Dogs BLES01661 01.00.ncl │ │ ├── Sleeping Dogs BLES01661 01.01.ncl │ │ ├── Sleeping Dogs BLES01661 01.02.ncl │ │ ├── Sly 3 Honor Among Thieves NPUA80665.ncl │ │ ├── Smash Cars NPUB30097 01.00.ncl │ │ ├── Sniper Elite 3 BLES01981 01.01.ncl │ │ ├── Sniper Elite V2 BLES01290 BLJM60503 01.00.ncl │ │ ├── Sniper Ghost Warrior 2 BLES01527 01.01.ncl │ │ ├── Sniper Ghost Warrior 2 BLJM60539 BLUS30919 01.00.ncl │ │ ├── Sniper Ghost Warrior 2 BLUS30919 01.01.ncl │ │ ├── Soccer Tsuku Pro Soccer Club O Tsukurou! BLJM61064 01.00.ncl │ │ ├── Soldier Of Fortune Payback BLES00190 01.01.ncl │ │ ├── Soldner-X 2 Final Prototype NPEB00177 NPUB30105 02.00.ncl │ │ ├── Soldner-X Himmelssturmer NPEB00074 NPUB30039 01.10.ncl │ │ ├── Sonic Adventure 2 Battle NPUB30579 01.00.ncl │ │ ├── Sonic Adventure 2 NPJB00188 01.00.ncl │ │ ├── Sonic Adventure NPEB00304 01.00.ncl │ │ ├── Sonic Generations BLES01236 01.00.ncl │ │ ├── Sonic Generations BLES01236 01.01.ncl │ │ ├── Sonic Generations NPUB30715 01.01.ncl │ │ ├── Sonic The Hedgehog 4 Episode 1 NPUB30127 01.00.ncl │ │ ├── Sonic The Hedgehog 4 Episode 2 NPUB30581 01.00.ncl │ │ ├── Sonic The Hedgehog BLJM60006 01.01.ncl │ │ ├── Sonic Unleashed BLUS30244 01.00.ncl │ │ ├── Sonic Unleashed BLUS30244 01.02.ncl │ │ ├── Soul Calibur IV BLES00296 BLUS30160 01.01.ncl │ │ ├── Soul Calibur IV BLJS10026 01.02.ncl │ │ ├── Soul Calibur IV BLJS10026 01.03.ncl │ │ ├── Soul Calibur IV BLJS10026.ncl │ │ ├── Soul Calibur IV.ncl │ │ ├── Soul Calibur V BLES01250 BLJS10115 BLUS30736 01.03.ncl │ │ ├── Soul Calibur V BLES01250 BLUS30736 01.00.ncl │ │ ├── South Park The Stick Of Truth BLUS31191 01.01.ncl │ │ ├── South Park The Stick Of Truth NPUB31306.ncl │ │ ├── Space Hulk NPUB31662 01.00.ncl │ │ ├── Space Invaders Infinity Gene NPUB30305 01.00.ncl │ │ ├── Spec Ops The Line BLUS30531 01.00.ncl │ │ ├── Spider-Man Shattered Dimensions BLUS30499 01.01.ncl │ │ ├── Spider-Man Shattered Dimensions.ncl │ │ ├── Splatterhouse BLES01120 01.00.ncl │ │ ├── Star Ocean 4 The Last Hope International BLUS30462 MRTC00001 01.00.ncl │ │ ├── Star Wars The Force Unleashed 2 01.00.ncl │ │ ├── Star Wars The Force Unleashed 2 BLES00893 BLUS30534 01.01.ncl │ │ ├── Star Wars The Force Unleashed BLES00262 BLUS30144 02.00.ncl │ │ ├── Stealth Inc 2 A Game Of Clones NPUB31632 01.00.ncl │ │ ├── Stealth Inc A Clone In The Dark NPEB01358 NPUB31260 01.01.ncl │ │ ├── Street Fighter III Third Strike NPUB30301 01.00.ncl │ │ ├── Street Fighter IV BLUS30265 01.02.ncl │ │ ├── Street Fighter X Tekken BLES01252 BLJM60350 BLUS30722 01.00.ncl │ │ ├── Street Fighter X Tekken NPEB01792 01.00.ncl │ │ ├── Strider NPUB31139 01.00.ncl │ │ ├── Super Robot Taisen OG Infinite Battle BLJS10248 01.00.ncl │ │ ├── Super Robot Taisen OG Infinite Battle BLJS10248 01.01.ncl │ │ ├── Super Robot Taisen OG Saga Masou Kishin III - Pride Of Justice BLJS10223 01.00.ncl │ │ ├── Super Street Fighter II Turbo Remix NPUB30054 01.00.ncl │ │ ├── Super Street Fighter IV Arcade Edition BLES00770 BLUS30453 BLUS30793 01.01.ncl │ │ ├── Sword Art Online The Lost Song BLAS50790 01.01.ncl │ │ ├── Tales Of Graces F BLES01617 01.00.ncl │ │ ├── Tales Of Graces F BLJS10093 01.00.ncl │ │ ├── Tales Of Graces F BLUS30903 01.00.ncl │ │ ├── Tales Of Symphonia Chronicles BLUS31172 01.00.ncl │ │ ├── Tales Of Symphonia Chronicles Dawn Of The New World BLUS31172 01.00.ncl │ │ ├── Tales Of Vesperia BLJS10053 01.01.ncl │ │ ├── Tales Of Xillia 2 BLES01962 01.00.ncl │ │ ├── Tales Of Xillia 2 BLJS10188 01.00.ncl │ │ ├── Tales Of Xillia 2 BLJS10188 01.01.ncl │ │ ├── Tales Of Xillia 2 BLUS31397 01.00.ncl │ │ ├── Tales Of Xillia BLES01815 01.00.ncl │ │ ├── Tales Of Xillia BLJS10120 01.00.ncl │ │ ├── Tales Of Xillia BLUS21006 01.00.ncl │ │ ├── Tales Of Zesteria BLES02152 NPEB02235.ncl │ │ ├── Tales Of Zestieria BLJS93020.ncl │ │ ├── Tales Of Zestiria BLJS93020 01.00.ncl │ │ ├── Tales Of Zestiria BLJS93020 01.01.ncl │ │ ├── Tales Of Zestiria BLJS93020 01.10.ncl │ │ ├── Tears To Tiara II Haou No Matsuei BLJM61076 01.00.ncl │ │ ├── Tears To Tiara II Heir Of The Overlord BLUS31476 01.00.ncl │ │ ├── Tears To Tiara Kakan No Daichi (AP 2800) BLJM60094 01.00.ncl │ │ ├── Tears To Tiara Kakan No Daichi BLJM60081 01.01.ncl │ │ ├── Tears To Tiara Kakan No Daichi BLJM60081 01.02.ncl │ │ ├── Tears To Tiara Kakan No Daichi BLJM60166 01.01.ncl │ │ ├── Teenage Mutant Ninja Turtles Danger Of The Ooze BLUS31435 01.00.ncl │ │ ├── Teenage Mutant Ninja Turtles Turtles In Time Re-Shelled NPEB00149 01.00.ncl │ │ ├── Teenage Mutant Ninja Turtles Turtles In Time Re-Shelled NPUB30107 01.00.ncl │ │ ├── Tekken 5 Dark Resurrection NPUB30009.ncl │ │ ├── Tekken 6 BLES00635 01.03.ncl │ │ ├── Tekken 6 BLES00635 BLUS30359 01.00.ncl │ │ ├── Tekken 6 BLJS10067 01.00.ncl │ │ ├── Tekken 6 BLJS10067 01.03.ncl │ │ ├── Tekken 6 BLJS50017 02.00.ncl │ │ ├── Tekken 6.ncl │ │ ├── Tekken Tag Tournament 2 BLJS10187 01.00 BLES01702 01.01.ncl │ │ ├── Tekken Tag Tournament 2 NPEB01140 01.01.ncl │ │ ├── Tekken Tag Tournament NPUB30590 01.00.ncl │ │ ├── Terraria BLES01938 01.02.ncl │ │ ├── Terraria BLJS10222 01.00.ncl │ │ ├── The Amazing Spider-Man 2 BLUS41044 01.00.ncl │ │ ├── The Amazing Spider-Man BLUS30828 01.02.ncl │ │ ├── The Awakened Fate Ultimatum BLUS31500 01.00.ncl │ │ ├── The Bereau XCOM Declassified BLUS30780 01.02.ncl │ │ ├── The Chronicles Of Riddick Assault On Dark Athena BLUS30156 01.00.ncl │ │ ├── The Club BLES00192 BLUS30108 01.01.ncl │ │ ├── The Cube BLES01471 01.00.ncl │ │ ├── The Darkness 2 BLES01388 01.00 PW.ncl │ │ ├── The Darkness 2 BLUS30743 01.00.ncl │ │ ├── The Elder Scrolls 4 Oblivion GOTY Edition BLUS30087 01.00.ncl │ │ ├── The Elder Scrolls 5 Skyrim Legendary Edition BLUS31202 01.00.ncl │ │ ├── The Evil Within BLES01916 01.05.ncl │ │ ├── The Evil Within BLES01916 BLJM61235 NPEB01797 01.03.ncl │ │ ├── The Evil Within NPEB01797 01.00.ncl │ │ ├── The Evil Within NPEB01797 BLES01916 01.01.ncl │ │ ├── The Godfather II BLES00477 01.00.ncl │ │ ├── The Golden Compass BLES00180 01.00.ncl │ │ ├── The Guided Fate Paradox BLUS31312 01.00.ncl │ │ ├── The House Of The Dead 4 NPUB30603 01.00.ncl │ │ ├── The House Of The Dead Overkill Director's Cut BLES01326 01.00 BLUS30774 01.01.ncl │ │ ├── The Incredible Hulk BLUS30152 01.00.ncl │ │ ├── The King Of Fighters XII BLJS10045 01.01.ncl │ │ ├── The King Of Fighters XII BLJS10045 01.02.ncl │ │ ├── The King Of Fighters XIII BLAS50366 BLES01409 BLJS10147 BLUS30845 01.00.ncl │ │ ├── The King Of Fighters XIII BLAS50366 BLES01409 BLJS10147 BLUS30845 01.02.ncl │ │ ├── The King Of Fighters XIII NPUB30837 01.00.ncl │ │ ├── The LEGO Movie Videogame BLES01964 01.01.ncl │ │ ├── The Last Of Us BCES01584 BCUS98174 01.00.ncl │ │ ├── The Legend Of Heroes Trail Of Cold Steel 01.01.ncl │ │ ├── The Legend Of Korra NPUB31537 01.00.ncl │ │ ├── The Lord Of The Rings War In The North BLES01181 01.01.ncl │ │ ├── The Lord Of The Rings War In The North BLUS30421 01.02.ncl │ │ ├── The Revenge Of Shinobi NPEB00413 01.00.ncl │ │ ├── The Simpsons Game BLES00142 01.00.ncl │ │ ├── The Walking Dead Survival Instinct BLES01779 01.00.ncl │ │ ├── The Walking Dead Survival Instinct BLUS31065 01.00.ncl │ │ ├── The Walking Dead Survival Instinct NPUB31053 01.00.ncl │ │ ├── The Witch And The Hundred Knight BLUS30964 01.00.ncl │ │ ├── Thexder NEO NPEB00173 01.00.ncl │ │ ├── Thief BLES01982 01.00.ncl │ │ ├── Thief BLES01982 01.01.ncl │ │ ├── Tiger Woods PGA Tour 2011 BLES00870 01.02.ncl │ │ ├── Tiger Woods PGA Tour 2012 The Masters BLUS30705 01.02.ncl │ │ ├── Time And Eternity BLES01848.ncl │ │ ├── Tokyo Jungle BCJS30069 01.00.ncl │ │ ├── Tokyo Jungle NPUA80523 01.01.ncl │ │ ├── Tom Clancy's Ghost Recon Future Soldier BLES00924 BLUS30521 01.05.ncl │ │ ├── Tom Clancy's Rainbow Six Vegas 2 BLUS30125 01.30.ncl │ │ ├── Tom Clancy's Rainbow Six Vegas BLES00054 01.00.ncl │ │ ├── Tom Clancy's Splinter Cell BLES01146 BLUS30761 01.01.ncl │ │ ├── Tom Clancy's Splinter Cell Chaos Theory BLES01146 BLUS30761 01.01.ncl │ │ ├── Tom Clancy's Splinter Cell Double Agent BLES00024 01.00.ncl │ │ ├── Tom Clancy's Splinter Cell Pandora Tomorrow BLES01146 BLUS30761 01.01.ncl │ │ ├── Tom Clancy's Splinter Cell Pandora Tomorrow NPEB00528 01.00.ncl │ │ ├── Tomb Raider Anniversary BLUS30718 01.01.ncl │ │ ├── Tomb Raider BLES01780 BLUS31036 01.01.ncl │ │ ├── Tomb Raider BLJM60557 01.01.ncl │ │ ├── Tomb Raider BLUS31036 01.03.ncl │ │ ├── Tomb Raider Legend BLUS30718 01.01.ncl │ │ ├── Tomb Raider Underworld BLES00409 01.01.ncl │ │ ├── Tomb Raider Underworld BLUS30224 01.01.ncl │ │ ├── Tomb Raider Underworld BLUS30718 01.01.ncl │ │ ├── Top Spin 4 BLUS30427 01.01.ncl │ │ ├── Top Spin 4.ncl │ │ ├── Totori No Atelier Arland No Renkinjutsushi 2 BLJM60241 01.02.ncl │ │ ├── Totori No Atelier Arland No Renkinjutsushi 2 BLJM60241 01.03.ncl │ │ ├── Transformers Devastation BLUS31566 01.00.ncl │ │ ├── Transformers Fall Of Cybertron BLES01153 BLUS30681 NPUB30824 01.01.ncl │ │ ├── Transformers Rise Of The Dark Spark BLES02018 BLUS31324 01.00.ncl │ │ ├── Transformers War For Cybertron BLES00833 BLUS30357 01.01.ncl │ │ ├── Trine 2 NPEB00668 01.00.ncl │ │ ├── Trine NPEB00100 01.03.ncl │ │ ├── Trinity Souls Of Zill O'll BLES01184 01.01.ncl │ │ ├── Trinity Souls Of Zill O'll BLUS30503 01.00.ncl │ │ ├── Trinity Universe BLJM60162 01.00.ncl │ │ ├── Trinity Universe BLUS30535 01.01.ncl │ │ ├── Trinity Zill O'll Zero BLJM60212 01.01.ncl │ │ ├── Trinity Zill O'll Zero BLJM60212 02.01.ncl │ │ ├── Trusty Bell Chopin No Yume Reprise BLJS10017 01.01.ncl │ │ ├── Twisted Metal BCUS98106 01.00 BCES01010 01.01.ncl │ │ ├── Two Worlds II BLES00845 01.02.ncl │ │ ├── Ultimate Marvel Vs Capcom 3 BLES01355 01.02.ncl │ │ ├── Ultimate Marvel Vs Capcom 3 BLES01355 01.03.ncl │ │ ├── Ultimate Marvel Vs Capcom 3 BLJM60383 01.00.ncl │ │ ├── Ultimate Marvel Vs Capcom 3 BLJM60383 BLUS30787 01.03.ncl │ │ ├── Ultimate Marvel Vs Capcom 3 BLUS30787 01.00.ncl │ │ ├── Ultimate Mortal Kombat 3 NPUB30468 01.00.ncl │ │ ├── Ultimate Mortal Kombat 3 NPUB30468 01.02.ncl │ │ ├── Ultra Street Fighter 4 BLUS30453 01.08.ncl │ │ ├── Uncharted 2 Among Thieves BCAS20097 BCES00509 01.00.ncl │ │ ├── Uncharted 2 Among Thieves BCES00509 01.09.ncl │ │ ├── Uncharted 2 Among Thieves BCUS98213 01.00.ncl │ │ ├── Uncharted 2 Among Thieves BCUS98213 01.09.ncl │ │ ├── Uncharted 2 Among Thieves NPEA00365 01.00.ncl │ │ ├── Uncharted 3 Drake's Deception BCAS25014 01.15.ncl │ │ ├── Uncharted 3 Drake's Deception BCES01173 01.15.ncl │ │ ├── Uncharted 3 Drake's Deception BCES01175 01.17.ncl │ │ ├── Uncharted 3 Drake's Deception BCES01175 01.18.ncl │ │ ├── Uncharted Drake's Fortune BCAS20024 01.01.ncl │ │ ├── Uncharted Drake's Fortune BCES00065 01.00.ncl │ │ ├── Uncharted Drake's Fortune BCES00065 01.01.ncl │ │ ├── Uncharted Drake's Fortune BCES00065 BCUS98103 01.10.ncl │ │ ├── Uncharted Ougontou To Kieta Sendan BCJS30035 01.00.ncl │ │ ├── Uncharted Ougontou To Kieta Sendan BCJS30035 01.09.ncl │ │ ├── Under Night In-Birth Exe-Late BLJS10269 01.00.ncl │ │ ├── Untold Legends Dark Kingdom BLUS30002 01.01.ncl │ │ ├── Valkyria Chronicles BLES00372 01.00.ncl │ │ ├── Valkyria Chronicles BLUS30196 01.00.ncl │ │ ├── Valkyria Chronicles BLUS30196 01.20.ncl │ │ ├── Valkyria Chronicles BLUS30196.ncl │ │ ├── Valkyria Chronicles.ncl │ │ ├── Vampire Rain Altered Species.ncl │ │ ├── Vampire Rain BLJM60060 01.00.ncl │ │ ├── Vandal Hearts Flames Of Judgement NPJB00038 01.00.ncl │ │ ├── Vanquish BLES00927 01.00.ncl │ │ ├── Vanquish BLJM60227 01.00.ncl │ │ ├── Vanquish BLUS30543 01.00.ncl │ │ ├── Venetica BLUS30636 01.00.ncl │ │ ├── Virtua Fighter 5 BLES00029 01.00.ncl │ │ ├── Virtua Fighter 5 BLJM60016 01.01.ncl │ │ ├── Virtua Fighter 5 Final Showdown NPEB00913 NPUB30625 01.01.ncl │ │ ├── Wander To Kyozou BCJS30071 01.00.ncl │ │ ├── Warriors Legends Of Troy BLJM60307 01.02 BLES01183 01.03.ncl │ │ ├── Warriors Orochi 3 BLES01588 01.00.ncl │ │ ├── Warriors Orochi 3 BLES01588 01.01.ncl │ │ ├── Warriors Orochi 3 BLES01588 01.02.ncl │ │ ├── Warriors Orochi 3 BLJM60417 01.05.ncl │ │ ├── Warriors Orochi 3 NPUB30708 01.00.ncl │ │ ├── Warriors Orochi 3 Ultimate NPUB31505 01.00.ncl │ │ ├── Watch_Dogs BLES01854 01.01.ncl │ │ ├── Watch_Dogs BLES01854 01.02.ncl │ │ ├── Watchmen The End Is Nigh.ncl │ │ ├── Way Of The Samurai 3 BLJS10039 01.01.ncl │ │ ├── Way Of The Samurai 3.ncl │ │ ├── Way Of The Samurai 4 BLJS10107 01.02.ncl │ │ ├── Wet BLES00707 01.00.ncl │ │ ├── White Knight Chronicles BCUS98146 01.00.ncl │ │ ├── White Knight Chronicles II BCES01085 01.00.ncl │ │ ├── White Knight Chronicles II BCES01085 01.01.ncl │ │ ├── White Knight Chronicles II BLUS30784 01.01.ncl │ │ ├── Winning Post 7 2010 BLJM60263 01.01.ncl │ │ ├── Winning Post 7 2013 BLJM60576 01.01.ncl │ │ ├── Winning Post 7 Maximum 2007 BLJM60019 01.01.ncl │ │ ├── Winning Post 7 Maximum 2008 BLJM60067 01.01.ncl │ │ ├── Wold Of The Battlefield Commando 3 NPUB30021 01.00.ncl │ │ ├── Wold Of The Battlefield Commando 3 NPUB30021 01.10.ncl │ │ ├── Wolfenstein BLUS30298 01.00.ncl │ │ ├── Wolfenstein The New Order BLUS31120 01.00.ncl │ │ ├── World Soccer Winning Eleven 2011 BLAS50231 01.01.ncl │ │ ├── World Soccer Winning Eleven 2011 BLJM60271 01.03.ncl │ │ ├── World Soccer Winning Eleven 2014 BLJM61106 01.01.ncl │ │ ├── X-Blades BLJM60149 01.01.ncl │ │ ├── X-Men Arcade NPUB30320 01.00.ncl │ │ ├── Yaiba Ninja Gaiden Z BLUS31203 01.01.ncl │ │ ├── Yakuza 3 BLUS30494 01.00.ncl │ │ ├── Yakuza 3.ncl │ │ ├── Yakuza 4 BLUS30643 01.00.ncl │ │ ├── Yakuza 4 JPN.ncl │ │ ├── Yakuza 4 NTSC PAL.ncl │ │ ├── Yakuza Dead Souls BLES01399 01.00.ncl │ │ ├── Yoru No Nai Kuni BLJM61264 01.00.ncl │ │ ├── Yoru No Nai Kuni BLJM61264 01.01.ncl │ │ ├── ZX Zillions Of Enemy X - Zekkai No Crusade BLJS10195 01.00.ncl │ │ ├── Zettai Geigeki Wars BLJM61238 NPJB00608 01.00.ncl │ │ ├── Zombie Apocalypse NPUB30069 01.00.ncl │ │ ├── Zombie Apocalypse NPUB30069 01.01.ncl │ │ ├── de Blob 2 BLUS30559 01.00.ncl │ │ ├── inFamous 2 BCAS20181 BCUS98125 01.00 BCES01143 01.01.ncl │ │ ├── inFamous 2 BCES01443 01.04.ncl │ │ ├── inFamous 2 Festival Of Blood NPUA80657 01.00.ncl │ │ ├── inFamous BCAS20074 01.00 BCES00220 01.01.ncl │ │ └── inFamous BCUS98119 01.00.ncl │ │ ├── artemis_ps3.sprx │ │ └── payloads │ │ ├── mamba_355C.bin │ │ ├── mamba_355D.bin │ │ ├── mamba_421C.bin │ │ ├── mamba_421D.bin │ │ ├── mamba_430C.bin │ │ ├── mamba_430D.bin │ │ ├── mamba_431C.bin │ │ ├── mamba_440C.bin │ │ ├── mamba_441C.bin │ │ ├── mamba_441D.bin │ │ ├── mamba_446C.bin │ │ ├── mamba_446D.bin │ │ ├── mamba_450C.bin │ │ ├── mamba_450D.bin │ │ ├── mamba_453C.bin │ │ ├── mamba_453D.bin │ │ ├── mamba_455C.bin │ │ ├── mamba_455D.bin │ │ ├── mamba_460C.bin │ │ ├── mamba_460D.bin │ │ ├── mamba_465C.bin │ │ ├── mamba_465D.bin │ │ ├── mamba_466C.bin │ │ ├── mamba_466D.bin │ │ ├── mamba_470C.bin │ │ ├── mamba_470D.bin │ │ ├── mamba_475C.bin │ │ ├── mamba_475D.bin │ │ ├── mamba_476C.bin │ │ ├── mamba_476D.bin │ │ ├── mpl_payload_355C.bin │ │ ├── mpl_payload_355D.bin │ │ ├── mpl_payload_421C.bin │ │ ├── mpl_payload_421D.bin │ │ ├── mpl_payload_430C.bin │ │ ├── mpl_payload_430D.bin │ │ ├── mpl_payload_431C.bin │ │ ├── mpl_payload_440C.bin │ │ ├── mpl_payload_441C.bin │ │ ├── mpl_payload_441D.bin │ │ ├── mpl_payload_446C.bin │ │ ├── mpl_payload_446D.bin │ │ ├── mpl_payload_450C.bin │ │ ├── mpl_payload_450D.bin │ │ ├── mpl_payload_453C.bin │ │ ├── mpl_payload_453D.bin │ │ ├── mpl_payload_455C.bin │ │ ├── mpl_payload_455D.bin │ │ ├── mpl_payload_460C.bin │ │ ├── mpl_payload_460D.bin │ │ ├── mpl_payload_465C.bin │ │ ├── mpl_payload_465D.bin │ │ ├── mpl_payload_466C.bin │ │ ├── mpl_payload_466D.bin │ │ ├── mpl_payload_470C.bin │ │ ├── mpl_payload_470D.bin │ │ ├── mpl_payload_475C.bin │ │ ├── mpl_payload_475D.bin │ │ ├── mpl_payload_476C.bin │ │ ├── mpl_payload_476D.bin │ │ ├── mpl_payload_478C.bin │ │ └── mpl_payload_478D.bin ├── sfo.xml └── src │ ├── codes.c │ ├── common.c │ ├── lv2_utils.c │ ├── main.c │ ├── mamba_prx_loader.c │ ├── menu_about.c │ ├── menu_cheats.c │ └── menu_options.c ├── ArtemisPS3-PRX ├── ArtemisPS3-PRX.vcxproj ├── ArtemisPS3-PRX.vcxproj.filters ├── ArtemisPS3-PRX.vcxproj.user ├── Makefile ├── PSL1GHTBuilder.exe ├── README.md ├── artemis_ps3.prx ├── artemis_ps3.sprx ├── artemis_ps3.sym ├── asmcode.s ├── assembly.h ├── common.h ├── data │ ├── keys │ ├── ldr_curves │ └── vsh_curves ├── inc │ ├── allocator.h │ ├── esecron.h │ ├── game_plugin.h │ ├── libcrashdump_system.h │ ├── paf.h │ ├── pngdec_ppuonly.h │ ├── rec_plugin.h │ ├── sdk.h │ ├── stdc.h │ ├── sys_io.h │ ├── sys_prx_for_user.h │ ├── vsh.h │ ├── vsh_exports.h │ ├── vshmain.h │ ├── vshtask.h │ ├── xregistry.h │ └── xsetting.h ├── lib │ ├── liballocator_export_stub.a │ ├── libcrashdump_system_export_stub.a │ ├── libesecron_export_stub.a │ ├── libpaf_export_stub.a │ ├── libpngdec_ppuonly_export_stub.a │ ├── libsdk_export_stub.a │ ├── libstdc_export_stub.a │ ├── libsysPrxForUser_export_stub.a │ ├── libsys_io_export_stub.a │ ├── libvsh_export_stub.a │ ├── libvshmain_export_stub.a │ ├── libvshtask_export_stub.a │ └── libxsetting_export_stub.a ├── libc.c ├── main.c ├── mem.c ├── mem.h ├── misc.c ├── misc.h ├── printf.c ├── printf.h ├── ps3mapi_ps3_lib.c ├── ps3mapi_ps3_lib.h ├── scetool.exe ├── types.h └── zlib1.dll ├── ArtemisPS3.sdf ├── ArtemisPS3.sln ├── ArtemisPS3.v12.suo ├── INSTALLATION.md ├── LICENSE ├── README.md └── screenshots ├── about.png ├── cheats.png ├── games.png └── main.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/.gitignore -------------------------------------------------------------------------------- /ArtemisPS3-GUI/ArtemisPS3-GUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/ArtemisPS3-GUI.vcxproj -------------------------------------------------------------------------------- /ArtemisPS3-GUI/ArtemisPS3-GUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/ArtemisPS3-GUI.vcxproj.filters -------------------------------------------------------------------------------- /ArtemisPS3-GUI/ArtemisPS3-GUI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/ArtemisPS3-GUI.vcxproj.user -------------------------------------------------------------------------------- /ArtemisPS3-GUI/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/ICON0.PNG -------------------------------------------------------------------------------- /ArtemisPS3-GUI/ICON0_NEW.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/ICON0_NEW.PNG -------------------------------------------------------------------------------- /ArtemisPS3-GUI/ICON0_OLD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/ICON0_OLD.PNG -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Make_All.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Make_All.bat -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Make_Clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Make_Clean.bat -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_3.55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_3.55 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_3.55D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_3.55D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.21 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.21D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.21D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.30 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.30D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.30D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.31 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.40 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.41 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.41D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.41D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.46 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.46D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.46D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.50 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.50D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.50D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.53 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.53D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.53D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.55 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.55D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.55D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.60 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.60D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.60D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.65 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.65D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.65D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.66 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.66D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.66D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.70: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.70 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.70D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.70D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.75: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.75 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.75D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.75D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.76 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.76D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.76D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.78 -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.78D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/Makefile_4.78D -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/debug.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/error.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/interrupt.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/io.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/libc.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/lv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/lv2.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/macros.h.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/macros.h.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/memory.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/modules.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/object.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/patch.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/process.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/security.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/storage.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/symbols.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/synchronization.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/syscall.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/thread.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/time.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/include/lv2/usb.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/debug.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/io.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/io.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/libc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/libc.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/memory.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/memory.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/memory_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/memory_c.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/modules.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/modules.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/modules_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/modules_c.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/process.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/process.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/syscall.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/thread.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/thread.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/thread_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/thread_c.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/lv2/src/time.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/payload.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/payload.ld -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/payload_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/payload_src/main.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/payload_src/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/payload_src/start.S -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/bin/ppu-gcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/bin/ppu-gcc.exe -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/bin/ppu-objcopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/bin/ppu-objcopy.exe -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/bin/as.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/bin/as.exe -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/bin/ld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/bin/ld.exe -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/_ansi.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/alloca.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/machine/ansi.h: -------------------------------------------------------------------------------- 1 | /* dummy header file to support BSD compiler */ 2 | -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/machine/param.h: -------------------------------------------------------------------------------- 1 | /* Place holder for machine-specific param.h. */ 2 | -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/newlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/newlib.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/reent.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/stdint.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/stdio.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/stdlib.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/string.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/_types.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/cdefs.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/config.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/dirent.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/fcntl.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/file.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/lock.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/param.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/queue.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/reent.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/sched.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/signal.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/stat.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/stdio.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/string.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/time.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/timeb.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/times.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/types.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/unistd.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/utime.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/ppu/include/sys/wait.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/MAMBA_PRX_Loader_Payload/ps3dev/ppu/rename bin_ to bin (also in ppu folder): -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ArtemisPS3-GUI/PSL1GHTBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/PSL1GHTBuilder.exe -------------------------------------------------------------------------------- /ArtemisPS3-GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/README.md -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/background_music_mp3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/background_music_mp3.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/berion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/berion.txt -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/bgimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/bgimg.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/cheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/cheat.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/circle_error_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/circle_error_dark.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/circle_error_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/circle_error_light.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/circle_loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/circle_loading_bg.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/circle_loading_seek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/circle_loading_seek.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/comfortaa_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/comfortaa_bold.ttf -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/comfortaa_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/comfortaa_light.ttf -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/comfortaa_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/comfortaa_regular.ttf -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/background.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/background_music_mp3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/background_music_mp3.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/cousinereg_ttf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/cousinereg_ttf.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/desc_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/desc_about.jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/desc_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/desc_about.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/desc_cheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/desc_cheats.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/desc_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/desc_options.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/desc_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/desc_start.jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/desc_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/desc_start.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/electromagnetic_lungs_ttf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/electromagnetic_lungs_ttf.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/icon_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/icon_about.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/icon_cheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/icon_cheats.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/icon_onlinecheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/icon_onlinecheats.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/icon_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/icon_options.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/icon_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/icon_start.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/icon_usercheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/icon_usercheats.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/logo.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/logo_ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/logo_ghost.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/menu_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/menu_bar.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/neuropol_ttf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/neuropol_ttf.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/project.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sel_bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sel_bar1.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sel_bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sel_bar2.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sources/icon_onlinecheats.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sources/icon_onlinecheats.psd -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sources/icon_options.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sources/icon_options.psd -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sources/icon_usercheats.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sources/icon_usercheats.psd -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sources/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sources/logo.psd -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sources/neuropol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sources/neuropol.ttf -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sources/project.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sources/project.psd -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/sources/ubuntureg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/sources/ubuntureg.ttf -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/spu_soundmodule.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/spu_soundmodule.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/ubuntumono_ttf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/ubuntumono_ttf.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/data_old/ubuntureg_ttf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/data_old/ubuntureg_ttf.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/edit_ico_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/edit_ico_add.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/edit_ico_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/edit_ico_del.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/edit_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/edit_shadow.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/footer_ico_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/footer_ico_circle.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/footer_ico_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/footer_ico_cross.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/footer_ico_lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/footer_ico_lt.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/footer_ico_rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/footer_ico_rt.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/footer_ico_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/footer_ico_square.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/footer_ico_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/footer_ico_triangle.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/header_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/header_dot.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/header_ico_abt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/header_ico_abt.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/header_ico_cht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/header_ico_cht.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/header_ico_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/header_ico_opt.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/header_ico_xmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/header_ico_xmb.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/header_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/header_line.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/help.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/mark_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/mark_arrow.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/mark_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/mark_line.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/mark_line_nowork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/mark_line_nowork.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/opt_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/opt_off.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/opt_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/opt_on.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/about (rev A).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/about (rev A).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/about (rev B).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/about (rev B).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/cheats (cheatlist, adding).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/cheats (cheatlist, adding).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/cheats (cheatlist, view).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/cheats (cheatlist, view).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/cheats (gamelist, adding).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/cheats (gamelist, adding).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/cheats (gamelist, view).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/cheats (gamelist, view).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/cheats (loading, error).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/cheats (loading, error).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/cheats (loading, seeking).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/cheats (loading, seeking).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/help.jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/options (english).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/options (english).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/options (polish).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/options (polish).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/title screen (new logo).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/title screen (new logo).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/preview/title screen (old logo).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/preview/title screen (old logo).jpg -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/scroll_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/scroll_bg.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/scroll_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/scroll_lock.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/spu_soundmodule.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/spu_soundmodule.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/titlescr_ico_abt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/titlescr_ico_abt.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/titlescr_ico_cht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/titlescr_ico_cht.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/titlescr_ico_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/titlescr_ico_opt.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/titlescr_ico_xmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/titlescr_ico_xmb.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/data/titlescr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/data/titlescr_logo.png -------------------------------------------------------------------------------- /ArtemisPS3-GUI/font informations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/font informations.txt -------------------------------------------------------------------------------- /ArtemisPS3-GUI/font.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/font.zip -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/codes.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/common.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/lv2_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/lv2_utils.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/mamba_prx_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/mamba_prx_loader.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/menu.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/menu_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/menu_about.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/menu_cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/menu_cheats.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/menu_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/menu_options.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/include/ps3mapi_ps3_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/include/ps3mapi_ps3_lib.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/libfont/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/libfont/Makefile -------------------------------------------------------------------------------- /ArtemisPS3-GUI/libfont/build/libfont.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/libfont/build/libfont.d -------------------------------------------------------------------------------- /ArtemisPS3-GUI/libfont/build/libfont.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/libfont/build/libfont.o -------------------------------------------------------------------------------- /ArtemisPS3-GUI/libfont/include/libfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/libfont/include/libfont.h -------------------------------------------------------------------------------- /ArtemisPS3-GUI/libfont/libfont.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/libfont/libfont.a -------------------------------------------------------------------------------- /ArtemisPS3-GUI/libfont/source/libfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/libfont/source/libfont.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/makefile -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/ICON0.PNG -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/NewCore/sys_init_osd.self: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/NewCore/sys_init_osd.self -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/007 Legends BLUS30983 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/007 Legends BLUS30983 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Agarest Senki 2 BLJM60273 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Agarest Senki 2 BLJM60273 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Agarest Senki 2 BLJM60273.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Agarest Senki 2 BLJM60273.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Agarest Senki BLJM60038 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Agarest Senki BLJM60038 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Alien Breed NPUB31085 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Alien Breed NPUB31085 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Alien Isolation BLES01697 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Alien Isolation BLES01697 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Alien Rage NPUB30863 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Alien Rage NPUB30863 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Altered Beast NPEB00526 01.00.ncl: -------------------------------------------------------------------------------- 1 | Unlimited Life Energy 2 | 0 3 | CMbl4 4 | 0 35C46C4A 50 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Amy NPUB30613 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Amy NPUB30613 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Aqua Panic NPUB30203 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Aqua Panic NPUB30203 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Armored Core 4 BLJM60012 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Armored Core 4 BLJM60012 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Armored Core V BLES01440 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Armored Core V BLES01440 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Assassin's Creed Brotherhood BLJM60250 01.01.ncl: -------------------------------------------------------------------------------- 1 | Infinite HP 2 | 0 3 | CodeFreak/PS3UserCheat 4 | 0 00960CDC 801F005C 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Assassin's Creed Brotherhood Ezio Saga NPJB00231 01.00.ncl: -------------------------------------------------------------------------------- 1 | Infinite Money + Items 2 | 0 3 | games24.blog.fc2.com 4 | 0 00F9979C 7C090378 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Assassin's Creed Brotherhood.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Assassin's Creed Brotherhood.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Assassin's Creed NPJB00214 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Assassin's Creed NPJB00214 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battle Fantasia BLJM60077 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battle Fantasia BLJM60077 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 3 BLAS50380 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 3 BLAS50380 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 3 BLUS30762 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 3 BLUS30762 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 4 BLUS31162 1.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 4 BLUS31162 1.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 4 BLUS31162 1.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Battlefield 4 BLUS31162 1.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bayonetta BLJM60174 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bayonetta BLJM60174 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bayonetta NPEB01134 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bayonetta NPEB01134 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bayonetta.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bayonetta.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Binary Domain BLES01211 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Binary Domain BLES01211 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Binary Domain BLES01211 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Binary Domain BLES01211 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Binary Domain BLUS30729 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Binary Domain BLUS30729 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Binary Domain NPEB00915 01.02.ncl: -------------------------------------------------------------------------------- 1 | Damage 0 P1 2 | 0 3 | xtatu 4 | 0 001BA39C 40820008 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock 2 BLES00728 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock 2 BLES00728 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock 2 BLJS10078 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock 2 BLJS10078 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock 2 BLUS30420 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock 2 BLUS30420 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock BLES00316 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock BLES00316 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock BLJS10041 01.10.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock BLJS10041 01.10.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock BLUS30166 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/BioShock BLUS30166 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 4 BLJM60372 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 4 BLJM60372 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 4 NPJB00084 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 4 NPJB00084 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 5 BLJM90001 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 5 BLJM90001 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 5 BLJM90001 02.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 5 BLJM90001 02.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 6 BLJM60405 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Biohazard 6 BLJM60405 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Borderlands 2 BLES01684 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Borderlands 2 BLES01684 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Borderlands 2 BLES01684 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Borderlands 2 BLES01684 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Borderlands 2 BLES01684 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Borderlands 2 BLES01684 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bound By Flame BLES01952 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bound By Flame BLES01952 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bulletstorm BLES01134 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Bulletstorm BLES01134 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Burnout Paradise BLUS30061 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Burnout Paradise BLUS30061 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Call Of Duty 3 BLUS30012 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Call Of Duty 3 BLUS30012 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Castle Crashers NPUB30181 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Castle Crashers NPUB30181 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Castlevania Lords Of Shadow.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Castlevania Lords Of Shadow.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLES01459 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLES01459 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLJM60215 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLJM60215 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLUS30428 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLUS30428 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLUS30428.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Catherine BLUS30428.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Child Of Light NPUB31430 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Child Of Light NPUB31430 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Child Of Light NPUB31430 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Child Of Light NPUB31430 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Clock Tower 2 NPJJ00630.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Clock Tower 2 NPJJ00630.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Comix Zone NPEB00530 01.00.ncl: -------------------------------------------------------------------------------- 1 | Unlimited Life Energy 2 | 0 3 | CMbl4 4 | 0 35C6ACE4 04FF 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Conan BLES00076 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Conan BLES00076 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Condemned 2 BLES00219 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Condemned 2 BLES00219 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Cosmophony NPEB02190 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Cosmophony NPEB02190 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis 2 NPEB00653 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis 2 NPEB00653 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis 3 BLJM60530 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis 3 BLJM60530 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis 3 BLUS30976 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis 3 BLUS30976 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis NPUB30302 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Crysis NPUB30302 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dante's Inferno BLES00713 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dante's Inferno BLES00713 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Sector BLUS30116 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Sector BLUS30116 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls 2 BLUS41045 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls 2 BLUS41045 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLES01396 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLES01396 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLES01402 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLES01402 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLJM60517 01.08.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLJM60517 01.08.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLJM60993 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLJM60993 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLUS30782 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dark Souls BLUS30782 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Darksiders NPEB00726 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Darksiders NPEB00726 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Darksiders.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Darksiders.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island BLES00749 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island BLES00749 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island BLJS10148 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island BLJS10148 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island BLUS30790 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island BLUS30790 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island GOTY BLUS31026 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island GOTY BLUS31026 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island NPEB00721 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island NPEB00721 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island NPJB00630 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island NPJB00630 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island Riptide.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Island Riptide.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Nation NPEA00143 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Nation NPEA00143 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Nation NPUA80358 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Nation NPUA80358 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Nation NPUA80358 01.08.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Nation NPUA80358 01.08.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Or Alive 5 BLES01623 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Or Alive 5 BLES01623 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Or Alive 5 BLJM60513 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Or Alive 5 BLJM60513 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Rising 2 BLJM60221 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Rising 2 BLJM60221 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Rising 2 BLUS30439 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Rising 2 BLUS30439 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Space 2 BLUS30624 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Space 2 BLUS30624 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Space 2 BLUS30624 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Space 2 BLUS30624 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Space BLUS30177 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dead Space BLUS30177 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BCAS20071 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BCAS20071 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BCJS30022 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BCJS30022 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BCJS30022 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BCJS30022 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BLES00932 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BLES00932 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BLUS30443 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls BLUS30443 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Demon's Souls.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLES01921 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLES01921 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLES01921 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLES01921 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLES01921 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLES01921 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLUS31221 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Diablo 3 BLUS31221 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dino Crisis 2 NPUJ01279.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dino Crisis 2 NPUJ01279.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dino Crisis NPUJ00922.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dino Crisis NPUJ00922.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dishonored BLES01674 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dishonored BLES01674 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dishonored BLJM60520 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dishonored BLJM60520 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon Age Origins.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon Age Origins.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon Ball Raging Blast 2.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon Ball Raging Blast 2.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Crown BLJM61041 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Crown BLJM61041 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Crown BLUS30767 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Crown BLUS30767 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLES01356 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLES01356 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLES01356 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLES01356 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLUS30720 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLUS30720 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLUS30720 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dragon's Dogma BLUS30720 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Drakengard 3 BLUS31197 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Drakengard 3 BLUS31197 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dynasty Warriors Strikeforce.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Dynasty Warriors Strikeforce.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Earthworm Jim NPEB00226 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Earthworm Jim NPEB00226 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Earthworm Jim NPUB30120 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Earthworm Jim NPUB30120 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Enchant Arm BLJS10003 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Enchant Arm BLJS10003 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Enchanted Arms BLES00049 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Enchanted Arms BLES00049 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/End Of Eternity BLJM60187 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/End Of Eternity BLJM60187 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Enemy Front BLUS30996 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Enemy Front BLUS30996 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Eternal Sonata BLUS30161 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Eternal Sonata BLUS30161 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/F.E.A.R. 3 BLUS30511 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/F.E.A.R. 3 BLUS30511 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/F.E.A.R. 3 BLUS30511 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/F.E.A.R. 3 BLUS30511 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA 14 BLES01876 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA 14 BLES01876 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA 14 BLES01876 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA 14 BLES01876 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA 15 BLUS31443 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA 15 BLUS31443 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA Soccer 12 NPEB00688 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/FIFA Soccer 12 NPEB00688 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fairy Fencer F BLJM61090 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fairy Fencer F BLJM61090 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fairy Fencer F BLUS31423 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fairy Fencer F BLUS31423 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Far Cry 2 BLUS30178 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Far Cry 2 BLUS30178 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Far Cry 3 BLJM60532 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Far Cry 3 BLJM60532 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Far Cry 3 NPEB01096 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Far Cry 3 NPEB01096 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Exam NPEB01409 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Exam NPEB01409 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Exam NPUB31258 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Exam NPUB31258 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Fantasy XIII BCAS25005.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Fantasy XIII BCAS25005.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Fantasy XIII-2 BLUS30776 01.06.ncl: -------------------------------------------------------------------------------- 1 | 999,999 Damage 2 | 0 3 | xtatu 4 | 0 0008C17C 41810078 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Fantasy XIII.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Final Fantasy XIII.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Folklore BCES00050 01.10.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Folklore BCES00050 01.10.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fracture BLES00329 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fracture BLES00329 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/From Dust NPUB30418 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/From Dust NPUB30418 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fuse BLES01724 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fuse BLES01724 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fuse BLUS31040 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Fuse BLUS31040 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Goat Simulator NPEB02321 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Goat Simulator NPEB02321 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/God Of War 3 BCAS25003 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/God Of War 3 BCAS25003 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/God Of War 3 BCES00510 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/God Of War 3 BCES00510 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/God Of War 3 BCJS37001 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/God Of War 3 BCJS37001 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gran Turismo 5 BCAS20108 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gran Turismo 5 BCAS20108 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gran Turismo 5 BCAS20108 01.09.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gran Turismo 5 BCAS20108 01.09.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Grand Theft Auto IV Episodes From Liberty City BLES00887 01.00.ncl: -------------------------------------------------------------------------------- 1 | 1P Invincible Mode 2 | 0 3 | xtatu 4 | 0 0066C550 419EFF40 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Grand Theft Auto IV Episodes From Liberty City BLUS30524 01.00.ncl: -------------------------------------------------------------------------------- 1 | 1P Invincible Mode 2 | 0 3 | xtatu 4 | 0 0066BD58 419EFF40 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Grand Theft Auto IV Episodes From Liberty City NPEB00907 01.00.ncl: -------------------------------------------------------------------------------- 1 | 1P Invincible Mode 2 | 0 3 | xtatu 4 | 0 0066D520 419EFF40 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Breaker 2 BLJS10286 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Breaker 2 BLJS10286 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Breaker BLJS10197 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Breaker BLJS10197 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 2 BLJM60111 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 2 BLJM60111 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 3 BLJM60300 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 3 BLJM60300 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 3 BLJM60300 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 3 BLJM60300 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 3 JPN.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou 3 JPN.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou BLJM60018 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Gundam Musou BLJM60018 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Haze BLES00169 01.36.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Haze BLES00169 01.36.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Heavenly Sword BCAS20016 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Heavenly Sword BCAS20016 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Heavenly Sword BCES00078 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Heavenly Sword BCES00078 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Heavenly Sword BCES00078 01.10.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Heavenly Sword BCES00078 01.10.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Hitman Absolution BLES01641 01.00.ncl: -------------------------------------------------------------------------------- 1 | Can Never Be Seen + Invincible 2 | 0 3 | xtatu 4 | 0 007AF41C 3C604080 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Hitman Absolution BLJM61003 01.00.ncl: -------------------------------------------------------------------------------- 1 | Can Never Be Seen + Invincible 2 | 0 3 | xtatu 4 | 0 007A0A4C 3C604080 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Hitman Absolution NPUB30744 01.00.ncl: -------------------------------------------------------------------------------- 1 | Can Never Be Seen + Invincible 2 | 0 3 | xtatu 4 | 0 007AF62C 3C604080 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Hokuto Musou BLJM60196 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Hokuto Musou BLJM60196 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Homefront BLES00962 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Homefront BLES00962 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Homefront NPUB30572 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Homefront NPUB30572 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/How To Survive NPEB01387 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/How To Survive NPEB01387 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/How To Survive NPEB01387 02.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/How To Survive NPEB01387 02.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Hyperdimension Neptunia.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Hyperdimension Neptunia.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/I Am Alive NPUB30383 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/I Am Alive NPUB30383 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ico BCES01097 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ico BCES01097 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ico BCJS30070 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ico BCJS30070 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Inversion BLUS30360 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Inversion BLUS30360 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Iron Man BLES00247 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Iron Man BLES00247 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/JUJU NPEB02130 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/JUJU NPEB02130 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Katamari Forever BLES00658 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Katamari Forever BLES00658 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Katamari Forever BLUS30336 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Katamari Forever BLUS30336 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killer Is Dead BLES01856 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killer Is Dead BLES01856 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 2 BCAS20066 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 2 BCAS20066 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 2 BCUS98116 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 2 BCUS98116 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 3 BCES01007 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 3 BCES01007 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 3 BCES01007 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Killzone 3 BCES01007 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Kingdom Hearts Chain Of Memories.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Kingdom Hearts Chain Of Memories.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/L.A. Noire BLES00933 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/L.A. Noire BLES00933 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LEGO The Hobbit BLUS31392 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LEGO The Hobbit BLUS31392 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lair BCAS20014 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lair BCAS20014 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Last Rebellion BLES00861 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Last Rebellion BLES00861 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Last Rebellion BLJS10070 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Last Rebellion BLJS10070 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Legasista NPUB30860 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Legasista NPUB30860 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lemmings NPUA80012 02.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lemmings NPUA80012 02.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LittleBigPlanet 3 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LittleBigPlanet 3 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LittleBigPlanet BCAS20058 02.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LittleBigPlanet BCAS20058 02.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LittleBigPlanet BCAS20078 01.30.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/LittleBigPlanet BCAS20078 01.30.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Dimension 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Dimension 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Dimension BLUS31554 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Dimension BLUS31554 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Planet 2 MRTC00002 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Planet 2 MRTC00002 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Planet 3 BLUS31020 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Lost Planet 3 BLUS31020 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mafia 2 BLES00521 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mafia 2 BLES00521 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Makai Senki Disgaea 3.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Makai Senki Disgaea 3.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Makai Senki Disgaea 4 BLJS10096.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Makai Senki Disgaea 4 BLJS10096.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Malicious NPEA00366 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Malicious NPEA00366 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Malicious NPJB00070 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Malicious NPJB00070 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mamorukun Curse! NPUB30934 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mamorukun Curse! NPUB30934 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Marvel Vs. Capcom 3 Fate Of Two Worlds BLES01026 BLJM60256 BLUS30410 01.03.ncl: -------------------------------------------------------------------------------- 1 | 2p Stand Mode (CPU No Move) 2 | 0 3 | xtatu 4 | 0 0015CA0C 419E000C 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLES01462 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLES01462 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLES01462 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLES01462 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLES01462 01.07.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLES01462 01.07.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLUS30853 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLUS30853 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLUS30853 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLUS30853 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLUS30853 01.07.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mass Effect 3 BLUS30853 01.07.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Max Anarchy BLJM60305 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Max Anarchy BLJM60305 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Max Payne 3 BLUS30557 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Max Payne 3 BLUS30557 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Max Payne 3 BLUS30557 01.09.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Max Payne 3 BLUS30557 01.09.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Medal Of Honor BLAS50238 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Medal Of Honor BLAS50238 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mega Man 10 NPUB30114 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mega Man 10 NPUB30114 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mega Man 9 NPUB30036 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mega Man 9 NPUB30036 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Metal Slug 2 NPEB00681 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Metal Slug 2 NPEB00681 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Metro Last Light BLUS31184 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Metro Last Light BLUS31184 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Minecraft NPUB31419 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Minecraft NPUB31419 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mini Ninjas BLUS30284 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mini Ninjas BLUS30284 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mist Of Chaos BLJM60022 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mist Of Chaos BLJM60022 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Moon Diver NPUB30345 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Moon Diver NPUB30345 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 1 NPUB30468 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 1 NPUB30468 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 1 NPUB30468 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 1 NPUB30468 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 2 NPUB30468 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 2 NPUB30468 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 2 NPUB30468 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat 2 NPUB30468 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat BLES01132 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat BLES01132 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat BLUS30522 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat BLUS30522 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat BLUS30522 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat BLUS30522 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat Komplete Edition BLES01508 01.05.ncl: -------------------------------------------------------------------------------- 1 | 1 Hit X-Ray Max Infinite 2 | 0 3 | xtatu 4 | 0 0019C798 4082000C 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat NPEB00847 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mortal Kombat NPEB00847 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mugen Souls BLES01723 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mugen Souls BLES01723 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mugen Souls Z BLES02022 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Mugen Souls Z BLES02022 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.05.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi 2 BLJM60417 01.05.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi Z BLAS50130 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi Z BLAS50130 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi Z BLJM60139 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Musou Orochi Z BLJM60139 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/NBA 2K10 BLES00655 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/NBA 2K10 BLES00655 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/NBA 2K11 BLUS30574 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/NBA 2K11 BLUS30574 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/NBA 2K15 BLUS31456 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/NBA 2K15 BLUS31456 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Narco Terror NPEB01373 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Narco Terror NPEB01373 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Need For Speed ProStreet BLJM60059 01.00.ncl: -------------------------------------------------------------------------------- 1 | Cash 2 | 0 3 | CodeFreak/PS3UserCheat 4 | 0 513D71B0 05F5E0FF 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Nier BLUS30481 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Nier BLUS30481 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Nier Replicant BLJM60223 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Nier Replicant BLJM60223 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden 3 BLES01524 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden 3 BLES01524 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden 3 BLES01524 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden 3 BLES01524 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden 3 BLJM60447 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden 3 BLJM60447 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden Sigma 2.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden Sigma 2.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden Sigma.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ninja Gaiden Sigma.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Okami Zekkeihan BLJM60467 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Okami Zekkeihan BLJM60467 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/One Piece Pirate Warriors 2.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/One Piece Pirate Warriors 2.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Overlord II BLUS30317 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Overlord II BLUS30317 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Parasite Eve NPUJ00662.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Parasite Eve NPUJ00662.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Payday The Heist NPUA30073 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Payday The Heist NPUA30073 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Persona 4 Arena BLUS30985 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Persona 4 Arena BLUS30985 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Power Smash 3 BLJM60017 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Power Smash 3 BLJM60017 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Pro Yakyuu Spirits 2015 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Pro Yakyuu Spirits 2015 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Pupeteer BCES00935 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Pupeteer BCES00935 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Pupeteer NPEA00439 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Pupeteer NPEA00439 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Quantum Theory BLES00868 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Quantum Theory BLES00868 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rainbow Moon NPUB30434.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rainbow Moon NPUB30434.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rambo BLES01963 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rambo BLES01963 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/RayStorm NPJB00034 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/RayStorm NPJB00034 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rayman Origins BLES01386 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rayman Origins BLES01386 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Remember Me BLES01701 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Remember Me BLES01701 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 4 NPEB00342 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 4 NPEB00342 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 5 Gold.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 5 Gold.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 5.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 5.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 6 BLES01465 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 6 BLES01465 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 6 BLES01465 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 6 BLES01465 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 6 BLUS30855 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resident Evil 6 BLUS30855 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resogun NPEA00433 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Resogun NPEA00433 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 BCES00009 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 BCES00009 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 BLUS30001 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 BLUS30001 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 BLUS30001.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 BLUS30001.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 NPUB30457.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ridge Racer 7 NPUB30457.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rune Factory Ocean JPN.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Rune Factory Ocean JPN.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row 4 BLUS31205 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row 4 BLUS31205 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row 4 BLUS31205 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row 4 BLUS31205 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row 4 BLUS31205 01.06.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row 4 BLUS31205 01.06.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row The Third.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Saints Row The Third.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Samurai Dou 3 BLJS10039 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Samurai Dou 3 BLJS10039 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sengoku Musou 3 Z BLJM60313.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sengoku Musou 3 Z BLJM60313.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Shin Hayarigami 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Shin Hayarigami 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Shin Sangoku Musou 6 EMPIRES.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Shin Sangoku Musou 6 EMPIRES.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Shovel Knight NPUB31682 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Shovel Knight NPUB31682 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLES01504 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLES01504 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLES01504 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLES01504 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLJM60425 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLJM60425 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLUS30810 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLUS30810 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLUS30810 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 2 BLUS30810 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLES01504 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLES01504 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLJM60425 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLJM60425 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLUS30810 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLUS30810 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLUS30810 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill 3 BLUS30810 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill NPUJ00707.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Silent Hill NPUJ00707.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sine Mora NPEB00454 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sine Mora NPEB00454 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sine Mora NPUB30483 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sine Mora NPUB30483 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sleeping Dogs BLES01661 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sleeping Dogs BLES01661 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sleeping Dogs BLES01661 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sleeping Dogs BLES01661 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sleeping Dogs BLES01661 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Sleeping Dogs BLES01661 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Smash Cars NPUB30097 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Smash Cars NPUB30097 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Soul Calibur IV BLJS10026.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Soul Calibur IV BLJS10026.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Soul Calibur IV.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Soul Calibur IV.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Space Hulk NPUB31662 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Space Hulk NPUB31662 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Splatterhouse BLES01120 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Splatterhouse BLES01120 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Strider NPUB31139 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Strider NPUB31139 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tales Of Zestieria BLJS93020.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tales Of Zestieria BLJS93020.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLES00635 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLES00635 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLJS10067 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLJS10067 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLJS10067 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLJS10067 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLJS50017 02.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6 BLJS50017 02.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tekken 6.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Terraria BLES01938 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Terraria BLES01938 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Terraria BLJS10222 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Terraria BLJS10222 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/The Cube BLES01471 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/The Cube BLES01471 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/The Revenge Of Shinobi NPEB00413 01.00.ncl: -------------------------------------------------------------------------------- 1 | Unlimited Life Energy 2 | 0 3 | CMbl4 4 | 0 31A7E7BB 08 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Thexder NEO NPEB00173 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Thexder NEO NPEB00173 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Thief BLES01982 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Thief BLES01982 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Thief BLES01982 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Thief BLES01982 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Time And Eternity BLES01848.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Time And Eternity BLES01848.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tokyo Jungle BCJS30069 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tokyo Jungle BCJS30069 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tokyo Jungle NPUA80523 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tokyo Jungle NPUA80523 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tomb Raider BLJM60557 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tomb Raider BLJM60557 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tomb Raider BLUS31036 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Tomb Raider BLUS31036 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Top Spin 4 BLUS30427 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Top Spin 4 BLUS30427 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Top Spin 4.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Top Spin 4.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Trine 2 NPEB00668 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Trine 2 NPEB00668 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Trine NPEB00100 01.03.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Trine NPEB00100 01.03.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Two Worlds II BLES00845 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Two Worlds II BLES00845 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Ultimate Marvel Vs Capcom 3 BLJM60383 BLUS30787 01.03.ncl: -------------------------------------------------------------------------------- 1 | P2 CPU Stands Still 2 | 0 3 | xtatu 4 | 0 0018B780 409E0154 5 | # -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Valkyria Chronicles BLUS30196.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Valkyria Chronicles BLUS30196.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Valkyria Chronicles.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Valkyria Chronicles.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vampire Rain Altered Species.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vampire Rain Altered Species.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vampire Rain BLJM60060 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vampire Rain BLJM60060 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vanquish BLES00927 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vanquish BLES00927 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vanquish BLJM60227 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vanquish BLJM60227 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vanquish BLUS30543 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Vanquish BLUS30543 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Venetica BLUS30636 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Venetica BLUS30636 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Watch_Dogs BLES01854 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Watch_Dogs BLES01854 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Watch_Dogs BLES01854 01.02.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Watch_Dogs BLES01854 01.02.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Watchmen The End Is Nigh.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Watchmen The End Is Nigh.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Way Of The Samurai 3.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Way Of The Samurai 3.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Wet BLES00707 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Wet BLES00707 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Wolfenstein BLUS30298 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Wolfenstein BLUS30298 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/X-Blades BLJM60149 01.01.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/X-Blades BLJM60149 01.01.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/X-Men Arcade NPUB30320 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/X-Men Arcade NPUB30320 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 3 BLUS30494 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 3 BLUS30494 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 3.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 3.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 4 BLUS30643 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 4 BLUS30643 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 4 JPN.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 4 JPN.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 4 NTSC PAL.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/Yakuza 4 NTSC PAL.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/de Blob 2 BLUS30559 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/de Blob 2 BLUS30559 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/inFamous 2 BCES01443 01.04.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/inFamous 2 BCES01443 01.04.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/inFamous BCUS98119 01.00.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/USERLIST/inFamous BCUS98119 01.00.ncl -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/artemis_ps3.sprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/artemis_ps3.sprx -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_355C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_355C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_355D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_355D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_421C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_421C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_421D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_421D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_430C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_430C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_430D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_430D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_431C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_431C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_440C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_440C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_441C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_441C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_441D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_441D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_446C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_446C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_446D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_446D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_450C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_450C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_450D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_450D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_453C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_453C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_453D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_453D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_455C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_455C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_455D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_455D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_460C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_460C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_460D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_460D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_465C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_465C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_465D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_465D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_466C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_466C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_466D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_466D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_470C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_470C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_470D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_470D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_475C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_475C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_475D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_475D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_476C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_476C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_476D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mamba_476D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_355C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_355C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_355D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_355D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_421C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_421C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_421D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_421D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_430C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_430C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_430D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_430D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_431C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_431C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_440C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_440C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_441C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_441C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_441D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_441D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_446C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_446C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_446D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_446D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_450C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_450C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_450D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_450D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_453C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_453C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_453D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_453D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_455C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_455C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_455D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_455D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_460C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_460C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_460D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_460D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_465C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_465C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_465D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_465D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_466C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_466C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_466D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_466D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_470C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_470C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_470D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_470D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_475C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_475C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_475D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_475D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_476C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_476C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_476D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_476D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_478C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_478C.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_478D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/pkgfiles/USRDIR/payloads/mpl_payload_478D.bin -------------------------------------------------------------------------------- /ArtemisPS3-GUI/sfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/sfo.xml -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/codes.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/common.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/lv2_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/lv2_utils.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/main.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/mamba_prx_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/mamba_prx_loader.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/menu_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/menu_about.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/menu_cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/menu_cheats.c -------------------------------------------------------------------------------- /ArtemisPS3-GUI/src/menu_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-GUI/src/menu_options.c -------------------------------------------------------------------------------- /ArtemisPS3-PRX/ArtemisPS3-PRX.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/ArtemisPS3-PRX.vcxproj -------------------------------------------------------------------------------- /ArtemisPS3-PRX/ArtemisPS3-PRX.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/ArtemisPS3-PRX.vcxproj.filters -------------------------------------------------------------------------------- /ArtemisPS3-PRX/ArtemisPS3-PRX.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/ArtemisPS3-PRX.vcxproj.user -------------------------------------------------------------------------------- /ArtemisPS3-PRX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/Makefile -------------------------------------------------------------------------------- /ArtemisPS3-PRX/PSL1GHTBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/PSL1GHTBuilder.exe -------------------------------------------------------------------------------- /ArtemisPS3-PRX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/README.md -------------------------------------------------------------------------------- /ArtemisPS3-PRX/artemis_ps3.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/artemis_ps3.prx -------------------------------------------------------------------------------- /ArtemisPS3-PRX/artemis_ps3.sprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/artemis_ps3.sprx -------------------------------------------------------------------------------- /ArtemisPS3-PRX/artemis_ps3.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/artemis_ps3.sym -------------------------------------------------------------------------------- /ArtemisPS3-PRX/asmcode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/asmcode.s -------------------------------------------------------------------------------- /ArtemisPS3-PRX/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/assembly.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/common.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/data/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/data/keys -------------------------------------------------------------------------------- /ArtemisPS3-PRX/data/ldr_curves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/data/ldr_curves -------------------------------------------------------------------------------- /ArtemisPS3-PRX/data/vsh_curves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/data/vsh_curves -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/allocator.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/esecron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/esecron.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/game_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/game_plugin.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/libcrashdump_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/libcrashdump_system.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/paf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/paf.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/pngdec_ppuonly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/pngdec_ppuonly.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/rec_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/rec_plugin.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/sdk.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/stdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/stdc.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/sys_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/sys_io.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/sys_prx_for_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/sys_prx_for_user.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/vsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/vsh.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/vsh_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/vsh_exports.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/vshmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/vshmain.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/vshtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/vshtask.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/xregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/xregistry.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/inc/xsetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/inc/xsetting.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/liballocator_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/liballocator_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libcrashdump_system_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libcrashdump_system_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libesecron_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libesecron_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libpaf_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libpaf_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libpngdec_ppuonly_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libpngdec_ppuonly_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libsdk_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libsdk_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libstdc_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libstdc_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libsysPrxForUser_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libsysPrxForUser_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libsys_io_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libsys_io_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libvsh_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libvsh_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libvshmain_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libvshmain_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libvshtask_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libvshtask_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/lib/libxsetting_export_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/lib/libxsetting_export_stub.a -------------------------------------------------------------------------------- /ArtemisPS3-PRX/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/libc.c -------------------------------------------------------------------------------- /ArtemisPS3-PRX/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/main.c -------------------------------------------------------------------------------- /ArtemisPS3-PRX/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/mem.c -------------------------------------------------------------------------------- /ArtemisPS3-PRX/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/mem.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/misc.c -------------------------------------------------------------------------------- /ArtemisPS3-PRX/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/misc.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/printf.c -------------------------------------------------------------------------------- /ArtemisPS3-PRX/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/printf.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/ps3mapi_ps3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/ps3mapi_ps3_lib.c -------------------------------------------------------------------------------- /ArtemisPS3-PRX/ps3mapi_ps3_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/ps3mapi_ps3_lib.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/scetool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/scetool.exe -------------------------------------------------------------------------------- /ArtemisPS3-PRX/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/types.h -------------------------------------------------------------------------------- /ArtemisPS3-PRX/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3-PRX/zlib1.dll -------------------------------------------------------------------------------- /ArtemisPS3.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3.sdf -------------------------------------------------------------------------------- /ArtemisPS3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3.sln -------------------------------------------------------------------------------- /ArtemisPS3.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/ArtemisPS3.v12.suo -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/screenshots/about.png -------------------------------------------------------------------------------- /screenshots/cheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/screenshots/cheats.png -------------------------------------------------------------------------------- /screenshots/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/screenshots/games.png -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dnawrkshp/ArtemisPS3/HEAD/screenshots/main.png --------------------------------------------------------------------------------