Files on the PS3: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
(32 intermediate revisions by 8 users not shown)
Line 1: Line 1:
[[Category:Software]]
= Files and storage on the PS3 =
= Files and storage on the PS3 =


== Mountpoints ==
== Mountpoints ==


BDrom drive (discfs):
;BDrom drive (discfs), (cfs):
*dev_bdvd
*dev_bdvd // (SYS_DEV_BDVD), (CELL_FS_IOS:BDVD_DRIVE / CELL_FS_UDF / CELL_FS_ISO9660.-PLAYSTATION3)
*dev_bdvd1 // (SYS_DEV_BDVD1), (connect to SB1ATA)
*dev_ps2disc
*dev_ps2disc
*dev_ps2disc1
*dev_ps2disc1


Dev flash:
;Dev flash:
*dev_flash
*dev_flash
*dev_flash2
*dev_flash2
*dev_flash3
*dev_flash3


Harddisc (cfs):
;Harddisc (cfs):
*dev_hdd0 (game data)
*dev_hdd0 (game data) // (SYS_DEV_HDD0)
*dev_hdd1 (system cache: 2GB fixed size FAT32)
*dev_hdd1 (system cache: 2GB fixed size FAT32) // (SYS_DEV_HDD1)
*dev_hdd2 (Connected to the Southbridge SB0ATA Port (used for BD Drive/ Sata->Pata Adapter)) // (SYS_DEV_HDD2)
*dev_simple_hdd0


Multicardreader (fat):
;Multicardreader (fat), (cfs):
*dev_cf
*dev_cf // (SYS_DEV_CF), (CELL_FS_IOS:COMPACT_FLASH)
*dev_ms
*dev_ms // (SYS_DEV_MS), (CELL_FS_IOS:MEMORY_STICK)
*dev_sd
*dev_sd // (SYS_DEV_SD), (CELL_FS_IOS:SD_CARD)


USB-Mass-Storage device (fat):
;USB-Mass-Storage device (fat)/(cfs):
*dev_usb
*dev_usb // (SYS_DEV_USB)
*dev_usb000 // (CELL_FS_IOS:USB_MASS_STORAGE000)
*dev_usb001 // (CELL_FS_IOS:USB_MASS_STORAGE001)
*dev_usb002 // (CELL_FS_IOS:USB_MASS_STORAGE002)
*dev_usb003 // (CELL_FS_IOS:USB_MASS_STORAGE003)
*dev_usb004 // (CELL_FS_IOS:USB_MASS_STORAGE004)
*dev_usb005 // (CELL_FS_IOS:USB_MASS_STORAGE005)


Hostdevices (hostfs):
;Hostdevices (hostfs):
*app_home (home directory)
*app_home (home directory) // (SYS_APP_HOME) // PSEUDOFS
*host_root (absolute directory)
*host_root (absolute directory) // (SYS_HOST_ROOT)


;Flash (NAND/NOR):
* CELL_FS_IOS:BUILTIN_FLSH1
* NAND_FLASH_DEV_ID<!--//lv2_storage_get_device_info(NAND_FLASH_DEV_ID, &info);//-->
;unknown yet:
* dev_SYSTEM
* dev_MCA (used for [http://www.ps3devwiki.com/wiki/PlayStation_Card_Adapter memorycard adapter] )
* dummy_growfs_cfs
;archaic (CEB-1000/2000 series era):
* CELL_FS_PSEUDO
* CELL_FS_NETFS
=== from lv2diag.self ===
tons of CELL_FS_* <!--// CELL_FS //--> references:
<pre>CELL_FS_UFS
CELL_FS_FAT
CELL_FS_IOS:BUILTIN_FLASH
CELL_FS_IOS:BUILTIN_FLSH1
CELL_FS_IOS:BUILTIN_FLSH2
CELL_FS_IOS:BUILTIN_FLSH3
CELL_FS_IOS:BUILTIN_FLSH4
CELL_FS_IOS:COMPACT_FLASH
CELL_FS_IOS:MEMORY_STICK
CELL_FS_IOS:PATA0_BDVD_DRIVE
CELL_FS_IOS:PATA0_HDD_DRIVE
CELL_FS_IOS:PATA1_BDVD_DRIVE
CELL_FS_IOS:PATA1_HDD_DRIVE
CELL_FS_IOS:SD_CARD
CELL_FS_IOS:USB_MASS_STORAGE
CELL_FS_IOS:USB_MASS_STORAGE000
CELL_FS_IOS:USB_MASS_STORAGE001
CELL_FS_IOS:USB_MASS_STORAGE002
CELL_FS_IOS:USB_MASS_STORAGE003
CELL_FS_IOS:USB_MASS_STORAGE004
CELL_FS_IOS:USB_MASS_STORAGE005
CELL_FS_ISO9660
CELL_FS_SIMPLEFS
CELL_FS_UDF</pre>
===Link===
Tutorial : [[http://www.psxbrew.net/wiki/Mount_and_Unmount Mount and Unmount a Filesystem]]
===user mode mount===
int sys_fs_mount(char const* Device_Name, char const* Device_File_System, char const* Device_Path, int, int, int, char const**)
Device Names can be:
CELL_FS_IOS:                 
CELL_FS_IOS:ATA_HDD           
CELL_FS_IOS:BDVD_DRIVE       
CELL_FS_IOS:BUILTIN_FLASH     
CELL_FS_IOS:BUILTIN_FLSH1     
CELL_FS_IOS:BUILTIN_FLSH2     
CELL_FS_IOS:BUILTIN_FLSH3     
CELL_FS_IOS:BUILTIN_FLSH4     
CELL_FS_IOS:COMPACT_FLASH     
CELL_FS_IOS:MEMORY_STICK     
CELL_FS_IOS:PATA0_BDVD_DRIVE 
CELL_FS_IOS:PATA0_HDD_DRIVE   
CELL_FS_IOS:PATA1_BDVD_DRIVE 
CELL_FS_IOS:PATA1_HDD_DRIVE   
CELL_FS_IOS:SD_CARD           
CELL_FS_IOS:USB_MASS_STORAGE
CELL_FS_IOS:USB_MASS_STORAGE000
CELL_FS_IOS:USB_MASS_STORAGE001
CELL_FS_IOS:USB_MASS_STORAGE002
CELL_FS_IOS:USB_MASS_STORAGE003
CELL_FS_IOS:USB_MASS_STORAGE004
CELL_FS_IOS:USB_MASS_STORAGE005
CELL_FS_UTILITY:             
CELL_FS_UTILITY:HDD           
CELL_FS_UTILITY:HDD0         
CELL_FS_UTILITY:HDD1         
CELL_FS_UTILITY:HDD2         
CELL_FS_PATH:%s                 
CELL_FS_LOOP:                 
CELL_FS_PSEUDO:               
CELL_FS_HOSTFS:               
CELL_FS_ADMINFS:             
CELL_FS_DUMMY:               
CELL_FS_DUMMY:/               
Device File System can be:
CELL_FS_ADMINFS               
CELL_FS_DUMMYFS               
CELL_FS_EFAT                 
CELL_FS_FAT                   
CELL_FS_HOSTFS               
CELL_FS_ISO9660               
CELL_FS_PFAT                 
CELL_FS_PSEUDO               
CELL_FS_SIMPLE               
CELL_FS_SIMPLEFS             
CELL_FS_UDF                   
CELL_FS_UFS                   
dummy
Example: mount("CELL_FS_PATH:/dev_hdd0/game/ABCD00000","dummy", "/dev_bdvd/PS3_GAME",0,0,0,0)
== Folder reservation for External MASS Storage Devices ==
├───MUSIC
├───PICTURE
├───PS3
│    ├───EXPORT
│    │        ├───BACKUP (created via PS3 backup feature; only {{CEX}}/{{Shop}})
│    │        │        └───200911131808 (date backup was performed, format=YYYYMMDDHHMM)
│    │        │                      ├───[[archive.dat]]
│    │        │                      ├───archive_00.dat
│    │        │                      ├───archive_[XX].dat
│    │        │                      ├───archive2.dat
│    │        │                      ├───archive2_00.dat
│    │        │                      └───archive2_[XX].dat
│    │        └───PSV (PS1/PS2 Saves)
│    ├───OTHEROS (Used to Install OtherOS; not on {{ARC}}/{{DECR}}/{{SD}})
│    ├───SAVEDATA (PS3 Saves; not on {{ARC}})
│    ├───THEME (XMB Theme Files)
│    └───UPDATE (PS3UPDAT.PUP firmware updates {{CEX}}/{{Shop}}/{{TEST}}/{{DECR}}/{{SD}}/{{DEX}})
│              └───SEARCH (only {{DECR}}/{{SD}} =&gt;2.50 or later)
└───VIDEO


----
----
== PS3 Disc Game Structure ==
{{PS3 Disc Game Structure}}


== Installing packages ==
== Installing packages ==
Line 50: Line 186:




== File Hashes ==
For some undisclosed reason I needed this, though others might benefit as well :)


=== Retail/CEX ===
----
 
== dev_flash Device Archives [3.55 Retail/CEX] ==
 
dev_flash & dev_flash3 archive contents
├── dev_flash
│  ├── bdplayer
│  │  ├── AacsModule.spu.isoself
│  │  ├── bdj.self
│  │  ├── bdjstack
│  │  │  ├── bdjstack.jar
│  │  │  ├── classes.zip
│  │  │  ├── font.properties
│  │  │  ├── java.security
│  │  │  ├── pbpcell.properties
│  │  │  ├── pbpuiformhp.jar
│  │  │  └── SCE-PS3-RD-R-LATIN.TTF
│  │  ├── bdp_BDMV.self
│  │  ├── bdp_BDVD.self
│  │  ├── CprmModule.spu.isoself
│  │  ├── CssModule.spu.isoself
│  │  ├── gpu.sprx
│  │  └── SYS
│  │      ├── CapFont_MARU.cbf.LZRC
│  │      └── CapSound.pcm.LZRC
│  ├── data
│  │  ├── cert
│  │  │  ├── CA01.cer
│  │  │  ├── CA02.cer
│  │  │  ├── CA03.cer
│  │  │  ├── CA04.cer
│  │  │  ├── CA05.cer
│  │  │  ├── CA06.cer
│  │  │  ├── CA07.cer
│  │  │  ├── CA08.cer
│  │  │  ├── CA09.cer
│  │  │  ├── CA10.cer
│  │  │  ├── CA11.cer
│  │  │  ├── CA12.cer
│  │  │  ├── CA13.cer
│  │  │  ├── CA14.cer
│  │  │  ├── CA15.cer
│  │  │  ├── CA16.cer
│  │  │  ├── CA17.cer
│  │  │  ├── CA18.cer
│  │  │  ├── CA19.cer
│  │  │  ├── CA20.cer
│  │  │  ├── CA21.cer
│  │  │  ├── CA22.cer
│  │  │  ├── CA23.cer
│  │  │  ├── CA24.cer
│  │  │  ├── CA25.cer
│  │  │  ├── CA26.cer
│  │  │  ├── CA27.cer
│  │  │  ├── CA28.cer
│  │  │  ├── CA29.cer
│  │  │  ├── CA30.cer
│  │  │  ├── CA31.cer
│  │  │  ├── CA32.cer
│  │  │  ├── CA33.cer
│  │  │  ├── CA34.cer
│  │  │  ├── CA35.cer
│  │  │  └── CA36.cer
│  │  ├── dic
│  │  │  ├── aadList.dat
│  │  │  ├── apotp.dic
│  │  │  ├── atokp.dic
│  │  │  ├── entertainment_haiyu_nihon.aad
│  │  │  ├── entertainment_owarai_TV_talent.aad
│  │  │  ├── face_facemark_i.aad
│  │  │  ├── music_2000_2006spring_jpop_art.aad
│  │  │  ├── Zi8DatDA.z8d
│  │  │  ├── Zi8DatDE.z8d
│  │  │  ├── Zi8DatENAM.z8d
│  │  │  ├── Zi8DatENUK.z8d
│  │  │  ├── Zi8DatESEU.z8d
│  │  │  ├── Zi8DatESSA.z8d
│  │  │  ├── Zi8DatFI.z8d
│  │  │  ├── Zi8DatFRCA.z8d
│  │  │  ├── Zi8DatFREU.z8d
│  │  │  ├── Zi8DatIT.z8d
│  │  │  ├── Zi8DatNL.z8d
│  │  │  ├── Zi8DatNO.z8d
│  │  │  ├── Zi8DatPL.z8d
│  │  │  ├── Zi8DatPTBZ.z8d
│  │  │  ├── Zi8DatPTEU.z8d
│  │  │  ├── Zi8DatRU.z8d
│  │  │  ├── Zi8DatSV.z8d
│  │  │  ├── Zi8DatZH_HK.z8d
│  │  │  ├── Zi8DatZH_TW.z8d
│  │  │  ├── Zi8DatZH.z8d
│  │  │  └── Zi8URLOEM.dat
│  │  └── font
│  │      ├── SCE-PS3-CP-R-KANA.TTF
│  │      ├── SCE-PS3-DH-R-CGB.TTF
│  │      ├── SCE-PS3-MT-BI-LATIN.TTF
│  │      ├── SCE-PS3-MT-B-LATIN.TTF
│  │      ├── SCE-PS3-MT-I-LATIN.TTF
│  │      ├── SCE-PS3-MT-R-LATIN.TTF
│  │      ├── SCE-PS3-NR-B-JPN.TTF
│  │      ├── SCE-PS3-NR-L-JPN.TTF
│  │      ├── SCE-PS3-NR-R-EXT.TTF
│  │      ├── SCE-PS3-NR-R-JPN.TTF
│  │      ├── SCE-PS3-RD-BI-LATIN.TTF
│  │      ├── SCE-PS3-RD-B-LATIN2.TTF
│  │      ├── SCE-PS3-RD-B-LATIN.TTF
│  │      ├── SCE-PS3-RD-I-LATIN.TTF
│  │      ├── SCE-PS3-RD-LI-LATIN.TTF
│  │      ├── SCE-PS3-RD-L-LATIN2.TTF
│  │      ├── SCE-PS3-RD-L-LATIN.TTF
│  │      ├── SCE-PS3-RD-R-LATIN2.TTF
│  │      ├── SCE-PS3-RD-R-LATIN.TTF
│  │      ├── SCE-PS3-SR-R-EXT.TTF
│  │      ├── SCE-PS3-SR-R-JPN.TTF
│  │      ├── SCE-PS3-SR-R-LATIN2.TTF
│  │      ├── SCE-PS3-SR-R-LATIN.TTF
│  │      ├── SCE-PS3-VR-R-LATIN2.TTF
│  │      ├── SCE-PS3-VR-R-LATIN.TTF
│  │      ├── SCE-PS3-YG-B-KOR.TTF
│  │      ├── SCE-PS3-YG-L-KOR.TTF
│  │      └── SCE-PS3-YG-R-KOR.TTF
│  ├── ps1emu
│  │  ├── ps1_emu.self
│  │  ├── ps1_netemu.self
│  │  ├── ps1_newemu.self
│  │  └── ps1_rom.bin
│  ├── ps2emu
│  │  ├── ps2_emu.self
│  │  ├── ps2_gxemu.self
│  │  └── ps2_softemu.self
│  ├── pspemu
│  │  ├── flash0
│  │  │  ├── font
│  │  │  │  ├── gb3s1518.bwfon
│  │  │  │  ├── imagefont.bin
│  │  │  │  ├── jpn0.pgf
│  │  │  │  ├── kr0.pgf
│  │  │  │  ├── ltn0.pgf
│  │  │  │  ├── ltn10.pgf
│  │  │  │  ├── ltn11.pgf
│  │  │  │  ├── ltn12.pgf
│  │  │  │  ├── ltn13.pgf
│  │  │  │  ├── ltn14.pgf
│  │  │  │  ├── ltn15.pgf
│  │  │  │  ├── ltn1.pgf
│  │  │  │  ├── ltn2.pgf
│  │  │  │  ├── ltn3.pgf
│  │  │  │  ├── ltn4.pgf
│  │  │  │  ├── ltn5.pgf
│  │  │  │  ├── ltn6.pgf
│  │  │  │  ├── ltn7.pgf
│  │  │  │  ├── ltn8.pgf
│  │  │  │  └── ltn9.pgf
│  │  │  ├── logo
│  │  │  │  └── minis_logo.png
│  │  │  └── usermodule
│  │  │      ├── libfont.prx
│  │  │      ├── libheap.prx
│  │  │      └── libpsmfplayer.prx
│  │  ├── psp_emulator.self
│  │  ├── psp_translator.self
│  │  └── release
│  │      ├── adhoc_vshlib.sprx
│  │      ├── audio.sprx
│  │      ├── avcodec.sprx
│  │      ├── ctrl.sprx
│  │      ├── emulator_api.sprx
│  │      ├── emulator_drm.sprx
│  │      ├── g729.sprx
│  │      ├── ifhandle.sprx
│  │      ├── impose.sprx
│  │      ├── iofilemgr_iso.sprx
│  │      ├── iofilemgr.sprx
│  │      ├── isofs.sprx
│  │      ├── libaac.sprx
│  │      ├── libatrac3plus.sprx
│  │      ├── libmp3.sprx
│  │      ├── libmp4.sprx
│  │      ├── mediaman.sprx
│  │      ├── mpeg.sprx
│  │      ├── np_auth.sprx
│  │      ├── np_service.sprx
│  │      ├── np.sprx
│  │      ├── PEmuCoreLib.sprx
│  │      ├── psmf.sprx
│  │      ├── pspnet_adhoc_auth.sprx
│  │      ├── pspnet_adhocctl.sprx
│  │      ├── pspnet_adhoc_discover.sprx
│  │      ├── pspnet_adhoc_matching.sprx
│  │      ├── pspnet_adhoc.sprx
│  │      ├── pspnet_apctl.sprx
│  │      ├── pspnet_ap_dialog_dummy.sprx
│  │      ├── pspnet_inet.sprx
│  │      ├── pspnet_resolver.sprx
│  │      ├── pspnet.sprx
│  │      ├── rtc.sprx
│  │      ├── sascore.sprx
│  │      ├── sysmem.sprx
│  │      ├── threadman.sprx
│  │      ├── umd9660.sprx
│  │      ├── umdcache.sprx
│  │      ├── umdman.sprx
│  │      ├── usersystemlib.sprx
│  │      ├── vaudio.sprx
│  │      └── wlan.sprx
│  ├── sys
│  │  ├── external
│  │  │  ├── flashATRAC.pic
│  │  │  ├── flashMP3.pic
│  │  │  ├── libaacenc.sprx
│  │  │  ├── libaacenc_spurs.sprx
│  │  │  ├── libac3dec2.sprx
│  │  │  ├── libac3dec.sprx
│  │  │  ├── libad_async.sprx
│  │  │  ├── libad_billboard_util.sprx
│  │  │  ├── libad_core.sprx
│  │  │  ├── libadec2.sprx
│  │  │  ├── libadec_internal.sprx
│  │  │  ├── libadec.sprx
│  │  │  ├── libapostsrc_mini.sprx
│  │  │  ├── libasfparser2_astd.sprx
│  │  │  ├── libat3dec.sprx
│  │  │  ├── libatrac3plus.sprx
│  │  │  ├── libatxdec2.sprx
│  │  │  ├── libatxdec.sprx
│  │  │  ├── libaudio.sprx
│  │  │  ├── libavcdec.sprx
│  │  │  ├── libavcenc_small.sprx
│  │  │  ├── libavcenc.sprx
│  │  │  ├── libavchatjpgdec.sprx
│  │  │  ├── libcamera.sprx
│  │  │  ├── libcelp8dec.sprx
│  │  │  ├── libcelp8enc.sprx
│  │  │  ├── libcelpdec.sprx
│  │  │  ├── libcelpenc.sprx
│  │  │  ├── libddpdec.sprx
│  │  │  ├── libdivxdec.sprx
│  │  │  ├── libdmuxpamf.sprx
│  │  │  ├── libdmux.sprx
│  │  │  ├── libfiber.sprx
│  │  │  ├── libfontFT.sprx
│  │  │  ├── libfont.sprx
│  │  │  ├── libfreetype.sprx
│  │  │  ├── libfreetypeTT.sprx
│  │  │  ├── libfs_155.sprx
│  │  │  ├── libfs.sprx
│  │  │  ├── libgcm_sys.sprx
│  │  │  ├── libgem.sprx
│  │  │  ├── libgifdec.sprx
│  │  │  ├── libhttp.sprx
│  │  │  ├── libio.sprx
│  │  │  ├── libjpgdec.sprx
│  │  │  ├── libjpgenc.sprx
│  │  │  ├── libkey2char.sprx
│  │  │  ├── libl10n.sprx
│  │  │  ├── liblv2coredump.sprx
│  │  │  ├── liblv2dbg_for_cex.sprx
│  │  │  ├── liblv2.sprx
│  │  │  ├── libm2bcdec.sprx
│  │  │  ├── libm4aacdec2ch.sprx
│  │  │  ├── libm4aacdec.sprx
│  │  │  ├── libm4hdenc.sprx
│  │  │  ├── libm4venc.sprx
│  │  │  ├── libmedi.sprx
│  │  │  ├── libmic.sprx
│  │  │  ├── libmp3dec.sprx
│  │  │  ├── libmp4.sprx
│  │  │  ├── libmpl1dec.sprx
│  │  │  ├── libnetctl.sprx
│  │  │  ├── libnet.sprx
│  │  │  ├── libpamf.sprx
│  │  │  ├── libpngdec.sprx
│  │  │  ├── libpngenc.sprx
│  │  │  ├── libresc.sprx
│  │  │  ├── librtc.sprx
│  │  │  ├── librudp.sprx
│  │  │  ├── libsail_avi.sprx
│  │  │  ├── libsail_rec.sprx
│  │  │  ├── libsail.sprx
│  │  │  ├── libsjvtd.sprx
│  │  │  ├── libsmvd2.sprx
│  │  │  ├── libsmvd4.sprx
│  │  │  ├── libspurs_jq.sprx
│  │  │  ├── libsre.sprx
│  │  │  ├── libssl.sprx
│  │  │  ├── libsync2.sprx
│  │  │  ├── libsysmodule.sprx
│  │  │  ├── libsysutil_ap.sprx
│  │  │  ├── libsysutil_authdialog.sprx
│  │  │  ├── libsysutil_avc2.sprx
│  │  │  ├── libsysutil_avc_ext.sprx
│  │  │  ├── libsysutil_avconf_ext.sprx
│  │  │  ├── libsysutil_bgdl.sprx
│  │  │  ├── libsysutil_dtcp_ip.sprx
│  │  │  ├── libsysutil_game_exec.sprx
│  │  │  ├── libsysutil_game.sprx
│  │  │  ├── libsysutil_imejp.sprx
│  │  │  ├── libsysutil_misc.sprx
│  │  │  ├── libsysutil_music_decode.sprx
│  │  │  ├── libsysutil_music_export.sprx
│  │  │  ├── libsysutil_music.sprx
│  │  │  ├── libsysutil_np2.sprx
│  │  │  ├── libsysutil_np_clans.sprx
│  │  │  ├── libsysutil_np_commerce2.sprx
│  │  │  ├── libsysutil_np_eula.sprx
│  │  │  ├── libsysutil_np_installer.sprx
│  │  │  ├── libsysutil_np_sns.sprx
│  │  │  ├── libsysutil_np.sprx
│  │  │  ├── libsysutil_np_trophy.sprx
│  │  │  ├── libsysutil_np_tus.sprx
│  │  │  ├── libsysutil_np_util.sprx
│  │  │  ├── libsysutil_oskdialog_ext.sprx
│  │  │  ├── libsysutil_pesm.sprx
│  │  │  ├── libsysutil_photo_decode.sprx
│  │  │  ├── libsysutil_photo_export.sprx
│  │  │  ├── libsysutil_photo_import.sprx
│  │  │  ├── libsysutil_photo_network_sharing.sprx
│  │  │  ├── libsysutil_print.sprx
│  │  │  ├── libsysutil_rec.sprx
│  │  │  ├── libsysutil_remoteplay.sprx
│  │  │  ├── libsysutil_rtcalarm.sprx
│  │  │  ├── libsysutil_savedata_psp.sprx
│  │  │  ├── libsysutil_savedata.sprx
│  │  │  ├── libsysutil_screenshot.sprx
│  │  │  ├── libsysutil_search.sprx
│  │  │  ├── libsysutil.sprx
│  │  │  ├── libsysutil_storagedata.sprx
│  │  │  ├── libsysutil_subdisplay.sprx
│  │  │  ├── libsysutil_syschat.sprx
│  │  │  ├── libsysutil_sysconf_ext.sprx
│  │  │  ├── libsysutil_userinfo.sprx
│  │  │  ├── libsysutil_video_export.sprx
│  │  │  ├── libsysutil_video_player.sprx
│  │  │  ├── libsysutil_video_upload.sprx
│  │  │  ├── libusbd.sprx
│  │  │  ├── libusbpspcm.sprx
│  │  │  ├── libvdec.sprx
│  │  │  ├── libvoice.sprx
│  │  │  ├── libvpost2.sprx
│  │  │  ├── libvpost.sprx
│  │  │  └── libwmadec.sprx
│  │  └── internal
│  │      ├── eurus_fw.bin
│  │      ├── libapostsrc_eqalc.sprx
│  │      ├── libapostsrc.sprx
│  │      ├── libasfparser2.sprx
│  │      ├── libasfparser.sprx
│  │      ├── libat3enc.sprx
│  │      ├── libat3enc_spurs.sprx
│  │      ├── libatxdecmod.sprx
│  │      ├── libatxenc.sprx
│  │      ├── libddlenc2.sprx
│  │      ├── libddpdec.sprx
│  │      ├── libdivx311dec.sprx
│  │      ├── libdsee.sprx
│  │      ├── libdtsdec.sprx
│  │      ├── libdtsenc2.sprx
│  │      ├── libdtshdcoredec.sprx
│  │      ├── libdtshddec.sprx
│  │      ├── libdtslbrdec.sprx
│  │      ├── libexif.sprx
│  │      ├── libfs_utility2.sprx
│  │      ├── libfs_utility_full.sprx
│  │      ├── libfs_utility_init.sprx
│  │      ├── libfs_utility.sprx
│  │      ├── libft2d.sprx
│  │      ├── libm2aacdec.sprx
│  │      ├── libm4aacdec2chmod2.sprx
│  │      ├── libm4aacdec2chmod.sprx
│  │      ├── libmcadpt.sprx
│  │      ├── libmp3enc.sprx
│  │      ├── libmp3sdec.sprx
│  │      ├── libmvcdec.sprx
│  │      ├── libsvc1d.sprx
│  │      ├── libsysutil_game_ps1emu.sprx
│  │      ├── libsysutil_sysconf_ps1emu.sprx
│  │      ├── libtiffdec.sprx
│  │      ├── libtrhddec.sprx
│  │      ├── libvoice_internal.sprx
│  │      ├── libvpost.sprx
│  │      ├── libwmadec.sprx
│  │      ├── sys_audio.self
│  │      ├── sys_audio.sprx
│  │      ├── sys_init_osd.self
│  │      └── sysvoice_modules.sprx
│  └── vsh
│      ├── etc
│      │  ├── index.dat
│      │  ├── layout_factor_table_1080.txt
│      │  ├── layout_factor_table_272.txt
│      │  ├── layout_factor_table_480.txt
│      │  ├── layout_factor_table_720.txt
│      │  ├── layout_grid_table_1080.txt
│      │  ├── layout_grid_table_272.txt
│      │  ├── layout_grid_table_480.txt
│      │  ├── layout_grid_table_720.txt
│      │  ├── print
│      │  │  └── epson.pmd
│      │  └── version.txt
│      ├── module
│      │  ├── ap_plugin.sprx
│      │  ├── audioplayer_plugin_dummy.sprx
│      │  ├── audioplayer_plugin_mini.sprx
│      │  ├── audioplayer_plugin.sprx
│      │  ├── auth_plugin.sprx
│      │  ├── autodownload_plugin.sprx
│      │  ├── avc2_game_plugin.sprx
│      │  ├── avc2_game_video_plugin.sprx
│      │  ├── avc2_text_plugin.sprx
│      │  ├── avc_plugin.sprx
│      │  ├── avc_util.sprx
│      │  ├── basic_plugins.sprx
│      │  ├── bdp_disccheck_plugin.sprx
│      │  ├── bdp_plugin.sprx
│      │  ├── bdp_storage_plugin.sprx
│      │  ├── category_setting_plugin.sprx
│      │  ├── custom_render_plugin.sprx
│      │  ├── data_copy_plugin.sprx
│      │  ├── deviceconf_plugin.sprx
│      │  ├── divxdrm.sprx
│      │  ├── dlna_plugin.sprx
│      │  ├── download_plugin.sprx
│      │  ├── dtcpip_util.sprx
│      │  ├── edy_plugin.sprx
│      │  ├── esehttp.sprx
│      │  ├── eseibrd.sprx
│      │  ├── eseidle.sprx
│      │  ├── eselock.sprx
│      │  ├── eula_cddb_plugin.sprx
│      │  ├── eula_hcopy_plugin.sprx
│      │  ├── eula_net_plugin.sprx
│      │  ├── explore_category_friend.sprx
│      │  ├── explore_category_game.sprx
│      │  ├── explore_category_music.sprx
│      │  ├── explore_category_network.sprx
│      │  ├── explore_category_photo.sprx
│      │  ├── explore_category_psn.sprx
│      │  ├── explore_category_sysconf.sprx
│      │  ├── explore_category_tv.sprx
│      │  ├── explore_category_user.sprx
│      │  ├── explore_category_video.sprx
│      │  ├── explore_plugin_ft.sprx
│      │  ├── explore_plugin_game.sprx
│      │  ├── explore_plugin_np.sprx
│      │  ├── explore_plugin.sprx
│      │  ├── faust_widget.sprx
│      │  ├── filecopy_plugin.sprx
│      │  ├── friendim_plugin.sprx
│      │  ├── friendml_plugin.sprx
│      │  ├── friendtrophy_plugin.sprx
│      │  ├── gamedata_plugin.sprx
│      │  ├── game_ext_plugin.sprx
│      │  ├── game_indicator_plugin.sprx
│      │  ├── gamelib_plugin.sprx
│      │  ├── gameupdate_plugin.sprx
│      │  ├── hknw_plugin.sprx
│      │  ├── idle_plugin.sprx
│      │  ├── ime_atok.sprx
│      │  ├── ime.sprx
│      │  ├── ime_zi.sprx
│      │  ├── kensaku_plugin.sprx
│      │  ├── libps2hdd.sprx
│      │  ├── libvideoSubsystem.sprx
│      │  ├── mcore.self
│      │  ├── mcore_tk.self
│      │  ├── mgvideo.self
│      │  ├── micon_lock_plugin.sprx
│      │  ├── mintx_client.sprx
│      │  ├── mms_cls.sprx
│      │  ├── mms_db_full.sprx
│      │  ├── mms_ext_full.sprx
│      │  ├── mms_ext_mini.sprx
│      │  ├── mms_maintenance.sprx
│      │  ├── mms_minimdimp_avi.sprx
│      │  ├── mms_minimdimp_dir_gamehdd.sprx
│      │  ├── mms_minimdimp_dir_npachive.sprx
│      │  ├── mms_minimdimp_dir_ps3savedata.sprx
│      │  ├── mms_minimdimp_jpeg.sprx
│      │  ├── mms_minimdimp_media_bdvd.sprx
│      │  ├── mms_minimdimp_media_cdda.sprx
│      │  ├── mms_minimdimp_media_cdrom.sprx
│      │  ├── mms_minimdimp_media_gamedisc.sprx
│      │  ├── mms_minimdimp_media_hdd.sprx
│      │  ├── mms_minimdimp_media_sacd.sprx
│      │  ├── mms_minimdimp_media_usbmass.sprx
│      │  ├── mms_minimdimp_mp3.sprx
│      │  ├── mms_minimdimp_mp4aac.sprx
│      │  ├── mms_minimdimp_mp4video.sprx
│      │  ├── mms_minimdimp_mpeg.sprx
│      │  ├── mms_minimdimp_msv.sprx
│      │  ├── mms_minimdimp_music_default.sprx
│      │  ├── mms_minimdimp_photo_default.sprx
│      │  ├── mms_minimdimp_png.sprx
│      │  ├── mms_minimdimp_riff.sprx
│      │  ├── mms_minimdimp_video_default.sprx
│      │  ├── mms_schema.sprx
│      │  ├── mms.sprx
│      │  ├── msmw1_aaconly.sprx
│      │  ├── msmw1_atraconly.sprx
│      │  ├── msmw1.sprx
│      │  ├── msmw2.sprx
│      │  ├── musicbrowser_plugin.sprx
│      │  ├── nas_plugin.sprx
│      │  ├── netconf_plugin.sprx
│      │  ├── newstore_effect.sprx
│      │  ├── newstore_plugin.sprx
│      │  ├── np_eula_plugin.sprx
│      │  ├── np_matching_plugin.sprx
│      │  ├── np_multisignin_plugin.sprx
│      │  ├── npsignin_plugin.sprx
│      │  ├── np_sns_plugin.sprx
│      │  ├── np_trophy_ingame.sprx
│      │  ├── np_trophy_plugin.sprx
│      │  ├── np_trophy_util.sprx
│      │  ├── onicore_child.self
│      │  ├── oskfullkeypanel_plugin.sprx
│      │  ├── oskpanel_plugin.sprx
│      │  ├── osk_plugin.sprx
│      │  ├── paf_ext.sprx
│      │  ├── paf_psjs.sprx
│      │  ├── paf_web.sprx
│      │  ├── pesm_plugin.sprx
│      │  ├── photolist_plugin.sprx
│      │  ├── photo_network_sharing_plugin.sprx
│      │  ├── photoupload_plugin.sprx
│      │  ├── photoviewer_plugin.sprx
│      │  ├── playlist_plugin.sprx
│      │  ├── post_nr.sprx
│      │  ├── poweroff_plugin.sprx
│      │  ├── premo_game_plugin.sprx
│      │  ├── premo_plugin.sprx
│      │  ├── print_canon_library.sprx
│      │  ├── print_dlna_library.sprx
│      │  ├── print_epson_library.sprx
│      │  ├── print_plugin.sprx
│      │  ├── profile_plugin.sprx
│      │  ├── ps3_savedata_plugin_game_mini.sprx
│      │  ├── ps3_savedata_plugin_game.sprx
│      │  ├── ps3_savedata_plugin_psp.sprx
│      │  ├── ps3_savedata_plugin.sprx
│      │  ├── qglbase.sprx
│      │  ├── qgl_canyon_app.sprx
│      │  ├── qgl_gaia_app.sprx
│      │  ├── raf.sprx
│      │  ├── rec_plugin.sprx
│      │  ├── regcam_plugin.sprx
│      │  ├── sacd_plugin.sprx
│      │  ├── sacd.sprx
│      │  ├── SacModule.spu.isoself
│      │  ├── scenefolder_plugin.sprx
│      │  ├── screenshot_plugin.sprx
│      │  ├── silk_nas.sprx
│      │  ├── silk_npflashplayer9.sprx
│      │  ├── silk_npflashplayer.sprx
│      │  ├── silk.sprx
│      │  ├── simple_music2_decode_plugin.sprx
│      │  ├── software_update_plugin.sprx
│      │  ├── soundvisualizer_plugin.sprx
│      │  ├── strviewer_plugin.sprx
│      │  ├── swagner.self
│      │  ├── swreset.self
│      │  ├── sysconf_plugin.sprx
│      │  ├── thumthum_plugin.sprx
│      │  ├── upload_util.sprx
│      │  ├── user_info_plugin.sprx
│      │  ├── user_plugin.sprx
│      │  ├── videodownloader_plugin.sprx
│      │  ├── videoeditor_plugin.sprx
│      │  ├── videoplayer_plugin.sprx
│      │  ├── videoplayer_util.sprx
│      │  ├── vmclib.sprx
│      │  ├── vmc_savedata_plugin.sprx
│      │  ├── vshatdl.sprx
│      │  ├── vshmain_ext.sprx
│      │  ├── vshmain_util.sprx
│      │  ├── vsh.self
│      │  ├── wboard_plugin.sprx
│      │  ├── webbrowser_plugin.sprx
│      │  ├── webrender_plugin.sprx
│      │  ├── x3_amgsdk.sprx
│      │  ├── x3_gntoc.sprx
│      │  ├── x3_mdimp10.sprx
│      │  ├── x3_mdimp11.sprx
│      │  ├── x3_mdimp1.sprx
│      │  ├── x3_mdimp2.sprx
│      │  ├── x3_mdimp3.sprx
│      │  ├── x3_mdimp4.sprx
│      │  ├── x3_mdimp5.sprx
│      │  ├── x3_mdimp6.sprx
│      │  ├── x3_mdimp7.sprx
│      │  ├── x3_mdimp8.sprx
│      │  ├── x3_mdimp9.sprx
│      │  ├── xcbcontentop.sprx
│      │  ├── xcbplugin1.sprx
│      │  ├── xmb_ingame.sprx
│      │  ├── xmb_plugin.sprx
│      │  └── ycon_manual_plugin.sprx
│      └── resource
│          ├── AAA
│          ├── ap_plugin.rco
│          ├── audioplayer_plugin_dummy.rco
│          ├── audioplayer_plugin_mini.rco
│          ├── audioplayer_plugin.rco
│          ├── audioplayer_plugin_util.rco
│          ├── auth_plugin.rco
│          ├── autodownload_plugin.rco
│          ├── avc
│          │  └── image
│          │      ├── avc_background.jpg
│          │      ├── Broken_Photo.png
│          │      └── Photo_Default.png
│          ├── avc2_game_plugin.rco
│          ├── avc2_game_video_plugin.rco
│          ├── avc2_text_plugin.rco
│          ├── avc_game_plugin.rco
│          ├── avc_plugin.rco
│          ├── bdp_disccheck_plugin.rco
│          ├── bdp_plugin.rco
│          ├── bdp_storage_plugin.rco
│          ├── category_setting_plugin.rco
│          ├── checker_plugin.rco
│          ├── coldboot_multi.ac3
│          ├── coldboot.raf
│          ├── coldboot_stereo.ac3
│          ├── custom_render_plugin.rco
│          ├── data_copy_plugin.rco
│          ├── deviceconf_plugin.rco
│          ├── dlna_plugin.rco
│          ├── download_plugin.rco
│          ├── dtcpip_util.rco
│          ├── edy_plugin.rco
│          ├── eula_cddb_plugin.rco
│          ├── eula_hcopy_plugin.rco
│          ├── eula_net_plugin.rco
│          ├── explore
│          │  ├── icon
│          │  │  ├── cinfo-bg-photogallery.jpg
│          │  │  ├── cinfo-bgsd-photogallery.jpg
│          │  │  ├── cinfo-bgsd-signup.jpg
│          │  │  ├── cinfo-bgsd-storegame.jpg
│          │  │  ├── cinfo-bgsd-storemain.jpg
│          │  │  ├── cinfo-bgsd-storevideo.jpg
│          │  │  ├── cinfo-bgsd-whatsnew.jpg
│          │  │  ├── cinfo-bg-signup.png
│          │  │  ├── cinfo-bg-storegame.jpg
│          │  │  ├── cinfo-bg-storemain.jpg
│          │  │  ├── cinfo-bg-storevideo.jpg
│          │  │  ├── cinfo-bg-whatsnew.png
│          │  │  ├── cinfo-fg.png
│          │  │  ├── cinfo-fgsd.png
│          │  │  ├── fah-xmb.png
│          │  │  ├── GameStore_thumbnail.png
│          │  │  ├── hakoniwa.png
│          │  │  ├── icon_home.png
│          │  │  ├── VideoStore_thumbnail.png
│          │  │  ├── widget.png
│          │  │  └── yourchannels.png
│          │  ├── netflix
│          │  │  ├── ICON0.png
│          │  │  ├── PIC0.png
│          │  │  ├── PIC1.png
│          │  │  └── PIC2.png
│          │  ├── user
│          │  │  ├── 000.png
│          │  │  ├── 001.png
│          │  │  ├── 002.png
│          │  │  ├── 003.png
│          │  │  ├── 004.png
│          │  │  ├── 005.png
│          │  │  ├── 006.png
│          │  │  ├── 007.png
│          │  │  ├── 008.png
│          │  │  ├── 009.png
│          │  │  ├── 010.png
│          │  │  ├── 011.png
│          │  │  ├── 012.png
│          │  │  ├── 013.png
│          │  │  ├── 014.png
│          │  │  ├── 015.png
│          │  │  ├── 016.png
│          │  │  ├── 017.png
│          │  │  ├── 018.png
│          │  │  ├── 019.png
│          │  │  ├── 020.png
│          │  │  ├── 021.png
│          │  │  ├── 022.png
│          │  │  ├── 023.png
│          │  │  ├── 024.png
│          │  │  ├── 025.png
│          │  │  └── 026.png
│          │  └── xmb
│          │      ├── category_avc_photo.xml
│          │      ├── category_friend_shop.xml
│          │      ├── category_friend.xml
│          │      ├── category_game_tool2.xml
│          │      ├── category_game.xml
│          │      ├── category_music.xml
│          │      ├── category_network_shop.xml
│          │      ├── category_network_tool2.xml
│          │      ├── category_network.xml
│          │      ├── category_photo.xml
│          │      ├── category_psn.xml
│          │      ├── category_sysconf_shop.xml
│          │      ├── category_sysconf.xml
│          │      ├── category_tv.xml
│          │      ├── category_user_login.xml
│          │      ├── category_user_shop.xml
│          │      ├── category_user.xml
│          │      ├── category_video_bdponly.xml
│          │      ├── category_video.xml
│          │      ├── category_widget.xml
│          │      ├── download_list.xml
│          │      ├── null.xml
│          │      ├── playlist.xml
│          │      ├── registory.xml
│          │      ├── savedata_list.xml
│          │      ├── upload_list.xml
│          │      └── videodownloader_list.xml
│          ├── explore_category_friend.rco
│          ├── explore_category_game.rco
│          ├── explore_category_music.rco
│          ├── explore_category_network.rco
│          ├── explore_category_photo.rco
│          ├── explore_category_psn.rco
│          ├── explore_category_sysconf.rco
│          ├── explore_category_tv.rco
│          ├── explore_category_user.rco
│          ├── explore_category_video.rco
│          ├── explore_plugin_ft.rco
│          ├── explore_plugin_full.rco
│          ├── explore_plugin_game.rco
│          ├── explore_plugin_np.rco
│          ├── filecopy_plugin.rco
│          ├── friendim_plugin_game.rco
│          ├── friendim_plugin.rco
│          ├── friendml_plugin_game.rco
│          ├── friendml_plugin.rco
│          ├── friendtrophy_plugin_game.rco
│          ├── friendtrophy_plugin.rco
│          ├── gamedata_plugin.rco
│          ├── game_ext_plugin.rco
│          ├── game_indicator_plugin.rco
│          ├── gamelib_plugin.rco
│          ├── game_plugin.rco
│          ├── gameupdate_plugin.rco
│          ├── hknw_plugin
│          │  ├── circle_PlayListTarget.png
│          │  ├── circle.png
│          │  ├── comment_mark.png
│          │  ├── focus_cluster.png
│          │  ├── focus_cluster_shadow.png
│          │  ├── focus_grid.png
│          │  ├── GrainM.png
│          │  ├── jacket
│          │  │  ├── fp_jacket_ezprim2.fpo
│          │  │  ├── fp_jacket_ezprim.fpo
│          │  │  ├── frame_01.cxml
│          │  │  ├── frame_05.cxml
│          │  │  ├── index.cxml
│          │  │  ├── vp_jacket_ezprim2.vpo
│          │  │  └── vp_jacket_ezprim.vpo
│          │  ├── parameters.txt
│          │  ├── photo_envmap.png
│          │  ├── photo_shadow_1.png
│          │  ├── photo_shadow_2.png
│          │  ├── photo_shadow_3.png
│          │  ├── projection_mask.png
│          │  ├── selection_grid.png
│          │  └── sound
│          │      └── bus.sgd
│          ├── hknw_plugin.rco
│          ├── idle_plugin.rco
│          ├── imagefont.bin
│          ├── impose_plugin.rco
│          ├── kensaku_plugin.rco
│          ├── msgdialog_plugin.rco
│          ├── musicbrowser_plugin.rco
│          ├── nas_plugin.rco
│          ├── netconf_plugin.rco
│          ├── newstore
│          │  ├── sound
│          │  │  ├── CartAdd2.vag
│          │  │  ├── CartAdd.vag
│          │  │  ├── CartRemove2.vag
│          │  │  ├── CartRemove.vag
│          │  │  ├── Checkout2.vag
│          │  │  ├── Checkout.vag
│          │  │  ├── Click2.vag
│          │  │  ├── Click.vag
│          │  │  ├── FocusMove2.vag
│          │  │  ├── FocusMove.vag
│          │  │  ├── PageEnter2.vag
│          │  │  ├── PageEnter.vag
│          │  │  ├── PageExit2.vag
│          │  │  ├── PageExit.vag
│          │  │  ├── StoreBoot-L2.vag
│          │  │  ├── StoreBoot-L.vag
│          │  │  ├── StoreBoot-R2.vag
│          │  │  └── StoreBoot-R.vag
│          │  └── texture
│          │      ├── cz.png
│          │      ├── DB0001.jpg
│          │      ├── DB0002.jpg
│          │      ├── DB0003.jpg
│          │      ├── DB0004.jpg
│          │      ├── DB0005.jpg
│          │      ├── DB1001.jpg
│          │      ├── DB1002.jpg
│          │      ├── DB1003.jpg
│          │      ├── DB1101.jpg
│          │      ├── logo.png
│          │      ├── pl.png
│          │      ├── reg_ad.jpg
│          │      ├── reg_bg.png
│          │      ├── reg_sub1.png
│          │      ├── reg_sub2.png
│          │      └── reg_sub3.png
│          ├── newstore_effect.rco
│          ├── newstore_plugin.rco
│          ├── np_eula_plugin.rco
│          ├── np_matching_plugin.rco
│          ├── np_multisignin_plugin.rco
│          ├── npsignin_plugin.rco
│          ├── np_sns_plugin.rco
│          ├── np_trophy_ingame.rco
│          ├── np_trophy_plugin.rco
│          ├── oskfullkeypanel_plugin.rco
│          ├── oskpanel_plugin.rco
│          ├── osk_plugin.rco
│          ├── pesm_plugin.rco
│          ├── photolist_plugin.rco
│          ├── photo_network_sharing_plugin.rco
│          ├── photoupload_plugin.rco
│          ├── photoviewer_plugin
│          │  ├── envmap.png
│          │  ├── floor.ggfz
│          │  ├── floor_texture_1.png
│          │  ├── nega_env00.png
│          │  ├── nega_env01.png
│          │  ├── nega_M01.ggfz
│          │  ├── nega_M01_s.ggfz
│          │  ├── nega_M02.ggfz
│          │  ├── nega_M02_s.ggfz
│          │  ├── nega_M03.ggfz
│          │  ├── nega_M03_s.ggfz
│          │  ├── nega_M04.ggfz
│          │  ├── nega_M04_s.ggfz
│          │  ├── nega_M05.ggfz
│          │  ├── nega_M05_s.ggfz
│          │  ├── nega_M06_2.ggfz
│          │  ├── nega_M06_2s.ggfz
│          │  ├── nega_M06_3.ggfz
│          │  ├── nega_M06_3s.ggfz
│          │  ├── nega_M06.ggfz
│          │  ├── nega_M06_s.ggfz
│          │  ├── nega_mask.png
│          │  ├── number_H.png
│          │  ├── number_L.png
│          │  ├── number_M.png
│          │  ├── parameters.txt
│          │  ├── pattern_01_01.ggfz
│          │  ├── pattern_01_02.ggfz
│          │  ├── pattern_01_03.ggfz
│          │  ├── pattern_01_04.ggfz
│          │  ├── pattern_01_05.ggfz
│          │  ├── pattern_02_01.ggfz
│          │  ├── pattern_02_02.ggfz
│          │  ├── pattern_02_03.ggfz
│          │  ├── pattern_02_04.ggfz
│          │  ├── pattern_02_05.ggfz
│          │  ├── pattern_03_01.ggfz
│          │  ├── pattern_03_02.ggfz
│          │  ├── pattern_03_03.ggfz
│          │  ├── pattern_03_04.ggfz
│          │  ├── pattern_03_05.ggfz
│          │  ├── pattern_04_01.ggfz
│          │  ├── pattern_04_02.ggfz
│          │  ├── pattern_04_03.ggfz
│          │  ├── pattern_04_04.ggfz
│          │  ├── pattern_04_05.ggfz
│          │  ├── pattern_05_01.ggfz
│          │  ├── pattern_05_02.ggfz
│          │  ├── pattern_05_03.ggfz
│          │  ├── pattern_05_04.ggfz
│          │  ├── pattern_05_05.ggfz
│          │  ├── pattern_06_01.ggfz
│          │  ├── pattern_06_02.ggfz
│          │  ├── pattern_06_03.ggfz
│          │  ├── pattern_06_04.ggfz
│          │  ├── pattern_06_05.ggfz
│          │  ├── pattern_07_01.ggfz
│          │  ├── pattern_07_02.ggfz
│          │  ├── pattern_07_03.ggfz
│          │  ├── pattern_07_04.ggfz
│          │  ├── pattern_07_05.ggfz
│          │  ├── pattern_08_01.ggfz
│          │  ├── pattern_08_02.ggfz
│          │  ├── pattern_08_03.ggfz
│          │  ├── pattern_08_04.ggfz
│          │  ├── pattern_08_05.ggfz
│          │  ├── photo2_env00.png
│          │  ├── photo2_env01.png
│          │  ├── photo_M01.ggfz
│          │  ├── photo_M01_s.ggfz
│          │  ├── photo_M01_sv.ggfz
│          │  ├── photo_M02.ggfz
│          │  ├── photo_M02_s.ggfz
│          │  ├── photo_M02_sv.ggfz
│          │  ├── photo_M03.ggfz
│          │  ├── photo_M03_s.ggfz
│          │  ├── photo_M03_sv.ggfz
│          │  ├── photo_M04.ggfz
│          │  ├── photo_M04_s.ggfz
│          │  ├── photo_M04_sv.ggfz
│          │  ├── photo_M05.ggfz
│          │  ├── photo_M05_s.ggfz
│          │  ├── photo_M05_sv.ggfz
│          │  ├── photo.png
│          │  ├── posi_env01.png
│          │  ├── posi_mask.png
│          │  ├── scene_base.ggfz
│          │  ├── shadow1.png
│          │  ├── shadow2.png
│          │  ├── shadow3.png
│          │  ├── shadow_nega1.png
│          │  └── shadow_nega2.png
│          ├── photoviewer_plugin.rco
│          ├── playlist_plugin.rco
│          ├── poweroff_plugin.rco
│          ├── premo_plugin.rco
│          ├── print_plugin.rco
│          ├── profile_plugin_mini.rco
│          ├── profile_plugin.rco
│          ├── ps3_savedata_plugin.rco
│          ├── qgl
│          │  ├── canyon.qrc
│          │  ├── earth.qrc
│          │  ├── icons.qrc
│          │  ├── icontex.qrc
│          │  ├── lines.qrc
│          │  ├── raf.qrc
│          │  ├── rhm.qrc
│          │  └── store.qrc
│          ├── rec_plugin.rco
│          ├── regcam_plugin.rco
│          ├── sacd_plugin.rco
│          ├── scenefolder_plugin.rco
│          ├── screenshot_plugin.rco
│          ├── search_service.rco
│          ├── silk
│          │  ├── bookmark
│          │  │  ├── default_bs.xml
│          │  │  ├── default.xml
│          │  │  ├── scea_bs.xml
│          │  │  ├── scea.xml
│          │  │  ├── scee_bs.xml
│          │  │  ├── scee.xml
│          │  │  ├── sceh_bs.xml
│          │  │  ├── sceh.xml
│          │  │  ├── scej_bs.xml
│          │  │  ├── scej.xml
│          │  │  ├── scek_bs.xml
│          │  │  ├── scek.xml
│          │  │  ├── sch_bs.xml
│          │  │  └── sch.xml
│          │  ├── data
│          │  │  ├── CEFramework.bin
│          │  │  ├── CEHtmlApi.bin
│          │  │  ├── CEHtmlUI.bin
│          │  │  └── CEPhWeb.bin
│          │  ├── etc
│          │  │  ├── fontFileInfo.xml
│          │  │  ├── fontinfo-Xai.xml
│          │  │  ├── html.css
│          │  │  ├── quirk.css
│          │  │  ├── TrendMicroConfig.xml
│          │  │  └── TrendMicroFilterPolicy.xml
│          │  ├── keyconfig.xml
│          │  ├── lib
│          │  │  └── Plugins
│          │  │      └── dummy.txt
│          │  ├── mimetypes.xml
│          │  └── xai
│          │      └── widgets
│          │          └── informationboard
│          ├── silk_nas
│          │  ├── bookmark
│          │  │  ├── default.xml
│          │  │  ├── scea.xml
│          │  │  ├── scee.xml
│          │  │  ├── sceh.xml
│          │  │  ├── scej.xml
│          │  │  ├── scek.xml
│          │  │  └── sch.xml
│          │  ├── data
│          │  │  ├── CEFramework.bin
│          │  │  ├── CEHtmlApi.bin
│          │  │  ├── CEHtmlUI.bin
│          │  │  └── CEPhWeb.bin
│          │  ├── etc
│          │  │  ├── fontFileInfo.xml
│          │  │  ├── fontinfo-Xai.xml
│          │  │  ├── html.css
│          │  │  ├── quirk.css
│          │  │  └── TrendMicroFilterPolicy.xml
│          │  ├── keyconfig.xml
│          │  ├── lib
│          │  │  └── Plugins
│          │  │      └── dummy.txt
│          │  └── mimetypes.xml
│          ├── software_update_plugin.rco
│          ├── soundvisualizer_plugin.rco
│          ├── strviewer_plugin.rco
│          ├── subdisplay_plugin.rco
│          ├── sv_pseudoaudioplayer_plugin.rco
│          ├── sysconf
│          │  └── calibration
│          │      ├── 01.png
│          │      ├── 02.png
│          │      ├── 03.png
│          │      ├── 04.png
│          │      ├── 05.png
│          │      ├── 06.png
│          │      ├── 07.png
│          │      ├── 08.png
│          │      ├── 09.png
│          │      ├── 10.png
│          │      ├── 11.png
│          │      └── line.png
│          ├── sysconf_plugin.rco
│          ├── system_plugin.rco
│          ├── theme
│          │  └── 01.p3t
│          ├── thumthum_plugin.rco
│          ├── upload_util.rco
│          ├── user_info_plugin.rco
│          ├── user_plugin.rco
│          ├── videodownloader_plugin.rco
│          ├── videoeditor_plugin.rco
│          ├── videoplayer_plugin.rco
│          ├── videoplayer_util.rco
│          ├── vmc_savedata_plugin.rco
│          ├── wboard_plugin.rco
│          ├── webbrowser_plugin.rco
│          ├── webrender_plugin.rco
│          ├── xmb_ingame.rco
│          ├── xmb_plugin_normal.rco
│          └── ycon_manual_plugin.rco
└── dev_flash3
    └── data-revoke
        ├── crl
        │  ├── CRL1
        │  └── CRL2
        └── drl
            ├── DRL1
            └── DRL2
 
 
----
===Files sorted by filename (followed by location):===
''could be usefull when going to document the usage/patches of files''


==== 1.02 ====
<pre>
<pre>
aaf95ae39cb70255a7ee06ad8cb1fe24  ./dev_flash/bdplayer/bdj.self
000.png (/dev_flash/vsh/resource/explore/user)
45465e5f31ec1b5a18e8345e2ce65a0c  ./dev_flash/bdplayer/bdp_BDMV.self
001.png (/dev_flash/vsh/resource/explore/user)
8adcc0a0f9f1350495df3dd521f51648  ./dev_flash/bdplayer/bdp_BDVD.self
002.png (/dev_flash/vsh/resource/explore/user)
c656b842d872e0815d2aaad026908da3  ./dev_flash/ps1emu/ps1_emu.self
003.png (/dev_flash/vsh/resource/explore/user)
b4bc33ef86007848a8a095ebd1df207c  ./dev_flash/ps2emu/ps2_emu.self
004.png (/dev_flash/vsh/resource/explore/user)
80eafb1bf022ae65e839cec8608c264b  ./dev_flash/sys/external/libaacenc.sprx
005.png (/dev_flash/vsh/resource/explore/user)
e5f44ce2763f240517f1fc198bc6aec9  ./dev_flash/sys/external/libac3dec.sprx
006.png (/dev_flash/vsh/resource/explore/user)
6858f201fedaac000b0ef4cef86010ce  ./dev_flash/sys/external/libadec.sprx
007.png (/dev_flash/vsh/resource/explore/user)
df603b9851c4dadbbbab0ec185a8b97f  ./dev_flash/sys/external/libadec_internal.sprx
008.png (/dev_flash/vsh/resource/explore/user)
12725d36caff5c05e1a0e1d90be7a2ac  ./dev_flash/sys/external/libat3dec.sprx
009.png (/dev_flash/vsh/resource/explore/user)
832eeb4ba1a409d715aa6dccdcc82b59  ./dev_flash/sys/external/libatrac3plus.sprx
01.p3t (/dev_flash/vsh/resource/theme)
86270d8b6e633ae580ba10f048bcf28e  ./dev_flash/sys/external/libatxdec.sprx
01.png (/dev_flash/vsh/resource/sysconf/calibration)
9f65bd116b968c1e60f9eab305b8de19  ./dev_flash/sys/external/libaudio.sprx
010.png (/dev_flash/vsh/resource/explore/user)
48f5f7c63b21f1183b033addd9f4875e  ./dev_flash/sys/external/libavcdec.sprx
011.png (/dev_flash/vsh/resource/explore/user)
891b4b12a2a4d65e5be914b00f6c27b4  ./dev_flash/sys/external/libcamera.sprx
012.png (/dev_flash/vsh/resource/explore/user)
8f018dd54c90cf067349160f86725143  ./dev_flash/sys/external/libcelpdec.sprx
013.png (/dev_flash/vsh/resource/explore/user)
16d2036a8b04ea3112ec0e06d7446195  ./dev_flash/sys/external/libcelpenc.sprx
014.png (/dev_flash/vsh/resource/explore/user)
14fa65b9ad82ad957e26c02efd798743  ./dev_flash/sys/external/libdaisy.sprx
015.png (/dev_flash/vsh/resource/explore/user)
6261b7202a85cd1a2e227b3d6baad33d  ./dev_flash/sys/external/libdmux.sprx
016.png (/dev_flash/vsh/resource/explore/user)
57778ce2043284709f15e25fe9baa5f6  ./dev_flash/sys/external/libdmuxpamf.sprx
017.png (/dev_flash/vsh/resource/explore/user)
1120d6bea079ef36816ec50e1e5f5da4  ./dev_flash/sys/external/libfont.sprx
018.png (/dev_flash/vsh/resource/explore/user)
28d324c8c5cce87a22682d67c258f453  ./dev_flash/sys/external/libfontFT.sprx
019.png (/dev_flash/vsh/resource/explore/user)
da31c2645831b43530f5cc85b42cc5b7  ./dev_flash/sys/external/libfreetype.sprx
02.png (/dev_flash/vsh/resource/sysconf/calibration)
f26f2c83477d3c94807b5f2fbcb8ffe4  ./dev_flash/sys/external/libfs.sprx
020.png (/dev_flash/vsh/resource/explore/user)
80085e5666faf9d2e636642c981e742b  ./dev_flash/sys/external/libgcm_sys.sprx
021.png (/dev_flash/vsh/resource/explore/user)
b595a50e34085d330451451c798b7478  ./dev_flash/sys/external/libhttp.sprx
022.png (/dev_flash/vsh/resource/explore/user)
7d07cd161e1068d1f9218725b334ed61  ./dev_flash/sys/external/libio.sprx
023.png (/dev_flash/vsh/resource/explore/user)
808af7e84d8b57466c3ae82d42f6603c  ./dev_flash/sys/external/libjpgdec.sprx
024.png (/dev_flash/vsh/resource/explore/user)
ab1ca7645c218a90cefa3fae7b2ecac2  ./dev_flash/sys/external/libkey2char.sprx
025.png (/dev_flash/vsh/resource/explore/user)
0d8af42a943d0385a4b5d04e4f625524  ./dev_flash/sys/external/libl10n.sprx
026.png (/dev_flash/vsh/resource/explore/user)
3ae853c490c5270c2c5ced68526e47d0  ./dev_flash/sys/external/liblv2.sprx
03.png (/dev_flash/vsh/resource/sysconf/calibration)
7c2a5abcf76b23372ab1728a7878b354  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
04.png (/dev_flash/vsh/resource/sysconf/calibration)
ec0ca43bf181355a9973a496b95074da  ./dev_flash/sys/external/libm4aacdec.sprx
05.png (/dev_flash/vsh/resource/sysconf/calibration)
48049958819ac6d9b736ab4291196a0d  ./dev_flash/sys/external/libm4venc.sprx
06.png (/dev_flash/vsh/resource/sysconf/calibration)
9462030a390d9675d8c393d8cb9f77b3  ./dev_flash/sys/external/libmcadpt.sprx
07.png (/dev_flash/vsh/resource/sysconf/calibration)
9149f836fc8c5cfffc5882b1e8c1c7b2  ./dev_flash/sys/external/libmic.sprx
08.png (/dev_flash/vsh/resource/sysconf/calibration)
7512afedf476d64d153e3fee2a05e02d  ./dev_flash/sys/external/libmp3dec.sprx
09.png (/dev_flash/vsh/resource/sysconf/calibration)
f8246d2fc819ff996a1c8b28bee0e116  ./dev_flash/sys/external/libnet.sprx
10.png (/dev_flash/vsh/resource/sysconf/calibration)
fcfcb6c418f07ba11c58954bdf8eb01b  ./dev_flash/sys/external/libnetctl.sprx
11.png (/dev_flash/vsh/resource/sysconf/calibration)
f456a7f454dbdb586e4ff4512158280d  ./dev_flash/sys/external/libovis.sprx
AAA (/dev_flash/vsh/resource)
d45805c26e976c605fb7defa239b81c2  ./dev_flash/sys/external/libpamf.sprx
AacsModule.spu.isoself (/dev_flash/bdplayer)
cc059212ad402cfdb75a23ba0840a958  ./dev_flash/sys/external/libpngdec.sprx
aadList.dat (/dev_flash/data/dic)
7243e4e330685330d048436f737d46e2  ./dev_flash/sys/external/libresc.sprx
adhoc_vshlib.sprx (/dev_flash/pspemu/release)
87dfe9bc4c7d502ac54248f86421bcd6  ./dev_flash/sys/external/librtc.sprx
ap_plugin.rco (/dev_flash/vsh/resource)
c7f3f8fe3970214500f3a775e2345d4c  ./dev_flash/sys/external/libsail.sprx
ap_plugin.sprx (/dev_flash/vsh/module)
d2c01569f0b5bfd8cd4002c304cd616f  ./dev_flash/sys/external/libsheap.sprx
apotp.dic (/dev_flash/data/dic)
25d550dfdc23f8ce18669525bb6c2904  ./dev_flash/sys/external/libsmvd2.sprx
atokp.dic (/dev_flash/data/dic)
f77aad22fed534ddfd12e307be71f628  ./dev_flash/sys/external/libsmvd4.sprx
audio.sprx (/dev_flash/pspemu/release)
ca11a1d33f22c2250299f93ef304e3f0  ./dev_flash/sys/external/libspurs.sprx
audioplayer_plugin.rco (/dev_flash/vsh/resource)
89c98d733e84afd4ef4a47d90ac7c81d  ./dev_flash/sys/external/libsre.sprx
audioplayer_plugin.sprx (/dev_flash/vsh/module)
7b5ae6840ffc2e4afa80a507e3da4b6a  ./dev_flash/sys/external/libssl.sprx
audioplayer_plugin_dummy.rco (/dev_flash/vsh/resource)
123b6ee4e93f1b8c1536756a5562cf4d  ./dev_flash/sys/external/libsync.sprx
audioplayer_plugin_dummy.sprx (/dev_flash/vsh/module)
93ab435d726e254976f02f50ee2fcab1  ./dev_flash/sys/external/libsysmodule.sprx
audioplayer_plugin_mini.rco (/dev_flash/vsh/resource)
c27c107c884d93927b588476695c2f4d  ./dev_flash/sys/external/libsysutil.sprx
audioplayer_plugin_mini.sprx (/dev_flash/vsh/module)
a8566436da64abc6d79d83ad1cb16692  ./dev_flash/sys/external/libsysutil_np.sprx
audioplayer_plugin_util.rco (/dev_flash/vsh/resource)
c73531a6d9982cab4d1b5f80c1754170  ./dev_flash/sys/external/libusbd.sprx
auth_plugin.rco (/dev_flash/vsh/resource)
0441eb5b36f29bbd8dfd591e8dac22a3  ./dev_flash/sys/external/libvdec.sprx
auth_plugin.sprx (/dev_flash/vsh/module)
4e956e47e0c2dfac23e8650e9a19d1a7  ./dev_flash/sys/external/libvpost.sprx
autodownload_plugin.rco (/dev_flash/vsh/resource)
92c78d6cc94e03bbe64bf8df9b317393  ./dev_flash/sys/internal/libadec.sprx
autodownload_plugin.sprx (/dev_flash/vsh/module)
62e3acbb4e8885b91d941ffaa81590ce  ./dev_flash/sys/internal/libapostsrc.sprx
avc_background.jpg (/dev_flash/vsh/resource/avc/image)
dc8aebd6b6d5fa32f831258986cb2ea4  ./dev_flash/sys/internal/libat3enc.sprx
avc_game_plugin.rco (/dev_flash/vsh/resource)
9a9690004dfe3d0c3f95870a3edf3303  ./dev_flash/sys/internal/libatxenc.sprx
avc_plugin.rco (/dev_flash/vsh/resource)
97028ad02d93d9ffdd2b908df67391bf  ./dev_flash/sys/internal/libaudio_internal.sprx
avc_plugin.sprx (/dev_flash/vsh/module)
ec76fd2e599938d8c8468c8d68038414  ./dev_flash/sys/internal/libavchatjpgdec.sprx
avc_util.sprx (/dev_flash/vsh/module)
05c7412711fa02850785a0bd2d0b79f4  ./dev_flash/sys/internal/libcamera.sprx
avc2_game_plugin.rco (/dev_flash/vsh/resource)
5c90b7561728d52c544bb70ee49bfc13  ./dev_flash/sys/internal/libcelpenc.sprx
avc2_game_plugin.sprx (/dev_flash/vsh/module)
f9cca6490978df5421bde654ff2c1c70  ./dev_flash/sys/internal/libdtsdec.sprx
avc2_game_video_plugin.rco (/dev_flash/vsh/resource)
09c9eb4b62e72f11241a44586757ea75  ./dev_flash/sys/internal/libfs.sprx
avc2_game_video_plugin.sprx (/dev_flash/vsh/module)
117db3e2cc0aa7ee5d975d4e8ec70d34  ./dev_flash/sys/internal/libfs_utility.sprx
avc2_text_plugin.rco (/dev_flash/vsh/resource)
15094c1abac3d65f44252c846e6ed589  ./dev_flash/sys/internal/libft2d.sprx
avc2_text_plugin.sprx (/dev_flash/vsh/module)
b411c714f33085f110c7125098d32579  ./dev_flash/sys/internal/libgcm_osd.sprx
avcodec.sprx (/dev_flash/pspemu/release)
e64aaac20fffba204e645311034712c1  ./dev_flash/sys/internal/libgifdec.sprx
basic_plugins.sprx (/dev_flash/vsh/module)
6f202e85937f4c72b4059a133ea16c70  ./dev_flash/sys/internal/libjpgenc.sprx
bdj.self (/dev_flash/bdplayer)
d39a597940047a00a4960b9997bc8d6a  ./dev_flash/sys/internal/libm2aacdec.sprx
bdjstack (/dev_flash/bdplayer)
395faf183352e01300053d6d4e3aeb18  ./dev_flash/sys/internal/libm2bcdec.sprx
bdjstack.jar (/dev_flash/bdplayer/bdjstack)
f57eaf6f2607d7bbc10c534df07d5eb1  ./dev_flash/sys/internal/libm4venc.sprx
bdp_BDMV.self (/dev_flash/bdplayer)
4c9c3cc4eaced735959b7aaf54d3734f  ./dev_flash/sys/internal/libmcadpt.sprx
bdp_BDVD.self (/dev_flash/bdplayer)
c4da0d838de448e8724287a8163f0f19  ./dev_flash/sys/internal/libmic.sprx
bdp_disccheck_plugin.rco (/dev_flash/vsh/resource)
825eea584ee504386905ab343b9674b8  ./dev_flash/sys/internal/libmp3enc.sprx
bdp_disccheck_plugin.sprx (/dev_flash/vsh/module)
7396ba56d31b07a8e7d91b854859f256  ./dev_flash/sys/internal/libpamf.sprx
bdp_plugin.rco (/dev_flash/vsh/resource)
e7113f396e89f24928e06dcea1524ea6  ./dev_flash/sys/internal/libpngenc.sprx
bdp_plugin.sprx (/dev_flash/vsh/module)
d8b9905a63f68e7f1fa19e43ed078831  ./dev_flash/sys/internal/libsvc1d.sprx
bdp_storage_plugin.rco (/dev_flash/vsh/resource)
b086af24312412e8e34a6852ca2b9b9d  ./dev_flash/sys/internal/libtiffdec.sprx
bdp_storage_plugin.sprx (/dev_flash/vsh/module)
0704b2eab1d52830087b06c6229127e2  ./dev_flash/sys/internal/libtrhddec.sprx
Broken_Photo.png (/dev_flash/vsh/resource/avc/image)
2a4fbb218ac9fa275be6dbde917ace14  ./dev_flash/sys/internal/libvdec.sprx
bus.sgd (/dev_flash/vsh/resource/hknw_plugin/sound)
37461b164cfe5a1cec2fc0672db9ef93  ./dev_flash/sys/internal/libvpost.sprx
CA01.cer (/dev_flash/data/cert)
9107b1551c347dd271183a56f47d290c  ./dev_flash/sys/internal/sys_audio.self
CA02.cer (/dev_flash/data/cert)
1e22709ecb22d4ebb208addc3990f921  ./dev_flash/sys/internal/sys_init_osd.self
CA03.cer (/dev_flash/data/cert)
5f4d78d1d0e985ec31fcb1cbee754753  ./dev_flash/sys/internal/sys_tsma.self
CA04.cer (/dev_flash/data/cert)
578d3257f192c608b4518eed7a8154ba  ./dev_flash/vsh/module/audioplayer_plugin.sprx
CA05.cer (/dev_flash/data/cert)
9baf0b575f3f741c1e6700a04ea79fbc  ./dev_flash/vsh/module/auth_plugin.sprx
CA06.cer (/dev_flash/data/cert)
1fcaa3d1c7042260b641e101fb4b5fc1  ./dev_flash/vsh/module/avc_plugin.sprx
CA07.cer (/dev_flash/data/cert)
2de25b76e174e8b8a583e7fbf8590030  ./dev_flash/vsh/module/avc_util.sprx
CA08.cer (/dev_flash/data/cert)
fe79318967690f5c55512c73571302de  ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
CA09.cer (/dev_flash/data/cert)
6556076ec876e93eccfe17009d683391  ./dev_flash/vsh/module/bdp_plugin.sprx
CA10.cer (/dev_flash/data/cert)
d96d4f65e709ddec4f67504dd875ab88  ./dev_flash/vsh/module/category_setting_plugin.sprx
CA11.cer (/dev_flash/data/cert)
9ea09ec92f45146c91a2bedc882ba1f9  ./dev_flash/vsh/module/custom_render_plugin.sprx
CA12.cer (/dev_flash/data/cert)
a26a6dceea561e1bafb6793df8a7e95a  ./dev_flash/vsh/module/download_plugin.sprx
CA13.cer (/dev_flash/data/cert)
a12082f355edc1332feb17064e596b33  ./dev_flash/vsh/module/eula_cddb_plugin.sprx
CA14.cer (/dev_flash/data/cert)
256302614fb8d4a2e65db802c7f2230d  ./dev_flash/vsh/module/explore_plugin.sprx
CA15.cer (/dev_flash/data/cert)
e53afce8157bb48c02b670c84496023a  ./dev_flash/vsh/module/explore_plugin_game.sprx
CA16.cer (/dev_flash/data/cert)
d47f5e7cb233bcd4b8a6c1bc0b5d27c5  ./dev_flash/vsh/module/explore_plugin_np.sprx
CA17.cer (/dev_flash/data/cert)
64504ea38c7c15c8ce4d422b4a39903b  ./dev_flash/vsh/module/friendim_plugin.sprx
CA18.cer (/dev_flash/data/cert)
9b4d5545df7491914866227a07c66818  ./dev_flash/vsh/module/game_plugin.sprx
CA19.cer (/dev_flash/data/cert)
1c49b3f24033a676a94bfb3853a36cd0  ./dev_flash/vsh/module/gamedata_plugin.sprx
CA20.cer (/dev_flash/data/cert)
46a6e954b7f19b5b0918b3099c801e25  ./dev_flash/vsh/module/ime.sprx
CA21.cer (/dev_flash/data/cert)
3bed138b2623e531fa3be15cabf706a8  ./dev_flash/vsh/module/impose_plugin.sprx
CA22.cer (/dev_flash/data/cert)
b9c7d6d9ae1026b15e8c0af9d2dcbe44  ./dev_flash/vsh/module/mcore.self
CA23.cer (/dev_flash/data/cert)
71cbb19eb420b8e75d4009641a918a3d  ./dev_flash/vsh/module/mgvideo.self
CA24.cer (/dev_flash/data/cert)
e646eb1409dd1d530672293f079aa489  ./dev_flash/vsh/module/micon_lock_plugin.sprx
CA25.cer (/dev_flash/data/cert)
47f9c27ea10d589ba1800710314e2803  ./dev_flash/vsh/module/mms.sprx
CA26.cer (/dev_flash/data/cert)
91f4097f101ffbc1a68ef2640e9adb0c  ./dev_flash/vsh/module/mms_db.sprx
CA27.cer (/dev_flash/data/cert)
94eed074bd38182ca884a11b7322141a  ./dev_flash/vsh/module/mouse_plugin.sprx
CA28.cer (/dev_flash/data/cert)
a474a55f583b83e617acb0aec6469701  ./dev_flash/vsh/module/msgdialog_plugin.sprx
CA29.cer (/dev_flash/data/cert)
936f12217577e3a3a007f91c2c07f96a  ./dev_flash/vsh/module/msmw1.sprx
CA30.cer (/dev_flash/data/cert)
7cf5d8e33f712410bf4531c8bda4c82b  ./dev_flash/vsh/module/msmw2.sprx
CA31.cer (/dev_flash/data/cert)
ca34070c2d4b30873c027ce544a4569a  ./dev_flash/vsh/module/nas_plugin.sprx
CA32.cer (/dev_flash/data/cert)
1ecf4d563be348e795a55dc68d415799  ./dev_flash/vsh/module/netconf_plugin.sprx
CA33.cer (/dev_flash/data/cert)
86f5c8ef4cf62e351fc216993ca64354  ./dev_flash/vsh/module/netctl_main.sprx
CA34.cer (/dev_flash/data/cert)
c3f09625207b8eca321d89cb3c597905  ./dev_flash/vsh/module/np_matching_plugin.sprx
CA35.cer (/dev_flash/data/cert)
edd3a338a395649aa964e3169633335d  ./dev_flash/vsh/module/npflashplayer.sprx
CA36.cer (/dev_flash/data/cert)
a7d9bff4818135207b8568149fa58114  ./dev_flash/vsh/module/npsignin_plugin.sprx
canyon.qrc (/dev_flash/vsh/resource/qql)
f1ca4449512c877851f3a3984707dcdc  ./dev_flash/vsh/module/onicore_child.self
CapFont_MARU.cbf.LZRC (/dev_flash/bdplayer/SYS)
343bc2eaf73ccda0c9a0cecf5eacf9f7  ./dev_flash/vsh/module/osk_plugin.sprx
CapSound.pcm.LZRC (/dev_flash/bdplayer/SYS)
66ce19a04c48845d0b8cbe052234c4a5  ./dev_flash/vsh/module/oskpanel_plugin.sprx
CartAdd.vag (/dev_flash/vsh/resource/newstore/sound)
f468d5615b60ada32855f23db143e70d  ./dev_flash/vsh/module/paf.sprx
CartAdd2.vag (/dev_flash/vsh/resource/newstore/sound)
b1786b611ff2e9dd7d11c764a4d978ef  ./dev_flash/vsh/module/photoviewer_plugin.sprx
CartRemove.vag (/dev_flash/vsh/resource/newstore/sound)
f2624b82aa5ae19d389613c5ebadc1b1  ./dev_flash/vsh/module/premo_plugin.sprx
CartRemove2.vag (/dev_flash/vsh/resource/newstore/sound)
dc03f6c7c2136e2b41dfa66759359ee8  ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
category_avc_photo.xml (/dev_flash/vsh/resource/explore/xmb)
ccea533d8ce164d49e7621f11d58c588  ./dev_flash/vsh/module/sacd.sprx
category_friend.xml (/dev_flash/vsh/resource/explore/xmb)
1674f568e35b9a80bbe66ebaf0f601a2  ./dev_flash/vsh/module/sacd_plugin.sprx
category_friend_shop.xml (/dev_flash/vsh/resource/explore/xmb)
ee2b2287cd91d310cb19bf7ca6c967bb  ./dev_flash/vsh/module/sdk.sprx
category_game.xml (/dev_flash/vsh/resource/explore/xmb)
0737fbb18fb993b396d0cc4cdf4eff72  ./dev_flash/vsh/module/sdk_full.sprx
category_game_tool2.xml (/dev_flash/vsh/resource/explore/xmb)
dbe5dbd756dbdfa31c885cd8b5c1d03b  ./dev_flash/vsh/module/silk.sprx
category_music.xml (/dev_flash/vsh/resource/explore/xmb)
84065b78d59bae47e58b7c622921924d  ./dev_flash/vsh/module/software_update_plugin.sprx
category_network.xml (/dev_flash/vsh/resource/explore/xmb)
884d618403590b61c43e5103981ea658  ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
category_network_shop.xml (/dev_flash/vsh/resource/explore/xmb)
822387302dc916f60cf4468ca3e774c2  ./dev_flash/vsh/module/strviewer_plugin.sprx
category_network_tool2.xml (/dev_flash/vsh/resource/explore/xmb)
0eff690b34bed00658f53d87a5f99b71  ./dev_flash/vsh/module/sysconf_plugin.sprx
category_photo.xml (/dev_flash/vsh/resource/explore/xmb)
a14b0b9e0d549f9e647dc9b7a43ed8cf  ./dev_flash/vsh/module/system_plugin.sprx
category_psn.xml (/dev_flash/vsh/resource/explore/xmb)
1d2057811a3183581f92195885875801  ./dev_flash/vsh/module/thumthum_plugin.sprx
category_setting_plugin.rco (/dev_flash/vsh/resource)
f41bb5bfc436bf5e740b18f5282a9285  ./dev_flash/vsh/module/user_plugin.sprx
category_setting_plugin.sprx (/dev_flash/vsh/module)
75b70ce0ec2cf269dd547dc2ce2dc96b  ./dev_flash/vsh/module/videodownloader_plugin.sprx
category_sysconf.xml (/dev_flash/vsh/resource/explore/xmb)
a2871fd317f0f709364cdcc202865a1d  ./dev_flash/vsh/module/videoplayer_plugin.sprx
category_sysconf_shop.xml (/dev_flash/vsh/resource/explore/xmb)
4d4118ebd1d2fd80b7843c8913994c6b  ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
category_tv.xml (/dev_flash/vsh/resource/explore/xmb)
67185d94b3dbac93bd6a403539800ef7  ./dev_flash/vsh/module/vmclib.sprx
category_user.xml (/dev_flash/vsh/resource/explore/xmb)
c1db8a0661529a33129d65cff6e130e8  ./dev_flash/vsh/module/vsh.self
category_user_login.xml (/dev_flash/vsh/resource/explore/xmb)
0e7bab8f521f0bd0481f09ba13fe23ea  ./dev_flash/vsh/module/vshcommon.sprx
category_user_shop.xml (/dev_flash/vsh/resource/explore/xmb)
dbbbcec94c43c7abcd7826dd8b657e08  ./dev_flash/vsh/module/vshmain.sprx
category_video.xml (/dev_flash/vsh/resource/explore/xmb)
2eb75ec596f5d62bafc2a00f9675d339  ./dev_flash/vsh/module/vshnet.sprx
category_video_bdponly.xml (/dev_flash/vsh/resource/explore/xmb)
e06b9011097d91ee5821e5a3386272f0  ./dev_flash/vsh/module/webbrowser_plugin.sprx
category_widget.xml (/dev_flash/vsh/resource/explore/xmb)
28ef9ed6ac02c4a526641b4085d988ba  ./dev_flash/vsh/module/x3.sprx
CEFramework.bin (/dev_flash/vsh/resource/silk/data)
1f195f0d51d127f106d84dc79282cfa2  ./dev_flash/vsh/module/x3_mdimp1.sprx
CEFramework.bin (/dev_flash/vsh/resource/silk_nas/data)
50c21a83f73f714e1422c0f7cf767060  ./dev_flash/vsh/module/x3_mdimp2.sprx
CEHtmlApi.bin (/dev_flash/vsh/resource/silk/data)
8093e25f70746773327861387f2d63e8  ./dev_flash/vsh/module/x3_mdimp3.sprx
CEHtmlApi.bin (/dev_flash/vsh/resource/silk_nas/data)
5a8dab7c37c856d12941a77443e51546  ./dev_flash/vsh/module/xcbplugin1.sprx
CEHtmlUI.bin (/dev_flash/vsh/resource/silk/data)
0e861a7e3becdbc09b0e3324c19214f6  ./dev_flash/vsh/module/xmb_plugin.sprx
CEHtmlUI.bin (/dev_flash/vsh/resource/silk_nas/data)
fb6b60506bcf5264007503d47ec56d58  ./dev_flash/vsh/module/xsetting.sprx
CEPhWeb.bin (/dev_flash/vsh/resource/silk/data)
aaf95ae39cb70255a7ee06ad8cb1fe24  ./dev_flash/bdplayer/bdj.self
CEPhWeb.bin (/dev_flash/vsh/resource/silk_nas/data)
45465e5f31ec1b5a18e8345e2ce65a0c  ./dev_flash/bdplayer/bdp_BDMV.self
checker_plugin.rco (/dev_flash/vsh/resource)
8adcc0a0f9f1350495df3dd521f51648  ./dev_flash/bdplayer/bdp_BDVD.self
Checkout.vag (/dev_flash/vsh/resource/newstore/sound)
c656b842d872e0815d2aaad026908da3  ./dev_flash/ps1emu/ps1_emu.self
Checkout2.vag (/dev_flash/vsh/resource/newstore/sound)
b4bc33ef86007848a8a095ebd1df207c  ./dev_flash/ps2emu/ps2_emu.self
cinfo-bg-photogallery.jpg (/dev_flash/vsh/resource/explore/icon)
80eafb1bf022ae65e839cec8608c264b  ./dev_flash/sys/external/libaacenc.sprx
cinfo-bgsd-photogallery.jpg (/dev_flash/vsh/resource/explore/icon)
e5f44ce2763f240517f1fc198bc6aec9  ./dev_flash/sys/external/libac3dec.sprx
cinfo-bgsd-signup.jpg (/dev_flash/vsh/resource/explore/icon)
6858f201fedaac000b0ef4cef86010ce  ./dev_flash/sys/external/libadec.sprx
cinfo-bgsd-storegame.jpg (/dev_flash/vsh/resource/explore/icon)
df603b9851c4dadbbbab0ec185a8b97f  ./dev_flash/sys/external/libadec_internal.sprx
cinfo-bgsd-storemain.jpg (/dev_flash/vsh/resource/explore/icon)
12725d36caff5c05e1a0e1d90be7a2ac  ./dev_flash/sys/external/libat3dec.sprx
cinfo-bgsd-storevideo.jpg (/dev_flash/vsh/resource/explore/icon)
832eeb4ba1a409d715aa6dccdcc82b59  ./dev_flash/sys/external/libatrac3plus.sprx
cinfo-bgsd-whatsnew.jpg (/dev_flash/vsh/resource/explore/icon)
86270d8b6e633ae580ba10f048bcf28e  ./dev_flash/sys/external/libatxdec.sprx
cinfo-bg-signup.png (/dev_flash/vsh/resource/explore/icon)
9f65bd116b968c1e60f9eab305b8de19  ./dev_flash/sys/external/libaudio.sprx
cinfo-bg-storegame.jpg (/dev_flash/vsh/resource/explore/icon)
48f5f7c63b21f1183b033addd9f4875e  ./dev_flash/sys/external/libavcdec.sprx
cinfo-bg-storemain.jpg (/dev_flash/vsh/resource/explore/icon)
891b4b12a2a4d65e5be914b00f6c27b4  ./dev_flash/sys/external/libcamera.sprx
cinfo-bg-storevideo.jpg (/dev_flash/vsh/resource/explore/icon)
8f018dd54c90cf067349160f86725143  ./dev_flash/sys/external/libcelpdec.sprx
cinfo-bg-whatsnew.png (/dev_flash/vsh/resource/explore/icon)
16d2036a8b04ea3112ec0e06d7446195  ./dev_flash/sys/external/libcelpenc.sprx
cinfo-fg.png (/dev_flash/vsh/resource/explore/icon)
14fa65b9ad82ad957e26c02efd798743  ./dev_flash/sys/external/libdaisy.sprx
cinfo-fgsd.png (/dev_flash/vsh/resource/explore/icon)
6261b7202a85cd1a2e227b3d6baad33d  ./dev_flash/sys/external/libdmux.sprx
circle.png (/dev_flash/vsh/resource/hknw_plugin)
57778ce2043284709f15e25fe9baa5f6  ./dev_flash/sys/external/libdmuxpamf.sprx
circle_PlayListTarget.png (/dev_flash/vsh/resource/hknw_plugin)
1120d6bea079ef36816ec50e1e5f5da4  ./dev_flash/sys/external/libfont.sprx
classes.zip (/dev_flash/bdplayer/bdjstack)
28d324c8c5cce87a22682d67c258f453  ./dev_flash/sys/external/libfontFT.sprx
Click.vag (/dev_flash/vsh/resource/newstore/sound)
da31c2645831b43530f5cc85b42cc5b7  ./dev_flash/sys/external/libfreetype.sprx
Click2.vag (/dev_flash/vsh/resource/newstore/sound)
f26f2c83477d3c94807b5f2fbcb8ffe4  ./dev_flash/sys/external/libfs.sprx
coldboot.raf (/dev_flash/vsh/resource)
80085e5666faf9d2e636642c981e742b  ./dev_flash/sys/external/libgcm_sys.sprx
coldboot_multi.ac3 (/dev_flash/vsh/resource)
b595a50e34085d330451451c798b7478  ./dev_flash/sys/external/libhttp.sprx
coldboot_stereo.ac3 (/dev_flash/vsh/resource)
7d07cd161e1068d1f9218725b334ed61  ./dev_flash/sys/external/libio.sprx
comment_mark.png (/dev_flash/vsh/resource/hknw_plugin)
808af7e84d8b57466c3ae82d42f6603c  ./dev_flash/sys/external/libjpgdec.sprx
CprmModule.spu.isoself (/dev_flash/bdplayer)
ab1ca7645c218a90cefa3fae7b2ecac2  ./dev_flash/sys/external/libkey2char.sprx
CssModule.spu.isoself (/dev_flash/bdplayer)
0d8af42a943d0385a4b5d04e4f625524  ./dev_flash/sys/external/libl10n.sprx
ctrl.sprx (/dev_flash/pspemu/release)
3ae853c490c5270c2c5ced68526e47d0  ./dev_flash/sys/external/liblv2.sprx
custom_render_plugin.rco (/dev_flash/vsh/resource)
7c2a5abcf76b23372ab1728a7878b354  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
custom_render_plugin.sprx (/dev_flash/vsh/module)
ec0ca43bf181355a9973a496b95074da  ./dev_flash/sys/external/libm4aacdec.sprx
cz.png (/dev_flash/vsh/resource/newstore/texture)
48049958819ac6d9b736ab4291196a0d  ./dev_flash/sys/external/libm4venc.sprx
data_copy_plugin.rco (/dev_flash/vsh/resource)
9462030a390d9675d8c393d8cb9f77b3  ./dev_flash/sys/external/libmcadpt.sprx
data_copy_plugin.sprx (/dev_flash/vsh/module)
9149f836fc8c5cfffc5882b1e8c1c7b2  ./dev_flash/sys/external/libmic.sprx
DB0001.jpg (/dev_flash/vsh/resource/newstore/texture)
7512afedf476d64d153e3fee2a05e02d  ./dev_flash/sys/external/libmp3dec.sprx
DB0002.jpg (/dev_flash/vsh/resource/newstore/texture)
f8246d2fc819ff996a1c8b28bee0e116  ./dev_flash/sys/external/libnet.sprx
DB0003.jpg (/dev_flash/vsh/resource/newstore/texture)
fcfcb6c418f07ba11c58954bdf8eb01b  ./dev_flash/sys/external/libnetctl.sprx
DB0004.jpg (/dev_flash/vsh/resource/newstore/texture)
f456a7f454dbdb586e4ff4512158280d  ./dev_flash/sys/external/libovis.sprx
DB0005.jpg (/dev_flash/vsh/resource/newstore/texture)
d45805c26e976c605fb7defa239b81c2  ./dev_flash/sys/external/libpamf.sprx
DB1001.jpg (/dev_flash/vsh/resource/newstore/texture)
cc059212ad402cfdb75a23ba0840a958  ./dev_flash/sys/external/libpngdec.sprx
DB1002.jpg (/dev_flash/vsh/resource/newstore/texture)
7243e4e330685330d048436f737d46e2  ./dev_flash/sys/external/libresc.sprx
DB1003.jpg (/dev_flash/vsh/resource/newstore/texture)
87dfe9bc4c7d502ac54248f86421bcd6  ./dev_flash/sys/external/librtc.sprx
DB1101.jpg (/dev_flash/vsh/resource/newstore/texture)
c7f3f8fe3970214500f3a775e2345d4c  ./dev_flash/sys/external/libsail.sprx
default.xml (/dev_flash/vsh/resource/silk/bookmark)
d2c01569f0b5bfd8cd4002c304cd616f  ./dev_flash/sys/external/libsheap.sprx
default.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
25d550dfdc23f8ce18669525bb6c2904  ./dev_flash/sys/external/libsmvd2.sprx
default_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
f77aad22fed534ddfd12e307be71f628  ./dev_flash/sys/external/libsmvd4.sprx
deviceconf_plugin.rco (/dev_flash/vsh/resource)
ca11a1d33f22c2250299f93ef304e3f0  ./dev_flash/sys/external/libspurs.sprx
deviceconf_plugin.sprx (/dev_flash/vsh/module)
89c98d733e84afd4ef4a47d90ac7c81d  ./dev_flash/sys/external/libsre.sprx
divxdrm.sprx (/dev_flash/vsh/module)
7b5ae6840ffc2e4afa80a507e3da4b6a  ./dev_flash/sys/external/libssl.sprx
dlna_plugin.rco (/dev_flash/vsh/resource)
123b6ee4e93f1b8c1536756a5562cf4d  ./dev_flash/sys/external/libsync.sprx
dlna_plugin.sprx (/dev_flash/vsh/module)
93ab435d726e254976f02f50ee2fcab1  ./dev_flash/sys/external/libsysmodule.sprx
download_list.xml (/dev_flash/vsh/resource/explore/xmb)
c27c107c884d93927b588476695c2f4d  ./dev_flash/sys/external/libsysutil.sprx
download_plugin.rco (/dev_flash/vsh/resource)
a8566436da64abc6d79d83ad1cb16692  ./dev_flash/sys/external/libsysutil_np.sprx
download_plugin.sprx (/dev_flash/vsh/module)
c73531a6d9982cab4d1b5f80c1754170  ./dev_flash/sys/external/libusbd.sprx
dtcpip_util.rco (/dev_flash/vsh/resource)
0441eb5b36f29bbd8dfd591e8dac22a3  ./dev_flash/sys/external/libvdec.sprx
dtcpip_util.sprx (/dev_flash/vsh/module)
4e956e47e0c2dfac23e8650e9a19d1a7  ./dev_flash/sys/external/libvpost.sprx
dummy.txt (/dev_flash/vsh/resource/silk/lib/Plugins)
92c78d6cc94e03bbe64bf8df9b317393  ./dev_flash/sys/internal/libadec.sprx
dummy.txt (/dev_flash/vsh/resource/silk_nas/lib/Plugins)
62e3acbb4e8885b91d941ffaa81590ce  ./dev_flash/sys/internal/libapostsrc.sprx
earth.qrc (/dev_flash/vsh/resource/qql)
dc8aebd6b6d5fa32f831258986cb2ea4  ./dev_flash/sys/internal/libat3enc.sprx
edy_plugin.rco (/dev_flash/vsh/resource)
9a9690004dfe3d0c3f95870a3edf3303  ./dev_flash/sys/internal/libatxenc.sprx
edy_plugin.sprx (/dev_flash/vsh/module)
97028ad02d93d9ffdd2b908df67391bf  ./dev_flash/sys/internal/libaudio_internal.sprx
emulator_api.sprx (/dev_flash/pspemu/release)
ec76fd2e599938d8c8468c8d68038414  ./dev_flash/sys/internal/libavchatjpgdec.sprx
emulator_drm.sprx (/dev_flash/pspemu/release)
05c7412711fa02850785a0bd2d0b79f4  ./dev_flash/sys/internal/libcamera.sprx
entertainment_haiyu_nihon.aad (/dev_flash/data/dic)
5c90b7561728d52c544bb70ee49bfc13  ./dev_flash/sys/internal/libcelpenc.sprx
entertainment_owarai_TV_talent.aad (/dev_flash/data/dic)
f9cca6490978df5421bde654ff2c1c70  ./dev_flash/sys/internal/libdtsdec.sprx
envmap.png (/dev_flash/vsh/resource/photoviewer_plugin)
09c9eb4b62e72f11241a44586757ea75  ./dev_flash/sys/internal/libfs.sprx
epson.pmd (/dev_flash/vsh/etc/print)
117db3e2cc0aa7ee5d975d4e8ec70d34  ./dev_flash/sys/internal/libfs_utility.sprx
esehttp.sprx (/dev_flash/vsh/module)
15094c1abac3d65f44252c846e6ed589  ./dev_flash/sys/internal/libft2d.sprx
eseibrd.sprx (/dev_flash/vsh/module)
b411c714f33085f110c7125098d32579  ./dev_flash/sys/internal/libgcm_osd.sprx
eseidle.sprx (/dev_flash/vsh/module)
e64aaac20fffba204e645311034712c1  ./dev_flash/sys/internal/libgifdec.sprx
eselock.sprx (/dev_flash/vsh/module)
6f202e85937f4c72b4059a133ea16c70  ./dev_flash/sys/internal/libjpgenc.sprx
eula_cddb_plugin.rco (/dev_flash/vsh/resource)
d39a597940047a00a4960b9997bc8d6a  ./dev_flash/sys/internal/libm2aacdec.sprx
eula_cddb_plugin.sprx (/dev_flash/vsh/module)
395faf183352e01300053d6d4e3aeb18  ./dev_flash/sys/internal/libm2bcdec.sprx
eula_hcopy_plugin.rco (/dev_flash/vsh/resource)
f57eaf6f2607d7bbc10c534df07d5eb1  ./dev_flash/sys/internal/libm4venc.sprx
eula_hcopy_plugin.sprx (/dev_flash/vsh/module)
4c9c3cc4eaced735959b7aaf54d3734f  ./dev_flash/sys/internal/libmcadpt.sprx
eula_net_plugin.rco (/dev_flash/vsh/resource)
c4da0d838de448e8724287a8163f0f19  ./dev_flash/sys/internal/libmic.sprx
eula_net_plugin.sprx (/dev_flash/vsh/module)
825eea584ee504386905ab343b9674b8  ./dev_flash/sys/internal/libmp3enc.sprx
eurus_fw.bin (/dev_flash/sys/internal)
7396ba56d31b07a8e7d91b854859f256  ./dev_flash/sys/internal/libpamf.sprx
explore_category_friend.rco (/dev_flash/vsh/resource)
e7113f396e89f24928e06dcea1524ea6  ./dev_flash/sys/internal/libpngenc.sprx
explore_category_friend.sprx (/dev_flash/vsh/module)
d8b9905a63f68e7f1fa19e43ed078831  ./dev_flash/sys/internal/libsvc1d.sprx
explore_category_game.rco (/dev_flash/vsh/resource)
b086af24312412e8e34a6852ca2b9b9d  ./dev_flash/sys/internal/libtiffdec.sprx
explore_category_game.sprx (/dev_flash/vsh/module)
0704b2eab1d52830087b06c6229127e2  ./dev_flash/sys/internal/libtrhddec.sprx
explore_category_music.rco (/dev_flash/vsh/resource)
2a4fbb218ac9fa275be6dbde917ace14  ./dev_flash/sys/internal/libvdec.sprx
explore_category_music.sprx (/dev_flash/vsh/module)
37461b164cfe5a1cec2fc0672db9ef93  ./dev_flash/sys/internal/libvpost.sprx
explore_category_network.rco (/dev_flash/vsh/resource)
9107b1551c347dd271183a56f47d290c  ./dev_flash/sys/internal/sys_audio.self
explore_category_network.sprx (/dev_flash/vsh/module)
1e22709ecb22d4ebb208addc3990f921  ./dev_flash/sys/internal/sys_init_osd.self
explore_category_photo.rco (/dev_flash/vsh/resource)
5f4d78d1d0e985ec31fcb1cbee754753  ./dev_flash/sys/internal/sys_tsma.self
explore_category_photo.sprx (/dev_flash/vsh/module)
578d3257f192c608b4518eed7a8154ba  ./dev_flash/vsh/module/audioplayer_plugin.sprx
explore_category_psn.rco (/dev_flash/vsh/resource)
9baf0b575f3f741c1e6700a04ea79fbc  ./dev_flash/vsh/module/auth_plugin.sprx
explore_category_psn.sprx (/dev_flash/vsh/module)
1fcaa3d1c7042260b641e101fb4b5fc1  ./dev_flash/vsh/module/avc_plugin.sprx
explore_category_sysconf.rco (/dev_flash/vsh/resource)
2de25b76e174e8b8a583e7fbf8590030  ./dev_flash/vsh/module/avc_util.sprx
explore_category_sysconf.sprx (/dev_flash/vsh/module)
fe79318967690f5c55512c73571302de  ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
explore_category_tv.rco (/dev_flash/vsh/resource)
6556076ec876e93eccfe17009d683391  ./dev_flash/vsh/module/bdp_plugin.sprx
explore_category_tv.sprx (/dev_flash/vsh/module)
d96d4f65e709ddec4f67504dd875ab88  ./dev_flash/vsh/module/category_setting_plugin.sprx
explore_category_user.rco (/dev_flash/vsh/resource)
9ea09ec92f45146c91a2bedc882ba1f9  ./dev_flash/vsh/module/custom_render_plugin.sprx
explore_category_user.sprx (/dev_flash/vsh/module)
a26a6dceea561e1bafb6793df8a7e95a  ./dev_flash/vsh/module/download_plugin.sprx
explore_category_video.rco (/dev_flash/vsh/resource)
a12082f355edc1332feb17064e596b33  ./dev_flash/vsh/module/eula_cddb_plugin.sprx
explore_category_video.sprx (/dev_flash/vsh/module)
256302614fb8d4a2e65db802c7f2230d  ./dev_flash/vsh/module/explore_plugin.sprx
explore_plugin.sprx (/dev_flash/vsh/module)
e53afce8157bb48c02b670c84496023a  ./dev_flash/vsh/module/explore_plugin_game.sprx
explore_plugin_ft.rco (/dev_flash/vsh/resource)
d47f5e7cb233bcd4b8a6c1bc0b5d27c5  ./dev_flash/vsh/module/explore_plugin_np.sprx
explore_plugin_ft.sprx (/dev_flash/vsh/module)
64504ea38c7c15c8ce4d422b4a39903b  ./dev_flash/vsh/module/friendim_plugin.sprx
explore_plugin_full.rco (/dev_flash/vsh/resource)
9b4d5545df7491914866227a07c66818  ./dev_flash/vsh/module/game_plugin.sprx
explore_plugin_game.rco (/dev_flash/vsh/resource)
1c49b3f24033a676a94bfb3853a36cd0  ./dev_flash/vsh/module/gamedata_plugin.sprx
explore_plugin_game.sprx (/dev_flash/vsh/module)
46a6e954b7f19b5b0918b3099c801e25  ./dev_flash/vsh/module/ime.sprx
explore_plugin_np.rco (/dev_flash/vsh/resource)
3bed138b2623e531fa3be15cabf706a8  ./dev_flash/vsh/module/impose_plugin.sprx
explore_plugin_np.sprx (/dev_flash/vsh/module)
b9c7d6d9ae1026b15e8c0af9d2dcbe44  ./dev_flash/vsh/module/mcore.self
face_facemark_i.aad (/dev_flash/data/dic)
71cbb19eb420b8e75d4009641a918a3d  ./dev_flash/vsh/module/mgvideo.self
fah-xmb.png (/dev_flash/vsh/resource/explore/icon)
e646eb1409dd1d530672293f079aa489  ./dev_flash/vsh/module/micon_lock_plugin.sprx
faust_widget.sprx (/dev_flash/vsh/module)
47f9c27ea10d589ba1800710314e2803  ./dev_flash/vsh/module/mms.sprx
filecopy_plugin.rco (/dev_flash/vsh/resource)
91f4097f101ffbc1a68ef2640e9adb0c  ./dev_flash/vsh/module/mms_db.sprx
filecopy_plugin.sprx (/dev_flash/vsh/module)
94eed074bd38182ca884a11b7322141a  ./dev_flash/vsh/module/mouse_plugin.sprx
flashATRAC.pic (/dev_flash/sys/external)
a474a55f583b83e617acb0aec6469701  ./dev_flash/vsh/module/msgdialog_plugin.sprx
flashMP3.pic (/dev_flash/sys/external)
936f12217577e3a3a007f91c2c07f96a  ./dev_flash/vsh/module/msmw1.sprx
floor.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
7cf5d8e33f712410bf4531c8bda4c82b  ./dev_flash/vsh/module/msmw2.sprx
floor_texture_1.png (/dev_flash/vsh/resource/photoviewer_plugin)
ca34070c2d4b30873c027ce544a4569a  ./dev_flash/vsh/module/nas_plugin.sprx
focus_cluster.png (/dev_flash/vsh/resource/hknw_plugin)
1ecf4d563be348e795a55dc68d415799  ./dev_flash/vsh/module/netconf_plugin.sprx
focus_cluster_shadow.png (/dev_flash/vsh/resource/hknw_plugin)
86f5c8ef4cf62e351fc216993ca64354  ./dev_flash/vsh/module/netctl_main.sprx
focus_grid.png (/dev_flash/vsh/resource/hknw_plugin)
c3f09625207b8eca321d89cb3c597905  ./dev_flash/vsh/module/np_matching_plugin.sprx
FocusMove.vag (/dev_flash/vsh/resource/newstore/sound)
edd3a338a395649aa964e3169633335d  ./dev_flash/vsh/module/npflashplayer.sprx
FocusMove2.vag (/dev_flash/vsh/resource/newstore/sound)
a7d9bff4818135207b8568149fa58114  ./dev_flash/vsh/module/npsignin_plugin.sprx
font.properties (/dev_flash/bdplayer/bdjstack)
f1ca4449512c877851f3a3984707dcdc  ./dev_flash/vsh/module/onicore_child.self
fontFileInfo.xml (/dev_flash/vsh/resource/silk/etc)
343bc2eaf73ccda0c9a0cecf5eacf9f7  ./dev_flash/vsh/module/osk_plugin.sprx
fontFileInfo.xml (/dev_flash/vsh/resource/silk_nas/etc)
66ce19a04c48845d0b8cbe052234c4a5  ./dev_flash/vsh/module/oskpanel_plugin.sprx
fontinfo-Xai.xml (/dev_flash/vsh/resource/silk/etc)
f468d5615b60ada32855f23db143e70d  ./dev_flash/vsh/module/paf.sprx
fontinfo-Xai.xml (/dev_flash/vsh/resource/silk_nas/etc)
b1786b611ff2e9dd7d11c764a4d978ef  ./dev_flash/vsh/module/photoviewer_plugin.sprx
fp_jacket_ezprim.fpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
f2624b82aa5ae19d389613c5ebadc1b1  ./dev_flash/vsh/module/premo_plugin.sprx
fp_jacket_ezprim2.fpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
dc03f6c7c2136e2b41dfa66759359ee8  ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
frame_01.cxml (/dev_flash/vsh/resource/hknw_plugin/jacket)
ccea533d8ce164d49e7621f11d58c588  ./dev_flash/vsh/module/sacd.sprx
frame_05.cxml (/dev_flash/vsh/resource/hknw_plugin/jacket)
1674f568e35b9a80bbe66ebaf0f601a2  ./dev_flash/vsh/module/sacd_plugin.sprx
friendim_plugin.rco (/dev_flash/vsh/resource)
ee2b2287cd91d310cb19bf7ca6c967bb  ./dev_flash/vsh/module/sdk.sprx
friendim_plugin.sprx (/dev_flash/vsh/module)
0737fbb18fb993b396d0cc4cdf4eff72  ./dev_flash/vsh/module/sdk_full.sprx
friendim_plugin_game.rco (/dev_flash/vsh/resource)
dbe5dbd756dbdfa31c885cd8b5c1d03b  ./dev_flash/vsh/module/silk.sprx
friendml_plugin.rco (/dev_flash/vsh/resource)
84065b78d59bae47e58b7c622921924d  ./dev_flash/vsh/module/software_update_plugin.sprx
friendml_plugin.sprx (/dev_flash/vsh/module)
884d618403590b61c43e5103981ea658  ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
friendml_plugin_game.rco (/dev_flash/vsh/resource)
822387302dc916f60cf4468ca3e774c2  ./dev_flash/vsh/module/strviewer_plugin.sprx
friendtrophy_plugin.rco (/dev_flash/vsh/resource)
0eff690b34bed00658f53d87a5f99b71  ./dev_flash/vsh/module/sysconf_plugin.sprx
friendtrophy_plugin.sprx (/dev_flash/vsh/module)
a14b0b9e0d549f9e647dc9b7a43ed8cf  ./dev_flash/vsh/module/system_plugin.sprx
friendtrophy_plugin_game.rco (/dev_flash/vsh/resource)
1d2057811a3183581f92195885875801  ./dev_flash/vsh/module/thumthum_plugin.sprx
g729.sprx (/dev_flash/pspemu/release)
f41bb5bfc436bf5e740b18f5282a9285  ./dev_flash/vsh/module/user_plugin.sprx
game_ext_plugin.rco (/dev_flash/vsh/resource)
75b70ce0ec2cf269dd547dc2ce2dc96b  ./dev_flash/vsh/module/videodownloader_plugin.sprx
game_ext_plugin.sprx (/dev_flash/vsh/module)
a2871fd317f0f709364cdcc202865a1d  ./dev_flash/vsh/module/videoplayer_plugin.sprx
game_indicator_plugin.rco (/dev_flash/vsh/resource)
4d4118ebd1d2fd80b7843c8913994c6b  ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
game_indicator_plugin.sprx (/dev_flash/vsh/module)
67185d94b3dbac93bd6a403539800ef7  ./dev_flash/vsh/module/vmclib.sprx
game_plugin.rco (/dev_flash/vsh/resource)
c1db8a0661529a33129d65cff6e130e8  ./dev_flash/vsh/module/vsh.self
gamedata_plugin.rco (/dev_flash/vsh/resource)
0e7bab8f521f0bd0481f09ba13fe23ea  ./dev_flash/vsh/module/vshcommon.sprx
gamedata_plugin.sprx (/dev_flash/vsh/module)
dbbbcec94c43c7abcd7826dd8b657e08  ./dev_flash/vsh/module/vshmain.sprx
gamelib_plugin.rco (/dev_flash/vsh/resource)
2eb75ec596f5d62bafc2a00f9675d339  ./dev_flash/vsh/module/vshnet.sprx
gamelib_plugin.sprx (/dev_flash/vsh/module)
e06b9011097d91ee5821e5a3386272f0  ./dev_flash/vsh/module/webbrowser_plugin.sprx
GameStore_thumbnail.png (/dev_flash/vsh/resource/explore/icon)
28ef9ed6ac02c4a526641b4085d988ba  ./dev_flash/vsh/module/x3.sprx
gameupdate_plugin.rco (/dev_flash/vsh/resource)
1f195f0d51d127f106d84dc79282cfa2  ./dev_flash/vsh/module/x3_mdimp1.sprx
gameupdate_plugin.sprx (/dev_flash/vsh/module)
50c21a83f73f714e1422c0f7cf767060  ./dev_flash/vsh/module/x3_mdimp2.sprx
gb3s1518.bwfon (/dev_flash/pspemu/flash0/font)
8093e25f70746773327861387f2d63e8  ./dev_flash/vsh/module/x3_mdimp3.sprx
gpu.sprx (/dev_flash/bdplayer)
5a8dab7c37c856d12941a77443e51546  ./dev_flash/vsh/module/xcbplugin1.sprx
GrainM.png (/dev_flash/vsh/resource/hknw_plugin)
0e861a7e3becdbc09b0e3324c19214f6  ./dev_flash/vsh/module/xmb_plugin.sprx
hakoniwa.png (/dev_flash/vsh/resource/explore/icon)
fb6b60506bcf5264007503d47ec56d58  ./dev_flash/vsh/module/xsetting.sprx
hknw_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
hknw_plugin.sprx (/dev_flash/vsh/module)
html.css (/dev_flash/vsh/resource/silk/etc)
html.css (/dev_flash/vsh/resource/silk_nas/etc)
icon_home.png (/dev_flash/vsh/resource/explore/icon)
ICON0.png (/dev_flash/vsh/resource/explore/netflix)
icons.qrc (/dev_flash/vsh/resource/qql)
icontex.qrc (/dev_flash/vsh/resource/qql)
idle_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
idle_plugin.sprx (/dev_flash/vsh/module)
ifhandle.sprx (/dev_flash/pspemu/release)
imagefont.bin (/dev_flash/pspemu/flash0/font)
imagefont.bin (/dev_flash/vsh/resource/hknw_plugin)
ime.sprx (/dev_flash/vsh/module)
ime_atok.sprx (/dev_flash/vsh/module)
ime_zi.sprx (/dev_flash/vsh/module)
impose.sprx (/dev_flash/pspemu/release)
impose_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
index.cxml (/dev_flash/vsh/resource/hknw_plugin/jacket)
index.dat (/dev_flash/vsh/etc)
informationboard (/dev_flash/vsh/resource/silk/xai/widgets)
iofilemgr.sprx (/dev_flash/pspemu/release)
iofilemgr_iso.sprx (/dev_flash/pspemu/release)
isofs.sprx (/dev_flash/pspemu/release)
java.security (/dev_flash/bdplayer/bdjstack)
jpn0.pgf (/dev_flash/pspemu/flash0/font)
kensaku_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
kensaku_plugin.sprx (/dev_flash/vsh/module)
keyconfig.xml (/dev_flash/vsh/resource/silk)
keyconfig.xml (/dev_flash/vsh/resource/silk_nas)
kr0.pgf (/dev_flash/pspemu/flash0/font)
layout_factor_table_1080.txt (/dev_flash/vsh/etc)
layout_factor_table_272.txt (/dev_flash/vsh/etc)
layout_factor_table_480.txt (/dev_flash/vsh/etc)
layout_factor_table_720.txt (/dev_flash/vsh/etc)
layout_grid_table_1080.txt (/dev_flash/vsh/etc)
layout_grid_table_272.txt (/dev_flash/vsh/etc)
layout_grid_table_480.txt (/dev_flash/vsh/etc)
layout_grid_table_720.txt (/dev_flash/vsh/etc)
libaac.sprx (/dev_flash/pspemu/release)
libaacenc.sprx (/dev_flash/sys/external)
libaacenc_spurs.sprx (/dev_flash/sys/external)
libac3dec.sprx (/dev_flash/sys/external)
libac3dec2.sprx (/dev_flash/sys/external)
libad_async.sprx (/dev_flash/sys/external)
libad_billboard_util.sprx (/dev_flash/sys/external)
libad_core.sprx (/dev_flash/sys/external)
libadec.sprx (/dev_flash/sys/external)
libadec_internal.sprx (/dev_flash/sys/external)
libadec2.sprx (/dev_flash/sys/external)
libapostsrc.sprx (/dev_flash/sys/internal)
libapostsrc_eqalc.sprx (/dev_flash/sys/internal)
libapostsrc_mini.sprx (/dev_flash/sys/external)
libasfparser.sprx (/dev_flash/sys/internal)
libasfparser2.sprx (/dev_flash/sys/internal)
libasfparser2_astd.sprx (/dev_flash/sys/external)
libat3dec.sprx (/dev_flash/sys/external)
libat3enc.sprx (/dev_flash/sys/internal)
libat3enc_spurs.sprx (/dev_flash/sys/internal)
libatrac3plus.sprx (/dev_flash/pspemu/release)
libatrac3plus.sprx (/dev_flash/sys/external)
libatxdec.sprx (/dev_flash/sys/external)
libatxdec2.sprx (/dev_flash/sys/external)
libatxdecmod.sprx (/dev_flash/sys/internal)
libatxenc.sprx (/dev_flash/sys/internal)
libaudio.sprx (/dev_flash/sys/external)
libavcdec.sprx (/dev_flash/sys/external)
libavcenc.sprx (/dev_flash/sys/external)
libavcenc_small.sprx (/dev_flash/sys/external)
libavchatjpgdec.sprx (/dev_flash/sys/external)
libcamera.sprx (/dev_flash/sys/external)
libcelp8dec.sprx (/dev_flash/sys/external)
libcelp8enc.sprx (/dev_flash/sys/external)
libcelpdec.sprx (/dev_flash/sys/external)
libcelpenc.sprx (/dev_flash/sys/external)
libddlenc2.sprx (/dev_flash/sys/internal)
libddpdec.sprx (/dev_flash/sys/external)
libddpdec.sprx (/dev_flash/sys/internal)
libdivx311dec.sprx (/dev_flash/sys/internal)
libdivxdec.sprx (/dev_flash/sys/external)
libdmux.sprx (/dev_flash/sys/external)
libdmuxpamf.sprx (/dev_flash/sys/external)
libdsee.sprx (/dev_flash/sys/internal)
libdtsdec.sprx (/dev_flash/sys/internal)
libdtsenc2.sprx (/dev_flash/sys/internal)
libdtshdcoredec.sprx (/dev_flash/sys/internal)
libdtshddec.sprx (/dev_flash/sys/internal)
libdtslbrdec.sprx (/dev_flash/sys/internal)
libexif.sprx (/dev_flash/sys/internal)
libfiber.sprx (/dev_flash/sys/external)
libfont.prx (/dev_flash/pspemu/flash0/usermodule)
libfont.sprx (/dev_flash/sys/external)
libfontFT.sprx (/dev_flash/sys/external)
libfreetype.sprx (/dev_flash/sys/external)
libfreetypeTT.sprx (/dev_flash/sys/external)
libfs.sprx (/dev_flash/sys/external)
libfs_155.sprx (/dev_flash/sys/external)
libfs_utility.sprx (/dev_flash/sys/internal)
libfs_utility_full.sprx (/dev_flash/sys/internal)
libfs_utility_init.sprx (/dev_flash/sys/internal)
libfs_utility2.sprx (/dev_flash/sys/internal)
libft2d.sprx (/dev_flash/sys/internal)
libgcm_sys.sprx (/dev_flash/sys/external)
libgem.sprx (/dev_flash/sys/external)
libgifdec.sprx (/dev_flash/sys/external)
libheap.prx (/dev_flash/pspemu/flash0/usermodule)
libhttp.sprx (/dev_flash/sys/external)
libio.sprx (/dev_flash/sys/external)
libjpgdec.sprx (/dev_flash/sys/external)
libjpgenc.sprx (/dev_flash/sys/external)
libkey2char.sprx (/dev_flash/sys/external)
libl10n.sprx (/dev_flash/sys/external)
liblv2.sprx (/dev_flash/sys/external)
liblv2coredump.sprx (/dev_flash/sys/external)
liblv2dbg_for_cex.sprx (/dev_flash/sys/external)
libm2aacdec.sprx (/dev_flash/sys/internal)
libm2bcdec.sprx (/dev_flash/sys/external)
libm4aacdec.sprx (/dev_flash/sys/external)
libm4aacdec2ch.sprx (/dev_flash/sys/external)
libm4aacdec2chmod.sprx (/dev_flash/sys/internal)
libm4aacdec2chmod2.sprx (/dev_flash/sys/internal)
libm4hdenc.sprx (/dev_flash/sys/external)
libm4venc.sprx (/dev_flash/sys/external)
libmcadpt.sprx (/dev_flash/sys/internal)
libmedi.sprx (/dev_flash/sys/external)
libmic.sprx (/dev_flash/sys/external)
libmp3.sprx (/dev_flash/pspemu/release)
libmp3dec.sprx (/dev_flash/sys/external)
libmp3enc.sprx (/dev_flash/sys/internal)
libmp3sdec.sprx (/dev_flash/sys/internal)
libmp4.sprx (/dev_flash/pspemu/release)
libmp4.sprx (/dev_flash/sys/external)
libmpl1dec.sprx (/dev_flash/sys/external)
libmvcdec.sprx (/dev_flash/sys/internal)
libnet.sprx (/dev_flash/sys/external)
libnetctl.sprx (/dev_flash/sys/external)
libpamf.sprx (/dev_flash/sys/external)
libpngdec.sprx (/dev_flash/sys/external)
libpngenc.sprx (/dev_flash/sys/external)
libps2hdd.sprx (/dev_flash/vsh/module)
libpsmfplayer.prx (/dev_flash/pspemu/flash0/usermodule)
libresc.sprx (/dev_flash/sys/external)
librtc.sprx (/dev_flash/sys/external)
librudp.sprx (/dev_flash/sys/external)
libsail.sprx (/dev_flash/sys/external)
libsail_avi.sprx (/dev_flash/sys/external)
libsail_rec.sprx (/dev_flash/sys/external)
libsjvtd.sprx (/dev_flash/sys/external)
libsmvd2.sprx (/dev_flash/sys/external)
libsmvd4.sprx (/dev_flash/sys/external)
libspurs_jq.sprx (/dev_flash/sys/external)
libsre.sprx (/dev_flash/sys/external)
libssl.sprx (/dev_flash/sys/external)
libsvc1d.sprx (/dev_flash/sys/internal)
libsync2.sprx (/dev_flash/sys/external)
libsysmodule.sprx (/dev_flash/sys/external)
libsysutil.sprx (/dev_flash/sys/external)
libsysutil_ap.sprx (/dev_flash/sys/external)
libsysutil_authdialog.sprx (/dev_flash/sys/external)
libsysutil_avc_ext.sprx (/dev_flash/sys/external)
libsysutil_avc2.sprx (/dev_flash/sys/external)
libsysutil_avconf_ext.sprx (/dev_flash/sys/external)
libsysutil_bgdl.sprx (/dev_flash/sys/external)
libsysutil_dtcp_ip.sprx (/dev_flash/sys/external)
libsysutil_game.sprx (/dev_flash/sys/external)
libsysutil_game_exec.sprx (/dev_flash/sys/external)
libsysutil_game_ps1emu.sprx (/dev_flash/sys/internal)
libsysutil_imejp.sprx (/dev_flash/sys/external)
libsysutil_misc.sprx (/dev_flash/sys/external)
libsysutil_music.sprx (/dev_flash/sys/external)
libsysutil_music_decode.sprx (/dev_flash/sys/external)
libsysutil_music_export.sprx (/dev_flash/sys/external)
libsysutil_np.sprx (/dev_flash/sys/external)
libsysutil_np_clans.sprx (/dev_flash/sys/external)
libsysutil_np_commerce2.sprx (/dev_flash/sys/external)
libsysutil_np_eula.sprx (/dev_flash/sys/external)
libsysutil_np_installer.sprx (/dev_flash/sys/external)
libsysutil_np_sns.sprx (/dev_flash/sys/external)
libsysutil_np_trophy.sprx (/dev_flash/sys/external)
libsysutil_np_tus.sprx (/dev_flash/sys/external)
libsysutil_np_util.sprx (/dev_flash/sys/external)
libsysutil_np2.sprx (/dev_flash/sys/external)
libsysutil_oskdialog_ext.sprx (/dev_flash/sys/external)
libsysutil_pesm.sprx (/dev_flash/sys/external)
libsysutil_photo_decode.sprx (/dev_flash/sys/external)
libsysutil_photo_export.sprx (/dev_flash/sys/external)
libsysutil_photo_import.sprx (/dev_flash/sys/external)
libsysutil_photo_network_sharing.sprx (/dev_flash/sys/external)
libsysutil_print.sprx (/dev_flash/sys/external)
libsysutil_rec.sprx (/dev_flash/sys/external)
libsysutil_remoteplay.sprx (/dev_flash/sys/external)
libsysutil_rtcalarm.sprx (/dev_flash/sys/external)
libsysutil_savedata.sprx (/dev_flash/sys/external)
libsysutil_savedata_psp.sprx (/dev_flash/sys/external)
libsysutil_screenshot.sprx (/dev_flash/sys/external)
libsysutil_search.sprx (/dev_flash/sys/external)
libsysutil_storagedata.sprx (/dev_flash/sys/external)
libsysutil_subdisplay.sprx (/dev_flash/sys/external)
libsysutil_syschat.sprx (/dev_flash/sys/external)
libsysutil_sysconf_ext.sprx (/dev_flash/sys/external)
libsysutil_sysconf_ps1emu.sprx (/dev_flash/sys/internal)
libsysutil_userinfo.sprx (/dev_flash/sys/external)
libsysutil_video_export.sprx (/dev_flash/sys/external)
libsysutil_video_player.sprx (/dev_flash/sys/external)
libsysutil_video_upload.sprx (/dev_flash/sys/external)
libtiffdec.sprx (/dev_flash/sys/internal)
libtrhddec.sprx (/dev_flash/sys/internal)
libusbd.sprx (/dev_flash/sys/external)
libusbpspcm.sprx (/dev_flash/sys/external)
libvdec.sprx (/dev_flash/sys/external)
libvideoSubsystem.sprx (/dev_flash/vsh/module)
libvoice.sprx (/dev_flash/sys/external)
libvoice_internal.sprx (/dev_flash/sys/internal)
libvpost.sprx (/dev_flash/sys/external)
libvpost.sprx (/dev_flash/sys/internal)
libvpost2.sprx (/dev_flash/sys/external)
libwmadec.sprx (/dev_flash/sys/external)
libwmadec.sprx (/dev_flash/sys/internal)
line.png (/dev_flash/vsh/resource/sysconf/calibration)
lines.qrc (/dev_flash/vsh/resource/qql)
logo.png (/dev_flash/vsh/resource/newstore/texture)
ltn0.pgf (/dev_flash/pspemu/flash0/font)
ltn1.pgf (/dev_flash/pspemu/flash0/font)
ltn10.pgf (/dev_flash/pspemu/flash0/font)
ltn11.pgf (/dev_flash/pspemu/flash0/font)
ltn12.pgf (/dev_flash/pspemu/flash0/font)
ltn13.pgf (/dev_flash/pspemu/flash0/font)
ltn14.pgf (/dev_flash/pspemu/flash0/font)
ltn15.pgf (/dev_flash/pspemu/flash0/font)
ltn2.pgf (/dev_flash/pspemu/flash0/font)
ltn3.pgf (/dev_flash/pspemu/flash0/font)
ltn4.pgf (/dev_flash/pspemu/flash0/font)
ltn5.pgf (/dev_flash/pspemu/flash0/font)
ltn6.pgf (/dev_flash/pspemu/flash0/font)
ltn7.pgf (/dev_flash/pspemu/flash0/font)
ltn8.pgf (/dev_flash/pspemu/flash0/font)
ltn9.pgf (/dev_flash/pspemu/flash0/font)
mcore.self (/dev_flash/vsh/module)
mcore_tk.self (/dev_flash/vsh/module)
mediaman.sprx (/dev_flash/pspemu/release)
mgvideo.self (/dev_flash/vsh/module)
micon_lock_plugin.sprx (/dev_flash/vsh/module)
mimetypes.xml (/dev_flash/vsh/resource/silk)
mimetypes.xml (/dev_flash/vsh/resource/silk_nas)
minis_logo.png (/dev_flash/pspemu/flash0/logo)
mintx_client.sprx (/dev_flash/vsh/module)
mms.sprx (/dev_flash/vsh/module)
mms_cls.sprx (/dev_flash/vsh/module)
mms_db_full.sprx (/dev_flash/vsh/module)
mms_ext_full.sprx (/dev_flash/vsh/module)
mms_ext_mini.sprx (/dev_flash/vsh/module)
mms_maintenance.sprx (/dev_flash/vsh/module)
mms_minimdimp_avi.sprx (/dev_flash/vsh/module)
mms_minimdimp_dir_gamehdd.sprx (/dev_flash/vsh/module)
mms_minimdimp_dir_npachive.sprx (/dev_flash/vsh/module)
mms_minimdimp_dir_ps3savedata.sprx (/dev_flash/vsh/module)
mms_minimdimp_jpeg.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_bdvd.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_cdda.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_cdrom.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_gamedisc.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_hdd.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_sacd.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_usbmass.sprx (/dev_flash/vsh/module)
mms_minimdimp_mp3.sprx (/dev_flash/vsh/module)
mms_minimdimp_mp4aac.sprx (/dev_flash/vsh/module)
mms_minimdimp_mp4video.sprx (/dev_flash/vsh/module)
mms_minimdimp_mpeg.sprx (/dev_flash/vsh/module)
mms_minimdimp_msv.sprx (/dev_flash/vsh/module)
mms_minimdimp_music_default.sprx (/dev_flash/vsh/module)
mms_minimdimp_photo_default.sprx (/dev_flash/vsh/module)
mms_minimdimp_png.sprx (/dev_flash/vsh/module)
mms_minimdimp_riff.sprx (/dev_flash/vsh/module)
mms_minimdimp_video_default.sprx (/dev_flash/vsh/module)
mms_schema.sprx (/dev_flash/vsh/module)
mpeg.sprx (/dev_flash/pspemu/release)
msgdialog_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
msmw1.sprx (/dev_flash/vsh/module)
msmw1_aaconly.sprx (/dev_flash/vsh/module)
msmw1_atraconly.sprx (/dev_flash/vsh/module)
msmw2.sprx (/dev_flash/vsh/module)
music_2000_2006spring_jpop_art.aad (/dev_flash/data/dic)
musicbrowser_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
musicbrowser_plugin.sprx (/dev_flash/vsh/module)
nas_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
nas_plugin.sprx (/dev_flash/vsh/module)
nega_env00.png (/dev_flash/vsh/resource/photoviewer_plugin)
nega_env01.png (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M01_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M02_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M03_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M04_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M05_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_2.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_2s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_3.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_3s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_mask.png (/dev_flash/vsh/resource/photoviewer_plugin)
netconf_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
netconf_plugin.sprx (/dev_flash/vsh/module)
newstore_effect.rco (/dev_flash/vsh/resource)
newstore_effect.sprx (/dev_flash/vsh/module)
newstore_plugin.rco (/dev_flash/vsh/resource)
newstore_plugin.sprx (/dev_flash/vsh/module)
np.sprx (/dev_flash/pspemu/release)
np_auth.sprx (/dev_flash/pspemu/release)
np_eula_plugin.rco (/dev_flash/vsh/resource)
np_eula_plugin.sprx (/dev_flash/vsh/module)
np_matching_plugin.rco (/dev_flash/vsh/resource)
np_matching_plugin.sprx (/dev_flash/vsh/module)
np_multisignin_plugin.rco (/dev_flash/vsh/resource)
np_multisignin_plugin.sprx (/dev_flash/vsh/module)
np_service.sprx (/dev_flash/pspemu/release)
np_sns_plugin.rco (/dev_flash/vsh/resource)
np_sns_plugin.sprx (/dev_flash/vsh/module)
np_trophy_ingame.rco (/dev_flash/vsh/resource)
np_trophy_ingame.sprx (/dev_flash/vsh/module)
np_trophy_plugin.rco (/dev_flash/vsh/resource)
np_trophy_plugin.sprx (/dev_flash/vsh/module)
np_trophy_util.sprx (/dev_flash/vsh/module)
npsignin_plugin.rco (/dev_flash/vsh/resource)
npsignin_plugin.sprx (/dev_flash/vsh/module)
null.xml (/dev_flash/vsh/resource/explore/xmb)
number_H.png (/dev_flash/vsh/resource/photoviewer_plugin)
number_L.png (/dev_flash/vsh/resource/photoviewer_plugin)
number_M.png (/dev_flash/vsh/resource/photoviewer_plugin)
onicore_child.self (/dev_flash/vsh/module)
osk_plugin.rco (/dev_flash/vsh/resource)
osk_plugin.sprx (/dev_flash/vsh/module)
oskfullkeypanel_plugin.rco (/dev_flash/vsh/resource)
oskfullkeypanel_plugin.sprx (/dev_flash/vsh/module)
oskpanel_plugin.rco (/dev_flash/vsh/resource)
oskpanel_plugin.sprx (/dev_flash/vsh/module)
paf_ext.sprx (/dev_flash/vsh/module)
paf_psjs.sprx (/dev_flash/vsh/module)
paf_web.sprx (/dev_flash/vsh/module)
PageEnter.vag (/dev_flash/vsh/resource/newstore/sound)
PageEnter2.vag (/dev_flash/vsh/resource/newstore/sound)
PageExit.vag (/dev_flash/vsh/resource/newstore/sound)
PageExit2.vag (/dev_flash/vsh/resource/newstore/sound)
parameters.txt (/dev_flash/vsh/resource/hknw_plugin)
parameters.txt (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pbpcell.properties (/dev_flash/bdplayer/bdjstack)
pbpuiformhp.jar (/dev_flash/bdplayer/bdjstack)
PEmuCoreLib.sprx (/dev_flash/pspemu/release)
pesm_plugin.rco (/dev_flash/vsh/resource)
pesm_plugin.sprx (/dev_flash/vsh/module)
photo.png (/dev_flash/vsh/resource/photoviewer_plugin)
Photo_Default.png (/dev_flash/vsh/resource/avc/image)
photo_envmap.png (/dev_flash/vsh/resource/hknw_plugin)
photo_M01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M01_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M01_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M02_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M02_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M03_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M03_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M04_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M04_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M05_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M05_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_network_sharing_plugin.rco (/dev_flash/vsh/resource)
photo_network_sharing_plugin.sprx (/dev_flash/vsh/module)
photo_shadow_1.png (/dev_flash/vsh/resource/hknw_plugin)
photo_shadow_2.png (/dev_flash/vsh/resource/hknw_plugin)
photo_shadow_3.png (/dev_flash/vsh/resource/hknw_plugin)
photo2_env00.png (/dev_flash/vsh/resource/photoviewer_plugin)
photo2_env01.png (/dev_flash/vsh/resource/photoviewer_plugin)
photolist_plugin.rco (/dev_flash/vsh/resource)
photolist_plugin.sprx (/dev_flash/vsh/module)
photoupload_plugin.rco (/dev_flash/vsh/resource)
photoupload_plugin.sprx (/dev_flash/vsh/module)
photoviewer_plugin.rco (/dev_flash/vsh/resource)
photoviewer_plugin.sprx (/dev_flash/vsh/module)
PIC0.png (/dev_flash/vsh/resource/explore/netflix)
PIC1.png (/dev_flash/vsh/resource/explore/netflix)
PIC2.png (/dev_flash/vsh/resource/explore/netflix)
pl.png (/dev_flash/vsh/resource/newstore/texture)
playlist.xml (/dev_flash/vsh/resource/explore/xmb)
playlist_plugin.rco (/dev_flash/vsh/resource)
playlist_plugin.sprx (/dev_flash/vsh/module)
posi_env01.png (/dev_flash/vsh/resource/photoviewer_plugin)
posi_mask.png (/dev_flash/vsh/resource/photoviewer_plugin)
post_nr.sprx (/dev_flash/vsh/module)
poweroff_plugin.rco (/dev_flash/vsh/resource)
poweroff_plugin.sprx (/dev_flash/vsh/module)
premo_game_plugin.sprx (/dev_flash/vsh/module)
premo_plugin.rco (/dev_flash/vsh/resource)
premo_plugin.sprx (/dev_flash/vsh/module)
print_canon_library.sprx (/dev_flash/vsh/module)
print_dlna_library.sprx (/dev_flash/vsh/module)
print_epson_library.sprx (/dev_flash/vsh/module)
print_plugin.rco (/dev_flash/vsh/resource)
print_plugin.sprx (/dev_flash/vsh/module)
profile_plugin.rco (/dev_flash/vsh/resource)
profile_plugin.sprx (/dev_flash/vsh/module)
profile_plugin_mini.rco (/dev_flash/vsh/resource)
projection_mask.png (/dev_flash/vsh/resource/hknw_plugin)
ps1_emu.self (/dev_flash/ps1emu)
ps1_netemu.self (/dev_flash/ps1emu)
ps1_newemu.self (/dev_flash/ps1emu)
ps1_rom.bin (/dev_flash/ps1emu)
ps2_emu.self (/dev_flash/ps2emu)
ps2_gxemu.self (/dev_flash/ps2emu)
ps2_softemu.self (/dev_flash/ps2emu)
ps3_savedata_plugin.rco (/dev_flash/vsh/resource)
ps3_savedata_plugin.sprx (/dev_flash/vsh/module)
ps3_savedata_plugin_game.sprx (/dev_flash/vsh/module)
ps3_savedata_plugin_game_mini.sprx (/dev_flash/vsh/module)
ps3_savedata_plugin_psp.sprx (/dev_flash/vsh/module)
psmf.sprx (/dev_flash/pspemu/release)
psp_emulator.self (/dev_flash/pspemu/)
psp_translator.self (/dev_flash/pspemu/)
pspnet.sprx (/dev_flash/pspemu/release)
pspnet_adhoc.sprx (/dev_flash/pspemu/release)
pspnet_adhoc_auth.sprx (/dev_flash/pspemu/release)
pspnet_adhoc_discover.sprx (/dev_flash/pspemu/release)
pspnet_adhoc_matching.sprx (/dev_flash/pspemu/release)
pspnet_adhocctl.sprx (/dev_flash/pspemu/release)
pspnet_ap_dialog_dummy.sprx (/dev_flash/pspemu/release)
pspnet_apctl.sprx (/dev_flash/pspemu/release)
pspnet_inet.sprx (/dev_flash/pspemu/release)
pspnet_resolver.sprx (/dev_flash/pspemu/release)
qgl_canyon_app.sprx (/dev_flash/vsh/module)
qgl_gaia_app.sprx (/dev_flash/vsh/module)
qglbase.sprx (/dev_flash/vsh/module)
quirk.css (/dev_flash/vsh/resource/silk/etc)
quirk.css (/dev_flash/vsh/resource/silk_nas/etc)
raf.qrc (/dev_flash/vsh/resource/qql)
raf.sprx (/dev_flash/vsh/module)
rec_plugin.rco (/dev_flash/vsh/resource)
rec_plugin.sprx (/dev_flash/vsh/module)
reg_ad.jpg (/dev_flash/vsh/resource/newstore/texture)
reg_bg.png (/dev_flash/vsh/resource/newstore/texture)
reg_sub1.png (/dev_flash/vsh/resource/newstore/texture)
reg_sub2.png (/dev_flash/vsh/resource/newstore/texture)
reg_sub3.png (/dev_flash/vsh/resource/newstore/texture)
regcam_plugin.rco (/dev_flash/vsh/resource)
regcam_plugin.sprx (/dev_flash/vsh/module)
registory.xml (/dev_flash/vsh/resource/explore/xmb)
rhm.qrc (/dev_flash/vsh/resource/qql)
rtc.sprx (/dev_flash/pspemu/release)
sacd.sprx (/dev_flash/vsh/module)
sacd_plugin.rco (/dev_flash/vsh/resource)
sacd_plugin.sprx (/dev_flash/vsh/module)
SacModule.spu.isoself (/dev_flash/vsh/module)
sascore.sprx (/dev_flash/pspemu/release)
savedata_list.xml (/dev_flash/vsh/resource/explore/xmb)
scea.xml (/dev_flash/vsh/resource/silk/bookmark)
scea.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scea_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scee.xml (/dev_flash/vsh/resource/silk/bookmark)
scee.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scee_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
sceh.xml (/dev_flash/vsh/resource/silk/bookmark)
sceh.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
sceh_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scej.xml (/dev_flash/vsh/resource/silk/bookmark)
scej.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scej_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scek.xml (/dev_flash/vsh/resource/silk/bookmark)
scek.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scek_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scene_base.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
scenefolder_plugin.rco (/dev_flash/vsh/resource)
scenefolder_plugin.sprx (/dev_flash/vsh/module)
SCE-PS3-CP-R-KANA.TTF (/dev_flash/data/font)
SCE-PS3-DH-R-CGB.TTF (/dev_flash/data/font)
SCE-PS3-MT-BI-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-MT-B-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-MT-I-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-MT-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-NR-B-JPN.TTF (/dev_flash/data/font)
SCE-PS3-NR-L-JPN.TTF (/dev_flash/data/font)
SCE-PS3-NR-R-EXT.TTF (/dev_flash/data/font)
SCE-PS3-NR-R-JPN.TTF (/dev_flash/data/font)
SCE-PS3-RD-BI-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-B-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-B-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-RD-I-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-LI-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-L-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-L-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-RD-R-LATIN.TTF (/dev_flash/bdplayer/bdjstack)
SCE-PS3-RD-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-R-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-EXT.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-JPN.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-VR-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-VR-R-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-YG-B-KOR.TTF (/dev_flash/data/font)
SCE-PS3-YG-L-KOR.TTF (/dev_flash/data/font)
SCE-PS3-YG-R-KOR.TTF (/dev_flash/data/font)
sch.xml (/dev_flash/vsh/resource/silk/bookmark)
sch.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
sch_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
screenshot_plugin.rco (/dev_flash/vsh/resource)
screenshot_plugin.sprx (/dev_flash/vsh/module)
search_service.rco (/dev_flash/vsh/resource)
selection_grid.png (/dev_flash/vsh/resource/hknw_plugin)
shadow_nega1.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow_nega2.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow1.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow2.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow3.png (/dev_flash/vsh/resource/photoviewer_plugin)
silk.sprx (/dev_flash/vsh/module)
silk_nas.sprx (/dev_flash/vsh/module)
silk_npflashplayer.sprx (/dev_flash/vsh/module)
silk_npflashplayer9.sprx (/dev_flash/vsh/module)
simple_music2_decode_plugin.sprx (/dev_flash/vsh/module)
software_update_plugin.rco (/dev_flash/vsh/resource)
software_update_plugin.sprx (/dev_flash/vsh/module)
soundvisualizer_plugin.rco (/dev_flash/vsh/resource)
soundvisualizer_plugin.sprx (/dev_flash/vsh/module)
store.qrc (/dev_flash/vsh/resource/qql)
StoreBoot-L.vag (/dev_flash/vsh/resource/newstore/sound)
StoreBoot-L2.vag (/dev_flash/vsh/resource/newstore/sound)
StoreBoot-R.vag (/dev_flash/vsh/resource/newstore/sound)
StoreBoot-R2.vag (/dev_flash/vsh/resource/newstore/sound)
strviewer_plugin.rco (/dev_flash/vsh/resource)
strviewer_plugin.sprx (/dev_flash/vsh/module)
subdisplay_plugin.rco (/dev_flash/vsh/resource)
sv_pseudoaudioplayer_plugin.rco (/dev_flash/vsh/resource)
swagner.self (/dev_flash/vsh/module)
swreset.self (/dev_flash/vsh/module)
sys_audio.self (/dev_flash/sys/internal)
sys_audio.sprx (/dev_flash/sys/internal)
sys_init_osd.self (/dev_flash/sys/internal)
sysconf_plugin.rco (/dev_flash/vsh/resource)
sysconf_plugin.sprx (/dev_flash/vsh/module)
sysmem.sprx (/dev_flash/pspemu/release)
system_plugin.rco (/dev_flash/vsh/resource)
sysvoice_modules.sprx (/dev_flash/sys/internal)
threadman.sprx (/dev_flash/pspemu/release)
thumthum_plugin.rco (/dev_flash/vsh/resource)
thumthum_plugin.sprx (/dev_flash/vsh/module)
TrendMicroConfig.xml (/dev_flash/vsh/resource/silk/etc)
TrendMicroFilterPolicy.xml (/dev_flash/vsh/resource/silk/etc)
TrendMicroFilterPolicy.xml (/dev_flash/vsh/resource/silk_nas/etc)
umd9660.sprx (/dev_flash/pspemu/release)
umdcache.sprx (/dev_flash/pspemu/release)
umdman.sprx (/dev_flash/pspemu/release)
upload_list.xml (/dev_flash/vsh/resource/explore/xmb)
upload_util.rco (/dev_flash/vsh/resource)
upload_util.sprx (/dev_flash/vsh/module)
user_info_plugin.rco (/dev_flash/vsh/resource)
user_info_plugin.sprx (/dev_flash/vsh/module)
user_plugin.rco (/dev_flash/vsh/resource)
user_plugin.sprx (/dev_flash/vsh/module)
usersystemlib.sprx (/dev_flash/pspemu/release)
vaudio.sprx (/dev_flash/pspemu/release)
version.txt (/dev_flash/vsh/etc)
videodownloader_list.xml (/dev_flash/vsh/resource/explore/xmb)
videodownloader_plugin.rco (/dev_flash/vsh/resource)
videodownloader_plugin.sprx (/dev_flash/vsh/module)
videoeditor_plugin.rco (/dev_flash/vsh/resource)
videoeditor_plugin.sprx (/dev_flash/vsh/module)
videoplayer_plugin.rco (/dev_flash/vsh/resource)
videoplayer_plugin.sprx (/dev_flash/vsh/module)
videoplayer_util.rco (/dev_flash/vsh/resource)
videoplayer_util.sprx (/dev_flash/vsh/module)
VideoStore_thumbnail.png (/dev_flash/vsh/resource/explore/icon)
vmc_savedata_plugin.rco (/dev_flash/vsh/resource)
vmc_savedata_plugin.sprx (/dev_flash/vsh/module)
vmclib.sprx (/dev_flash/vsh/module)
vp_jacket_ezprim.vpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
vp_jacket_ezprim2.vpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
vsh.self (/dev_flash/vsh/module)
vshatdl.sprx (/dev_flash/vsh/module)
vshmain_ext.sprx (/dev_flash/vsh/module)
vshmain_util.sprx (/dev_flash/vsh/module)
wboard_plugin.rco (/dev_flash/vsh/resource)
wboard_plugin.sprx (/dev_flash/vsh/module)
webbrowser_plugin.rco (/dev_flash/vsh/resource)
webbrowser_plugin.sprx (/dev_flash/vsh/module)
webrender_plugin.rco (/dev_flash/vsh/resource)
webrender_plugin.sprx (/dev_flash/vsh/module)
widget.png (/dev_flash/vsh/resource/explore/icon)
wlan.sprx (/dev_flash/pspemu/release)
x3_amgsdk.sprx (/dev_flash/vsh/module)
x3_gntoc.sprx (/dev_flash/vsh/module)
x3_mdimp1.sprx (/dev_flash/vsh/module)
x3_mdimp10.sprx (/dev_flash/vsh/module)
x3_mdimp11.sprx (/dev_flash/vsh/module)
x3_mdimp2.sprx (/dev_flash/vsh/module)
x3_mdimp3.sprx (/dev_flash/vsh/module)
x3_mdimp4.sprx (/dev_flash/vsh/module)
x3_mdimp5.sprx (/dev_flash/vsh/module)
x3_mdimp6.sprx (/dev_flash/vsh/module)
x3_mdimp7.sprx (/dev_flash/vsh/module)
x3_mdimp8.sprx (/dev_flash/vsh/module)
x3_mdimp9.sprx (/dev_flash/vsh/module)
xcbcontentop.sprx (/dev_flash/vsh/module)
xcbplugin1.sprx (/dev_flash/vsh/module)
xmb_ingame.rco (/dev_flash/vsh/resource)
xmb_ingame.sprx (/dev_flash/vsh/module)
xmb_plugin.sprx (/dev_flash/vsh/module)
xmb_plugin_normal.rco (/dev_flash/vsh/resource)
ycon_manual_plugin.rco (/dev_flash/vsh/resource)
ycon_manual_plugin.sprx (/dev_flash/vsh/module)
yourchannels.png (/dev_flash/vsh/resource/explore/icon)
Zi8DatDA.z8d (/dev_flash/data/dic)
Zi8DatDE.z8d (/dev_flash/data/dic)
Zi8DatENAM.z8d (/dev_flash/data/dic)
Zi8DatENUK.z8d (/dev_flash/data/dic)
Zi8DatESEU.z8d (/dev_flash/data/dic)
Zi8DatESSA.z8d (/dev_flash/data/dic)
Zi8DatFI.z8d (/dev_flash/data/dic)
Zi8DatFRCA.z8d (/dev_flash/data/dic)
Zi8DatFREU.z8d (/dev_flash/data/dic)
Zi8DatIT.z8d (/dev_flash/data/dic)
Zi8DatNL.z8d (/dev_flash/data/dic)
Zi8DatNO.z8d (/dev_flash/data/dic)
Zi8DatPL.z8d (/dev_flash/data/dic)
Zi8DatPTBZ.z8d (/dev_flash/data/dic)
Zi8DatPTEU.z8d (/dev_flash/data/dic)
Zi8DatRU.z8d (/dev_flash/data/dic)
Zi8DatSV.z8d (/dev_flash/data/dic)
Zi8DatZH.z8d (/dev_flash/data/dic)
Zi8DatZH_HK.z8d (/dev_flash/data/dic)
Zi8DatZH_TW.z8d (/dev_flash/data/dic)
Zi8URLOEM.dat (/dev_flash/data/dic)
</pre>
</pre>


==== 1.10 ====
 
 
----
 
== dev_flash content 3.55 Tool/DECR ==
 
<pre>
<pre>
c03b7f6538162ecd37e5e2b23a18b043  ./dev_flash/bdplayer/bdj.self
64fce88d7afdb1b0022e845c1b74fcd7  ./dev_flash/bdplayer/bdp_BDMV.self
d6d4edd0aad87b0f2572d102285957d1  ./dev_flash/bdplayer/bdp_BDVD.self
5e2282040a9eb7730b62eb96f21a6f94  ./dev_flash/ps1emu/ps1_emu.self
3eec52af412358c2d7f7036ad333e842  ./dev_flash/ps2emu/ps2_emu.self
4591f87abaec148b23e94f30d46e7ee6  ./dev_flash/sys/external/libaacenc.sprx
f94b5e5f4a4e4659db301d0a88c56010  ./dev_flash/sys/external/libac3dec.sprx
2b5854550770b8e4ca62dedfa7fd5ac4  ./dev_flash/sys/external/libadec.sprx
92f4eb7bbb05a5171a5a0a32ad7bbead  ./dev_flash/sys/external/libadec_internal.sprx
2a6d06790a6c5da03fb2175dfdd77c9c  ./dev_flash/sys/external/libat3dec.sprx
e01a03aad6a31604b513eb007aecbf3c  ./dev_flash/sys/external/libatrac3plus.sprx
01cad596586a9ed365fa206ba3551027  ./dev_flash/sys/external/libatxdec.sprx
1af8e91a246379cd38a4e3265ab58877  ./dev_flash/sys/external/libaudio.sprx
b1623373796f81d94e3c07f4bd23bc68  ./dev_flash/sys/external/libavcdec.sprx
0f84259728b0b64e91c4336e2ee2e02c  ./dev_flash/sys/external/libcamera.sprx
e1e933088054f0e633b12289d9731371  ./dev_flash/sys/external/libcelpdec.sprx
1143ea8423ca104006f3bad4b3db005d  ./dev_flash/sys/external/libcelpenc.sprx
42eef934d3b18868232d41f9900fe1e6  ./dev_flash/sys/external/libdaisy.sprx
18f8742951869f2cc2c7dcf390f7e9e0  ./dev_flash/sys/external/libdmux.sprx
96061c5aeafa5ab3a5d1d36283ce5aef  ./dev_flash/sys/external/libdmuxpamf.sprx
d50fb642241c278e1ef95017d4319847  ./dev_flash/sys/external/libfont.sprx
7fe0f70b05a135fcb79518ab1cbde0fe  ./dev_flash/sys/external/libfontFT.sprx
f0f55a5923fd104e7517152c53286dae  ./dev_flash/sys/external/libfreetype.sprx
d74cabbf715cb76276f2cb5fa2de6957  ./dev_flash/sys/external/libfs.sprx
ad4d27466ccc97e4e231e3ed9ae091bf  ./dev_flash/sys/external/libgcm_sys.sprx
9fb6cb8e7669085625fe013934eaa58d  ./dev_flash/sys/external/libhttp.sprx
2a14caf236137e0f5bb5c81715286a97  ./dev_flash/sys/external/libio.sprx
127f811a0a1d4fff10358ab3ad5ca67c  ./dev_flash/sys/external/libjpgdec.sprx
a5fdc72b95a3fd378ff34156a6e4d0bd  ./dev_flash/sys/external/libkey2char.sprx
ca94c178b41b560f33b26798332ba7f0  ./dev_flash/sys/external/libl10n.sprx
f0de9a2f660e230d96b9d3fcef8d2a4b  ./dev_flash/sys/external/liblv2.sprx
922324aca8a455fe7e0f064be7402ca5  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
d0d8606b9241770b4fe3a27700c5f3b2  ./dev_flash/sys/external/libm4aacdec.sprx
46967e2df4db2e77d4ecdd857649dc6c  ./dev_flash/sys/external/libm4venc.sprx
6010997988d8755d36ab7c93e402eacc  ./dev_flash/sys/external/libmcadpt.sprx
4af769e999d4b18a8d4b2876c358bb04  ./dev_flash/sys/external/libmic.sprx
339bebb58c06d614bdd6881df9268230  ./dev_flash/sys/external/libmp3dec.sprx
b7c1bd7faec2a042445b73330d16a0f8  ./dev_flash/sys/external/libnet.sprx
7822a371188d623f83af153526ca3723  ./dev_flash/sys/external/libnetctl.sprx
1957ac69d8bcfdd9c752e772040b3d90  ./dev_flash/sys/external/libovis.sprx
b35c708cd41840d26e84bbdfc0a6089c  ./dev_flash/sys/external/libpamf.sprx
63704907daa047e5e6874d74f885f22f  ./dev_flash/sys/external/libpngdec.sprx
8e537f3dc5c2214224451ee015be8f69  ./dev_flash/sys/external/libresc.sprx
be9221164680c4ef36ab4a82f33a8e15  ./dev_flash/sys/external/librtc.sprx
49fee5fae9f80784daf7dd8c5758e97f  ./dev_flash/sys/external/libsail.sprx
513f4bc359420ca269b2debd90c02cde  ./dev_flash/sys/external/libsheap.sprx
00431c0a5c77222f7741a5e2cb380245  ./dev_flash/sys/external/libsmvd2.sprx
284f6f3cfb2c28692735c2017167ef74  ./dev_flash/sys/external/libsmvd4.sprx
7772f0f45e58cd7b3245187a061c6a2d  ./dev_flash/sys/external/libspurs.sprx
bb67566a7f97cc1db5a824bccc19140a  ./dev_flash/sys/external/libsre.sprx
d9ebdb15061f2169d15604ea4d96bb4e  ./dev_flash/sys/external/libssl.sprx
16cf8f35b00043fc3c20ea952c88977a  ./dev_flash/sys/external/libsync.sprx
54a10b1dbbe4c413998bc7fe142fbc89  ./dev_flash/sys/external/libsysmodule.sprx
0b31f4543e0a6fdcaea3d53367a2daf0  ./dev_flash/sys/external/libsysutil.sprx
b00b94ea6f1a4a579d191e97e6415227  ./dev_flash/sys/external/libsysutil_np.sprx
ba383651ebb5d7347efedaeb28359641  ./dev_flash/sys/external/libusbd.sprx
65528222d95b7712bfe7b42333e30142  ./dev_flash/sys/external/libvdec.sprx
fd348fdbbc06dba78f9ffb4e8b271e35  ./dev_flash/sys/external/libvpost.sprx
3887bab345a589a889d3786e0569a73a  ./dev_flash/sys/internal/libadec.sprx
59082bfe55206343105e7fc9c6b13934  ./dev_flash/sys/internal/libapostsrc.sprx
bf9367f02dbb86b04d2b30619e283203  ./dev_flash/sys/internal/libat3enc.sprx
4bbfd1920c25d6a84201c1b7ad1c48ef  ./dev_flash/sys/internal/libatxenc.sprx
67474e593b460da5d7016cd0974534e5  ./dev_flash/sys/internal/libaudio_internal.sprx
34dc19851d2bc6328aed329c2043f582  ./dev_flash/sys/internal/libavchatjpgdec.sprx
222d19e52360122ebfee313b95bcb4f0  ./dev_flash/sys/internal/libcamera.sprx
4a2b7c08a44f203dd517f456ac52c820  ./dev_flash/sys/internal/libcelpenc.sprx
b8edaf2c74576f4dfaa1ff46ed78ec0f  ./dev_flash/sys/internal/libdtsdec.sprx
680c78eeed593ed84550bb24cbdae5a0  ./dev_flash/sys/internal/libfs.sprx
e45559986c55cd1a1612c2dcc9c1a3ae  ./dev_flash/sys/internal/libfs_utility.sprx
1b9882a2182af7ffee9d579f6da8923c  ./dev_flash/sys/internal/libft2d.sprx
c179786c0ad691cde3163eb2645ff2a9  ./dev_flash/sys/internal/libgcm_osd.sprx
022a3ea52778f893e43e866ed4041869  ./dev_flash/sys/internal/libgifdec.sprx
8b2363c7d6fa43a5f07043230f51e784  ./dev_flash/sys/internal/libjpgenc.sprx
ad6ae566fc1e3b941e40467bc440b9fd  ./dev_flash/sys/internal/libm2aacdec.sprx
e59110ea007a602208e41d5e3f65e94e  ./dev_flash/sys/internal/libm2bcdec.sprx
41d0064eba713b3a562ddb156021ef06  ./dev_flash/sys/internal/libm4venc.sprx
49109f9ae97504caa7722ba9df7196a5  ./dev_flash/sys/internal/libmcadpt.sprx
a808655f9501badcb0923e368a539961  ./dev_flash/sys/internal/libmic.sprx
7be81d80feb74626e5d61fe40277a921  ./dev_flash/sys/internal/libmp3enc.sprx
e2ce3a2fd0c666dcb3a4b0d3efd9fdfd  ./dev_flash/sys/internal/libpamf.sprx
95d50b1b6c1b10a8c061c38c37223d52  ./dev_flash/sys/internal/libpngenc.sprx
9348981527ecaeca3804174dfccf448d  ./dev_flash/sys/internal/libsvc1d.sprx
63f6d6d3a2be2cd839ce346c0c5fc75e  ./dev_flash/sys/internal/libtiffdec.sprx
dd9c7f06ec6064eafbaf0e5132c5be46  ./dev_flash/sys/internal/libtrhddec.sprx
ea0719656ca39e0c088f7ae0c9b4fc94  ./dev_flash/sys/internal/libvdec.sprx
635809e29935e84d3e13b5689fbec306  ./dev_flash/sys/internal/libvpost.sprx
baf6b0325d7769f02380a245c32aa9bb  ./dev_flash/sys/internal/sys_audio.self
27492225e758f55dd9b38baef1d2b487  ./dev_flash/sys/internal/sys_init_osd.self
2f3ef79fdf5e7289cb1abdc2db0beed3  ./dev_flash/sys/internal/sys_tsma.self
330f2434081b66c1de432271e5df47ec  ./dev_flash/vsh/module/audioplayer_plugin.sprx
78750f6de32b9ed90c5211781093ef8f  ./dev_flash/vsh/module/auth_plugin.sprx
0705d10011d26aa4b5b71a96b0b9344e  ./dev_flash/vsh/module/avc_plugin.sprx
e2d0eea5b53f66a8a6df10e717d85cda  ./dev_flash/vsh/module/avc_util.sprx
7dc0d7ee55c6e1cd7455019742810b7e  ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
784478239aa2b9e7c5031a5eb6331719  ./dev_flash/vsh/module/bdp_plugin.sprx
2d46fa0baaabee47b8c6a555e40d8f76  ./dev_flash/vsh/module/category_setting_plugin.sprx
dfd88fa66ed85270d4af3913456f4da3  ./dev_flash/vsh/module/cdda_plugin.sprx
3314f7e912ab43bf823249086654b69e  ./dev_flash/vsh/module/custom_render_plugin.sprx
73b38271c0163547430b29e0444525fe  ./dev_flash/vsh/module/data_copy_plugin.sprx
f898d893f78249cb608184d417fd304b  ./dev_flash/vsh/module/download_plugin.sprx
e0079ae3f58befd4d68779d131d76fba  ./dev_flash/vsh/module/eula_cddb_plugin.sprx
c6122d99591c0fe966dd6e427c29791a  ./dev_flash/vsh/module/explore_plugin.sprx
72c335279f1dedaef9aaf654f06d56e9  ./dev_flash/vsh/module/explore_plugin_game.sprx
712d419179a2b63a989837af8bbe0a26  ./dev_flash/vsh/module/explore_plugin_np.sprx
87254bbfaf90171165d873ed1ff985f1  ./dev_flash/vsh/module/friendim_plugin.sprx
88484e2abe122a6879274d7e696ff0f8  ./dev_flash/vsh/module/game_plugin.sprx
9d75490e5970da76f5249476f1dc7195  ./dev_flash/vsh/module/gamedata_plugin.sprx
ab895fb55d7f1fff08e55cbd765cd1a0  ./dev_flash/vsh/module/ime.sprx
934290436f2a408342e6646ee98d554f  ./dev_flash/vsh/module/impose_plugin.sprx
b9c7d6d9ae1026b15e8c0af9d2dcbe44  ./dev_flash/vsh/module/mcore.self
16e5551061fc575ecb6ecde8ee024ee7  ./dev_flash/vsh/module/mgvideo.self
01cdb6ab8356363b0a0ba1f7bfa69deb  ./dev_flash/vsh/module/micon_lock_plugin.sprx
dd0183edf592887a3797efca78dcb963  ./dev_flash/vsh/module/mms.sprx
709701b713a8ae362f649a49e251362b  ./dev_flash/vsh/module/mms_db.sprx
389a8b132e584fd494d911c43c982b0d  ./dev_flash/vsh/module/mouse_plugin.sprx
020ed005668f5a652c90a7b1b76a7045  ./dev_flash/vsh/module/msgdialog_plugin.sprx
04c71256aa68438452d23d38de741d73  ./dev_flash/vsh/module/msmw1.sprx
0b68411b70707b5fe30f267e7f9fbb5f  ./dev_flash/vsh/module/msmw2.sprx
5a0bca7d3178617ce9f6a7b994f39396  ./dev_flash/vsh/module/nas_plugin.sprx
8af207bd18f3e632e14b44b040e2ae8f  ./dev_flash/vsh/module/netconf_plugin.sprx
fc2fe6e952f9198dc8d5d0323d66230c  ./dev_flash/vsh/module/netctl_main.sprx
037450a66f87a5418d1d5f785d0dbad2  ./dev_flash/vsh/module/np_matching_plugin.sprx
c23a69dd5e67268001a9ee6bb30d67e0  ./dev_flash/vsh/module/npflashplayer.sprx
72e938d37b723b609d02285e58ed1821  ./dev_flash/vsh/module/npsignin_plugin.sprx
25aec910d2b341b80a1ff81559a75033  ./dev_flash/vsh/module/onicore_child.self
f17e066934182a70a166181aefb0a887  ./dev_flash/vsh/module/osk_plugin.sprx
3da194d348cf93d37e23b55dd9314a74  ./dev_flash/vsh/module/oskpanel_plugin.sprx
234a8aa8a512dddff65e0a222c42c636  ./dev_flash/vsh/module/paf.sprx
6c975fe76e453174a6f8679eebe1085f  ./dev_flash/vsh/module/photoviewer_plugin.sprx
11ee06b62a3de87dd4a3e7bbedee08b1  ./dev_flash/vsh/module/premo_plugin.sprx
e45eb0ae1f0470c78670a2b4df2f89f5  ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
0c03b7c88132c1c49cd90fc0cf976eb8  ./dev_flash/vsh/module/sacd.sprx
1b7e4732bbb567f0ee73535d0a48a701  ./dev_flash/vsh/module/sacd_plugin.sprx
151af62444649ef8e5866e9bab2e5b79  ./dev_flash/vsh/module/sdk.sprx
b02405727953fea03b84a77e713e5522  ./dev_flash/vsh/module/sdk_full.sprx
838de3d9bc9051ee4acaeb2aefbba096  ./dev_flash/vsh/module/silk.sprx
cdca98eda95565faa4be04685ffc948f  ./dev_flash/vsh/module/software_update_plugin.sprx
c6908e9c0308949c065d88ae57e94ec6  ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
31dcb31c75fc491016ffdf38a29665a8  ./dev_flash/vsh/module/strviewer_plugin.sprx
b2f97a7f032f9b77bf96ccaec497ffad  ./dev_flash/vsh/module/sysconf_plugin.sprx
48e4ab3de12c694320d24d426f1a1a8d  ./dev_flash/vsh/module/system_plugin.sprx
a9ac480a82e023f356969c5384ab649f  ./dev_flash/vsh/module/thumthum_plugin.sprx
a0bf3c2f1490fb701adab337f01d6d3b  ./dev_flash/vsh/module/user_plugin.sprx
5756430fb56d4f5a1dd645750a12fbd3  ./dev_flash/vsh/module/videodownloader_plugin.sprx
532fb56e7aa17bda8be95ee090691a56  ./dev_flash/vsh/module/videoplayer_plugin.sprx
a735ed02c15fb87716d10a87b5657aa1  ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
154547a35a5841211434354f6413c089  ./dev_flash/vsh/module/vmclib.sprx
2cd4c7fb286161a793e8f34ca353db84  ./dev_flash/vsh/module/vsh.self
99239c507c1875deb6bdf82737ade04c  ./dev_flash/vsh/module/vshcommon.sprx
3eab0a00cf4ca61c6da95c15b3bcf81f  ./dev_flash/vsh/module/vshmain.sprx
c5699393468104b44fc39dfd46ae6fc6  ./dev_flash/vsh/module/vshnet.sprx
52df56948826ea24f2936761867c8cb6  ./dev_flash/vsh/module/webbrowser_plugin.sprx
6d46deb4dfc196ce3c01f86ab1565cd1  ./dev_flash/vsh/module/x3.sprx
8f533524d6bfd3e61a3829f0d21d7aaa  ./dev_flash/vsh/module/x3_mdimp1.sprx
3b323363ec2266a14f3554f8b7365271  ./dev_flash/vsh/module/x3_mdimp2.sprx
fc73b5d3ff8c2a6c1a0d30c1e6bb2134  ./dev_flash/vsh/module/x3_mdimp3.sprx
6f5e7d3745e476f1424060436a44b7f7  ./dev_flash/vsh/module/xcbplugin1.sprx
d183a0d5e8eb3766a13c21e13f1b87b1  ./dev_flash/vsh/module/xmb_plugin.sprx
d2d1665a3dbfe5ea50d4b1675483a2ef  ./dev_flash/vsh/module/xsetting.sprx
</pre>


==== 1.11 ====
\PS3DECRUpdateData.355.001d\dev_flash
<pre>
27-08-2011  20:56    <DIR>         data
4d9196a6037398e69926a1192241bfce ./dev_flash/bdplayer/bdj.self
27-08-2011 20:58                0 dir.txt
6453c2caa3b3d15abbf5bb539fe4e508 ./dev_flash/bdplayer/bdp_BDMV.self
27-08-2011 20:56    <DIR>          sys
c17fee0e3fe059ee855d2c8d9e3b7287 ./dev_flash/bdplayer/bdp_BDVD.self
27-08-2011 20:55    <DIR>          vsh
54a8c4b3466c0165a4b170fd83b4d1e4 ./dev_flash/ps1emu/ps1_emu.self
              1 file(s)                0 bytes
d5672706086959d0d20b3691b584529c ./dev_flash/ps2emu/ps2_emu.self
 
5c0e40e356ada510b3e51d1b5507a7a3 ./dev_flash/sys/external/libaacenc.sprx
\PS3DECRUpdateData.355.001d\dev_flash\data
3edb7b6deac13e5d67f5fe8a030e8c85 ./dev_flash/sys/external/libac3dec.sprx
27-08-2011 20:56    <DIR>          cert
4f1b28baa9180299b509c8478c076d4a ./dev_flash/sys/external/libadec.sprx
27-08-2011 20:56    <DIR>          dic
366640bef810ad74d761d99a7e12b738 ./dev_flash/sys/external/libadec_internal.sprx
27-08-2011 20:56    <DIR>          font
b56d6952bfcf1cd19514566d541e1ab3 ./dev_flash/sys/external/libat3dec.sprx
              0 file(s)                0 bytes
33797e1e0328e9381908d4bf703c661e ./dev_flash/sys/external/libatrac3plus.sprx
 
4f0d951d279b13d21ea8dd1a9fc51dbd ./dev_flash/sys/external/libatxdec.sprx
\PS3DECRUpdateData.355.001d\dev_flash\data\cert
9bcb6faee5739fee686e0e687bd33d07 ./dev_flash/sys/external/libaudio.sprx
29-11-2010 03:34            1.387 CA01.cer
dc3cd4322425c42cff5622a0a83c1c6a ./dev_flash/sys/external/libavcdec.sprx
29-11-2010 03:34            1.387 CA02.cer
67e5b5c160d2e6b5fca21e770b786c27 ./dev_flash/sys/external/libcamera.sprx
29-11-2010 03:34            1.387 CA03.cer
7781b58491663d55c73c68413aa23c05 ./dev_flash/sys/external/libcelpdec.sprx
29-11-2010 03:34            1.387 CA04.cer
f19a70998eab53d9df94045c68efefca ./dev_flash/sys/external/libcelpenc.sprx
29-11-2010 03:34            1.387 CA05.cer
2a124b8fea045674c69db1ce0d841152 ./dev_flash/sys/external/libdaisy.sprx
29-11-2010 03:34            1.282 CA06.cer
bf967f8bde5af60a8dc3a79b74f7c2e7 ./dev_flash/sys/external/libdmux.sprx
29-11-2010 03:34            1.122 CA07.cer
c9016d3aab83a43f12cc845421bc4f6c ./dev_flash/sys/external/libdmuxpamf.sprx
29-11-2010 03:34            1.508 CA08.cer
7b1d17b4fa621ca0b888292e9852015d ./dev_flash/sys/external/libfont.sprx
29-11-2010 03:34              854 CA09.cer
f465bacbe1f98fa611c8af854995acf9 ./dev_flash/sys/external/libfontFT.sprx
29-11-2010 03:34            1.126 CA10.cer
c19482e059c163fb0a636191ddfb9535 ./dev_flash/sys/external/libfreetype.sprx
29-11-2010 03:34            1.504 CA11.cer
5f8d9dfd11271faa1400af334d320bae ./dev_flash/sys/external/libfs.sprx
29-11-2010 03:34              848 CA12.cer
6b4ee486fb6b7931569c13f80b750576 ./dev_flash/sys/external/libgcm_sys.sprx
29-11-2010 03:34            1.122 CA13.cer
19f722c7f45240b3da4560127ce21041 ./dev_flash/sys/external/libhttp.sprx
29-11-2010 03:34            1.508 CA14.cer
5c6abfd9dd18bf119b58baeb2978c022 ./dev_flash/sys/external/libio.sprx
29-11-2010 03:34              848 CA15.cer
e690b3784a2f19ff58e3ec2c56ec81a0 ./dev_flash/sys/external/libjpgdec.sprx
29-11-2010  03:34            1.122 CA16.cer
195d2354770dd4dfb56ebc827fa939f9 ./dev_flash/sys/external/libkey2char.sprx
29-11-2010 03:34            1.508 CA17.cer
2100cb89eda7809511dd5ec98cebab74 ./dev_flash/sys/external/libl10n.sprx
29-11-2010 03:34            1.768 CA18.cer
e3cad3ecdc58ebdd1ce9bbf2433ad8ac ./dev_flash/sys/external/liblv2.sprx
29-11-2010 03:34            1.162 CA19.cer
7afb0d0a27e74ffef4fc90e0547c0f67 ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
29-11-2010 03:34              948 CA20.cer
b2c8e9c0a44c4649dfb869ae0dfc2072 ./dev_flash/sys/external/libm4aacdec.sprx
29-11-2010 03:34            1.236 CA21.cer
7efabb374c02e72026c86a83c09f8583 ./dev_flash/sys/external/libm4venc.sprx
29-11-2010 03:34            1.282 CA22.cer
7af24f4be6a94fae2247e616c86cea0a ./dev_flash/sys/external/libmcadpt.sprx
29-11-2010 03:34              890 CA23.cer
976c1b3dd8cb465ef7c28a0a81df9d6c ./dev_flash/sys/external/libmic.sprx
29-11-2010  03:34              758 CA24.cer
f702526949faa5a418453dc53be0653e ./dev_flash/sys/external/libmp3dec.sprx
29-11-2010 03:34            1.066 CA25.cer
0e782561e1c52432916f4e1860730508 ./dev_flash/sys/external/libnet.sprx
29-11-2010 03:34            1.233 CA26.cer
5d4167458cfd2e84106096fcb4bea8bd ./dev_flash/sys/external/libnetctl.sprx
29-11-2010 03:34              840 CA27.cer
4a9034f2e773bc3e998bab7043676d53  ./dev_flash/sys/external/libovis.sprx
29-11-2010  03:34            1.174 CA28.cer
59a5a8ca90b9b1952ed2aedcc7e158dc ./dev_flash/sys/external/libpamf.sprx
29-11-2010 03:34            1.146 CA29.cer
9f45ca853ee0c83a55b3a539a1c39214 ./dev_flash/sys/external/libpngdec.sprx
29-11-2010 03:34            1.084 CA30.cer
8c9bae47e85e092a1ca0336162cc1c62 ./dev_flash/sys/external/libresc.sprx
29-11-2010 03:34            1.402 CA31.cer
fc9c20256652def40c765df8a6aa4a34 ./dev_flash/sys/external/librtc.sprx
29-11-2010 03:34            1.517 CA32.cer
c14c723ab8efc3255a47cdaea5675121 ./dev_flash/sys/external/libsail.sprx
29-11-2010 03:34            1.521 CA33.cer
ce352e51b82ed451daae73533a6f9869 ./dev_flash/sys/external/libsheap.sprx
29-11-2010 03:34            1.606 CA34.cer
b8c8023c7c1369c4199a314307e0db3e ./dev_flash/sys/external/libsmvd2.sprx
29-11-2010 03:34              964 CA35.cer
e8a4acc1d4324104817588f0e4521f68 ./dev_flash/sys/external/libsmvd4.sprx
29-11-2010 03:34            1.760 CA36.cer
ad48c89b7b35b2c55757145ad63c3d65 ./dev_flash/sys/external/libspurs.sprx
              36 file(s)          44.644 bytes
19f33081c9cac939a33701212811a6b5 ./dev_flash/sys/external/libsre.sprx
 
20078e144fd25e4791ad7f2bae3d5bca ./dev_flash/sys/external/libssl.sprx
\PS3DECRUpdateData.355.001d\dev_flash\data\dic
6210df45ecd7be0b389c9db9334f6016 ./dev_flash/sys/external/libsync.sprx
29-11-2010 03:34              121 aadList.dat
b0a55b6bfe3529cdbcde43bdacb4093b ./dev_flash/sys/external/libsysmodule.sprx
29-11-2010  03:34        1.572.104 apotp.dic
4d6c4def9bfc78de61404e570e51b4e3 ./dev_flash/sys/external/libsysutil.sprx
29-11-2010 03:34        2.051.885 atokp.dic
458123502a06e2adf2d1d37113726eb5 ./dev_flash/sys/external/libsysutil_np.sprx
29-11-2010 03:34            18.164 entertainment_haiyu_nihon.aad
2f1836f8872be6d0421aef10540bdac8 ./dev_flash/sys/external/libusbd.sprx
29-11-2010 03:34            18.731 entertainment_owarai_TV_talent.aad
7ee126b5ba609f12d4cf0d8629e724da ./dev_flash/sys/external/libvdec.sprx
29-11-2010 03:34            13.808 face_facemark_i.aad
d8fec7b5954d5f90e6f2de4054e0f275 ./dev_flash/sys/external/libvpost.sprx
29-11-2010 03:34            12.194 music_2000_2006spring_jpop_art.aad
07ed9dcc151dd12bcb72dda15d399a3b ./dev_flash/sys/internal/libadec.sprx
29-11-2010 03:34          160.176 Zi8DatDA.z8d
b3e54d15ec01b74b5ed353bbeb85a7f6 ./dev_flash/sys/internal/libapostsrc.sprx
29-11-2010 03:34          107.332 Zi8DatDE.z8d
f06214a7349fbc26cd0423b28946060b ./dev_flash/sys/internal/libat3enc.sprx
29-11-2010 03:34            86.120 Zi8DatENAM.z8d
80d22dcdb6b6d12665ea9c631cf6284a ./dev_flash/sys/internal/libatxenc.sprx
29-11-2010 03:34            95.012 Zi8DatENUK.z8d
6196fbdc18c477e6f7b8a7d037e81d90 ./dev_flash/sys/internal/libaudio_internal.sprx
29-11-2010 03:34          112.068 Zi8DatESEU.z8d
2b21a93b0b8c7d52aa40517f46e61de4 ./dev_flash/sys/internal/libavchatjpgdec.sprx
29-11-2010 03:34          109.988 Zi8DatESSA.z8d
7e90a6c1218c360795d7b841f20afd45 ./dev_flash/sys/internal/libcamera.sprx
29-11-2010 03:34          117.512 Zi8DatFI.z8d
1b9cf1ce85890ee1e69ca794a366bcf3 ./dev_flash/sys/internal/libcelpenc.sprx
29-11-2010 03:34            75.976 Zi8DatFRCA.z8d
dfda3ce58eb0ad357df35df60af61856  ./dev_flash/sys/internal/libdtsdec.sprx
29-11-2010 03:34            79.836 Zi8DatFREU.z8d
61bd3a02124eb2af7abafb04deed7b59  ./dev_flash/sys/internal/libfs.sprx
29-11-2010 03:34          105.632 Zi8DatIT.z8d
38db1390b5866126a47a84ccbbe6a043 ./dev_flash/sys/internal/libfs_utility.sprx
29-11-2010 03:34          105.436 Zi8DatNL.z8d
590e6bb84c4b2c2bdf53ed18a9c264b7 ./dev_flash/sys/internal/libft2d.sprx
29-11-2010 03:34          116.748 Zi8DatNO.z8d
2609e9b89c40dceef15e31aab603a3d6 ./dev_flash/sys/internal/libgcm_osd.sprx
29-11-2010 03:34          196.200 Zi8DatPL.z8d
787ee9709d83b6bbda8d1924e80e50f4 ./dev_flash/sys/internal/libgifdec.sprx
29-11-2010  03:34            95.444 Zi8DatPTBZ.z8d
ace0d2e10d5e687aa0192e28947a2a8c ./dev_flash/sys/internal/libjpgenc.sprx
29-11-2010 03:34          142.888 Zi8DatPTEU.z8d
d03304354269ca999b481e1018f577ad ./dev_flash/sys/internal/libm2aacdec.sprx
29-11-2010 03:34          111.564 Zi8DatRU.z8d
2d45de23f45a78b16744f276d0161e70 ./dev_flash/sys/internal/libm2bcdec.sprx
29-11-2010 03:34            93.620 Zi8DatSV.z8d
282b873a88a699996d45d0418c2c9fdc ./dev_flash/sys/internal/libm4venc.sprx
29-11-2010 03:34          627.796 Zi8DatZH.z8d
c90e4d26b95e68bd8de5a404fd422486 ./dev_flash/sys/internal/libmcadpt.sprx
29-11-2010 03:34          590.216 Zi8DatZH_HK.z8d
2485175d712dc2542b7c6364de755a85 ./dev_flash/sys/internal/libmic.sprx
29-11-2010 03:34          503.272 Zi8DatZH_TW.z8d
84de8407e34eebd61fb076d5228e6274 ./dev_flash/sys/internal/libmp3enc.sprx
29-11-2010 03:34            4.368 Zi8URLOEM.dat
c7b1af770501e6a60fc32cfc0f8ae4ff ./dev_flash/sys/internal/libpamf.sprx
              28 file(s)        7.324.211 bytes
56ed225964ad7965e5a784e57c0e6e53 ./dev_flash/sys/internal/libpngenc.sprx
 
f56b989852a58c55b8700906a93647d7 ./dev_flash/sys/internal/libsvc1d.sprx
\PS3DECRUpdateData.355.001d\dev_flash\data\font
c127e355770a3df5f68c9b7328c7b6f2 ./dev_flash/sys/internal/libtiffdec.sprx
29-11-2010 07:32            62.076 SCE-PS3-CP-R-KANA.TTF
0b5ea2b34fdce144496839d231913174 ./dev_flash/sys/internal/libtrhddec.sprx
29-11-2010 07:32        8.226.948 SCE-PS3-DH-R-CGB.TTF
d8c56732169c3850d3ed8bb1812b31d0 ./dev_flash/sys/internal/libvdec.sprx
29-11-2010 07:32            74.116 SCE-PS3-MT-B-LATIN.TTF
3c6bf576ffafac5fa7927a7fe4bbbf9b ./dev_flash/sys/internal/libvpost.sprx
29-11-2010 07:32            78.120 SCE-PS3-MT-BI-LATIN.TTF
25992a2a8b870f1f2a3ff3d85e0fe5d4 ./dev_flash/sys/internal/sys_audio.self
29-11-2010 07:32            78.808 SCE-PS3-MT-I-LATIN.TTF
7a07a2a2e72ed219a24d58535e34d051 ./dev_flash/sys/internal/sys_init_osd.self
29-11-2010 07:32            73.772 SCE-PS3-MT-R-LATIN.TTF
f6a88d47951c41445e07f804f1ed12be ./dev_flash/sys/internal/sys_tsma.self
29-11-2010 07:32        2.987.812 SCE-PS3-NR-B-JPN.TTF
dc9989ee600676b4b1c94f831fbcbfef ./dev_flash/vsh/module/audioplayer_plugin.sprx
29-11-2010 07:32        3.083.956 SCE-PS3-NR-L-JPN.TTF
49e0a7fc3c176e176b8a2fa034047be9 ./dev_flash/vsh/module/auth_plugin.sprx
29-11-2010 07:32          279.480 SCE-PS3-NR-R-EXT.TTF
a8cd4d7167299d73342e00954cf0eded ./dev_flash/vsh/module/avc_plugin.sprx
29-11-2010 07:32        3.103.800 SCE-PS3-NR-R-JPN.TTF
a18057d8cabdc3a406d983ed5066e9ef ./dev_flash/vsh/module/avc_util.sprx
29-11-2010 07:32            37.936 SCE-PS3-RD-B-LATIN.TTF
db499d04c4358e0f64be0353adac8efa ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
29-11-2010 07:32            54.056 SCE-PS3-RD-B-LATIN2.TTF
27987e3b7ba548aa6ea7521e6ecd18cd ./dev_flash/vsh/module/bdp_plugin.sprx
29-11-2010 07:32            40.064 SCE-PS3-RD-BI-LATIN.TTF
8dd8f30ff0c03b1f74b4c63d7fc1c485 ./dev_flash/vsh/module/category_setting_plugin.sprx
29-11-2010 07:32            40.612 SCE-PS3-RD-I-LATIN.TTF
03131cd755573a7fed26830e1737b277  ./dev_flash/vsh/module/cdda_plugin.sprx
29-11-2010 07:32            38.676 SCE-PS3-RD-L-LATIN.TTF
4211d0d46f95c4664035487fa6bb4ef7  ./dev_flash/vsh/module/custom_render_plugin.sprx
29-11-2010 07:32            55.292 SCE-PS3-RD-L-LATIN2.TTF
88c3f37a1cf23749bc1cbfdcd3ecaf4b ./dev_flash/vsh/module/data_copy_plugin.sprx
29-11-2010 07:32            41.016 SCE-PS3-RD-LI-LATIN.TTF
7a71ae041dc58f486e23e3e1bce9dfae ./dev_flash/vsh/module/download_plugin.sprx
29-11-2010 07:32            38.388 SCE-PS3-RD-R-LATIN.TTF
22413b2039b2557ef7552a4de9f73edc ./dev_flash/vsh/module/eula_cddb_plugin.sprx
29-11-2010 07:32            54.908 SCE-PS3-RD-R-LATIN2.TTF
4a08c8aea99be57792c70d56a7c3e97a ./dev_flash/vsh/module/explore_plugin.sprx
29-11-2010 07:32          275.536 SCE-PS3-SR-R-EXT.TTF
7de107b2e92922b8bc51c8aa986e7745 ./dev_flash/vsh/module/explore_plugin_game.sprx
29-11-2010 07:32        4.667.404 SCE-PS3-SR-R-JPN.TTF
e5a144ae2db99fcb1053cb0784426839 ./dev_flash/vsh/module/explore_plugin_np.sprx
29-11-2010 07:32            53.680 SCE-PS3-SR-R-LATIN.TTF
19dd593304c8f49bce134df13f70977b ./dev_flash/vsh/module/friendim_plugin.sprx
29-11-2010 07:32            77.544 SCE-PS3-SR-R-LATIN2.TTF
a4c7c676b03bbd0f572274e9ec9c0a50 ./dev_flash/vsh/module/game_plugin.sprx
29-11-2010 07:32            66.372 SCE-PS3-VR-R-LATIN.TTF
1c03c522cdadb6852d1d98c01c8ccd5a ./dev_flash/vsh/module/gamedata_plugin.sprx
29-11-2010 07:32          137.392 SCE-PS3-VR-R-LATIN2.TTF
83718561c86783be4ffccca48752c8b8 ./dev_flash/vsh/module/ime.sprx
29-11-2010 07:32          495.304 SCE-PS3-YG-B-KOR.TTF
a6bdaf4c2cff3418fe836a268e1f2092 ./dev_flash/vsh/module/impose_plugin.sprx
29-11-2010 07:32          495.464 SCE-PS3-YG-L-KOR.TTF
b9c7d6d9ae1026b15e8c0af9d2dcbe44 ./dev_flash/vsh/module/mcore.self
29-11-2010 07:32          497.448 SCE-PS3-YG-R-KOR.TTF
16e5551061fc575ecb6ecde8ee024ee7 ./dev_flash/vsh/module/mgvideo.self
              28 file(s)      25.215.980 bytes
15b4478cfa4a11946edaa7d7afae0073 ./dev_flash/vsh/module/micon_lock_plugin.sprx
 
a2e1a79c611f75e36c294fa07eded6fb ./dev_flash/vsh/module/mms.sprx
\PS3DECRUpdateData.355.001d\dev_flash\sys
f8e5d65eeb1f450a351330cdee806da6 ./dev_flash/vsh/module/mms_db.sprx
27-08-2011 20:57    <DIR>          external
f92bb2c9326058c45a49b7759a6b9d9b ./dev_flash/vsh/module/mouse_plugin.sprx
27-08-2011 20:57    <DIR>          internal
7ade23d0e25886ab6be4e1c084386484 ./dev_flash/vsh/module/msgdialog_plugin.sprx
              0 file(s)                0 bytes
966e08d2172ab7762b25f30d07e5cd9e ./dev_flash/vsh/module/msmw1.sprx
 
4c77e5e3aaa5c165375ca05f378158ba ./dev_flash/vsh/module/msmw2.sprx
\PS3DECRUpdateData.355.001d\dev_flash\sys\external
932918861b2398152d8952da7d83a98f ./dev_flash/vsh/module/nas_plugin.sprx
29-11-2010 07:12            90.564 daisy_ppu_typeinfo.elf
04bb9f313ef4e55c34459426dc9c5d99 ./dev_flash/vsh/module/netconf_plugin.sprx
29-11-2010 03:34            35.131 flashATRAC.pic
829dbb8e9841c95d3eea9522349910f6 ./dev_flash/vsh/module/netctl_main.sprx
29-11-2010 03:34            69.695 flashMP3.pic
c29355c917174e526a9ecf1010588ffa ./dev_flash/vsh/module/np_matching_plugin.sprx
29-11-2010 08:18          180.236 libaacenc.sprx
e48ef35ab3c02d9ac28901c69f3efed3 ./dev_flash/vsh/module/npflashplayer.sprx
29-11-2010 08:18          185.179 libaacenc_spurs.sprx
5bac535b3f95256a7c0d64e3928201e7 ./dev_flash/vsh/module/npsignin_plugin.sprx
29-11-2010 08:18            90.763 libac3dec.sprx
25aec910d2b341b80a1ff81559a75033 ./dev_flash/vsh/module/onicore_child.self
29-11-2010 08:18            91.822 libac3dec2.sprx
d5ae43693e383216a6624ff3691fc0cd ./dev_flash/vsh/module/osk_plugin.sprx
29-11-2010 08:17            35.448 libadec.sprx
326dc5322a63bc018f34b92a32556eba ./dev_flash/vsh/module/oskpanel_plugin.sprx
29-11-2010 08:18            34.328 libadec2.sprx
42f08ad163f3df95a88cb10bd6027b0c ./dev_flash/vsh/module/paf.sprx
29-11-2010 08:18            35.448 libadec_internal.sprx
82fb3e013d1a199545f55315117cb770 ./dev_flash/vsh/module/photoviewer_plugin.sprx
29-11-2010 08:18            11.206 libad_async.sprx
b54f573aeeef7d59353c06242826d09f ./dev_flash/vsh/module/premo_plugin.sprx
29-11-2010 08:18            4.771 libad_billboard_util.sprx
8d2cf879e873101438573c7dfd41f8cb ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
29-11-2010 08:18            66.568 libad_core.sprx
1590c97e9402968c06f7811361c01f7f ./dev_flash/vsh/module/sacd.sprx
29-11-2010 08:18            85.113 libapostsrc_mini.sprx
e5aa0e213f2ee6bebe52003977b126e9 ./dev_flash/vsh/module/sacd_plugin.sprx
29-11-2010 08:18            39.166 libasfparser2_astd.sprx
246bce1c58ffa41a19746ac30274d93e ./dev_flash/vsh/module/sdk.sprx
29-11-2010 08:18            28.564 libat3dec.sprx
0bd79e07447aab7ce9e95a88f35c0edb ./dev_flash/vsh/module/sdk_full.sprx
29-11-2010 08:18            11.194 libatrac3plus.sprx
2b4395928a0672da27a2134bbc9d5762 ./dev_flash/vsh/module/silk.sprx
29-11-2010 08:18            98.006 libatxdec.sprx
fdda2da84eb2cbd5b363f678f607533d ./dev_flash/vsh/module/software_update_plugin.sprx
29-11-2010 08:18          100.041 libatxdec2.sprx
90bd5ecffb2e835b96f23e18df4713dc ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
29-11-2010 08:17            15.346 libaudio.sprx
2fa213f36b144792dd78c1829e410a05 ./dev_flash/vsh/module/strviewer_plugin.sprx
29-11-2010 08:18        1.013.153 libavcdec.sprx
44dd3b374eeab7a6634b39034e654bad ./dev_flash/vsh/module/sysconf_plugin.sprx
29-11-2010 08:18        1.191.120 libavcenc.sprx
8408cf432eaaedfb6abc34a937482184 ./dev_flash/vsh/module/system_plugin.sprx
29-11-2010 08:18          973.162 libavcenc_small.sprx
fe4a4877b1e819a12623262366f13c94 ./dev_flash/vsh/module/thumthum_plugin.sprx
29-11-2010 08:18            66.601 libavchatjpgdec.sprx
33e73d5be9413f6d1378aa3c82ff7512 ./dev_flash/vsh/module/user_plugin.sprx
29-11-2010 08:18            9.335 libcamera.sprx
db06ecda2f7bc63e1297598dcb8b3d52 ./dev_flash/vsh/module/videodownloader_plugin.sprx
29-11-2010 08:18            32.655 libcelp8dec.sprx
c58f44a5e547ea6d6149dbad8dc0558a ./dev_flash/vsh/module/videoplayer_plugin.sprx
29-11-2010 08:18            61.867 libcelp8enc.sprx
5cd3c1377bf6473777729e4cd892408c ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
29-11-2010 08:18            35.488 libcelpdec.sprx
4aa9128d476cd00adbcedbca2e9cce1d ./dev_flash/vsh/module/vmclib.sprx
29-11-2010 08:18            66.403 libcelpenc.sprx
17b753bf137846d92e8c7d04b4a04583 ./dev_flash/vsh/module/vsh.self
29-11-2010 08:05          183.589 libda.sprx
adab66baec07cf1e6fbc0a6979748f26 ./dev_flash/vsh/module/vshcommon.sprx
29-11-2010 08:18          188.236 libddpdec.sprx
b5679fce2f71339921d5693292aa9424 ./dev_flash/vsh/module/vshmain.sprx
29-11-2010 08:18          205.421 libdivxdec.sprx
300ea367a44b9cb9b420bcd07b1032b8 ./dev_flash/vsh/module/vshnet.sprx
29-11-2010 08:17            7.289 libdmux.sprx
5fd140228ab500883536aaf54c283bad ./dev_flash/vsh/module/webbrowser_plugin.sprx
29-11-2010 08:18            34.314 libdmuxpamf.sprx
397e5333f135a1404c7facfa11949aa2 ./dev_flash/vsh/module/x3.sprx
29-11-2010 08:18            16.526 libfiber.sprx
5b1cfc44819edc443f15be73c38e55e4 ./dev_flash/vsh/module/x3_mdimp1.sprx
29-11-2010 08:17            37.100 libfont.sprx
8bb79e2e85d8b9838f79ab03b6b2a382 ./dev_flash/vsh/module/x3_mdimp2.sprx
29-11-2010 08:17            23.789 libfontFT.sprx
f6b6daf0463a11161cb897fd9dcf0cb5 ./dev_flash/vsh/module/x3_mdimp3.sprx
29-11-2010 08:18          276.067 libfreetype.sprx
adb82ad0e5885f7187f9fcc807895252 ./dev_flash/vsh/module/xcbplugin1.sprx
29-11-2010 08:18          133.844 libfreetypeTT.sprx
ba341a33a341005148bb7d13498f6552 ./dev_flash/vsh/module/xmb_plugin.sprx
29-11-2010 08:18            34.095 libfs.sprx
54354a06816c98d9e706190cec611f8f ./dev_flash/vsh/module/xsetting.sprx
29-11-2010 08:18            20.930 libfs_155.sprx
</pre>
29-11-2010 08:06            35.094 libgcm_sys.sprx
29-11-2010 08:05            86.670 libgcm_sys_deh.sprx
29-11-2010 08:18          281.039 libgem.sprx
29-11-2010 08:17            33.312 libgifdec.sprx
29-11-2010 08:17          126.734 libhttp.sprx
29-11-2010 08:18            23.554 libio.sprx
29-11-2010 08:17          199.818 libjpgdec.sprx
29-11-2010 08:18          153.219 libjpgenc.sprx
29-11-2010 08:18            10.560 libkey2char.sprx
29-11-2010 08:18          165.560 libl10n.sprx
29-11-2010 08:18            44.228 liblv2.sprx
29-11-2010 08:05            73.745 liblv2coredump.sprx
29-11-2010 08:18            3.100 liblv2dbg_for_cex.sprx
29-11-2010 08:12            9.724 liblv2dbg_for_dex.sprx
29-11-2010 08:18            63.511 libm2bcdec.sprx
29-11-2010 08:18          314.189 libm4aacdec.sprx
29-11-2010 08:18          311.255 libm4aacdec2ch.sprx
29-11-2010  08:18          108.486 libm4hdenc.sprx
29-11-2010  08:18          412.268 libm4venc.sprx
29-11-2010  08:18            37.513 libmedi.sprx
29-11-2010  08:18            10.326 libmic.sprx
29-11-2010 08:18            90.512 libmp3dec.sprx
29-11-2010  08:18          159.873 libmp4.sprx
29-11-2010  08:18            59.541 libmpl1dec.sprx
29-11-2010  08:17            75.065 libnet.sprx
29-11-2010  08:18            15.522 libnetctl.sprx
29-11-2010  08:18            11.457 libpamf.sprx
29-11-2010  08:17          171.710 libpngdec.sprx
29-11-2010  08:17          157.792 libpngenc.sprx
29-11-2010  08:05            7.459 libprof.sprx
29-11-2010  08:18            26.430 libresc.sprx
29-11-2010  08:17            11.358 librtc.sprx
29-11-2010  08:18            82.547 librudp.sprx
29-11-2010  08:18            83.892 libsail.sprx
29-11-2010  08:18            24.460 libsail_avi.sprx
29-11-2010  08:18          259.902 libsail_rec.sprx
29-11-2010  08:18          707.081 libsjvtd.sprx
29-11-2010  08:18          179.343 libsmvd2.sprx
29-11-2010  08:18          137.974 libsmvd4.sprx
29-11-2010  08:18            40.952 libspurs_jq.sprx
29-11-2010  08:18          113.882 libsre.sprx
29-11-2010  08:17          180.259 libssl.sprx
29-11-2010  08:18            16.363 libsync2.sprx
29-11-2010  08:18            19.549 libsysmodule.sprx
29-11-2010  08:18            66.515 libsysutil.sprx
29-11-2010  08:18            4.335 libsysutil_ap.sprx
29-11-2010  08:18            4.735 libsysutil_authdialog.sprx
29-11-2010  08:18            14.002 libsysutil_avc2.sprx
29-11-2010  08:18            9.402 libsysutil_avconf_ext.sprx
29-11-2010  08:18            9.992 libsysutil_avc_ext.sprx
29-11-2010  08:18            4.766 libsysutil_bgdl.sprx
29-11-2010  08:18            11.213 libsysutil_dtcp_ip.sprx
29-11-2010  08:18            9.816 libsysutil_game.sprx
29-11-2010  08:18            6.996 libsysutil_game_exec.sprx
29-11-2010  08:18            10.212 libsysutil_imejp.sprx
29-11-2010  08:18            2.825 libsysutil_misc.sprx
29-11-2010  08:18            8.261 libsysutil_music.sprx
29-11-2010  08:18            9.881 libsysutil_music_decode.sprx
29-11-2010  08:18            5.866 libsysutil_music_export.sprx
29-11-2010  08:18            79.708 libsysutil_np.sprx
29-11-2010  08:18            41.049 libsysutil_np2.sprx
29-11-2010  08:18            50.348 libsysutil_np_clans.sprx
29-11-2010  08:18            31.085 libsysutil_np_commerce2.sprx
29-11-2010  08:18            5.195 libsysutil_np_eula.sprx
29-11-2010  08:18            4.190 libsysutil_np_installer.sprx
29-11-2010  08:18            9.087 libsysutil_np_sns.sprx
29-11-2010  08:18            16.132 libsysutil_np_trophy.sprx
29-11-2010  08:18            18.045 libsysutil_np_tus.sprx
29-11-2010  08:18            4.265 libsysutil_np_util.sprx
29-11-2010  08:18            9.031 libsysutil_oskdialog_ext.sprx
29-11-2010  08:18            12.690 libsysutil_pesm.sprx
29-11-2010  08:18            5.516 libsysutil_photo_decode.sprx
29-11-2010  08:18            6.092 libsysutil_photo_export.sprx
29-11-2010  08:18            5.503 libsysutil_photo_import.sprx
29-11-2010  08:18            6.757 libsysutil_photo_network_sharing.sprx
29-11-2010  08:18            7.132 libsysutil_print.sprx
29-11-2010  08:18            8.915 libsysutil_rec.sprx
29-11-2010  08:18            5.922 libsysutil_remoteplay.sprx
29-11-2010  08:18            5.070 libsysutil_rtcalarm.sprx
29-11-2010  08:18            10.549 libsysutil_savedata.sprx
29-11-2010  08:18            15.796 libsysutil_savedata_psp.sprx
29-11-2010  08:18            4.931 libsysutil_screenshot.sprx
29-11-2010  08:18            8.836 libsysutil_search.sprx
29-11-2010  08:18            5.460 libsysutil_storagedata.sprx
29-11-2010  08:18            7.858 libsysutil_subdisplay.sprx
29-11-2010  08:18            5.511 libsysutil_syschat.sprx
29-11-2010  08:18            3.775 libsysutil_sysconf_ext.sprx
29-11-2010  08:18            6.819 libsysutil_userinfo.sprx
29-11-2010  08:18            5.920 libsysutil_video_export.sprx
29-11-2010  08:18            14.280 libsysutil_video_player.sprx
29-11-2010  08:18            5.580 libsysutil_video_upload.sprx
29-11-2010  08:18            18.078 libusbd.sprx
29-11-2010  08:18            17.043 libusbpspcm.sprx
29-11-2010  08:17          112.580 libvdec.sprx
29-11-2010  08:18            8.738 libvoice.sprx
29-11-2010  08:17          243.539 libvpost.sprx
29-11-2010  08:17          241.384 libvpost2.sprx
29-11-2010  08:18            85.109 libwmadec.sprx
29-11-2010  07:12          100.672 spurs_jm1.elf
29-11-2010  07:12            95.139 spurs_jm2.elf
29-11-2010  07:12          209.271 spurs_jq.elf
29-11-2010  07:12            18.490 spurs_kernel.elf
29-11-2010  07:12            19.101 spurs_kernel2.elf
29-11-2010  07:12          111.136 spurs_ppu_typeinfo.elf
29-11-2010  07:12            66.406 spurs_ss.elf
29-11-2010  07:12            59.041 spurs_tm.elf
            147 file(s)      13.067.992 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\sys\internal
29-11-2010  03:34          462.740 eurus_fw.bin
29-11-2010  08:17          165.341 libapostsrc.sprx
29-11-2010  08:17            31.639 libasfparser.sprx
29-11-2010  08:17            58.152 libasfparser2.sprx
29-11-2010  08:17            36.650 libat3enc.sprx
29-11-2010  08:17            39.889 libat3enc_spurs.sprx
29-11-2010  08:17          100.205 libatxdecmod.sprx
29-11-2010  08:17          158.086 libatxenc.sprx
29-11-2010  08:17            34.532 libddlenc2.sprx
29-11-2010  08:17          188.236 libddpdec.sprx
29-11-2010  08:17            85.730 libdivx311dec.sprx
29-11-2010  08:17            34.244 libdsee.sprx
29-11-2010  08:17          194.601 libdtsdec.sprx
29-11-2010  08:17            73.769 libdtsenc2.sprx
29-11-2010  08:17          237.543 libdtshdcoredec.sprx
29-11-2010  08:17          739.070 libdtshddec.sprx
29-11-2010  08:17          144.586 libdtslbrdec.sprx
29-11-2010  08:17            77.974 libexif.sprx
29-11-2010  08:17            95.959 libfs_utility.sprx
29-11-2010  08:17            17.212 libfs_utility2.sprx
29-11-2010  08:17            30.585 libfs_utility_full.sprx
29-11-2010  08:17            74.292 libfs_utility_init.sprx
29-11-2010  08:17          114.917 libft2d.sprx
29-11-2010  08:04            74.397 libgcm_osd_deh.sprx
29-11-2010  08:17          310.172 libm2aacdec.sprx
29-11-2010  08:17          102.300 libm4aacdec2chmod.sprx
29-11-2010  08:17          104.993 libm4aacdec2chmod2.sprx
29-11-2010  08:17            13.453 libmcadpt.sprx
29-11-2010  08:17          169.922 libmp3enc.sprx
29-11-2010  08:17          187.690 libmp3sdec.sprx
29-11-2010  08:17        1.051.934 libmvcdec.sprx
29-11-2010  08:17          474.665 libsvc1d.sprx
29-11-2010  08:17            3.714 libsysutil_game_ps1emu.sprx
29-11-2010  08:17            4.637 libsysutil_sysconf_ps1emu.sprx
29-11-2010  08:17          225.641 libtiffdec.sprx
29-11-2010  08:17            90.106 libtrhddec.sprx
29-11-2010  08:17            8.353 libvoice_internal.sprx
29-11-2010  08:17          243.572 libvpost.sprx
29-11-2010  08:17            85.109 libwmadec.sprx
29-11-2010  08:17          178.867 sysvoice_modules.sprx
29-11-2010  08:06          234.256 sys_agent.self
29-11-2010  08:19          417.528 sys_audio.self
29-11-2010  08:17          389.491 sys_audio.sprx
29-11-2010  08:19          112.024 sys_init_osd.self
29-11-2010  08:06          270.072 sys_tsma.self
              45 file(s)        7.948.848 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh
27-08-2011  20:56    <DIR>          etc
27-08-2011  20:56    <DIR>         module
27-08-2011  20:55    <DIR>          resource
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\etc
29-11-2010  05:59              528 index.dat
29-11-2010  03:34              489 layout_factor_table_1080.txt
29-11-2010  03:34              467 layout_factor_table_272.txt
29-11-2010  03:34              468 layout_factor_table_480.txt
29-11-2010  03:34              502 layout_factor_table_720.txt
29-11-2010  03:34            16.206 layout_grid_table_1080.txt
29-11-2010  03:34            15.228 layout_grid_table_272.txt
29-11-2010  03:34            15.182 layout_grid_table_480.txt
29-11-2010  03:34            15.688 layout_grid_table_720.txt
27-08-2011  20:56    <DIR>          print
29-11-2010  05:59              482 version.txt
              10 file(s)          65.240 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\etc\print
29-11-2010  03:34            29.012 epson.pmd
              1 file(s)          29.012 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\module
29-11-2010  08:15            8.227 ap_plugin.sprx
29-11-2010  08:15          264.931 audioplayer_plugin.sprx
29-11-2010  08:16            22.026 audioplayer_plugin_dummy.sprx
29-11-2010  08:16          153.125 audioplayer_plugin_mini.sprx
29-11-2010  08:14            29.434 auth_plugin.sprx
29-11-2010  08:17          168.535 autodownload_plugin.sprx
29-11-2010  08:15          193.511 avc2_game_plugin.sprx
29-11-2010  08:16          227.059 avc2_game_video_plugin.sprx
29-11-2010  08:16          272.656 avc2_text_plugin.sprx
29-11-2010  08:14        1.151.056 avc_plugin.sprx
29-11-2010  08:15          182.543 avc_util.sprx
29-11-2010  08:15          194.130 basic_plugins.sprx
29-11-2010  08:14            20.508 category_setting_plugin.sprx
29-11-2010  08:10          179.152 checker_plugin.sprx
29-11-2010  08:14          331.716 custom_render_plugin.sprx
29-11-2010  08:15            47.871 data_copy_plugin.sprx
29-11-2010  08:15          110.359 deviceconf_plugin.sprx
29-11-2010  08:16            29.253 divxdrm.sprx
29-11-2010  08:15            20.104 dlna_plugin.sprx
29-11-2010  08:14          175.786 download_plugin.sprx
29-11-2010  08:17            32.780 dtcpip_util.sprx
29-11-2010  08:15            24.511 esehttp.sprx
29-11-2010  08:16            2.995 eseibrd.sprx
29-11-2010  08:15            4.006 eseidle.sprx
29-11-2010  08:15            2.995 eselock.sprx
29-11-2010  08:14            45.186 eula_cddb_plugin.sprx
29-11-2010  08:17            78.432 eula_hcopy_plugin.sprx
29-11-2010  08:17          662.473 eula_net_plugin.sprx
29-11-2010  08:16          529.092 explore_category_friend.sprx
29-11-2010  08:16          521.547 explore_category_game.sprx
29-11-2010  08:16          564.873 explore_category_music.sprx
29-11-2010  08:16          455.527 explore_category_network.sprx
29-11-2010  08:16          504.364 explore_category_photo.sprx
29-11-2010  08:16          421.237 explore_category_psn.sprx
29-11-2010  08:16          267.400 explore_category_sysconf.sprx
29-11-2010  08:16          435.294 explore_category_tv.sprx
29-11-2010  08:16          297.877 explore_category_user.sprx
29-11-2010  08:16          621.932 explore_category_video.sprx
29-11-2010  08:14        1.403.438 explore_plugin.sprx
29-11-2010  08:16          305.279 explore_plugin_ft.sprx
29-11-2010  08:15          294.765 explore_plugin_game.sprx
29-11-2010  08:15          347.149 explore_plugin_np.sprx
29-11-2010  08:16        2.504.225 faust_widget.sprx
29-11-2010  08:16            73.872 filecopy_plugin.sprx
29-11-2010  08:14          235.771 friendim_plugin.sprx
29-11-2010  08:16            62.845 friendml_plugin.sprx
29-11-2010  08:16          239.733 friendtrophy_plugin.sprx
29-11-2010  08:14            16.693 gamedata_plugin.sprx
29-11-2010  08:15            5.519 gamelib_plugin.sprx
29-11-2010  08:15            12.330 gameupdate_plugin.sprx
29-11-2010  08:15          152.583 game_ext_plugin.sprx
29-11-2010  08:15            13.830 game_indicator_plugin.sprx
29-11-2010  08:16        1.846.142 hknw_plugin.sprx
29-11-2010  08:16            6.194 idle_plugin.sprx
29-11-2010  08:14          125.309 ime.sprx
29-11-2010  08:15          155.039 ime_atok.sprx
29-11-2010  08:15          105.783 ime_zi.sprx
29-11-2010  08:16            15.903 kensaku_plugin.sprx
29-11-2010  08:16          170.916 libvideoSubsystem.sprx
29-11-2010  03:33          383.568 mcore.self
29-11-2010  03:33          110.304 mgvideo.self
29-11-2010  08:14            4.940 micon_lock_plugin.sprx
29-11-2010  08:14          359.277 mms.sprx
29-11-2010  08:16          210.177 mms_cls.sprx
29-11-2010  08:16            23.781 mms_db_full.sprx
29-11-2010  08:16            49.567 mms_ext_full.sprx
29-11-2010  08:16            29.489 mms_ext_mini.sprx
29-11-2010  08:15            67.618 mms_maintenance.sprx
29-11-2010  08:16            14.317 mms_minimdimp_avi.sprx
29-11-2010  08:16            13.276 mms_minimdimp_dir_gamehdd.sprx
29-11-2010  08:16            13.436 mms_minimdimp_dir_npachive.sprx
29-11-2010  08:16            11.059 mms_minimdimp_dir_ps3savedata.sprx
29-11-2010  08:16            20.437 mms_minimdimp_jpeg.sprx
29-11-2010  08:16            24.347 mms_minimdimp_media_bdvd.sprx
29-11-2010  08:16            11.454 mms_minimdimp_media_cdda.sprx
29-11-2010  08:16            4.477 mms_minimdimp_media_cdrom.sprx
29-11-2010  08:16            22.952 mms_minimdimp_media_gamedisc.sprx
29-11-2010  08:16            3.917 mms_minimdimp_media_hdd.sprx
29-11-2010  08:16            7.590 mms_minimdimp_media_sacd.sprx
29-11-2010  08:16            5.932 mms_minimdimp_media_usbmass.sprx
29-11-2010  08:16            19.097 mms_minimdimp_mp3.sprx
29-11-2010  08:16            28.351 mms_minimdimp_mp4aac.sprx
29-11-2010  08:16            22.889 mms_minimdimp_mp4video.sprx
29-11-2010  08:16            56.949 mms_minimdimp_mpeg.sprx
29-11-2010  08:16            18.161 mms_minimdimp_msv.sprx
29-11-2010  08:16            3.188 mms_minimdimp_music_default.sprx
29-11-2010  08:16            3.157 mms_minimdimp_photo_default.sprx
29-11-2010  08:16            11.461 mms_minimdimp_png.sprx
29-11-2010  08:16            8.418 mms_minimdimp_riff.sprx
29-11-2010  08:16            13.820 mms_minimdimp_video_default.sprx
29-11-2010  08:15            10.788 mms_schema.sprx
29-11-2010  08:14          190.813 msmw1.sprx
29-11-2010  08:16            52.654 msmw1_aaconly.sprx
29-11-2010  08:16            45.871 msmw1_atraconly.sprx
29-11-2010  08:14          536.453 msmw2.sprx
29-11-2010  08:15            29.192 musicbrowser_plugin.sprx
29-11-2010  08:15          184.999 nas_plugin.sprx
29-11-2010  08:15          138.758 netconf_plugin.sprx
29-11-2010  08:16          179.912 newstore_effect.sprx
29-11-2010  08:16          589.157 newstore_plugin.sprx
29-11-2010  08:15            53.520 npsignin_plugin.sprx
29-11-2010  08:16            49.417 np_eula_plugin.sprx
29-11-2010  08:15            9.082 np_matching_plugin.sprx
29-11-2010  08:16            32.096 np_multisignin_plugin.sprx
29-11-2010  08:17            73.023 np_sns_plugin.sprx
29-11-2010  08:16            26.053 np_trophy_ingame.sprx
29-11-2010  08:15          204.675 np_trophy_plugin.sprx
29-11-2010  08:15          194.315 np_trophy_util.sprx
29-11-2010  03:33            89.568 onicore_child.self
29-11-2010  08:15            96.972 oskfullkeypanel_plugin.sprx
29-11-2010  08:15          121.200 oskpanel_plugin.sprx
29-11-2010  08:15            62.560 osk_plugin.sprx
29-11-2010  08:15          150.399 paf_ext.sprx
29-11-2010  08:16            95.543 paf_psjs.sprx
29-11-2010  08:15            81.348 paf_web.sprx
29-11-2010  08:17            13.880 pesm_plugin.sprx
29-11-2010  08:15            21.663 photolist_plugin.sprx
29-11-2010  08:16          224.307 photoupload_plugin.sprx
29-11-2010  08:15          830.473 photoviewer_plugin.sprx
29-11-2010  08:17            59.683 photo_network_sharing_plugin.sprx
29-11-2010  08:15            69.286 playlist_plugin.sprx
29-11-2010  08:15            66.970 post_nr.sprx
29-11-2010  08:16            27.609 poweroff_plugin.sprx
29-11-2010  08:15          109.914 premo_game_plugin.sprx
29-11-2010  08:15          102.365 premo_plugin.sprx
29-11-2010  08:15          596.064 print_canon_library.sprx
29-11-2010  08:15            60.652 print_dlna_library.sprx
29-11-2010  08:15            89.465 print_epson_library.sprx
29-11-2010  08:15          145.475 print_plugin.sprx
29-11-2010  08:16          226.831 profile_plugin.sprx
29-11-2010  08:15            85.667 ps3_savedata_plugin.sprx
29-11-2010  08:15          127.653 ps3_savedata_plugin_game.sprx
29-11-2010  08:16            65.002 ps3_savedata_plugin_game_mini.sprx
29-11-2010  08:15          102.151 ps3_savedata_plugin_psp.sprx
29-11-2010  08:15          216.062 qglbase.sprx
29-11-2010  08:15            92.857 qgl_canyon_app.sprx
29-11-2010  08:15          366.173 qgl_gaia_app.sprx
29-11-2010  08:16          220.063 raf.sprx
29-11-2010  08:15          249.738 rec_plugin.sprx
29-11-2010  08:16          659.675 regcam_plugin.sprx
29-11-2010  08:15            23.627 sacd.sprx
29-11-2010  08:16            67.395 scenefolder_plugin.sprx
29-11-2010  08:16            18.955 screenshot_plugin.sprx
29-11-2010  08:15        3.434.575 silk.sprx
29-11-2010  08:16        3.443.775 silk_nas.sprx
29-11-2010  08:15          841.040 silk_npflashplayer.sprx
29-11-2010  08:15        2.430.994 silk_npflashplayer9.sprx
29-11-2010  08:19          216.839 software_update_plugin.sprx
29-11-2010  08:15            12.199 soundvisualizer_plugin.sprx
29-11-2010  03:33          437.208 swagner.self
29-11-2010  03:33            76.904 swreset.self
29-11-2010  08:15          893.754 sysconf_plugin.sprx
29-11-2010  08:15            41.288 thumthum_plugin.sprx
29-11-2010  08:16            24.869 upload_util.sprx
29-11-2010  08:15            13.186 user_info_plugin.sprx
29-11-2010  08:15            18.837 user_plugin.sprx
29-11-2010  08:15            79.055 videodownloader_plugin.sprx
29-11-2010  08:16        2.765.758 videoeditor_plugin.sprx
29-11-2010  08:15        1.590.151 videoplayer_plugin.sprx
29-11-2010  08:17        1.536.693 videoplayer_util.sprx
29-11-2010  08:15            56.469 vmclib.sprx
29-11-2010  08:15          150.601 vmc_savedata_plugin.sprx
29-11-2010  08:19        3.137.768 vsh.self
29-11-2010  08:17            3.636 vshatdl.sprx
29-11-2010  08:15            38.966 vshmain_ext.sprx
29-11-2010  08:15            8.838 vshmain_util.sprx
29-11-2010  08:16            49.955 wboard_plugin.sprx
29-11-2010  08:15          481.094 webbrowser_plugin.sprx
29-11-2010  08:16          477.214 webrender_plugin.sprx
29-11-2010  08:15            33.230 x3_amgsdk.sprx
29-11-2010  08:15            27.330 x3_gntoc.sprx
29-11-2010  08:15            48.242 x3_mdimp1.sprx
29-11-2010  08:15          542.886 x3_mdimp10.sprx
29-11-2010  08:15            15.922 x3_mdimp11.sprx
29-11-2010  08:15            31.089 x3_mdimp2.sprx
29-11-2010  08:15            66.862 x3_mdimp3.sprx
29-11-2010  08:15            50.209 x3_mdimp4.sprx
29-11-2010  08:15            46.197 x3_mdimp5.sprx
29-11-2010  08:15          248.050 x3_mdimp6.sprx
29-11-2010  08:15          133.899 x3_mdimp7.sprx
29-11-2010  08:15            13.851 x3_mdimp8.sprx
29-11-2010  08:15          114.481 x3_mdimp9.sprx
29-11-2010  08:16            25.843 xcbcontentop.sprx
29-11-2010  08:15        1.030.082 xcbplugin1.sprx
29-11-2010  08:16            60.322 xmb_ingame.sprx
29-11-2010  08:15            71.927 xmb_plugin.sprx
29-11-2010  08:17            8.744 ycon_manual_plugin.sprx
            187 file(s)      51.994.082 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource
27-08-2011  20:54    <DIR>          AAA
29-11-2010  03:34              372 ap_plugin.rco
29-11-2010  03:34          286.624 audioplayer_plugin.rco
29-11-2010  03:34            99.076 audioplayer_plugin_dummy.rco
29-11-2010  03:34            99.272 audioplayer_plugin_mini.rco
29-11-2010  03:34            99.268 audioplayer_plugin_util.rco
29-11-2010  03:34            8.688 auth_plugin.rco
29-11-2010  03:34            20.400 autodownload_plugin.rco
27-08-2011  20:54    <DIR>          avc
29-11-2010  03:34            4.520 avc2_game_plugin.rco
29-11-2010  03:34            6.228 avc2_game_video_plugin.rco
29-11-2010  03:34          234.096 avc2_text_plugin.rco
29-11-2010  03:34            6.424 avc_game_plugin.rco
29-11-2010  03:34          192.132 avc_plugin.rco
29-11-2010  03:34          414.528 bdp_plugin.rco
29-11-2010  03:34            71.596 category_setting_plugin.rco
29-11-2010  03:34              356 checker_plugin.rco
29-11-2010  03:34            51.446 coldboot.raf
29-11-2010  03:34          801.280 coldboot_multi.ac3
29-11-2010  03:34          801.280 coldboot_stereo.ac3
29-11-2010  03:34            11.988 custom_render_plugin.rco
29-11-2010  03:34            16.068 data_copy_plugin.rco
29-11-2010  03:34          102.024 deviceconf_plugin.rco
29-11-2010  03:34            19.712 dlna_plugin.rco
29-11-2010  03:34          288.892 download_plugin.rco
29-11-2010  03:34            2.792 dtcpip_util.rco
29-11-2010  03:34          343.684 eula_cddb_plugin.rco
29-11-2010  03:34            53.544 eula_hcopy_plugin.rco
29-11-2010  03:34        1.222.824 eula_net_plugin.rco
27-08-2011  20:55    <DIR>          explore
29-11-2010  03:34          140.608 explore_category_friend.rco
29-11-2010  03:34          344.520 explore_category_game.rco
29-11-2010  03:34          229.920 explore_category_music.rco
29-11-2010  03:34          176.768 explore_category_network.rco
29-11-2010  03:34          173.952 explore_category_photo.rco
29-11-2010  03:34          104.692 explore_category_psn.rco
29-11-2010  03:34          126.828 explore_category_sysconf.rco
29-11-2010  03:34            83.508 explore_category_tv.rco
29-11-2010  03:34            46.224 explore_category_user.rco
29-11-2010  03:34          278.772 explore_category_video.rco
29-11-2010  03:34            86.196 explore_plugin_ft.rco
29-11-2010  03:34        2.217.360 explore_plugin_full.rco
29-11-2010  03:34          136.924 explore_plugin_game.rco
29-11-2010  03:34            37.228 explore_plugin_np.rco
29-11-2010  03:34          190.372 filecopy_plugin.rco
29-11-2010  03:34          164.000 friendim_plugin.rco
29-11-2010  03:34          115.632 friendim_plugin_game.rco
29-11-2010  03:34            40.152 friendml_plugin.rco
29-11-2010  03:34            24.968 friendml_plugin_game.rco
29-11-2010  03:34            22.472 friendtrophy_plugin.rco
29-11-2010  03:34            19.260 friendtrophy_plugin_game.rco
29-11-2010  03:34            8.608 gamedata_plugin.rco
29-11-2010  03:34            4.620 gamelib_plugin.rco
29-11-2010  03:34            43.840 gameupdate_plugin.rco
29-11-2010  03:34          293.124 game_ext_plugin.rco
29-11-2010  03:34              788 game_indicator_plugin.rco
29-11-2010  03:34            43.992 game_plugin.rco
29-11-2010  03:34        1.111.964 hknw_plugin.rco
29-11-2010  03:34              360 idle_plugin.rco
29-11-2010  03:34          417.620 imagefont.bin
29-11-2010  03:34            38.972 impose_plugin.rco
29-11-2010  03:34            5.104 kensaku_plugin.rco
29-11-2010  03:34          178.796 msgdialog_plugin.rco
29-11-2010  03:34            3.184 musicbrowser_plugin.rco
29-11-2010  03:34          148.952 nas_plugin.rco
29-11-2010  03:34          485.304 netconf_plugin.rco
27-08-2011  20:54    <DIR>          newstore
29-11-2010  03:34              205 newstore_effect.rco
29-11-2010  03:34          487.780 newstore_plugin.rco
29-11-2010  03:34            33.744 npsignin_plugin.rco
29-11-2010  03:34            12.060 np_eula_plugin.rco
29-11-2010  03:34            34.704 np_matching_plugin.rco
29-11-2010  03:34            17.488 np_multisignin_plugin.rco
29-11-2010  03:34            39.312 np_sns_plugin.rco
29-11-2010  03:34            22.120 np_trophy_ingame.rco
29-11-2010  03:34            22.448 np_trophy_plugin.rco
29-11-2010  03:34          173.192 oskfullkeypanel_plugin.rco
29-11-2010  03:34          141.556 oskpanel_plugin.rco
29-11-2010  03:34            19.204 osk_plugin.rco
29-11-2010  03:34              360 pesm_plugin.rco
29-11-2010  03:34            1.512 photolist_plugin.rco
29-11-2010  03:34          156.192 photoupload_plugin.rco
27-08-2011  20:55    <DIR>          photoviewer_plugin
29-11-2010  03:34          357.152 photoviewer_plugin.rco
29-11-2010  03:34            42.204 photo_network_sharing_plugin.rco
29-11-2010  03:34            63.764 playlist_plugin.rco
29-11-2010  03:34            9.480 poweroff_plugin.rco
29-11-2010  03:34            25.692 premo_plugin.rco
29-11-2010  03:34            82.048 print_plugin.rco
29-11-2010  03:34          181.612 profile_plugin.rco
29-11-2010  03:34            82.712 profile_plugin_mini.rco
29-11-2010  03:34            61.708 ps3_savedata_plugin.rco
27-08-2011  20:55    <DIR>          qgl
29-11-2010  03:34              376 rec_plugin.rco
29-11-2010  03:34        1.228.452 regcam_plugin.rco
29-11-2010  03:34          343.656 sacd_plugin.rco
29-11-2010  03:34            60.160 scenefolder_plugin.rco
29-11-2010  03:34            4.076 screenshot_plugin.rco
29-11-2010  03:34            2.540 search_service.rco
27-08-2011  20:55    <DIR>          silk
27-08-2011  20:54    <DIR>          silk_nas
29-11-2010  03:34            75.264 software_update_plugin.rco
29-11-2010  03:34            8.684 soundvisualizer_plugin.rco
29-11-2010  03:34              396 subdisplay_plugin.rco
29-11-2010  03:34            8.760 sv_pseudoaudioplayer_plugin.rco
27-08-2011  20:54    <DIR>          sysconf
29-11-2010  03:34        1.287.364 sysconf_plugin.rco
29-11-2010  03:34          282.404 system_plugin.rco
27-08-2011  20:54    <DIR>          theme
29-11-2010  03:34            14.224 thumthum_plugin.rco
29-11-2010  03:34            48.868 upload_util.rco
29-11-2010  03:34            3.008 user_info_plugin.rco
29-11-2010  03:34            37.892 user_plugin.rco
29-11-2010  03:34          129.208 videodownloader_plugin.rco
29-11-2010  03:34          757.100 videoeditor_plugin.rco
29-11-2010  03:34          397.288 videoplayer_plugin.rco
29-11-2010  03:34              317 videoplayer_util.rco
29-11-2010  03:34          161.188 vmc_savedata_plugin.rco
29-11-2010  03:34          124.400 wboard_plugin.rco
29-11-2010  03:34          403.248 webbrowser_plugin.rco
29-11-2010  03:34          384.328 webrender_plugin.rco
29-11-2010  03:34            32.764 xmb_ingame.rco
29-11-2010  03:34            25.364 xmb_plugin_normal.rco
29-11-2010  03:34            21.144 ycon_manual_plugin.rco
            114 file(s)      20.715.420 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\AAA
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\avc
27-08-2011  20:54    <DIR>          image
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\avc\image
29-11-2010  03:34            98.478 avc_background.jpg
29-11-2010  03:34            15.067 Broken_Photo.png
29-11-2010  03:34            12.024 Photo_Default.png
              3 file(s)          125.569 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore
27-08-2011  20:55    <DIR>          icon
27-08-2011  20:55    <DIR>          netflix
27-08-2011  20:55    <DIR>          user
27-08-2011  20:55    <DIR>          xmb
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\icon
29-11-2010  03:34          811.609 cinfo-bg-photogallery.jpg
29-11-2010  03:34          976.399 cinfo-bg-signup.png
29-11-2010  03:34          301.998 cinfo-bg-storegame.jpg
29-11-2010  03:34          314.038 cinfo-bg-storemain.jpg
29-11-2010  03:34          323.157 cinfo-bg-storevideo.jpg
29-11-2010  03:34        1.061.728 cinfo-bg-whatsnew.png
29-11-2010  03:34          198.388 cinfo-bgsd-photogallery.jpg
29-11-2010  03:34          248.252 cinfo-bgsd-signup.jpg
29-11-2010  03:34            64.737 cinfo-bgsd-storegame.jpg
29-11-2010  03:34            72.687 cinfo-bgsd-storemain.jpg
29-11-2010  03:34            73.813 cinfo-bgsd-storevideo.jpg
29-11-2010  03:34            74.303 cinfo-bgsd-whatsnew.jpg
29-11-2010  03:34              311 cinfo-fg.png
29-11-2010  03:34              242 cinfo-fgsd.png
29-11-2010  03:34            32.696 fah-xmb.png
29-11-2010  03:34          159.329 GameStore_thumbnail.png
29-11-2010  03:34          163.415 VideoStore_thumbnail.png
29-11-2010  03:34            17.205 widget.png
29-11-2010  03:34            18.054 yourchannels.png
              19 file(s)        4.912.361 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\netflix
29-11-2010  03:34            3.334 ICON0.png
29-11-2010  03:34            83.314 PIC0.png
29-11-2010  03:34        1.009.249 PIC1.png
29-11-2010  03:34            15.336 PIC2.png
              4 file(s)        1.111.233 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\user
29-11-2010  03:34            8.732 000.png
29-11-2010  03:34            8.692 001.png
29-11-2010  03:34            8.314 002.png
29-11-2010  03:34            7.599 003.png
29-11-2010  03:34            9.590 004.png
29-11-2010  03:34            10.141 005.png
29-11-2010  03:34            9.761 006.png
29-11-2010  03:34            10.818 007.png
29-11-2010  03:34            10.013 008.png
29-11-2010  03:34            2.297 009.png
29-11-2010  03:34            2.784 010.png
29-11-2010  03:34            4.138 011.png
29-11-2010  03:34            3.063 012.png
29-11-2010  03:34            3.489 013.png
29-11-2010  03:34            3.162 014.png
29-11-2010  03:34            3.388 015.png
29-11-2010  03:34            4.305 016.png
29-11-2010  03:34            3.920 017.png
29-11-2010  03:34            16.597 018.png
29-11-2010  03:34            17.617 019.png
29-11-2010  03:34            16.912 020.png
29-11-2010  03:34            16.595 021.png
29-11-2010  03:34            18.742 022.png
29-11-2010  03:34            18.387 023.png
29-11-2010  03:34            18.016 024.png
29-11-2010  03:34            18.551 025.png
29-11-2010  03:34            17.346 026.png
              27 file(s)          272.969 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\xmb
29-11-2010  03:34              885 category_avc_photo.xml
29-11-2010  03:34            9.269 category_friend.xml
29-11-2010  03:34            24.314 category_game.xml
29-11-2010  03:34            16.951 category_game_tool2.xml
29-11-2010  03:34            9.443 category_music.xml
29-11-2010  03:34            4.087 category_network.xml
29-11-2010  03:34            1.455 category_network_tool2.xml
29-11-2010  03:34            9.136 category_photo.xml
29-11-2010  03:34            46.569 category_psn.xml
29-11-2010  03:34            19.099 category_sysconf.xml
29-11-2010  03:34              783 category_tv.xml
29-11-2010  03:34              562 category_user.xml
29-11-2010  03:34              449 category_user_login.xml
29-11-2010  03:34            15.028 category_video.xml
29-11-2010  03:34            23.864 download_list.xml
29-11-2010  03:34                91 null.xml
29-11-2010  03:34            4.318 playlist.xml
29-11-2010  03:34            27.097 registory.xml
29-11-2010  03:34              697 savedata_list.xml
29-11-2010  03:34            7.294 upload_list.xml
29-11-2010  03:34            2.972 videodownloader_list.xml
              21 file(s)          224.363 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\newstore
27-08-2011  20:54    <DIR>          sound
27-08-2011  20:54    <DIR>          texture
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\newstore\sound
29-11-2010  03:34            6.336 CartAdd.vag
29-11-2010  03:34            22.464 CartAdd2.vag
29-11-2010  03:34            5.632 CartRemove.vag
29-11-2010  03:34            25.424 CartRemove2.vag
29-11-2010  03:34            14.832 Checkout.vag
29-11-2010  03:34            16.320 Checkout2.vag
29-11-2010  03:34            1.440 Click.vag
29-11-2010  03:34            7.104 Click2.vag
29-11-2010  03:34            2.464 FocusMove.vag
29-11-2010  03:34            11.648 FocusMove2.vag
29-11-2010  03:34            6.720 PageEnter.vag
29-11-2010  03:34            8.320 PageEnter2.vag
29-11-2010  03:34            6.592 PageExit.vag
29-11-2010  03:34            9.504 PageExit2.vag
29-11-2010  03:34            62.288 StoreBoot-L.vag
29-11-2010  03:34            62.288 StoreBoot-L2.vag
29-11-2010  03:34            62.288 StoreBoot-R.vag
29-11-2010  03:34            62.288 StoreBoot-R2.vag
              18 file(s)          393.952 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\newstore\texture
29-11-2010  03:34            38.207 cz.png
29-11-2010  03:34            21.757 DB0001.jpg
29-11-2010  03:34            6.861 DB0002.jpg
29-11-2010  03:34            3.566 DB0003.jpg
29-11-2010  03:34            29.282 DB0004.jpg
29-11-2010  03:34            11.712 DB0005.jpg
29-11-2010  03:34            16.434 DB1001.jpg
29-11-2010  03:34            9.561 DB1002.jpg
29-11-2010  03:34            9.561 DB1003.jpg
29-11-2010  03:34            30.498 DB1101.jpg
29-11-2010  03:34            21.465 logo.png
29-11-2010  03:34            40.832 pl.png
29-11-2010  03:34          158.105 reg_ad.jpg
29-11-2010  03:34              152 reg_bg.png
29-11-2010  03:34            68.062 reg_sub1.png
29-11-2010  03:34          176.699 reg_sub2.png
29-11-2010  03:34          198.998 reg_sub3.png
              17 file(s)          841.752 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\photoviewer_plugin
29-11-2010  03:34            13.600 envmap.png
29-11-2010  03:34            11.070 floor.ggfz
29-11-2010  03:34            36.876 floor_texture_1.png
29-11-2010  03:34            2.658 nega_env00.png
29-11-2010  03:34            3.877 nega_env01.png
29-11-2010  03:34            8.146 nega_M01.ggfz
29-11-2010  03:34              512 nega_M01_s.ggfz
29-11-2010  03:34            15.661 nega_M02.ggfz
29-11-2010  03:34              374 nega_M02_s.ggfz
29-11-2010  03:34            22.723 nega_M03.ggfz
29-11-2010  03:34              433 nega_M03_s.ggfz
29-11-2010  03:34            29.063 nega_M04.ggfz
29-11-2010  03:34              490 nega_M04_s.ggfz
29-11-2010  03:34            37.342 nega_M05.ggfz
29-11-2010  03:34              558 nega_M05_s.ggfz
29-11-2010  03:34            45.403 nega_M06.ggfz
29-11-2010  03:34            43.807 nega_M06_2.ggfz
29-11-2010  03:34              592 nega_M06_2s.ggfz
29-11-2010  03:34            44.592 nega_M06_3.ggfz
29-11-2010  03:34              590 nega_M06_3s.ggfz
29-11-2010  03:34              470 nega_M06_s.ggfz
29-11-2010  03:34          116.688 nega_mask.png
29-11-2010  03:34            23.732 number_H.png
29-11-2010  03:34            1.409 number_L.png
29-11-2010  03:34            3.771 number_M.png
29-11-2010  03:34            12.528 parameters.txt
29-11-2010  03:34            8.253 pattern_01_01.ggfz
29-11-2010  03:34            20.520 pattern_01_02.ggfz
29-11-2010  03:34            6.048 pattern_01_03.ggfz
29-11-2010  03:34            43.222 pattern_01_04.ggfz
29-11-2010  03:34            9.459 pattern_01_05.ggfz
29-11-2010  03:34            16.681 pattern_02_01.ggfz
29-11-2010  03:34            46.462 pattern_02_02.ggfz
29-11-2010  03:34            48.789 pattern_02_03.ggfz
29-11-2010  03:34            30.693 pattern_02_04.ggfz
29-11-2010  03:34            17.762 pattern_02_05.ggfz
29-11-2010  03:34            40.957 pattern_03_01.ggfz
29-11-2010  03:34            64.606 pattern_03_02.ggfz
29-11-2010  03:34            44.319 pattern_03_03.ggfz
29-11-2010  03:34            77.156 pattern_03_04.ggfz
29-11-2010  03:34            59.088 pattern_03_05.ggfz
29-11-2010  03:34            49.563 pattern_04_01.ggfz
29-11-2010  03:34            89.227 pattern_04_02.ggfz
29-11-2010  03:34          101.705 pattern_04_03.ggfz
29-11-2010  03:34            48.298 pattern_04_04.ggfz
29-11-2010  03:34          113.783 pattern_04_05.ggfz
29-11-2010  03:34            61.726 pattern_05_01.ggfz
29-11-2010  03:34          145.659 pattern_05_02.ggfz
29-11-2010  03:34            87.846 pattern_05_03.ggfz
29-11-2010  03:34          139.335 pattern_05_04.ggfz
29-11-2010  03:34            99.569 pattern_05_05.ggfz
29-11-2010  03:34            83.784 pattern_06_01.ggfz
29-11-2010  03:34          139.827 pattern_06_02.ggfz
29-11-2010  03:34          171.489 pattern_06_03.ggfz
29-11-2010  03:34          143.310 pattern_06_04.ggfz
29-11-2010  03:34            98.385 pattern_06_05.ggfz
29-11-2010  03:34            79.624 pattern_07_01.ggfz
29-11-2010  03:34          167.560 pattern_07_02.ggfz
29-11-2010  03:34          225.386 pattern_07_03.ggfz
29-11-2010  03:34          177.095 pattern_07_04.ggfz
29-11-2010  03:34          164.596 pattern_07_05.ggfz
29-11-2010  03:34          123.219 pattern_08_01.ggfz
29-11-2010  03:34            93.407 pattern_08_02.ggfz
29-11-2010  03:34          198.753 pattern_08_03.ggfz
29-11-2010  03:34          196.930 pattern_08_04.ggfz
29-11-2010  03:34          132.751 pattern_08_05.ggfz
29-11-2010  03:34                97 photo.png
29-11-2010  03:34            1.473 photo2_env00.png
29-11-2010  03:34            16.365 photo2_env01.png
29-11-2010  03:34            83.955 photo_M01.ggfz
29-11-2010  03:34              251 photo_M01_s.ggfz
29-11-2010  03:34              577 photo_M01_sv.ggfz
29-11-2010  03:34            47.365 photo_M02.ggfz
29-11-2010  03:34              730 photo_M02_s.ggfz
29-11-2010  03:34              646 photo_M02_sv.ggfz
29-11-2010  03:34            36.600 photo_M03.ggfz
29-11-2010  03:34              251 photo_M03_s.ggfz
29-11-2010  03:34              656 photo_M03_sv.ggfz
29-11-2010  03:34            54.025 photo_M04.ggfz
29-11-2010  03:34            56.644 photo_M04_s.ggfz
29-11-2010  03:34              698 photo_M04_sv.ggfz
29-11-2010  03:34            26.547 photo_M05.ggfz
29-11-2010  03:34              251 photo_M05_s.ggfz
29-11-2010  03:34              691 photo_M05_sv.ggfz
29-11-2010  03:34            7.601 posi_env01.png
29-11-2010  03:34            74.974 posi_mask.png
29-11-2010  03:34              717 scene_base.ggfz
29-11-2010  03:34            10.213 shadow1.png
29-11-2010  03:34            18.783 shadow2.png
29-11-2010  03:34            14.970 shadow3.png
29-11-2010  03:34            26.854 shadow_nega1.png
29-11-2010  03:34            16.611 shadow_nega2.png
              92 file(s)        4.642.352 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\qgl
29-11-2010  03:34            73.828 canyon.qrc
29-11-2010  03:34        2.148.509 earth.qrc
29-11-2010  03:34            32.171 icons.qrc
29-11-2010  03:34        1.426.032 icontex.qrc
29-11-2010  03:34          183.981 lines.qrc
29-11-2010  03:34            5.542 raf.qrc
29-11-2010  03:34            2.489 rhm.qrc
29-11-2010  03:34          291.393 store.qrc
              8 file(s)        4.163.945 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk
27-08-2011  20:55    <DIR>          bookmark
27-08-2011  20:55    <DIR>          data
27-08-2011  20:55    <DIR>          etc
29-11-2010  03:34            1.282 keyconfig.xml
27-08-2011  20:55    <DIR>          lib
29-11-2010  03:34              858 mimetypes.xml
27-08-2011  20:55    <DIR>          xai
              2 file(s)            2.140 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\bookmark
29-11-2010  03:34              145 default.xml
29-11-2010  03:34              147 scea.xml
29-11-2010  03:34              164 scea_bs.xml
29-11-2010  03:34              147 scee.xml
29-11-2010  03:34              164 scee_bs.xml
29-11-2010  03:34              149 sceh.xml
29-11-2010  03:34              164 sceh_bs.xml
29-11-2010  03:34              158 scej.xml
29-11-2010  03:34              274 scej_bs.xml
29-11-2010  03:34              150 scek.xml
29-11-2010  03:34              164 scek_bs.xml
29-11-2010  03:34              145 sch.xml
29-11-2010  03:34              164 sch_bs.xml
              13 file(s)            2.135 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\data
29-11-2010  03:34            40.141 CEFramework.bin
29-11-2010  03:34            1.699 CEHtmlApi.bin
29-11-2010  03:34            14.857 CEHtmlUI.bin
29-11-2010  03:34            50.995 CEPhWeb.bin
              4 file(s)          107.692 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\etc
29-11-2010  03:34            1.471 fontFileInfo.xml
29-11-2010  03:34            3.135 fontinfo-Xai.xml
29-11-2010  03:34            9.245 html.css
29-11-2010  03:34              518 quirk.css
29-11-2010  03:34              600 TrendMicroConfig.xml
29-11-2010  03:34              669 TrendMicroFilterPolicy.xml
              6 file(s)          15.638 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\lib
27-08-2011  20:55    <DIR>          Plugins
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\lib\Plugins
29-11-2010  03:34                0 dummy.txt
              1 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\xai
27-08-2011  20:55    <DIR>          widgets
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\xai\widgets
27-08-2011  20:55    <DIR>          informationboard
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\xai\widgets\informationboard
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas
27-08-2011  20:54    <DIR>          bookmark
27-08-2011  20:54    <DIR>          data
27-08-2011  20:54    <DIR>          etc
29-11-2010  03:34            1.282 keyconfig.xml
27-08-2011  20:54    <DIR>          lib
29-11-2010  03:34              858 mimetypes.xml
              2 file(s)            2.140 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\bookmark
29-11-2010  03:34              145 default.xml
29-11-2010  03:34              147 scea.xml
29-11-2010  03:34              147 scee.xml
29-11-2010  03:34              149 sceh.xml
29-11-2010  03:34              158 scej.xml
29-11-2010  03:34              150 scek.xml
29-11-2010  03:34              145 sch.xml
              7 file(s)            1.041 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\data
29-11-2010  03:34            40.141 CEFramework.bin
29-11-2010  03:34            1.699 CEHtmlApi.bin
29-11-2010  03:34            14.777 CEHtmlUI.bin
29-11-2010  03:34            42.453 CEPhWeb.bin
              4 file(s)          99.070 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\etc
29-11-2010  03:34            1.471 fontFileInfo.xml
29-11-2010  03:34            3.063 fontinfo-Xai.xml
29-11-2010  03:34            9.374 html.css
29-11-2010  03:34              520 quirk.css
29-11-2010  03:34              615 TrendMicroFilterPolicy.xml
              5 file(s)          15.043 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\lib
27-08-2011  20:54    <DIR>          Plugins
              0 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\lib\Plugins
29-11-2010  03:34                0 dummy.txt
              1 file(s)                0 bytes
 
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\sysconf
27-08-2011  20:54    <DIR>          calibration
              0 file(s)                0 bytes


==== 1.30 ====
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\sysconf\calibration
<pre>
29-11-2010 03:34            46.611 01.png
9e7260fbcd5a8cf644a29b4615e049c1  ./dev_flash/bdplayer/bdj.self
29-11-2010 03:34            10.766 02.png
948f9d61ac196c13155ad31603428e46  ./dev_flash/bdplayer/bdp_BDMV.self
29-11-2010 03:34            45.806 03.png
67c053e44bbe69549bb4cd3966156225  ./dev_flash/bdplayer/bdp_BDVD.self
29-11-2010 03:34            12.972 04.png
72d19068a9479ee6b6757806353e6c3d  ./dev_flash/ps1emu/ps1_emu.self
29-11-2010 03:34            20.260 05.png
2fbb9fee2b80acb72d717ce08b51abd1  ./dev_flash/ps2emu/ps2_emu.self
29-11-2010 03:34            10.045 06.png
ce12d45fff982c57461182ace1fc95a6  ./dev_flash/sys/external/libaacenc.sprx
29-11-2010 03:34            21.912 07.png
96f6b0bcc99b9a147fd96fc55be5aa5e  ./dev_flash/sys/external/libac3dec.sprx
29-11-2010 03:34            13.720 08.png
3a153312680a39b3069b4cdac2758476  ./dev_flash/sys/external/libadec.sprx
29-11-2010 03:34            21.264 09.png
9fc3be5da68589cc30c39395e80323de  ./dev_flash/sys/external/libadec_internal.sprx
29-11-2010 03:34            14.383 10.png
d5c5491b8aad66f89209fc7a5a7cb8f7  ./dev_flash/sys/external/libat3dec.sprx
29-11-2010 03:34            21.600 11.png
da0a8e8e9c2ace46393f681d914206cf  ./dev_flash/sys/external/libatrac3plus.sprx
29-11-2010 03:34            12.793 line.png
db2ae8098dad8783d6f2b10e6d512fe4  ./dev_flash/sys/external/libatxdec.sprx
              12 file(s)          252.132 bytes
1044ab7f644975a243d326836626efda  ./dev_flash/sys/external/libaudio.sprx
df9d951bec4a0fd3ece6622709e586cc  ./dev_flash/sys/external/libavcdec.sprx
ea2673aba19f23cc8f76028696ccdcd5  ./dev_flash/sys/external/libcamera.sprx
02d051656c218cb36723d52d6f5c7005  ./dev_flash/sys/external/libcelpdec.sprx
9312f7c9da01adbe185765045d2ff6d2  ./dev_flash/sys/external/libcelpenc.sprx
fbbc80dda6165c302afe868a8ff7f781  ./dev_flash/sys/external/libdaisy.sprx
9ef4a7ed6e1a288af227287db624fb1f  ./dev_flash/sys/external/libdmux.sprx
4fbb21fed11b24e1f0f03b36ea795d62  ./dev_flash/sys/external/libdmuxpamf.sprx
872fd2871d9e4f59f5a303fd8449fb3f  ./dev_flash/sys/external/libfont.sprx
ce391c39daaeff105bfb69a21097e9bf  ./dev_flash/sys/external/libfontFT.sprx
72a065f9cdc7aa83d090ea3243307efb  ./dev_flash/sys/external/libfreetype.sprx
fd6f149dbb56a33d76d9a22d6182ef77  ./dev_flash/sys/external/libfs.sprx
0a9937f31aa46ceafff80c53535ec651  ./dev_flash/sys/external/libgcm_sys.sprx
7b95585f32178652a15a01ef9e2798f6  ./dev_flash/sys/external/libhttp.sprx
de129ff1c276a343a6d9a8e70fa9b706  ./dev_flash/sys/external/libio.sprx
0316cda63a3032cca2a5acc990267f23  ./dev_flash/sys/external/libjpgdec.sprx
4b6c9ffe4a19f642e3b3c6e658e6bf64  ./dev_flash/sys/external/libkey2char.sprx
9b4209f5f6beb16798cf9fa2ceb667e6  ./dev_flash/sys/external/libl10n.sprx
bb9c95c87674515f0685826843979865  ./dev_flash/sys/external/liblv2.sprx
6f202204f0f84bb361f754c7a0169180  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
572c42b96a035a36f06acaa0457f2ec3  ./dev_flash/sys/external/libm4aacdec.sprx
7a40b253776c23b7848d6c7816fe8f90  ./dev_flash/sys/external/libm4venc.sprx
f4cce8f4e7a7431a910023b8dae999ac  ./dev_flash/sys/external/libmcadpt.sprx
a87cfeb9399e572f6026ae4198957972  ./dev_flash/sys/external/libmic.sprx
48abe305e2fbb826e2b2375c54c6dfce  ./dev_flash/sys/external/libmp3dec.sprx
0e20eeb269862828462d40d8b536389d  ./dev_flash/sys/external/libnet.sprx
66e51969a1ab0b78e660e8cc18e2732b  ./dev_flash/sys/external/libnetctl.sprx
c8d835b117d6d7d288a0e56f2f2c42a3  ./dev_flash/sys/external/libovis.sprx
adf9e0d9e0b3cee81f84494da3033343  ./dev_flash/sys/external/libpamf.sprx
cecb8ba862b3f62352928019afdd70ec  ./dev_flash/sys/external/libpngdec.sprx
81ce2f5220f38a2e49238c45f31771f4  ./dev_flash/sys/external/libresc.sprx
bbb08541a478a2b164c337eaff97f50a  ./dev_flash/sys/external/librtc.sprx
ae41315b3190bc63508495a79a0dcb26  ./dev_flash/sys/external/libsail.sprx
e42be10cd9424c0cf1045f19b03640e5  ./dev_flash/sys/external/libsheap.sprx
edabb8bcb610c528bb9424531b4ddade  ./dev_flash/sys/external/libsmvd2.sprx
55674bf0da4560d85f303b646bb32c5e  ./dev_flash/sys/external/libsmvd4.sprx
e4254da8e55e0f2ddc665a1a2751b44a  ./dev_flash/sys/external/libspurs.sprx
8e7314c2f60c7c8c4aab9819afbd4438  ./dev_flash/sys/external/libsre.sprx
4776b9490514235326634fc24b4e4904  ./dev_flash/sys/external/libssl.sprx
01bf4badc68394f99415d26dbaaafca3  ./dev_flash/sys/external/libsync.sprx
443c90ed817c05b6cf509d01a750f07a  ./dev_flash/sys/external/libsysmodule.sprx
931c2ffdb76ecfa8621e9e92b2ef8b6f  ./dev_flash/sys/external/libsysutil.sprx
b07b9cb52b1d0e661e6b13333be8577b  ./dev_flash/sys/external/libsysutil_np.sprx
08daccd2dc57e7de1c0f234e0d2ae712  ./dev_flash/sys/external/libusbd.sprx
e0f615c37110fd3a39b65d6f76f02cff  ./dev_flash/sys/external/libvdec.sprx
c2210e8db5160087194c3696276e19d7  ./dev_flash/sys/external/libvpost.sprx
324b07bbc2a5593dcaa0d8e3e635122d  ./dev_flash/sys/internal/libadec.sprx
14ad32d4d9c865a8e6abea0aab00ade7  ./dev_flash/sys/internal/libapostsrc.sprx
fd4d3da5d38347b7b1de64836aa1d0ec  ./dev_flash/sys/internal/libat3enc.sprx
3c144097c64018806359ba0ef7e69c84  ./dev_flash/sys/internal/libatxenc.sprx
0fd9cdb172d54c5d62429a2080f22d5e  ./dev_flash/sys/internal/libaudio_internal.sprx
5b0b0aa761b8d5d3ce59fb990a77a592  ./dev_flash/sys/internal/libavchatjpgdec.sprx
e83291f59754dd0e8bcf1adf015e95ce  ./dev_flash/sys/internal/libcamera.sprx
2233dffdea0442c347797ba43f607dc6  ./dev_flash/sys/internal/libcelpenc.sprx
60025e65ef9ed7b3ed20a659464013a1  ./dev_flash/sys/internal/libdtsdec.sprx
18dac4ff3ea30ff332cae83262963e0a  ./dev_flash/sys/internal/libfs.sprx
9935285ebfd6e25f41b89bd9a2bdb36c  ./dev_flash/sys/internal/libfs_utility.sprx
43e35b4c27808993ff9929a7d674cb4c  ./dev_flash/sys/internal/libft2d.sprx
ecee707d76b061e3e6952028576b4df5  ./dev_flash/sys/internal/libgcm_osd.sprx
22bbc794f3684659a9bbcac4ba814b08  ./dev_flash/sys/internal/libgifdec.sprx
c19f7802ea2d439791411337bdebeb7d  ./dev_flash/sys/internal/libjpgenc.sprx
a4720b35cd52215973d529439773ab97  ./dev_flash/sys/internal/libm2aacdec.sprx
676a9e94c7f0fd1db145421e775e2bb7  ./dev_flash/sys/internal/libm2bcdec.sprx
144edfda4aa862f64adf32c2173f1207  ./dev_flash/sys/internal/libm4venc.sprx
d5cfc79348e75e05d0f94eee359da2eb  ./dev_flash/sys/internal/libmcadpt.sprx
cc8e75aefd25f9e2f248063b70da2ef7  ./dev_flash/sys/internal/libmic.sprx
c8068fd5491d1c28961e051476bfc0b6  ./dev_flash/sys/internal/libmp3enc.sprx
2199e8f9aa112315b0db18282c0efdd4  ./dev_flash/sys/internal/libpamf.sprx
7a6632a34e9b8570769fb68b9ad30724  ./dev_flash/sys/internal/libpngenc.sprx
c28868166e240e8e5e4fa724344ee87b  ./dev_flash/sys/internal/libsvc1d.sprx
a700a1efac50119d85c034b0b740e459  ./dev_flash/sys/internal/libtiffdec.sprx
c1e9ff087e5796323542101c3a9424e6  ./dev_flash/sys/internal/libtrhddec.sprx
94425d71063b9a5eb3bce586a856675c  ./dev_flash/sys/internal/libvdec.sprx
79afc3c7d8e75217839f64ff8303c00b  ./dev_flash/sys/internal/libvpost.sprx
5bd167b656c0615b68ce97f5b9a05038  ./dev_flash/sys/internal/sys_audio.self
fe85eeed7f6e1ac20122e408ad0d6104  ./dev_flash/sys/internal/sys_init_osd.self
b895ddffa9fbe0168cc369c92d751880  ./dev_flash/sys/internal/sys_tsma.self
6a9915e47264620644f1727cd40d5d96  ./dev_flash/vsh/module/audioplayer_plugin.sprx
54237687636cc7cc39edb6ded7ad17b7  ./dev_flash/vsh/module/auth_plugin.sprx
e325a5dcf438d3e99c35ef828ecb8450  ./dev_flash/vsh/module/avc_plugin.sprx
9f7e010894d3b0e08bff0bc931bf3788  ./dev_flash/vsh/module/avc_util.sprx
7c5e14811538e779066679fc611b6055  ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
74fb023192b802032eebc81bd45e7e63  ./dev_flash/vsh/module/bdp_plugin.sprx
95f358918829284f276871a07d38eafa  ./dev_flash/vsh/module/category_setting_plugin.sprx
ff5fa8c28831068c1259a4df3fcae9f8  ./dev_flash/vsh/module/cdda_plugin.sprx
e042b555d140e31d0b812c3a18838141  ./dev_flash/vsh/module/custom_render_plugin.sprx
b0d15a99e2c5567e14af6914fa64777a  ./dev_flash/vsh/module/data_copy_plugin.sprx
f7d2fc78fdf6d66b371fd9946a6aa5a3  ./dev_flash/vsh/module/deviceconf_plugin.sprx
3dbe4e35e949c3960502ec427f94d286  ./dev_flash/vsh/module/download_plugin.sprx
ccf68d9495f359da224103b61ebeb86c  ./dev_flash/vsh/module/eula_cddb_plugin.sprx
9ec5231683eacd96303dcec6a2771bcf  ./dev_flash/vsh/module/explore_plugin.sprx
1a95453e59d04d597051df2ca50a7451  ./dev_flash/vsh/module/explore_plugin_game.sprx
9155c3c85472f676435c01a207e6d9ef  ./dev_flash/vsh/module/explore_plugin_np.sprx
0e3128551bbdd1c2a0f752f06c08813a  ./dev_flash/vsh/module/friendim_plugin.sprx
ed0a9681a42771c32299b7c9a5a7b583  ./dev_flash/vsh/module/game_plugin.sprx
be4be6f0c1a5d1568717041102d4d024  ./dev_flash/vsh/module/gamedata_plugin.sprx
4c77a48a0be0850548d584ed24c677c1  ./dev_flash/vsh/module/ime.sprx
48ae51ad85fcea325a6d3ef3d14702b8  ./dev_flash/vsh/module/impose_plugin.sprx
b9c7d6d9ae1026b15e8c0af9d2dcbe44  ./dev_flash/vsh/module/mcore.self
47fc1633c60a4a9dc6f5b7dc2754c71b  ./dev_flash/vsh/module/mgvideo.self
f4ec720c0c14d00cafa2b466d91929c7  ./dev_flash/vsh/module/micon_lock_plugin.sprx
ba48c240038a2a79005ddecd84715aaf  ./dev_flash/vsh/module/mms.sprx
b03d6883acb6a24556d9b8989a42429f  ./dev_flash/vsh/module/mms_db.sprx
2a1744ac7e214a86d115e007b1e0d9a5  ./dev_flash/vsh/module/mouse_plugin.sprx
41044b9b1a6b4162bf7fa736f6bcf873  ./dev_flash/vsh/module/msgdialog_plugin.sprx
11aaf284b7f055d5939041373b1cc405  ./dev_flash/vsh/module/msmw1.sprx
c33a820197748a45dbaffdc99581aae6  ./dev_flash/vsh/module/msmw2.sprx
000f36f377302962dbc00153e01c6f77  ./dev_flash/vsh/module/nas_plugin.sprx
4ff48ea14f375f38004ffc9acfe531ca  ./dev_flash/vsh/module/netconf_plugin.sprx
a6a3d818ed34c7d4113eef592fc45fb9 ./dev_flash/vsh/module/netctl_main.sprx
5e74269872eecab3a57ff4abbe54ff11  ./dev_flash/vsh/module/np_matching_plugin.sprx
53a89036e95ec36b259da2a40c82d342 ./dev_flash/vsh/module/npflashplayer.sprx
eeb9fa272e226fe42646db9ad59caac7 ./dev_flash/vsh/module/npsignin_plugin.sprx
f7cecdd154a8615f104697dfb5dd533f ./dev_flash/vsh/module/onicore_child.self
9ec3ed0ceadaca431e7379b5df8b4b12 ./dev_flash/vsh/module/osk_plugin.sprx
0a360c68ffaf9a0390dc6060aac24a9e ./dev_flash/vsh/module/oskpanel_plugin.sprx
35f166d178eae9b0cdac7e82c76ae172 ./dev_flash/vsh/module/paf.sprx
23f993fbc83b2361dde54dc9cab83a5f ./dev_flash/vsh/module/photoviewer_plugin.sprx
8c1db0e98122d4b61f28dad97e76d5fb ./dev_flash/vsh/module/premo_plugin.sprx
0c24d149c03c3e4cdfe65fe304499b88 ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
cf50e6c8cdcf9da3dac4f0de671d81f2 ./dev_flash/vsh/module/sacd.sprx
bb1e352386c7ea92e9475df205bc1315 ./dev_flash/vsh/module/sacd_plugin.sprx
3a856ab0dbeb4ae912bcfdefcb8aebb0  ./dev_flash/vsh/module/sdk.sprx
1faf666609a985ee849cfa6ef6b3690c  ./dev_flash/vsh/module/sdk_full.sprx
11cc3e3a76c7cc73cc05d3e27922eb71  ./dev_flash/vsh/module/silk.sprx
28caf9a78ddfa7512c743b940805c877  ./dev_flash/vsh/module/software_update_plugin.sprx
7035645e2f2ba9412781bbb62f1b527a  ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
22984e6ae8ea4a9aeea6fb4a378816f7  ./dev_flash/vsh/module/strviewer_plugin.sprx
fe90987a9d57dd3030e4481327436dca  ./dev_flash/vsh/module/sysconf_plugin.sprx
26087c5a5a9b54382898d3a595c70c34  ./dev_flash/vsh/module/system_plugin.sprx
f64c84854593b05953f08cb257ab65f8  ./dev_flash/vsh/module/thumthum_plugin.sprx
e9f21b6347e8a138375aeb16929e08fc  ./dev_flash/vsh/module/user_plugin.sprx
6b2ba423c24f1ab0573a912238caacae  ./dev_flash/vsh/module/videodownloader_plugin.sprx
a95d6088cc912bd51d735c5d04440af8  ./dev_flash/vsh/module/videoplayer_plugin.sprx
bba872e13e6af43b6ca26434035acf25  ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
a164c38b1b822a7c5e80dac024d23639  ./dev_flash/vsh/module/vmclib.sprx
c739c23a38cf75e68d11d2f36a32ef6d  ./dev_flash/vsh/module/vsh.self
64682cb7c3e345b8b5f4a77539202875  ./dev_flash/vsh/module/vshcommon.sprx
b4c8f521c1220814d97a02820baa01a5  ./dev_flash/vsh/module/vshmain.sprx
968761834fce1f67c4885117273135eb  ./dev_flash/vsh/module/vshnet.sprx
a15d475db7a151bd76a11fca3cc38db0  ./dev_flash/vsh/module/webbrowser_plugin.sprx
bb011fba7faf78193c124f43fd42420f  ./dev_flash/vsh/module/x3.sprx
b907d34eaf577bf6bec668220e9a098b  ./dev_flash/vsh/module/x3_mdimp1.sprx
dccbea6fd842df4ab50754940e639ed8  ./dev_flash/vsh/module/x3_mdimp2.sprx
68d3ec7a4963bde506d0f13d7e1af3ef  ./dev_flash/vsh/module/x3_mdimp3.sprx
dc1512fc35382d24abbec6df4a5f1a04  ./dev_flash/vsh/module/xcbplugin1.sprx
da71f5399258df2017474c51ac06425a  ./dev_flash/vsh/module/xmb_plugin.sprx
233709e44a2cdb59b6d6ead5ed80ff2e  ./dev_flash/vsh/module/xsetting.sprx
</pre>


==== 1.31 ====
\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\theme
<pre>
29-11-2010 03:34        1.992.880 01.p3t
3e782a3948a9fe61ee82a1521dd43a9e  ./dev_flash/bdplayer/bdj.self
              1 file(s)        1.992.880 bytes
6abbba3c61272afbf51720eaa73e5b17  ./dev_flash/bdplayer/bdp_BDMV.self
941f3cfcaa5ee739db48010b67d51f82  ./dev_flash/bdplayer/bdp_BDVD.self
044da58856359c94bb92e28712ce0bab  ./dev_flash/ps1emu/ps1_emu.self
a0838d20d4d72d699dcb00b073b5865c  ./dev_flash/ps2emu/ps2_emu.self
3fe4ed4dd518312c0216b739375f604c  ./dev_flash/sys/external/libaacenc.sprx
169967c0d12bb6496953c8dbee63e7f8  ./dev_flash/sys/external/libac3dec.sprx
19a5d321646e80f955102ba67918e524  ./dev_flash/sys/external/libadec.sprx
00061f1d3fe7f140e16a8313e62399c0  ./dev_flash/sys/external/libadec_internal.sprx
610d0ff99dcc8b66ee3c3a0ebe7726e0  ./dev_flash/sys/external/libat3dec.sprx
f3f115b802da4ad80deca971ff1a21b1  ./dev_flash/sys/external/libatrac3plus.sprx
374fdc539d94180560c2c0e90f38d840  ./dev_flash/sys/external/libatxdec.sprx
53fb10a1fd0e9c5d6ea4f110cd594832  ./dev_flash/sys/external/libaudio.sprx
6da5f0ed2b823bfc8d42de751397d6ae  ./dev_flash/sys/external/libavcdec.sprx
6d00f879000d32c3435ba932f0f38142  ./dev_flash/sys/external/libcamera.sprx
af1956f10e9c182cbcc719515044de28  ./dev_flash/sys/external/libcelpdec.sprx
810447b51faea8a9ba83e65f1e9506a2  ./dev_flash/sys/external/libcelpenc.sprx
adfb94f0f1e9a20afc2fe6a99a83aba6  ./dev_flash/sys/external/libdaisy.sprx
55e16a02b2bbd618955a1d0307b9f9b2  ./dev_flash/sys/external/libdmux.sprx
87f54eac5f4ddb64803866aa8afdb88d  ./dev_flash/sys/external/libdmuxpamf.sprx
549563633a9ab7bd1d3b940da7c5ab23  ./dev_flash/sys/external/libfont.sprx
89850d1c027d63b5e95d9927b01c8220  ./dev_flash/sys/external/libfontFT.sprx
0efbd9ccbbfc0dda75b176de14e536e0  ./dev_flash/sys/external/libfreetype.sprx
30058e666b8600e85df16020b8527858  ./dev_flash/sys/external/libfs.sprx
792b8260b9099ff6186bac1acbcce4b6  ./dev_flash/sys/external/libgcm_sys.sprx
ac4f8de44bbc89808ec7ace9db00812a  ./dev_flash/sys/external/libhttp.sprx
7f1973dda26ebb2b87cb2b54e111fe60  ./dev_flash/sys/external/libio.sprx
7fef65b0c9ce485eb11dab9a6fbc79a8  ./dev_flash/sys/external/libjpgdec.sprx
ced271dd51cadde2e651f535ddb963c4  ./dev_flash/sys/external/libkey2char.sprx
8589acecb48a97728ea4142eecd1f64b  ./dev_flash/sys/external/libl10n.sprx
003a01ceca50caae984fd50e922ab465  ./dev_flash/sys/external/liblv2.sprx
bd8b18ba124eae9151cf3f5f69eb590c  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
3503b4d3934f9ae37d6e362a456de92b  ./dev_flash/sys/external/libm4aacdec.sprx
68bb5afea505a3c19f4b9d746e268b66  ./dev_flash/sys/external/libm4venc.sprx
27dd04a33a8da72f4d6b758ee8a6033a  ./dev_flash/sys/external/libmcadpt.sprx
53bdb48542f6fca8acc1ed7f3deb60e8  ./dev_flash/sys/external/libmic.sprx
d4ed6f0d8a7d585cdfa46a152c2a0eba  ./dev_flash/sys/external/libmp3dec.sprx
5f5a7bcddc2f1617dd331798f98f6699  ./dev_flash/sys/external/libnet.sprx
b14e6bbc3c6f04257beec54360246aa8  ./dev_flash/sys/external/libnetctl.sprx
ec8d105b208a88588c5fffa2588fc06b  ./dev_flash/sys/external/libovis.sprx
ba7ee79ac842210212690a07326a11a6  ./dev_flash/sys/external/libpamf.sprx
e95ed83d1c4ca95cb012079656dab045  ./dev_flash/sys/external/libpngdec.sprx
532ef69ea68784e93e1d327301f5c631  ./dev_flash/sys/external/libresc.sprx
7e3e250a7ecfde3da54915de4b1d20e8  ./dev_flash/sys/external/librtc.sprx
5f5fb56c12cb89f2e04a2f94232b786d  ./dev_flash/sys/external/libsail.sprx
4c3ae08c480e1338ad47f9062d25a0b3  ./dev_flash/sys/external/libsheap.sprx
4227a055aa539d840e6fc0d6b8dadacd  ./dev_flash/sys/external/libsmvd2.sprx
1db90a26c80c2e978ce2c2d64884eb10  ./dev_flash/sys/external/libsmvd4.sprx
1e4893d4db3ca16d5aed5ebb675fda87  ./dev_flash/sys/external/libspurs.sprx
f1e5c65fe282dcc8a503311331226166  ./dev_flash/sys/external/libsre.sprx
8b56adf241a0a7b042670b0f24bca10b  ./dev_flash/sys/external/libssl.sprx
7794a0e85fa5d930caa308f7edc2b184  ./dev_flash/sys/external/libsync.sprx
9872a7bdb40d8b5597ad31f87c7cb7ea  ./dev_flash/sys/external/libsysmodule.sprx
d33cf755bb4ad6d0c0bc92b14775de17  ./dev_flash/sys/external/libsysutil.sprx
e76c23d6c24cb9424c78cf8a68a05f13  ./dev_flash/sys/external/libsysutil_np.sprx
54b12d228780b250f7e88988193a4113  ./dev_flash/sys/external/libusbd.sprx
8acc0499989cad00971da9307d81cbf2  ./dev_flash/sys/external/libvdec.sprx
c891b1985c6db06da0973ac72f03158e  ./dev_flash/sys/external/libvpost.sprx
26ce5e3c3d220347979f24b813e12e00  ./dev_flash/sys/internal/libadec.sprx
c1ba1d9985e71dbe8a430ead144e853c  ./dev_flash/sys/internal/libapostsrc.sprx
e5671f9f3d34693aa6331bb2453dfc89  ./dev_flash/sys/internal/libat3enc.sprx
2d485703e0d8b261b52689f0259b124d  ./dev_flash/sys/internal/libatxenc.sprx
938e4060466f89cd7573aea2833d12ea  ./dev_flash/sys/internal/libaudio_internal.sprx
692a4821a36d3d13d21d21b5a5b99eee  ./dev_flash/sys/internal/libavchatjpgdec.sprx
7281501241cae52d8baac5f92539b003  ./dev_flash/sys/internal/libcamera.sprx
4ead8cc778e6300efc11bca061ee5c46  ./dev_flash/sys/internal/libcelpenc.sprx
399af8fe878d1676e350b5b1d0aa3fb9  ./dev_flash/sys/internal/libdtsdec.sprx
80dc0441ba67f03791946453816207b5  ./dev_flash/sys/internal/libfs.sprx
33f5f39a430c7e88052da699a45e7c77  ./dev_flash/sys/internal/libfs_utility.sprx
9c68fd727c303972e7a88ba2579226c9  ./dev_flash/sys/internal/libft2d.sprx
36b6099eee5234df2782277bf529e043  ./dev_flash/sys/internal/libgcm_osd.sprx
139ec1b4e773eb9f1fd194bcfc9054f3  ./dev_flash/sys/internal/libgifdec.sprx
c9dac1c6328dcd48436503cd22f000d1  ./dev_flash/sys/internal/libjpgenc.sprx
4255e273660456a1bff130ba8060f6c9  ./dev_flash/sys/internal/libm2aacdec.sprx
e96d519edd273e50b3b8078da45dd30e  ./dev_flash/sys/internal/libm2bcdec.sprx
d00eba8a5bfc285b9e742b2254a60a76  ./dev_flash/sys/internal/libm4venc.sprx
6d9832bf34da515f5c908dcc1352dcdf  ./dev_flash/sys/internal/libmcadpt.sprx
ceb40a6372ad7fd5e835d82b1c2f8aa3  ./dev_flash/sys/internal/libmic.sprx
d7a3e9e92416bc84750c53b418b20bc4  ./dev_flash/sys/internal/libmp3enc.sprx
1b1204d2bc4daa88c651d8f51a9d546e  ./dev_flash/sys/internal/libpamf.sprx
5ffa8ffdf857165b4d38e7a209d873a1  ./dev_flash/sys/internal/libpngenc.sprx
3768a26d26ac4bc4b1d6f247561e2378  ./dev_flash/sys/internal/libsvc1d.sprx
ae4ce124c2ce365cf4889dd145d68d3a  ./dev_flash/sys/internal/libtiffdec.sprx
8b8dd637da07bb9090639c9926a58a07  ./dev_flash/sys/internal/libtrhddec.sprx
bdd68dfc7b39fdab6d96fe0da560e536  ./dev_flash/sys/internal/libvdec.sprx
c922bf330f756d0801e5f448d01c6a9a  ./dev_flash/sys/internal/libvpost.sprx
19f9a3314bae252c658597b1be8e9de9  ./dev_flash/sys/internal/sys_audio.self
d17026f64017478cefae79f84e1c69f5  ./dev_flash/sys/internal/sys_init_osd.self
bf5e8b273bf8c55bf4241a06f7b95a66  ./dev_flash/sys/internal/sys_tsma.self
8e8997bb3c6843e2ab51a9efd50b1f9d  ./dev_flash/vsh/module/audioplayer_plugin.sprx
41f15c2302725c8933134d11eb43e77d ./dev_flash/vsh/module/auth_plugin.sprx
a6e73917e4d478349da31a32abbe3ae3  ./dev_flash/vsh/module/avc_plugin.sprx
95f241d49988a9a60e6c4f08297f9049  ./dev_flash/vsh/module/avc_util.sprx
5adb6ae4963f39ccda5b60dc79e9aa30  ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
31f43c3deb01926caf24c3e913d24c8e  ./dev_flash/vsh/module/bdp_plugin.sprx
e135af790799a78a6e1537702d432cd1  ./dev_flash/vsh/module/category_setting_plugin.sprx
9d040b097d62f793855aa10dd5e11f6a  ./dev_flash/vsh/module/cdda_plugin.sprx
6d3a359d26c2a7d8904020fb795acc3d  ./dev_flash/vsh/module/custom_render_plugin.sprx
ac600c682bfb22576be25be6916e32b8  ./dev_flash/vsh/module/data_copy_plugin.sprx
ed1dbf57d0f3a098be465b7bc861ceb4  ./dev_flash/vsh/module/deviceconf_plugin.sprx
a2459027827440228a730a75b871fb6b  ./dev_flash/vsh/module/download_plugin.sprx
a63ea3435726632ffeef3ff5c555b106  ./dev_flash/vsh/module/eula_cddb_plugin.sprx
2ecacd045e5074fcc6e62bf6c44c814d  ./dev_flash/vsh/module/explore_plugin.sprx
02c25cc41b3084d964736e3d1db956fb  ./dev_flash/vsh/module/explore_plugin_game.sprx
ebfda6f1599ad7a6a305fb2f020ca632  ./dev_flash/vsh/module/explore_plugin_np.sprx
cac718ea7562b4746cae79cfcc4f0201  ./dev_flash/vsh/module/friendim_plugin.sprx
334a2f3cb41296b0a346c6e8dcb9bd25  ./dev_flash/vsh/module/game_plugin.sprx
f8ba9161ee1de906c92bb33460ab2165  ./dev_flash/vsh/module/gamedata_plugin.sprx
8450e730ab47d743c6650ec92261d4ef  ./dev_flash/vsh/module/ime.sprx
1520750937aef85ebe33acbfcb009c05  ./dev_flash/vsh/module/impose_plugin.sprx
b9c7d6d9ae1026b15e8c0af9d2dcbe44  ./dev_flash/vsh/module/mcore.self
47fc1633c60a4a9dc6f5b7dc2754c71b  ./dev_flash/vsh/module/mgvideo.self
44401a6efa4a590ba6afa91344036f41  ./dev_flash/vsh/module/micon_lock_plugin.sprx
db03d3659c0b5c1bc1be460e9b2aab1e  ./dev_flash/vsh/module/mms.sprx
4c52729527d7d7b4022b4b99e17fbe54  ./dev_flash/vsh/module/mms_db.sprx
9e2032571046a958c6e8ad8f795c3e44  ./dev_flash/vsh/module/mouse_plugin.sprx
d58bbe9237282bb5a54ae313531c6395  ./dev_flash/vsh/module/msgdialog_plugin.sprx
3e1be0fc845293925843ed9af85b793c  ./dev_flash/vsh/module/msmw1.sprx
30c9777ce6c3d3d56590193fc529bb44  ./dev_flash/vsh/module/msmw2.sprx
60fa8705d2857e03ec7daaf5771a542d  ./dev_flash/vsh/module/nas_plugin.sprx
43184b1c3e0778a65fc22ff497403a1f  ./dev_flash/vsh/module/netconf_plugin.sprx
2da0a5d40356ee5687ca8d135319143f  ./dev_flash/vsh/module/netctl_main.sprx
f5d5d7e17f5a9b102dcf87a57e5533b5  ./dev_flash/vsh/module/np_matching_plugin.sprx
dbe65c50273ec0b611a176e46516952c  ./dev_flash/vsh/module/npflashplayer.sprx
00e93f37000902fc9a75f21f92ef926c  ./dev_flash/vsh/module/npsignin_plugin.sprx
f7cecdd154a8615f104697dfb5dd533f  ./dev_flash/vsh/module/onicore_child.self
6bbe0a17a2f61ae706b2e8d13eaf4483  ./dev_flash/vsh/module/osk_plugin.sprx
b1fdb77f37a5ad156a3a37fc23506cb1  ./dev_flash/vsh/module/oskpanel_plugin.sprx
dd5ea65853eddcaef7c22ec26065e424  ./dev_flash/vsh/module/paf.sprx
875c069634103befbf0aeb527c2b96fa  ./dev_flash/vsh/module/photoviewer_plugin.sprx
6ac3b4069f943af905523ac748d650da  ./dev_flash/vsh/module/premo_plugin.sprx
0a8fcee3c7e7ecbe2aba068be5d95e6f  ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
9d44fd83446b2ea16b50189393a9dc63  ./dev_flash/vsh/module/sacd.sprx
ea1842afed14c949b4b5d5df9ccbddc9  ./dev_flash/vsh/module/sacd_plugin.sprx
458182c5c63df5fd8cde9bef92707afc  ./dev_flash/vsh/module/sdk.sprx
a17ff874597c85cbf93b6c5a6949360e  ./dev_flash/vsh/module/sdk_full.sprx
5d88ba19d9e581587d83cba5936e989a  ./dev_flash/vsh/module/silk.sprx
1800870f54653d8f78ae9c1dda95d1cf  ./dev_flash/vsh/module/software_update_plugin.sprx
a1ff3321accb334c4709e054047ca43d  ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
6713671783759e45a2fe93bde661a663  ./dev_flash/vsh/module/strviewer_plugin.sprx
a1da0e4125939f78e7e77800f33b0708  ./dev_flash/vsh/module/sysconf_plugin.sprx
fa74e87e408337f2883c0a204ab0c739  ./dev_flash/vsh/module/system_plugin.sprx
b18fa94aefa8810617cccaea7b86186b  ./dev_flash/vsh/module/thumthum_plugin.sprx
9c49b42a510da1e2394f67339ddcdf7d  ./dev_flash/vsh/module/user_plugin.sprx
3605cace55c832c97df67a31ff0b3d2f  ./dev_flash/vsh/module/videodownloader_plugin.sprx
c22c12bf6e27fc6195db6c9a9ef41d15  ./dev_flash/vsh/module/videoplayer_plugin.sprx
c7f4eb745b498f55c2416309f14fbfbb  ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
99b75e0e0c6fa80ebbd8ace57f9ab740  ./dev_flash/vsh/module/vmclib.sprx
f63691283f7bf4bbb48ccad485c2ba65  ./dev_flash/vsh/module/vsh.self
697bf374af97eb1c652af5b52a26b734  ./dev_flash/vsh/module/vshcommon.sprx
42e7040448a3b806673bb0847660e41e  ./dev_flash/vsh/module/vshmain.sprx
4613220a639b89f53a66649e3528c311  ./dev_flash/vsh/module/vshnet.sprx
e8d2c3fd9dc3e6ce958f8a1be627cc86  ./dev_flash/vsh/module/webbrowser_plugin.sprx
50ebc1ab83e8629e0d1c83e452169c62  ./dev_flash/vsh/module/x3.sprx
0592a6a039ca232716e02e098a8cb558  ./dev_flash/vsh/module/x3_mdimp1.sprx
9068ec3fb0985fa19062647b0fc797ab  ./dev_flash/vsh/module/x3_mdimp2.sprx
0c03d422983374f1b4eab7bb140e79ba  ./dev_flash/vsh/module/x3_mdimp3.sprx
f6e0b2ab7dbc7de20243819e47f35e0f  ./dev_flash/vsh/module/xcbplugin1.sprx
6af46c20049bde7bacd69e4d3a7a956c  ./dev_flash/vsh/module/xmb_plugin.sprx
1c6f14ed1ec5c8f01b6b4f8eba02207b  ./dev_flash/vsh/module/xsetting.sprx
</pre>


==== 1.32 ====
    Total:
<pre>
            864 file(s)      145.583.836 bytes
3892be2c618626ba9620cb2cf60f1da7  ./dev_flash/bdplayer/bdj.self
            131 folder(s)
8571ef4c1567d6ba3fab48df3166c460  ./dev_flash/bdplayer/bdp_BDMV.self
e6a89b7884d06213f2d054b08ca9707b  ./dev_flash/bdplayer/bdp_BDVD.self
7061d1989c98553a414c19a6a46f61ef  ./dev_flash/ps1emu/ps1_emu.self
3ec5422e2ed18f7089c53f02c6204f51  ./dev_flash/ps2emu/ps2_emu.self
e1521e2f16f3e69a824564e3344990c2  ./dev_flash/sys/external/libaacenc.sprx
a113685c3b44e1668929b5b923e37f4d  ./dev_flash/sys/external/libac3dec.sprx
be7e8db51ec9f35f692f55fb3ca8ca7d  ./dev_flash/sys/external/libadec.sprx
8f7dc4eccf4e0eb92a9223169aa0b166  ./dev_flash/sys/external/libadec_internal.sprx
354ecdc3ca0ad3f53bd7a34edfe1e9f9  ./dev_flash/sys/external/libat3dec.sprx
8a0cf20873ad34672c15dbaea95d62bd  ./dev_flash/sys/external/libatrac3plus.sprx
c336b7aab13ecb2b352c216927a79cde  ./dev_flash/sys/external/libatxdec.sprx
537a6ff72493827d832f8667a30b0e50  ./dev_flash/sys/external/libaudio.sprx
892ad9fa7d1159a09798bcff74f4baea  ./dev_flash/sys/external/libavcdec.sprx
af2a77566b35d6be1f49e0a44c6438b2  ./dev_flash/sys/external/libcamera.sprx
7acfd7c4fb08f81a0f21b40a946f4f5f  ./dev_flash/sys/external/libcelpdec.sprx
8ca360b673421484c1d434904c36728d  ./dev_flash/sys/external/libcelpenc.sprx
72c80388075911d3aa93f5e7513ca2cd  ./dev_flash/sys/external/libdaisy.sprx
47fe4a2ef256e9c2c618af1ca8857372  ./dev_flash/sys/external/libdmux.sprx
71063945281faf73f892b4caa6686145  ./dev_flash/sys/external/libdmuxpamf.sprx
1bfbde4685fa6f9559a5fe7bc3594a2e  ./dev_flash/sys/external/libfont.sprx
2220643626a0a7b97b71e9366c1cf54f  ./dev_flash/sys/external/libfontFT.sprx
3aab885480e7eb1267ee88e95f93af03  ./dev_flash/sys/external/libfreetype.sprx
0baad5882086b335caee347e0204b461  ./dev_flash/sys/external/libfs.sprx
62eca29ff202b6b3d89328ca0cbf74fc  ./dev_flash/sys/external/libgcm_sys.sprx
e743ea960d79c27473643594a2456ac7  ./dev_flash/sys/external/libhttp.sprx
98e26b2414faf5492283663a9fdbbf33  ./dev_flash/sys/external/libio.sprx
784c5dc4d6ad7a9e758b7bf7c71d57f5  ./dev_flash/sys/external/libjpgdec.sprx
d065598605626f293975683fec4b24b9  ./dev_flash/sys/external/libkey2char.sprx
05308e2cad870f7e4e558f08aa3b4975  ./dev_flash/sys/external/libl10n.sprx
c71ddae97b7f98f8b53ea46bc0a035ea  ./dev_flash/sys/external/liblv2.sprx
e32b369956a0e8ead058a0dd474e50d0  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
033b5aca54580879962e7c9038330d41  ./dev_flash/sys/external/libm4aacdec.sprx
3752cfca41821980a6877d9da3d33f19  ./dev_flash/sys/external/libm4venc.sprx
78e614f0d43b345a262919981d8a816d  ./dev_flash/sys/external/libmcadpt.sprx
118da903bf2317c52e222be28c346da4  ./dev_flash/sys/external/libmic.sprx
a7896f3eea88670e7e23fdd2631ac6eb  ./dev_flash/sys/external/libmp3dec.sprx
45eb94289b605b60e88159c438b17420  ./dev_flash/sys/external/libnet.sprx
f0f9fea5cf8e67254cd4351e83047bad  ./dev_flash/sys/external/libnetctl.sprx
7369c7f31c142c52238b1969b306e1e1  ./dev_flash/sys/external/libovis.sprx
b82c5a34026804159ec51e4d42806703  ./dev_flash/sys/external/libpamf.sprx
ea244020fa03572172dac36847adf6c9  ./dev_flash/sys/external/libpngdec.sprx
6c613ea2147f476cf435b669003e5a47  ./dev_flash/sys/external/libresc.sprx
9081f604a6c12ed029bd8f340b412df6  ./dev_flash/sys/external/librtc.sprx
396f7266636f142927f4095e42384067  ./dev_flash/sys/external/libsail.sprx
596f21ff595c792221d3d0e9bdcb7ba7  ./dev_flash/sys/external/libsheap.sprx
c3b406d8e003fa9ed9edbdd9bbb974d3  ./dev_flash/sys/external/libsmvd2.sprx
c22855fbc7da18b266ec2ed88876f43e  ./dev_flash/sys/external/libsmvd4.sprx
7b3aa8b2fd071fdf0e4ba35f4c588a4d  ./dev_flash/sys/external/libspurs.sprx
0bce6ab81ca60f0c9cde1c8251fd7a8e  ./dev_flash/sys/external/libsre.sprx
52a1182d1986a688a5a8711d627a4bbb  ./dev_flash/sys/external/libssl.sprx
2fec1aca843b21cdc8156e768216dc2a  ./dev_flash/sys/external/libsync.sprx
1b8597ed1daeb3735fbf82b751028284  ./dev_flash/sys/external/libsysmodule.sprx
4448b02574a882316b8fd68fe44a7efd  ./dev_flash/sys/external/libsysutil.sprx
8f1912f1fcfa9266c2770a52c796a699  ./dev_flash/sys/external/libsysutil_np.sprx
b55771db0f99a73c4f92dca1768da75a  ./dev_flash/sys/external/libusbd.sprx
07f8b6613c0fecf74b99db1025bc562c  ./dev_flash/sys/external/libvdec.sprx
20d0d1ef337bb0ef2beee695cb6a68a3  ./dev_flash/sys/external/libvpost.sprx
8f13fd0e70bf1a07deea4ec8cbfbcec8  ./dev_flash/sys/internal/libadec.sprx
764572e64051c2f7b5aca118b3d2ccf9  ./dev_flash/sys/internal/libapostsrc.sprx
e93ca3a08828b57cb03dcb50f59fdca7  ./dev_flash/sys/internal/libat3enc.sprx
c30d24395a6c84b42fda27ce7b3084e1  ./dev_flash/sys/internal/libatxenc.sprx
68572f86b4dbc35670ecfebe3efcab50  ./dev_flash/sys/internal/libaudio_internal.sprx
d5c0f9889f225cadd961de1e40b6161e  ./dev_flash/sys/internal/libavchatjpgdec.sprx
15fa27c4971a9c3e620cb2333ea5f4a8  ./dev_flash/sys/internal/libcamera.sprx
365069fd95d3f7bdc162d469309af442  ./dev_flash/sys/internal/libcelpenc.sprx
c59d8f49ab9170174d9982b459f7cb3d  ./dev_flash/sys/internal/libdtsdec.sprx
2907ad56449b7e05fd8637e42c4e76ac  ./dev_flash/sys/internal/libfs.sprx
e6c3cc42eb67ee613be160ec503e4c18  ./dev_flash/sys/internal/libfs_utility.sprx
dc541bcb95be110b2311ce8c26dfadd6  ./dev_flash/sys/internal/libft2d.sprx
5ae60945680a83346c002221e83125ea  ./dev_flash/sys/internal/libgcm_osd.sprx
a8387d9945205c4359eb8a9f9d28045c  ./dev_flash/sys/internal/libgifdec.sprx
d96b693ca09201f1eebbf19c8e96f90f  ./dev_flash/sys/internal/libjpgenc.sprx
bafa33ec4fb992de898bfe52aa84de1c  ./dev_flash/sys/internal/libm2aacdec.sprx
72b02c3d297941e87af567f202772ffa  ./dev_flash/sys/internal/libm2bcdec.sprx
a1ca1b8eeac5872c615d0619465ca1ef  ./dev_flash/sys/internal/libm4venc.sprx
819e3fe66f4d8a19226c4f355dec5aa0  ./dev_flash/sys/internal/libmcadpt.sprx
da4917043d8e0a37c7391ba3eb01434c  ./dev_flash/sys/internal/libmic.sprx
b95da0050bfd3879e4cfb78e6fe963b2  ./dev_flash/sys/internal/libmp3enc.sprx
322b7db8b9b515a0e812e2c2b99c2455  ./dev_flash/sys/internal/libpamf.sprx
cb7d677f0469277e27f72732c90409d0  ./dev_flash/sys/internal/libpngenc.sprx
440d510d1d855daefc4e0502a0d971eb  ./dev_flash/sys/internal/libsvc1d.sprx
11da8947b9c0db03f0c7da0824557ebf  ./dev_flash/sys/internal/libtiffdec.sprx
5a813fddf3bb70a634cdb675d8e53e37  ./dev_flash/sys/internal/libtrhddec.sprx
411124f0ec3a30681340c7060983aca5  ./dev_flash/sys/internal/libvdec.sprx
265969f4c51409f9028d8670fe90fb38  ./dev_flash/sys/internal/libvpost.sprx
de88bdc7a027df5bcbbcc9b2530ef8b8  ./dev_flash/sys/internal/sys_audio.self
8f8dc2127c84128001ffa0678583961a  ./dev_flash/sys/internal/sys_init_osd.self
fc82ccebb0192dc842c0f4a94b01b585  ./dev_flash/sys/internal/sys_tsma.self
e8990960ec69a40f090d7679c7754fea  ./dev_flash/vsh/module/audioplayer_plugin.sprx
4389cb144af1967a670ca6ab82e06067  ./dev_flash/vsh/module/auth_plugin.sprx
f33bb8344ecbdda7c06d6297a56b036a  ./dev_flash/vsh/module/avc_plugin.sprx
1e785f4b9beb8ce3900f3745ce557bce  ./dev_flash/vsh/module/avc_util.sprx
9d187499ff1c9f852949af6b5bc65bc2  ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
70095e2f9ee8d2370ab2b4e94975e404  ./dev_flash/vsh/module/bdp_plugin.sprx
f16fa1c8d335fe2478a08006673cedab  ./dev_flash/vsh/module/category_setting_plugin.sprx
b08cb1a1881f242358bf3bba20d88a32  ./dev_flash/vsh/module/cdda_plugin.sprx
77ed35c5de9f561644b5cdaa3ec12acb  ./dev_flash/vsh/module/custom_render_plugin.sprx
7e77a8ee5b4d911ac6905a5ae8616d0d  ./dev_flash/vsh/module/data_copy_plugin.sprx
a7897ef03129d818ee3b1fbfbdd8599f  ./dev_flash/vsh/module/deviceconf_plugin.sprx
84e2757ed8129b54649de321e23f77c3  ./dev_flash/vsh/module/download_plugin.sprx
d4779648b3d7abe15bddc073d4c55b29  ./dev_flash/vsh/module/eula_cddb_plugin.sprx
7acc6a4cbaa1c1bca32b1b1824c46278  ./dev_flash/vsh/module/explore_plugin.sprx
3c897d7130b2a4dabff912194bc88b6c  ./dev_flash/vsh/module/explore_plugin_game.sprx
5d58045958c9c9a8c91053fe784b1f2e  ./dev_flash/vsh/module/explore_plugin_np.sprx
c2c55c91dd497d39084171ac9e63c747  ./dev_flash/vsh/module/friendim_plugin.sprx
98a9bb20928c228c136abb9bc98058c5  ./dev_flash/vsh/module/game_plugin.sprx
57598ff8ec5450a64cba5e932d6c4221  ./dev_flash/vsh/module/gamedata_plugin.sprx
386d8da1ce50ffc5fe9c17e3e64dbb5e  ./dev_flash/vsh/module/ime.sprx
6abf46f9a76686ac8616d8ac19a79a59  ./dev_flash/vsh/module/impose_plugin.sprx
b9c7d6d9ae1026b15e8c0af9d2dcbe44  ./dev_flash/vsh/module/mcore.self
47fc1633c60a4a9dc6f5b7dc2754c71b  ./dev_flash/vsh/module/mgvideo.self
75b0ed7582f7983177d8a3107345dcd7  ./dev_flash/vsh/module/micon_lock_plugin.sprx
244272bce86954d52965b54820de7303  ./dev_flash/vsh/module/mms.sprx
611288e36ceb2c56eaa5e6f7e7ae2615  ./dev_flash/vsh/module/mms_db.sprx
ee71f29114fc52dd7138e52b0a4e0445  ./dev_flash/vsh/module/mouse_plugin.sprx
0a0bb17803221fb59482586d3cc2ce31  ./dev_flash/vsh/module/msgdialog_plugin.sprx
9cffbc84ea7cca30fa4de1a0ba81f99c  ./dev_flash/vsh/module/msmw1.sprx
640af86b2976a4ca1490e539c728fff0  ./dev_flash/vsh/module/msmw2.sprx
12397df4946e9a218c6bda402b17aa43  ./dev_flash/vsh/module/nas_plugin.sprx
f62a9586acf6a6e7f2bd548b6b35e9d5  ./dev_flash/vsh/module/netconf_plugin.sprx
8818314e46577339195833eaebe522ef  ./dev_flash/vsh/module/netctl_main.sprx
8c393c2ea5a5e3dd7133344af5fd3f06  ./dev_flash/vsh/module/np_matching_plugin.sprx
f4019985e030604885c9f08370a45f0d  ./dev_flash/vsh/module/npflashplayer.sprx
6ec1d781a629b0e60991748d220c24d7  ./dev_flash/vsh/module/npsignin_plugin.sprx
f7cecdd154a8615f104697dfb5dd533f  ./dev_flash/vsh/module/onicore_child.self
8fffc8d2c3a65310db8801ae5c0bb5b7  ./dev_flash/vsh/module/osk_plugin.sprx
39f4638084e745f9c6d4a7f4338510c3  ./dev_flash/vsh/module/oskpanel_plugin.sprx
bc1687318403734aede970e8ecbcc529  ./dev_flash/vsh/module/paf.sprx
201b2dd2356e549ff39349ccbc44fac8  ./dev_flash/vsh/module/photoviewer_plugin.sprx
f26f5d25dbc28a285479b3578c6f8042  ./dev_flash/vsh/module/premo_plugin.sprx
3e390ab9027ccee363f78130397d20b3  ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
399f7de72e96ae97775d126bd8214b20  ./dev_flash/vsh/module/sacd.sprx
cc0949820a84418ded2750699b2077ec  ./dev_flash/vsh/module/sacd_plugin.sprx
33f0cb8a9056f119b45b352b592a8078  ./dev_flash/vsh/module/sdk.sprx
639132ea8b0e6b0dfd7deae076ef9312  ./dev_flash/vsh/module/sdk_full.sprx
f8fac48cc407ed7a17cfa38dc75dd011  ./dev_flash/vsh/module/silk.sprx
618f329d42ca9a196671980c18a5af5b  ./dev_flash/vsh/module/software_update_plugin.sprx
1c9abdfe715ab1e766eaa0bf0f899b77  ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
350366610ffac26ebbae7e4d153369ff  ./dev_flash/vsh/module/strviewer_plugin.sprx
a2b2b7b914a0e2de03b7cf469cec94a6  ./dev_flash/vsh/module/sysconf_plugin.sprx
a515d951fa857ebd662b2632557099ae  ./dev_flash/vsh/module/system_plugin.sprx
0ca88805f6764f4f8f481b8030d067af  ./dev_flash/vsh/module/thumthum_plugin.sprx
4c614607ced22e4fd7996e59b6908c73  ./dev_flash/vsh/module/user_plugin.sprx
12e7bc32bd64ad81772049d7f48b7750  ./dev_flash/vsh/module/videodownloader_plugin.sprx
3900459064f57e64e40c7f432f322146  ./dev_flash/vsh/module/videoplayer_plugin.sprx
19ae1b079a143a30d80d4256557911cf  ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
a9c1c124d7c5f180949b50521bf140a5  ./dev_flash/vsh/module/vmclib.sprx
e1dfeab8d8ed15e1948935c957019189  ./dev_flash/vsh/module/vsh.self
d8e3306ced9f07b5150747b61274a6e2  ./dev_flash/vsh/module/vshcommon.sprx
9563f224022e7bce2cf86197d74a649d  ./dev_flash/vsh/module/vshmain.sprx
646a38b5c4f4175b4f55f7b91f01d4f4  ./dev_flash/vsh/module/vshnet.sprx
46efe0bea0fde9ac62f39fb3f193da6f  ./dev_flash/vsh/module/webbrowser_plugin.sprx
a4deb03b1072b0b4aff0cf830eeb2944  ./dev_flash/vsh/module/x3.sprx
4f478118fa1ffd7f43b40b92670004ec  ./dev_flash/vsh/module/x3_mdimp1.sprx
39f87869b51eb306529de327e0ebf28b  ./dev_flash/vsh/module/x3_mdimp2.sprx
029e6c58ccb182a0cbf26ac3349f55b4  ./dev_flash/vsh/module/x3_mdimp3.sprx
01a3fb81d6827a12ae75c9ae989388d8  ./dev_flash/vsh/module/xcbplugin1.sprx
bbf919929b5219c35810d4595ea98945  ./dev_flash/vsh/module/xmb_plugin.sprx
1c692e43aa535a675adf91d9184f171e  ./dev_flash/vsh/module/xsetting.sprx
</pre>
</pre>


==== 1.50 ====
<pre>
1e20b2264b55a4c222e9059c48fa68ec  ./dev_flash/bdplayer/bdj.self
7b7c42fd47c65fef5ad35e8fed6e57d9  ./dev_flash/bdplayer/bdp_BDMV.self
cc84785b64d0e966287bc9d6c4313214  ./dev_flash/bdplayer/bdp_BDVD.self
300ee8e8b128b29cd87b10658571e657  ./dev_flash/ps1emu/ps1_emu.self
7dad42d96e467ae68d3d192944c4d423  ./dev_flash/ps2emu/ps2_emu.self
49ce2945295f504314528a137536dd59  ./dev_flash/ps2emu/ps2_gxemu.self
7789c669e047990194e0d993192f8aa1  ./dev_flash/sys/external/libaacenc.sprx
146f66ae874d6f7ca4589370650ae6c8  ./dev_flash/sys/external/libac3dec.sprx
c6cdcdfd844504eba8db93be550a77c2  ./dev_flash/sys/external/libadec.sprx
a4f7aa9e17d805b09efd295fe68f7bf3  ./dev_flash/sys/external/libadec_internal.sprx
46535e8c47ce1e04031ec71b9b5cee6b  ./dev_flash/sys/external/libat3dec.sprx
052b37c6835b083edcd6dcc9415ad089  ./dev_flash/sys/external/libatrac3plus.sprx
1c079c993302df2c12cb5df6a6641405  ./dev_flash/sys/external/libatxdec.sprx
71963180fe40485e8a05aeb9420c6a8e  ./dev_flash/sys/external/libaudio.sprx
44aea3a5a959c33fa0c4e63ce26dcc5e  ./dev_flash/sys/external/libavcdec.sprx
f560ceef40332f3d2b1bf538617c344e  ./dev_flash/sys/external/libcamera.sprx
9c067e04cb60806ad4f3f04bc632755c  ./dev_flash/sys/external/libcelpdec.sprx
83026016919b54f7dcbaa2ff933fadc6  ./dev_flash/sys/external/libcelpenc.sprx
26667f87af398455887f0c41434a44c3  ./dev_flash/sys/external/libdaisy.sprx
495d8f0a6f4bda479eb005629e845943  ./dev_flash/sys/external/libdmux.sprx
9a315830790f93025343b048bddd7797  ./dev_flash/sys/external/libdmuxpamf.sprx
413f751d75add846df226051c5436074  ./dev_flash/sys/external/libfont.sprx
10199c886387b5cfa5365f4fa601a770  ./dev_flash/sys/external/libfontFT.sprx
099c63a696558ce9b7ef3ef143ea141a  ./dev_flash/sys/external/libfreetype.sprx
b7c3921a244a96d4d47b5bd13f5609aa  ./dev_flash/sys/external/libfs.sprx
f1bb006c3825fb57b9a7138a2a59fd6b  ./dev_flash/sys/external/libgcm_sys.sprx
8b691552fa4411f2b42044364c179f92  ./dev_flash/sys/external/libhttp.sprx
b82816dd2a7907bbd6bc8ce0ebf6401e  ./dev_flash/sys/external/libio.sprx
d1cea497d877be365033d23c25670e60  ./dev_flash/sys/external/libjpgdec.sprx
a808a2aeae488c0676b8b45a712c7609  ./dev_flash/sys/external/libkey2char.sprx
648c1da727be2197fdfe5b85b4169f26  ./dev_flash/sys/external/libl10n.sprx
451c970ab87c1f961a47f7af11c0d06b  ./dev_flash/sys/external/liblv2.sprx
e8d9dad2edc2e52ca2e8b26c02e157b2  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
77a149a138a69fb0dda332fea1c58f3e  ./dev_flash/sys/external/libm4aacdec.sprx
c84fac291b4e7760d21330ca7a753c3a  ./dev_flash/sys/external/libm4venc.sprx
2d64bac3044ae4f5c351a95e071b2bd8  ./dev_flash/sys/external/libmcadpt.sprx
b3488beae166f2b77056354dfb93aec7  ./dev_flash/sys/external/libmic.sprx
8f9c87dc4bf34b65b333e090524c4bf8  ./dev_flash/sys/external/libmp3dec.sprx
ac9b58422934672c08326f537a7910e2  ./dev_flash/sys/external/libnet.sprx
ead26d71cc6f890f405db3c5ac84eeb8  ./dev_flash/sys/external/libnetctl.sprx
5fa4cc9a08377143f06308e4d9d6083d  ./dev_flash/sys/external/libovis.sprx
ce5ae3b9752bc457d31ef25646b2f9f7  ./dev_flash/sys/external/libpamf.sprx
41bf9de831f2b2eb63467944adce3730  ./dev_flash/sys/external/libpngdec.sprx
6777213c823c1d2d963f91a21ae5a049  ./dev_flash/sys/external/libresc.sprx
f4502bf37b0f6aac85acb3f9addea3fe  ./dev_flash/sys/external/librtc.sprx
a27d4b3c47138366f3913cd747017384  ./dev_flash/sys/external/libsail.sprx
64b701e13d3c5eaad77cf67ec45912df  ./dev_flash/sys/external/libsheap.sprx
5b3e2c0d50b205fbdfa8e7fcd98e3c10  ./dev_flash/sys/external/libsmvd2.sprx
d52dd778fee6af5ae324a87b2c2bc93a  ./dev_flash/sys/external/libsmvd4.sprx
bac4dc33d3deab1a253792dfc28fb0d4  ./dev_flash/sys/external/libspurs.sprx
67177e45edb282ec4c2c96c463c82eda  ./dev_flash/sys/external/libsre.sprx
5bce006b89dcbf2606cce4312c60f77a  ./dev_flash/sys/external/libssl.sprx
864e669c20a3efc9c320c6d2048c6363  ./dev_flash/sys/external/libsync.sprx
f8e0a88c944a3f130dd4c497dc9c839f  ./dev_flash/sys/external/libsysmodule.sprx
69abb58b4173c7cb84640777a4d25c5a  ./dev_flash/sys/external/libsysutil.sprx
0726b555c579fb357de85140fb465b8f  ./dev_flash/sys/external/libsysutil_avc_ext.sprx
6c3de1520cf1951dfd8eef4b8bbc9dc1  ./dev_flash/sys/external/libsysutil_imejp.sprx
511f01991633732ba0709b1b83fa71f9  ./dev_flash/sys/external/libsysutil_np.sprx
accf0bcacee2ae428970a47866f09bfd  ./dev_flash/sys/external/libsysutil_remoteplay.sprx
4b900f6b91b14af9ad76b25cae94c7f0  ./dev_flash/sys/external/libusbd.sprx
216c4eb1b757b597e98f5e2b0ad657a2  ./dev_flash/sys/external/libvdec.sprx
40c46b9b0e2c1809d8dad66db162e0fe  ./dev_flash/sys/external/libvpost.sprx
09a1d45e719a44e861be1412a79e6323  ./dev_flash/sys/internal/libadec.sprx
3b90736483d69e05c1a02c28a364f732  ./dev_flash/sys/internal/libapostsrc.sprx
8a5049c7329d4757422c7c4bc66d318a  ./dev_flash/sys/internal/libat3enc.sprx
2d5f94b4d97cdb3255208261b07f43cc  ./dev_flash/sys/internal/libatxenc.sprx
81c00b562cae8b404d0cfa4f231efe84  ./dev_flash/sys/internal/libaudio_internal.sprx
88f9cb01779a97cdb442159698c4a5ff  ./dev_flash/sys/internal/libavchatjpgdec.sprx
b00a3a4fed53456efaafa031191fcba3  ./dev_flash/sys/internal/libcamera.sprx
aa30d25df6576071c49ceebbb44e54ed  ./dev_flash/sys/internal/libcelpenc.sprx
440e219d4a3d2fc8a810a5797d203a93  ./dev_flash/sys/internal/libdtsdec.sprx
4faab52cdfc2d864c3362c55f113e5ea  ./dev_flash/sys/internal/libexif.sprx
979944150774936f9a6a826dc2d22bb6  ./dev_flash/sys/internal/libfs.sprx
02929cdcb0563983fd754eb4fcb36686  ./dev_flash/sys/internal/libfs_utility.sprx
77b27fe7e1190bf58a1a9d7804ce6fc9  ./dev_flash/sys/internal/libft2d.sprx
6402ba174a51de0b8cb330b092ba4c0f  ./dev_flash/sys/internal/libgcm_osd.sprx
2dbc212ce2182df7131c3cfc512a07f9  ./dev_flash/sys/internal/libgifdec.sprx
ee5b61b8ebfed43d2e45daa5f7cc0698  ./dev_flash/sys/internal/libjpgenc.sprx
0b404b0563c36654987801006a438320  ./dev_flash/sys/internal/libm2aacdec.sprx
e761c13f47fcf985f81e8c837e0de82f  ./dev_flash/sys/internal/libm2bcdec.sprx
22a43586328944d8ffe325947916262f  ./dev_flash/sys/internal/libm4venc.sprx
d400c9d2aa86084b63d495c0c3bf8a9c  ./dev_flash/sys/internal/libmcadpt.sprx
7167d702b282fc7515914227dffbb3ba  ./dev_flash/sys/internal/libmic.sprx
562973a7602711afc305bb2ad301cc5e  ./dev_flash/sys/internal/libmp3enc.sprx
5e5c7f20be8232e5e050cfd30fd03648  ./dev_flash/sys/internal/libpamf.sprx
3edc1f8f4f6a6697c18c67c18b6ad6e1  ./dev_flash/sys/internal/libpngenc.sprx
f7b8843e222001d2f2994d75ff67776e  ./dev_flash/sys/internal/libsvc1d.sprx
e31c88ea962d40ee74619b1b9027bae6  ./dev_flash/sys/internal/libtiffdec.sprx
db4bae0759fc7b1933913cf0f06450cc  ./dev_flash/sys/internal/libtrhddec.sprx
9a9351e46af11b77948cb59fa4b823d2  ./dev_flash/sys/internal/libvdec.sprx
c738cd1cef355e04da8ff967e628a90b  ./dev_flash/sys/internal/libvpost.sprx
78d761b178adca0be312fb9b326e84f7  ./dev_flash/sys/internal/sys_audio.self
4dd569a05f45e3174286f50e064b9196  ./dev_flash/sys/internal/sys_init_osd.self
d90680929aa05d8da679557dcb4ba444  ./dev_flash/sys/internal/sys_tsma.self
8cc0ed6f4737ac20a65d446bad252ade  ./dev_flash/vsh/module/audioplayer_plugin.sprx
0dd25c9d91cc99e71e94c9ebacc1b4b8  ./dev_flash/vsh/module/auth_plugin.sprx
ae876a99992e313cdb41b4a2ee30490c  ./dev_flash/vsh/module/avc_plugin.sprx
fd2926b13fe5cfd712cdfc8b91fb7270  ./dev_flash/vsh/module/avc_util.sprx
7fbce27bf7c786e810c37dd69953f17f  ./dev_flash/vsh/module/bdp_disccheck_plugin.sprx
67976559d6473c294cc9b1025fd7f9f3  ./dev_flash/vsh/module/bdp_plugin.sprx
026d5ab82e629ab8fdb6e1164822ee3c  ./dev_flash/vsh/module/category_setting_plugin.sprx
88100982a73b1bdc89867d4261638bd5  ./dev_flash/vsh/module/cdda_plugin.sprx
cec64d22aa3c6de384d4715a3516bb34  ./dev_flash/vsh/module/custom_render_plugin.sprx
f85d56eb2fab4ace613712453789e955  ./dev_flash/vsh/module/data_copy_plugin.sprx
d5768f3d8c1b18223c598ee68ddedcaf  ./dev_flash/vsh/module/deviceconf_plugin.sprx
9e782890ef5445d2c50cf85fec815bab  ./dev_flash/vsh/module/download_plugin.sprx
a1a9f767a15628d16f4f8d90e6fef2f2  ./dev_flash/vsh/module/edy_plugin.sprx
33e4a28f0804ee91d07b814a612071ba  ./dev_flash/vsh/module/eula_cddb_plugin.sprx
04d6438c235598aa8c37926f5356d7ee  ./dev_flash/vsh/module/explore_plugin.sprx
8ce03255d963cadabff085c4aa8fb2bf  ./dev_flash/vsh/module/explore_plugin_game.sprx
09e345c5aa67767a7c883a40d1cebc93  ./dev_flash/vsh/module/explore_plugin_np.sprx
b98eaa715a4e7843992d9e6560ed481c  ./dev_flash/vsh/module/friendim_plugin.sprx
56355869c2257c44a01fe5255a923929  ./dev_flash/vsh/module/game_plugin.sprx
c4b1f949cbd27749860935fa0e5ff6ba  ./dev_flash/vsh/module/gamedata_plugin.sprx
c65d58464f41ee0e8a97728f56587626  ./dev_flash/vsh/module/ime.sprx
09ecc196157e9fe5a9a52d6844156d0b  ./dev_flash/vsh/module/impose_plugin.sprx
71492464963bc3cbaead4ee79e9a1a3e  ./dev_flash/vsh/module/libps2hdd.sprx
b9c7d6d9ae1026b15e8c0af9d2dcbe44  ./dev_flash/vsh/module/mcore.self
cd468d20bf09d6cdbf968c091cf6505e  ./dev_flash/vsh/module/mgvideo.self
3ee71bbd8efdc416ba93beb9111acdb9  ./dev_flash/vsh/module/micon_lock_plugin.sprx
95d5d269d1d45e987f5a0dc717fae627  ./dev_flash/vsh/module/mms.sprx
55d0c83df97c7752b84161eb78748fac  ./dev_flash/vsh/module/mms_db.sprx
e9bbdec65adce880e8a43ba983d66a1c  ./dev_flash/vsh/module/mouse_plugin.sprx
e52f6610f450b53888a917fc157cee20  ./dev_flash/vsh/module/msgdialog_plugin.sprx
997cf6c4ec2e3e21ef89ca7144dbe948  ./dev_flash/vsh/module/msmw1.sprx
82478512e4d09c55ef9387d4e4d773b7  ./dev_flash/vsh/module/msmw2.sprx
0298a4d7996be13991fe122cc1b211eb  ./dev_flash/vsh/module/nas_plugin.sprx
796ee695019951cb750bda9bc983ead8  ./dev_flash/vsh/module/netconf_plugin.sprx
d196b720890faf5e2e9a50ea765d5d23  ./dev_flash/vsh/module/netctl_main.sprx
0c685a5d2f2708a63bea456a880c9da1  ./dev_flash/vsh/module/np_matching_plugin.sprx
1a12af355ff6f90f84e5f2330d02eae6  ./dev_flash/vsh/module/npflashplayer.sprx
14d8e4e7133cdfaf190c35176ed6c3ad  ./dev_flash/vsh/module/npsignin_plugin.sprx
f7cecdd154a8615f104697dfb5dd533f  ./dev_flash/vsh/module/onicore_child.self
44896f13164b12e5487a6dfef13d5b65  ./dev_flash/vsh/module/osk_plugin.sprx
ec105216d91e73844d751a631963e28b  ./dev_flash/vsh/module/oskpanel_plugin.sprx
d823f4de5fe616be946a04828aec383c  ./dev_flash/vsh/module/paf.sprx
d1104728ae583a7f65efb09078db1ca9  ./dev_flash/vsh/module/photoviewer_plugin.sprx
3b184f743834e71f9f5b55db9377a500  ./dev_flash/vsh/module/premo_game_plugin.sprx
c335e0ae505b04d20d28cc3a54c5b1d1  ./dev_flash/vsh/module/premo_plugin.sprx
ea5297a3fa79cdc7c9ab3632c72beec6  ./dev_flash/vsh/module/ps3_savedata_plugin.sprx
2723b377cea75a20faee86b22486d1bd  ./dev_flash/vsh/module/sacd.sprx
6f6236051391cd2262439dd3b904f816  ./dev_flash/vsh/module/sacd_plugin.sprx
d22383674fed1d89858d5fa21ee81c49  ./dev_flash/vsh/module/sdk.sprx
5fb59d8d903a5f5d59e9d117d3ed29c9  ./dev_flash/vsh/module/sdk_full.sprx
a70d812346b33f58209a50a8356f859e  ./dev_flash/vsh/module/silk.sprx
12fb3eee99c715a88d38b78e993370c4  ./dev_flash/vsh/module/software_update_plugin.sprx
b526d7174be47144785c7b97b86521a7  ./dev_flash/vsh/module/soundvisualizer_plugin.sprx
c40fac900f9a339d30d37b372f8df740  ./dev_flash/vsh/module/strviewer_plugin.sprx
7ab34a610afac10c6915c12b251bd2e7  ./dev_flash/vsh/module/sysconf_plugin.sprx
53f663cf68b9488ba5c7d572d3b299fc  ./dev_flash/vsh/module/system_plugin.sprx
6e3d44888c09d577e30e30ffa42e4acf  ./dev_flash/vsh/module/thumthum_plugin.sprx
e215b34c64d95e35be8b1f9af8f9f7be  ./dev_flash/vsh/module/user_plugin.sprx
ed45d5469d6799285a9772bfdbb2b00e  ./dev_flash/vsh/module/videodownloader_plugin.sprx
5894083e710dc3edeb07158f1c077827  ./dev_flash/vsh/module/videoplayer_plugin.sprx
5003e6cccfd925a697eb9d8671427083  ./dev_flash/vsh/module/vmc_savedata_plugin.sprx
d45c254804b294d6c968eebb8342a462  ./dev_flash/vsh/module/vmclib.sprx
ef373855846cf45467e8c2ee3d6eae2f  ./dev_flash/vsh/module/vsh.self
5b1412c9b0c54b0effe384808f23e5d2  ./dev_flash/vsh/module/vshcommon.sprx
7345e1f634e13e9188ee330f84c04d57  ./dev_flash/vsh/module/vshmain.sprx
6e19209b0a45c46a0fea343ed943d92b  ./dev_flash/vsh/module/vshnet.sprx
06c7894869623dee216d95037f742368  ./dev_flash/vsh/module/webbrowser_plugin.sprx
bbde447355ec802185179c1a6d0ab406  ./dev_flash/vsh/module/x3.sprx
763c0f209674494715d154a978f90c77  ./dev_flash/vsh/module/x3_mdimp1.sprx
8390eb742a1d1d4f01a6fb3e3eae33c7  ./dev_flash/vsh/module/x3_mdimp2.sprx
76603703736b73dd49e07fc179c43bee  ./dev_flash/vsh/module/x3_mdimp3.sprx
9295dc1cca99546fba5e446eb2241def  ./dev_flash/vsh/module/xcbplugin1.sprx
a355ef0c4acb26f94c1f4432c60e7657  ./dev_flash/vsh/module/xmb_plugin.sprx
7e8ae8430c22fc58d9ea7da8fbf5f949  ./dev_flash/vsh/module/xsetting.sprx
</pre>


==== 1.51 ====
{{Reverse engineering}}<noinclude>[[Category:Main]]</noinclude>
<pre>
ec11a1555b1abea02a8132ffdb8263cc  ./dev_flash/bdplayer/bdj.self
eb53b28491d1c5077fbcea5412d75025  ./dev_flash/bdplayer/bdp_BDMV.self
1c3bb55a19e5772102619beb691001b3  ./dev_flash/bdplayer/bdp_BDVD.self
2934a8d0d0886665666d4ea2db9f7af2  ./dev_flash/ps1emu/ps1_emu.self
26dc2ca8814e00204da9b55f06becce4  ./dev_flash/ps2emu/ps2_emu.self
d3a4dd2d39816d914f5649a3c8b6a82e  ./dev_flash/ps2emu/ps2_gxemu.self
638921c74ee18d366d9fb140b8da4f7e  ./dev_flash/sys/external/libaacenc.sprx
76ad3f7658817e28829b64134d661dd7  ./dev_flash/sys/external/libac3dec.sprx
201e79d8bc8d7cb1aaf815dff858a3a8  ./dev_flash/sys/external/libadec.sprx
c83287395444d7cd96614d031755da4c  ./dev_flash/sys/external/libadec_internal.sprx
f2758be4423f9646c185e21a6bc59cf7  ./dev_flash/sys/external/libat3dec.sprx
fd092dd91ee12d9124893bc1c01992ca  ./dev_flash/sys/external/libatrac3plus.sprx
437a814a1233cbcbe830df80b8f6119c  ./dev_flash/sys/external/libatxdec.sprx
5d0b83804d46083e9c33bbd2e2a94ca0  ./dev_flash/sys/external/libaudio.sprx
e0754e2e1e3da3f5d18042706ef54509  ./dev_flash/sys/external/libavcdec.sprx
4d83c72beabb2a482c63d83f117660f1  ./dev_flash/sys/external/libcamera.sprx
de71d20cab7ccdd3dc3be44599e0bc98  ./dev_flash/sys/external/libcelpdec.sprx
ec0e59663d97f281d6a53891f9abba7c  ./dev_flash/sys/external/libcelpenc.sprx
84581f1c6351842e149db402e7186358  ./dev_flash/sys/external/libdaisy.sprx
1171bdfd12e58a53b5da950b5f5ef108  ./dev_flash/sys/external/libdmux.sprx
4c03d8464351e4c0a402f8a7b1b4a6ff  ./dev_flash/sys/external/libdmuxpamf.sprx
272e4c5512b31e6faa1db627d9180a59  ./dev_flash/sys/external/libfont.sprx
780fbfac1c072f690491c20768e10d05  ./dev_flash/sys/external/libfontFT.sprx
8d0790470d017648b6157698b5c2031c  ./dev_flash/sys/external/libfreetype.sprx
d4a8dec04709fd1bee86da9e990e6fa9  ./dev_flash/sys/external/libfs.sprx
020ba57a44d3b2003d821bb32539c640  ./dev_flash/sys/external/libgcm_sys.sprx
802f5448cc61258ba248cd42a33bdb43  ./dev_flash/sys/external/libhttp.sprx
e8fe53de57be45b813e96f8448815cf7  ./dev_flash/sys/external/libio.sprx
847be1d9c87b994a2688b773a5b74ba4  ./dev_flash/sys/external/libjpgdec.sprx
e3f641a3d29ea4dc51d6a5c26707e579  ./dev_flash/sys/external/libkey2char.sprx
43cfae384f14ace296ca80d76d942305  ./dev_flash/sys/external/libl10n.sprx
3fa12075b951123ea37cc9d37588d317  ./dev_flash/sys/external/liblv2.sprx
63b1f474de3d58a0c88cb9d1a5ac96d9  ./dev_flash/sys/external/liblv2dbg_for_cex.sprx
6b4b71e5629753657d86f86f84705575  ./dev_flash/sys/external/libm4aacdec.sprx
78cc5d1a2cebc037add8650b1e9fdd7c  ./dev_flash/sys/external/libm4venc.sprx
82c904e91d785ae7572a70ffa937d0d8  ./dev_flash/sys/external/libmcadpt.sprx
c6006b6ca66f909dd1c57e776b025c7a  ./dev_flash/sys/external/libmic.sprx
901e5c499fe505ad1e061d50d71aa1bc  ./dev_flash/sys/external/libmp3dec.sprx
b68d23051d24f8761b3f9bfc3fe4407a  ./dev_flash/sys/external/libnet.sprx
ee0e026f9e3b5aa2292843e2bc40a88e  ./dev_flash/sys/external/libnetctl.sprx
5883e65306a6e21a1eb47ab5e79a5d91  ./dev_flash/sys/external/libovis.sprx
6fc699c398781d6067fddc816444c567  ./dev_flash/sys/external/libpamf.sprx
ae980adcc47e9ba3f6e2944d647cadef  ./dev_flash/sys/external/libpngdec.sprx
6ee3dafae3c4704c79cf7b0a2c20ad36  ./dev_flash/sys/external/libresc.sprx
b24fd84d618e252bc3aafeed58c162bd  ./dev_flash/sys/external/librtc.sprx
92c6b3fabcd05acb9f0ba04236ce44e9  ./dev_flash/sys/external/libsail.sprx
07167d9c1a2e0f741134a6bb2346bbd1  ./dev_flash/sys/external/libsheap.sprx
a38c7aef2dca2386949b154025dc4851  ./dev_flash/sys/external/libsmvd2.sprx
28f24fc03eb0db485f77911cb332fe4e  ./dev_flash/sys/external/libsmvd4.sprx
a22e62a4bfaee9d61b9361fe8079810c  ./dev_flash/sys/external/libspurs.sprx
9b36603c90b08eeb60db4f8d535b5122  ./dev_flash/sys/external/libsre.sprx
a18b6da6f5a2d7e9dc2d959297aa9287  ./dev_flash/sys/external/libssl.sprx
83bacf1b5

Revision as of 04:05, 19 August 2016

Files and storage on the PS3

Mountpoints

BDrom drive (discfs), (cfs)
  • dev_bdvd // (SYS_DEV_BDVD), (CELL_FS_IOS:BDVD_DRIVE / CELL_FS_UDF / CELL_FS_ISO9660.-PLAYSTATION3)
  • dev_bdvd1 // (SYS_DEV_BDVD1), (connect to SB1ATA)
  • dev_ps2disc
  • dev_ps2disc1
Dev flash
  • dev_flash
  • dev_flash2
  • dev_flash3
Harddisc (cfs)
  • dev_hdd0 (game data) // (SYS_DEV_HDD0)
  • dev_hdd1 (system cache: 2GB fixed size FAT32) // (SYS_DEV_HDD1)
  • dev_hdd2 (Connected to the Southbridge SB0ATA Port (used for BD Drive/ Sata->Pata Adapter)) // (SYS_DEV_HDD2)
  • dev_simple_hdd0
Multicardreader (fat), (cfs)
  • dev_cf // (SYS_DEV_CF), (CELL_FS_IOS:COMPACT_FLASH)
  • dev_ms // (SYS_DEV_MS), (CELL_FS_IOS:MEMORY_STICK)
  • dev_sd // (SYS_DEV_SD), (CELL_FS_IOS:SD_CARD)
USB-Mass-Storage device (fat)/(cfs)
  • dev_usb // (SYS_DEV_USB)
  • dev_usb000 // (CELL_FS_IOS:USB_MASS_STORAGE000)
  • dev_usb001 // (CELL_FS_IOS:USB_MASS_STORAGE001)
  • dev_usb002 // (CELL_FS_IOS:USB_MASS_STORAGE002)
  • dev_usb003 // (CELL_FS_IOS:USB_MASS_STORAGE003)
  • dev_usb004 // (CELL_FS_IOS:USB_MASS_STORAGE004)
  • dev_usb005 // (CELL_FS_IOS:USB_MASS_STORAGE005)
Hostdevices (hostfs)
  • app_home (home directory) // (SYS_APP_HOME) // PSEUDOFS
  • host_root (absolute directory) // (SYS_HOST_ROOT)
Flash (NAND/NOR)
  • CELL_FS_IOS:BUILTIN_FLSH1
  • NAND_FLASH_DEV_ID
unknown yet
archaic (CEB-1000/2000 series era)
  • CELL_FS_PSEUDO
  • CELL_FS_NETFS

from lv2diag.self

tons of CELL_FS_* references:

CELL_FS_UFS
CELL_FS_FAT
CELL_FS_IOS:BUILTIN_FLASH
CELL_FS_IOS:BUILTIN_FLSH1
CELL_FS_IOS:BUILTIN_FLSH2
CELL_FS_IOS:BUILTIN_FLSH3
CELL_FS_IOS:BUILTIN_FLSH4
CELL_FS_IOS:COMPACT_FLASH
CELL_FS_IOS:MEMORY_STICK
CELL_FS_IOS:PATA0_BDVD_DRIVE
CELL_FS_IOS:PATA0_HDD_DRIVE
CELL_FS_IOS:PATA1_BDVD_DRIVE
CELL_FS_IOS:PATA1_HDD_DRIVE
CELL_FS_IOS:SD_CARD
CELL_FS_IOS:USB_MASS_STORAGE
CELL_FS_IOS:USB_MASS_STORAGE000
CELL_FS_IOS:USB_MASS_STORAGE001
CELL_FS_IOS:USB_MASS_STORAGE002
CELL_FS_IOS:USB_MASS_STORAGE003
CELL_FS_IOS:USB_MASS_STORAGE004
CELL_FS_IOS:USB_MASS_STORAGE005
CELL_FS_ISO9660
CELL_FS_SIMPLEFS
CELL_FS_UDF

Link

Tutorial : [Mount and Unmount a Filesystem]

user mode mount

int sys_fs_mount(char const* Device_Name, char const* Device_File_System, char const* Device_Path, int, int, int, char const**) 

Device Names can be:

CELL_FS_IOS:                   
CELL_FS_IOS:ATA_HDD            
CELL_FS_IOS:BDVD_DRIVE         
CELL_FS_IOS:BUILTIN_FLASH      
CELL_FS_IOS:BUILTIN_FLSH1      
CELL_FS_IOS:BUILTIN_FLSH2      
CELL_FS_IOS:BUILTIN_FLSH3      
CELL_FS_IOS:BUILTIN_FLSH4      
CELL_FS_IOS:COMPACT_FLASH      
CELL_FS_IOS:MEMORY_STICK       
CELL_FS_IOS:PATA0_BDVD_DRIVE   
CELL_FS_IOS:PATA0_HDD_DRIVE    
CELL_FS_IOS:PATA1_BDVD_DRIVE   
CELL_FS_IOS:PATA1_HDD_DRIVE    
CELL_FS_IOS:SD_CARD            
CELL_FS_IOS:USB_MASS_STORAGE
CELL_FS_IOS:USB_MASS_STORAGE000
CELL_FS_IOS:USB_MASS_STORAGE001
CELL_FS_IOS:USB_MASS_STORAGE002
CELL_FS_IOS:USB_MASS_STORAGE003
CELL_FS_IOS:USB_MASS_STORAGE004
CELL_FS_IOS:USB_MASS_STORAGE005
CELL_FS_UTILITY:               
CELL_FS_UTILITY:HDD            
CELL_FS_UTILITY:HDD0           
CELL_FS_UTILITY:HDD1           
CELL_FS_UTILITY:HDD2           
CELL_FS_PATH:%s                  
CELL_FS_LOOP:                  
CELL_FS_PSEUDO:                
CELL_FS_HOSTFS:                
CELL_FS_ADMINFS:               
CELL_FS_DUMMY:                 
CELL_FS_DUMMY:/                

Device File System can be:

CELL_FS_ADMINFS                
CELL_FS_DUMMYFS                
CELL_FS_EFAT                   
CELL_FS_FAT                    
CELL_FS_HOSTFS                 
CELL_FS_ISO9660                
CELL_FS_PFAT                   
CELL_FS_PSEUDO                
CELL_FS_SIMPLE                 
CELL_FS_SIMPLEFS               
CELL_FS_UDF                    
CELL_FS_UFS                    
dummy
Example: mount("CELL_FS_PATH:/dev_hdd0/game/ABCD00000","dummy", "/dev_bdvd/PS3_GAME",0,0,0,0)

Folder reservation for External MASS Storage Devices

├───MUSIC
├───PICTURE
├───PS3
│     ├───EXPORT 
│     │        ├───BACKUP (created via PS3 backup feature; only  CEX /Template:Shop)
│     │        │        └───200911131808 (date backup was performed, format=YYYYMMDDHHMM)
│     │        │                       ├───archive.dat
│     │        │                       ├───archive_00.dat
│     │        │                       ├───archive_[XX].dat
│     │        │                       ├───archive2.dat
│     │        │                       ├───archive2_00.dat
│     │        │                       └───archive2_[XX].dat
│     │        └───PSV (PS1/PS2 Saves)
│     ├───OTHEROS (Used to Install OtherOS; not on  ARC / DECR / SD )
│     ├───SAVEDATA (PS3 Saves; not on  ARC ) 
│     ├───THEME (XMB Theme Files)
│     └───UPDATE (PS3UPDAT.PUP firmware updates  CEX /Template:Shop/ AV TEST / DECR / SD / DEX )
│              └───SEARCH (only  DECR / SD  =>2.50 or later)
└───VIDEO

PS3 Disc Game Structure

PS3 Disc Game Structure
Disc Path XMB
icon
SFB/SFO/SFX Mandatory Parameters Since Enabled by
APP_VER ATTRIBUTE BOOTABLE CATEGORY TITLE TITLE_ID
dev_bdvd/ PS3_DISC.SFB Yes 1.00 Enables others with HYBRID_FLAG
PS3_GAME/ PARAM.SFO PS3 Blu-ray Disc Opt Opt Opt Game DG Yes Yes 1.00 HYBRID_FLAG (g) in PS3_DISC.FSB
USRDIR/ EBOOT.BIN 1.00 BOOTABLE (1) in parent PARAM.SFO
INSDIR/ PARAM.SFO No? Yes No No Game AR No No ? HYBRID_FLAG (g) in PS3_DISC.FSB ?
DATA000.PKG (up to 999) ?
PKGDIR/ PARAM.SFO PS3 Blu-ray Disc (installable contents) No Yes No Game DP Yes Yes 1.00 ? ATTRIBUTE (131072) in parent PARAM.SFO
PKG01/
(up to 99)
PARAM.SFO Preinstall Package No No No Game IP Yes Yes 1.00 ? ATTRIBUTE (1) in parent PARAM.SFO
INSTALL.PKG 1.00 ?
LICDIR/ LIC.DAT 1.00
TROPDIR/ <NPCOMMID>/ TROPHY.TRP 2.40
PS3_GM01/
(up to 99?)
PARAM.SFO PS3 Blu-ray Disc Opt Opt Opt Game DG Yes Yes 4.00+ ? HYBRID_FLAG (g) in PS3_DISC.FSB
USRDIR/ EBOOT.BIN 4.00+ ? BOOTABLE (1) in parent PARAM.SFO
LICDIR/ LIC.DAT 4.00+ ? dev_bdvd/PS3_GAME/LICDIR/LIC.DAT
PS3_CONTENT/ THEMEDIR/ PARAM.SFO PS3 Blu-ray Disc (installable contents) No Yes No Game TR Yes No ? 2.00+ HYBRID_FLAG (T) in PS3_DISC.FSB
D001/ DATA001.P3T
(up to 999)
Preinstall Package 2.00+ ATTRIBUTE (1) in parent PARAM.SFO
VIDEODIR/ PARAM.SFO PS3 Blu-ray Disc (video contents) No Yes No Video VR Yes No ? ? HYBRID_FLAG (V) in PS3_DISC.FSB
D001/
(up to 999)
PARAM.SFO ? No No No Video VI Yes No ? ATTRIBUTE (1) in parent PARAM.SFO
DATA000.MP4 ?
PS3_EXTRA/ PARAM.SFO PS3 Blu-ray Disc No Yes No Game XR Yes Yes 3.41- HYBRID_FLAG (g) in PS3_DISC.FSB ?
D001/
(up to 999)
PARAM.SFX Package Content No No No Game IP Yes No 3.41- ATTRIBUTE (1) in parent PARAM.SFO
DATA000.PKG 3.41-
D002/
(up to 999)
PARAM.SFX Theme Content No No No Game TI Yes No 3.41- ATTRIBUTE (1) in parent PARAM.SFO
DATA000.P3T 3.41-
D003/
(up to 999)
PARAM.SFX Video Content No No No Game VI Yes No 3.41- ATTRIBUTE (1) in parent PARAM.SFO
DATA000.MP4 3.41-
PS3_VPRM/ PARAM.SFO PS3 Blu-ray Disc (video contents) No No No Video DM No No ? HYBRID_FLAG (v) in PS3_DISC.FSB
PS3_UPDATE/ PS3UPDAT.PUP 1.00 ? HYBRID_FLAG (u) in PS3_DISC.FSB

Installing packages

Example of the folderstructure of a package with APPID 'WIKIFTW' :

dev_hdd0
   └── game
         └── WIKIFTW
                ├── icon0.png
                ├── param.sfo
                └── USRDIR
                      └── eboot.bin

Subfolders inside the USRDIR for other datafiles are recommended if your application depends on those external files.





dev_flash Device Archives [3.55 Retail/CEX]

dev_flash & dev_flash3 archive contents
├── dev_flash
│   ├── bdplayer
│   │   ├── AacsModule.spu.isoself
│   │   ├── bdj.self
│   │   ├── bdjstack
│   │   │   ├── bdjstack.jar
│   │   │   ├── classes.zip
│   │   │   ├── font.properties
│   │   │   ├── java.security
│   │   │   ├── pbpcell.properties
│   │   │   ├── pbpuiformhp.jar
│   │   │   └── SCE-PS3-RD-R-LATIN.TTF
│   │   ├── bdp_BDMV.self
│   │   ├── bdp_BDVD.self
│   │   ├── CprmModule.spu.isoself
│   │   ├── CssModule.spu.isoself
│   │   ├── gpu.sprx
│   │   └── SYS
│   │       ├── CapFont_MARU.cbf.LZRC
│   │       └── CapSound.pcm.LZRC
│   ├── data
│   │   ├── cert
│   │   │   ├── CA01.cer
│   │   │   ├── CA02.cer
│   │   │   ├── CA03.cer
│   │   │   ├── CA04.cer
│   │   │   ├── CA05.cer
│   │   │   ├── CA06.cer
│   │   │   ├── CA07.cer
│   │   │   ├── CA08.cer
│   │   │   ├── CA09.cer
│   │   │   ├── CA10.cer
│   │   │   ├── CA11.cer
│   │   │   ├── CA12.cer
│   │   │   ├── CA13.cer
│   │   │   ├── CA14.cer
│   │   │   ├── CA15.cer
│   │   │   ├── CA16.cer
│   │   │   ├── CA17.cer
│   │   │   ├── CA18.cer
│   │   │   ├── CA19.cer
│   │   │   ├── CA20.cer
│   │   │   ├── CA21.cer
│   │   │   ├── CA22.cer
│   │   │   ├── CA23.cer
│   │   │   ├── CA24.cer
│   │   │   ├── CA25.cer
│   │   │   ├── CA26.cer
│   │   │   ├── CA27.cer
│   │   │   ├── CA28.cer
│   │   │   ├── CA29.cer
│   │   │   ├── CA30.cer
│   │   │   ├── CA31.cer
│   │   │   ├── CA32.cer
│   │   │   ├── CA33.cer
│   │   │   ├── CA34.cer
│   │   │   ├── CA35.cer
│   │   │   └── CA36.cer
│   │   ├── dic
│   │   │   ├── aadList.dat
│   │   │   ├── apotp.dic
│   │   │   ├── atokp.dic
│   │   │   ├── entertainment_haiyu_nihon.aad
│   │   │   ├── entertainment_owarai_TV_talent.aad
│   │   │   ├── face_facemark_i.aad
│   │   │   ├── music_2000_2006spring_jpop_art.aad
│   │   │   ├── Zi8DatDA.z8d
│   │   │   ├── Zi8DatDE.z8d
│   │   │   ├── Zi8DatENAM.z8d
│   │   │   ├── Zi8DatENUK.z8d
│   │   │   ├── Zi8DatESEU.z8d
│   │   │   ├── Zi8DatESSA.z8d
│   │   │   ├── Zi8DatFI.z8d
│   │   │   ├── Zi8DatFRCA.z8d
│   │   │   ├── Zi8DatFREU.z8d
│   │   │   ├── Zi8DatIT.z8d
│   │   │   ├── Zi8DatNL.z8d
│   │   │   ├── Zi8DatNO.z8d
│   │   │   ├── Zi8DatPL.z8d
│   │   │   ├── Zi8DatPTBZ.z8d
│   │   │   ├── Zi8DatPTEU.z8d
│   │   │   ├── Zi8DatRU.z8d
│   │   │   ├── Zi8DatSV.z8d
│   │   │   ├── Zi8DatZH_HK.z8d
│   │   │   ├── Zi8DatZH_TW.z8d
│   │   │   ├── Zi8DatZH.z8d
│   │   │   └── Zi8URLOEM.dat
│   │   └── font
│   │       ├── SCE-PS3-CP-R-KANA.TTF
│   │       ├── SCE-PS3-DH-R-CGB.TTF
│   │       ├── SCE-PS3-MT-BI-LATIN.TTF
│   │       ├── SCE-PS3-MT-B-LATIN.TTF
│   │       ├── SCE-PS3-MT-I-LATIN.TTF
│   │       ├── SCE-PS3-MT-R-LATIN.TTF
│   │       ├── SCE-PS3-NR-B-JPN.TTF
│   │       ├── SCE-PS3-NR-L-JPN.TTF
│   │       ├── SCE-PS3-NR-R-EXT.TTF
│   │       ├── SCE-PS3-NR-R-JPN.TTF
│   │       ├── SCE-PS3-RD-BI-LATIN.TTF
│   │       ├── SCE-PS3-RD-B-LATIN2.TTF
│   │       ├── SCE-PS3-RD-B-LATIN.TTF
│   │       ├── SCE-PS3-RD-I-LATIN.TTF
│   │       ├── SCE-PS3-RD-LI-LATIN.TTF
│   │       ├── SCE-PS3-RD-L-LATIN2.TTF
│   │       ├── SCE-PS3-RD-L-LATIN.TTF
│   │       ├── SCE-PS3-RD-R-LATIN2.TTF
│   │       ├── SCE-PS3-RD-R-LATIN.TTF
│   │       ├── SCE-PS3-SR-R-EXT.TTF
│   │       ├── SCE-PS3-SR-R-JPN.TTF
│   │       ├── SCE-PS3-SR-R-LATIN2.TTF
│   │       ├── SCE-PS3-SR-R-LATIN.TTF
│   │       ├── SCE-PS3-VR-R-LATIN2.TTF
│   │       ├── SCE-PS3-VR-R-LATIN.TTF
│   │       ├── SCE-PS3-YG-B-KOR.TTF
│   │       ├── SCE-PS3-YG-L-KOR.TTF
│   │       └── SCE-PS3-YG-R-KOR.TTF
│   ├── ps1emu
│   │   ├── ps1_emu.self
│   │   ├── ps1_netemu.self
│   │   ├── ps1_newemu.self
│   │   └── ps1_rom.bin
│   ├── ps2emu
│   │   ├── ps2_emu.self
│   │   ├── ps2_gxemu.self
│   │   └── ps2_softemu.self
│   ├── pspemu
│   │   ├── flash0
│   │   │   ├── font
│   │   │   │   ├── gb3s1518.bwfon
│   │   │   │   ├── imagefont.bin
│   │   │   │   ├── jpn0.pgf
│   │   │   │   ├── kr0.pgf
│   │   │   │   ├── ltn0.pgf
│   │   │   │   ├── ltn10.pgf
│   │   │   │   ├── ltn11.pgf
│   │   │   │   ├── ltn12.pgf
│   │   │   │   ├── ltn13.pgf
│   │   │   │   ├── ltn14.pgf
│   │   │   │   ├── ltn15.pgf
│   │   │   │   ├── ltn1.pgf
│   │   │   │   ├── ltn2.pgf
│   │   │   │   ├── ltn3.pgf
│   │   │   │   ├── ltn4.pgf
│   │   │   │   ├── ltn5.pgf
│   │   │   │   ├── ltn6.pgf
│   │   │   │   ├── ltn7.pgf
│   │   │   │   ├── ltn8.pgf
│   │   │   │   └── ltn9.pgf
│   │   │   ├── logo
│   │   │   │   └── minis_logo.png
│   │   │   └── usermodule
│   │   │       ├── libfont.prx
│   │   │       ├── libheap.prx
│   │   │       └── libpsmfplayer.prx
│   │   ├── psp_emulator.self
│   │   ├── psp_translator.self
│   │   └── release
│   │       ├── adhoc_vshlib.sprx
│   │       ├── audio.sprx
│   │       ├── avcodec.sprx
│   │       ├── ctrl.sprx
│   │       ├── emulator_api.sprx
│   │       ├── emulator_drm.sprx
│   │       ├── g729.sprx
│   │       ├── ifhandle.sprx
│   │       ├── impose.sprx
│   │       ├── iofilemgr_iso.sprx
│   │       ├── iofilemgr.sprx
│   │       ├── isofs.sprx
│   │       ├── libaac.sprx
│   │       ├── libatrac3plus.sprx
│   │       ├── libmp3.sprx
│   │       ├── libmp4.sprx
│   │       ├── mediaman.sprx
│   │       ├── mpeg.sprx
│   │       ├── np_auth.sprx
│   │       ├── np_service.sprx
│   │       ├── np.sprx
│   │       ├── PEmuCoreLib.sprx
│   │       ├── psmf.sprx
│   │       ├── pspnet_adhoc_auth.sprx
│   │       ├── pspnet_adhocctl.sprx
│   │       ├── pspnet_adhoc_discover.sprx
│   │       ├── pspnet_adhoc_matching.sprx
│   │       ├── pspnet_adhoc.sprx
│   │       ├── pspnet_apctl.sprx
│   │       ├── pspnet_ap_dialog_dummy.sprx
│   │       ├── pspnet_inet.sprx
│   │       ├── pspnet_resolver.sprx
│   │       ├── pspnet.sprx
│   │       ├── rtc.sprx
│   │       ├── sascore.sprx
│   │       ├── sysmem.sprx
│   │       ├── threadman.sprx
│   │       ├── umd9660.sprx
│   │       ├── umdcache.sprx
│   │       ├── umdman.sprx
│   │       ├── usersystemlib.sprx
│   │       ├── vaudio.sprx
│   │       └── wlan.sprx
│   ├── sys
│   │   ├── external
│   │   │   ├── flashATRAC.pic
│   │   │   ├── flashMP3.pic
│   │   │   ├── libaacenc.sprx
│   │   │   ├── libaacenc_spurs.sprx
│   │   │   ├── libac3dec2.sprx
│   │   │   ├── libac3dec.sprx
│   │   │   ├── libad_async.sprx
│   │   │   ├── libad_billboard_util.sprx
│   │   │   ├── libad_core.sprx
│   │   │   ├── libadec2.sprx
│   │   │   ├── libadec_internal.sprx
│   │   │   ├── libadec.sprx
│   │   │   ├── libapostsrc_mini.sprx
│   │   │   ├── libasfparser2_astd.sprx
│   │   │   ├── libat3dec.sprx
│   │   │   ├── libatrac3plus.sprx
│   │   │   ├── libatxdec2.sprx
│   │   │   ├── libatxdec.sprx
│   │   │   ├── libaudio.sprx
│   │   │   ├── libavcdec.sprx
│   │   │   ├── libavcenc_small.sprx
│   │   │   ├── libavcenc.sprx
│   │   │   ├── libavchatjpgdec.sprx
│   │   │   ├── libcamera.sprx
│   │   │   ├── libcelp8dec.sprx
│   │   │   ├── libcelp8enc.sprx
│   │   │   ├── libcelpdec.sprx
│   │   │   ├── libcelpenc.sprx
│   │   │   ├── libddpdec.sprx
│   │   │   ├── libdivxdec.sprx
│   │   │   ├── libdmuxpamf.sprx
│   │   │   ├── libdmux.sprx
│   │   │   ├── libfiber.sprx
│   │   │   ├── libfontFT.sprx
│   │   │   ├── libfont.sprx
│   │   │   ├── libfreetype.sprx
│   │   │   ├── libfreetypeTT.sprx
│   │   │   ├── libfs_155.sprx
│   │   │   ├── libfs.sprx
│   │   │   ├── libgcm_sys.sprx
│   │   │   ├── libgem.sprx
│   │   │   ├── libgifdec.sprx
│   │   │   ├── libhttp.sprx
│   │   │   ├── libio.sprx
│   │   │   ├── libjpgdec.sprx
│   │   │   ├── libjpgenc.sprx
│   │   │   ├── libkey2char.sprx
│   │   │   ├── libl10n.sprx
│   │   │   ├── liblv2coredump.sprx
│   │   │   ├── liblv2dbg_for_cex.sprx
│   │   │   ├── liblv2.sprx
│   │   │   ├── libm2bcdec.sprx
│   │   │   ├── libm4aacdec2ch.sprx
│   │   │   ├── libm4aacdec.sprx
│   │   │   ├── libm4hdenc.sprx
│   │   │   ├── libm4venc.sprx
│   │   │   ├── libmedi.sprx
│   │   │   ├── libmic.sprx
│   │   │   ├── libmp3dec.sprx
│   │   │   ├── libmp4.sprx
│   │   │   ├── libmpl1dec.sprx
│   │   │   ├── libnetctl.sprx
│   │   │   ├── libnet.sprx
│   │   │   ├── libpamf.sprx
│   │   │   ├── libpngdec.sprx
│   │   │   ├── libpngenc.sprx
│   │   │   ├── libresc.sprx
│   │   │   ├── librtc.sprx
│   │   │   ├── librudp.sprx
│   │   │   ├── libsail_avi.sprx
│   │   │   ├── libsail_rec.sprx
│   │   │   ├── libsail.sprx
│   │   │   ├── libsjvtd.sprx
│   │   │   ├── libsmvd2.sprx
│   │   │   ├── libsmvd4.sprx
│   │   │   ├── libspurs_jq.sprx
│   │   │   ├── libsre.sprx
│   │   │   ├── libssl.sprx
│   │   │   ├── libsync2.sprx
│   │   │   ├── libsysmodule.sprx
│   │   │   ├── libsysutil_ap.sprx
│   │   │   ├── libsysutil_authdialog.sprx
│   │   │   ├── libsysutil_avc2.sprx
│   │   │   ├── libsysutil_avc_ext.sprx
│   │   │   ├── libsysutil_avconf_ext.sprx
│   │   │   ├── libsysutil_bgdl.sprx
│   │   │   ├── libsysutil_dtcp_ip.sprx
│   │   │   ├── libsysutil_game_exec.sprx
│   │   │   ├── libsysutil_game.sprx
│   │   │   ├── libsysutil_imejp.sprx
│   │   │   ├── libsysutil_misc.sprx
│   │   │   ├── libsysutil_music_decode.sprx
│   │   │   ├── libsysutil_music_export.sprx
│   │   │   ├── libsysutil_music.sprx
│   │   │   ├── libsysutil_np2.sprx
│   │   │   ├── libsysutil_np_clans.sprx
│   │   │   ├── libsysutil_np_commerce2.sprx
│   │   │   ├── libsysutil_np_eula.sprx
│   │   │   ├── libsysutil_np_installer.sprx
│   │   │   ├── libsysutil_np_sns.sprx
│   │   │   ├── libsysutil_np.sprx
│   │   │   ├── libsysutil_np_trophy.sprx
│   │   │   ├── libsysutil_np_tus.sprx
│   │   │   ├── libsysutil_np_util.sprx
│   │   │   ├── libsysutil_oskdialog_ext.sprx
│   │   │   ├── libsysutil_pesm.sprx
│   │   │   ├── libsysutil_photo_decode.sprx
│   │   │   ├── libsysutil_photo_export.sprx
│   │   │   ├── libsysutil_photo_import.sprx
│   │   │   ├── libsysutil_photo_network_sharing.sprx
│   │   │   ├── libsysutil_print.sprx
│   │   │   ├── libsysutil_rec.sprx
│   │   │   ├── libsysutil_remoteplay.sprx
│   │   │   ├── libsysutil_rtcalarm.sprx
│   │   │   ├── libsysutil_savedata_psp.sprx
│   │   │   ├── libsysutil_savedata.sprx
│   │   │   ├── libsysutil_screenshot.sprx
│   │   │   ├── libsysutil_search.sprx
│   │   │   ├── libsysutil.sprx
│   │   │   ├── libsysutil_storagedata.sprx
│   │   │   ├── libsysutil_subdisplay.sprx
│   │   │   ├── libsysutil_syschat.sprx
│   │   │   ├── libsysutil_sysconf_ext.sprx
│   │   │   ├── libsysutil_userinfo.sprx
│   │   │   ├── libsysutil_video_export.sprx
│   │   │   ├── libsysutil_video_player.sprx
│   │   │   ├── libsysutil_video_upload.sprx
│   │   │   ├── libusbd.sprx
│   │   │   ├── libusbpspcm.sprx
│   │   │   ├── libvdec.sprx
│   │   │   ├── libvoice.sprx
│   │   │   ├── libvpost2.sprx
│   │   │   ├── libvpost.sprx
│   │   │   └── libwmadec.sprx
│   │   └── internal
│   │       ├── eurus_fw.bin
│   │       ├── libapostsrc_eqalc.sprx
│   │       ├── libapostsrc.sprx
│   │       ├── libasfparser2.sprx
│   │       ├── libasfparser.sprx
│   │       ├── libat3enc.sprx
│   │       ├── libat3enc_spurs.sprx
│   │       ├── libatxdecmod.sprx
│   │       ├── libatxenc.sprx
│   │       ├── libddlenc2.sprx
│   │       ├── libddpdec.sprx
│   │       ├── libdivx311dec.sprx
│   │       ├── libdsee.sprx
│   │       ├── libdtsdec.sprx
│   │       ├── libdtsenc2.sprx
│   │       ├── libdtshdcoredec.sprx
│   │       ├── libdtshddec.sprx
│   │       ├── libdtslbrdec.sprx
│   │       ├── libexif.sprx
│   │       ├── libfs_utility2.sprx
│   │       ├── libfs_utility_full.sprx
│   │       ├── libfs_utility_init.sprx
│   │       ├── libfs_utility.sprx
│   │       ├── libft2d.sprx
│   │       ├── libm2aacdec.sprx
│   │       ├── libm4aacdec2chmod2.sprx
│   │       ├── libm4aacdec2chmod.sprx
│   │       ├── libmcadpt.sprx
│   │       ├── libmp3enc.sprx
│   │       ├── libmp3sdec.sprx
│   │       ├── libmvcdec.sprx
│   │       ├── libsvc1d.sprx
│   │       ├── libsysutil_game_ps1emu.sprx
│   │       ├── libsysutil_sysconf_ps1emu.sprx
│   │       ├── libtiffdec.sprx
│   │       ├── libtrhddec.sprx
│   │       ├── libvoice_internal.sprx
│   │       ├── libvpost.sprx
│   │       ├── libwmadec.sprx
│   │       ├── sys_audio.self
│   │       ├── sys_audio.sprx
│   │       ├── sys_init_osd.self
│   │       └── sysvoice_modules.sprx
│   └── vsh
│       ├── etc
│       │   ├── index.dat
│       │   ├── layout_factor_table_1080.txt
│       │   ├── layout_factor_table_272.txt
│       │   ├── layout_factor_table_480.txt
│       │   ├── layout_factor_table_720.txt
│       │   ├── layout_grid_table_1080.txt
│       │   ├── layout_grid_table_272.txt
│       │   ├── layout_grid_table_480.txt
│       │   ├── layout_grid_table_720.txt
│       │   ├── print
│       │   │   └── epson.pmd
│       │   └── version.txt
│       ├── module
│       │   ├── ap_plugin.sprx
│       │   ├── audioplayer_plugin_dummy.sprx
│       │   ├── audioplayer_plugin_mini.sprx
│       │   ├── audioplayer_plugin.sprx
│       │   ├── auth_plugin.sprx
│       │   ├── autodownload_plugin.sprx
│       │   ├── avc2_game_plugin.sprx
│       │   ├── avc2_game_video_plugin.sprx
│       │   ├── avc2_text_plugin.sprx
│       │   ├── avc_plugin.sprx
│       │   ├── avc_util.sprx
│       │   ├── basic_plugins.sprx
│       │   ├── bdp_disccheck_plugin.sprx
│       │   ├── bdp_plugin.sprx
│       │   ├── bdp_storage_plugin.sprx
│       │   ├── category_setting_plugin.sprx
│       │   ├── custom_render_plugin.sprx
│       │   ├── data_copy_plugin.sprx
│       │   ├── deviceconf_plugin.sprx
│       │   ├── divxdrm.sprx
│       │   ├── dlna_plugin.sprx
│       │   ├── download_plugin.sprx
│       │   ├── dtcpip_util.sprx
│       │   ├── edy_plugin.sprx
│       │   ├── esehttp.sprx
│       │   ├── eseibrd.sprx
│       │   ├── eseidle.sprx
│       │   ├── eselock.sprx
│       │   ├── eula_cddb_plugin.sprx
│       │   ├── eula_hcopy_plugin.sprx
│       │   ├── eula_net_plugin.sprx
│       │   ├── explore_category_friend.sprx
│       │   ├── explore_category_game.sprx
│       │   ├── explore_category_music.sprx
│       │   ├── explore_category_network.sprx
│       │   ├── explore_category_photo.sprx
│       │   ├── explore_category_psn.sprx
│       │   ├── explore_category_sysconf.sprx
│       │   ├── explore_category_tv.sprx
│       │   ├── explore_category_user.sprx
│       │   ├── explore_category_video.sprx
│       │   ├── explore_plugin_ft.sprx
│       │   ├── explore_plugin_game.sprx
│       │   ├── explore_plugin_np.sprx
│       │   ├── explore_plugin.sprx
│       │   ├── faust_widget.sprx
│       │   ├── filecopy_plugin.sprx
│       │   ├── friendim_plugin.sprx
│       │   ├── friendml_plugin.sprx
│       │   ├── friendtrophy_plugin.sprx
│       │   ├── gamedata_plugin.sprx
│       │   ├── game_ext_plugin.sprx
│       │   ├── game_indicator_plugin.sprx
│       │   ├── gamelib_plugin.sprx
│       │   ├── gameupdate_plugin.sprx
│       │   ├── hknw_plugin.sprx
│       │   ├── idle_plugin.sprx
│       │   ├── ime_atok.sprx
│       │   ├── ime.sprx
│       │   ├── ime_zi.sprx
│       │   ├── kensaku_plugin.sprx
│       │   ├── libps2hdd.sprx
│       │   ├── libvideoSubsystem.sprx
│       │   ├── mcore.self
│       │   ├── mcore_tk.self
│       │   ├── mgvideo.self
│       │   ├── micon_lock_plugin.sprx
│       │   ├── mintx_client.sprx
│       │   ├── mms_cls.sprx
│       │   ├── mms_db_full.sprx
│       │   ├── mms_ext_full.sprx
│       │   ├── mms_ext_mini.sprx
│       │   ├── mms_maintenance.sprx
│       │   ├── mms_minimdimp_avi.sprx
│       │   ├── mms_minimdimp_dir_gamehdd.sprx
│       │   ├── mms_minimdimp_dir_npachive.sprx
│       │   ├── mms_minimdimp_dir_ps3savedata.sprx
│       │   ├── mms_minimdimp_jpeg.sprx
│       │   ├── mms_minimdimp_media_bdvd.sprx
│       │   ├── mms_minimdimp_media_cdda.sprx
│       │   ├── mms_minimdimp_media_cdrom.sprx
│       │   ├── mms_minimdimp_media_gamedisc.sprx
│       │   ├── mms_minimdimp_media_hdd.sprx
│       │   ├── mms_minimdimp_media_sacd.sprx
│       │   ├── mms_minimdimp_media_usbmass.sprx
│       │   ├── mms_minimdimp_mp3.sprx
│       │   ├── mms_minimdimp_mp4aac.sprx
│       │   ├── mms_minimdimp_mp4video.sprx
│       │   ├── mms_minimdimp_mpeg.sprx
│       │   ├── mms_minimdimp_msv.sprx
│       │   ├── mms_minimdimp_music_default.sprx
│       │   ├── mms_minimdimp_photo_default.sprx
│       │   ├── mms_minimdimp_png.sprx
│       │   ├── mms_minimdimp_riff.sprx
│       │   ├── mms_minimdimp_video_default.sprx
│       │   ├── mms_schema.sprx
│       │   ├── mms.sprx
│       │   ├── msmw1_aaconly.sprx
│       │   ├── msmw1_atraconly.sprx
│       │   ├── msmw1.sprx
│       │   ├── msmw2.sprx
│       │   ├── musicbrowser_plugin.sprx
│       │   ├── nas_plugin.sprx
│       │   ├── netconf_plugin.sprx
│       │   ├── newstore_effect.sprx
│       │   ├── newstore_plugin.sprx
│       │   ├── np_eula_plugin.sprx
│       │   ├── np_matching_plugin.sprx
│       │   ├── np_multisignin_plugin.sprx
│       │   ├── npsignin_plugin.sprx
│       │   ├── np_sns_plugin.sprx
│       │   ├── np_trophy_ingame.sprx
│       │   ├── np_trophy_plugin.sprx
│       │   ├── np_trophy_util.sprx
│       │   ├── onicore_child.self
│       │   ├── oskfullkeypanel_plugin.sprx
│       │   ├── oskpanel_plugin.sprx
│       │   ├── osk_plugin.sprx
│       │   ├── paf_ext.sprx
│       │   ├── paf_psjs.sprx
│       │   ├── paf_web.sprx
│       │   ├── pesm_plugin.sprx
│       │   ├── photolist_plugin.sprx
│       │   ├── photo_network_sharing_plugin.sprx
│       │   ├── photoupload_plugin.sprx
│       │   ├── photoviewer_plugin.sprx
│       │   ├── playlist_plugin.sprx
│       │   ├── post_nr.sprx
│       │   ├── poweroff_plugin.sprx
│       │   ├── premo_game_plugin.sprx
│       │   ├── premo_plugin.sprx
│       │   ├── print_canon_library.sprx
│       │   ├── print_dlna_library.sprx
│       │   ├── print_epson_library.sprx
│       │   ├── print_plugin.sprx
│       │   ├── profile_plugin.sprx
│       │   ├── ps3_savedata_plugin_game_mini.sprx
│       │   ├── ps3_savedata_plugin_game.sprx
│       │   ├── ps3_savedata_plugin_psp.sprx
│       │   ├── ps3_savedata_plugin.sprx
│       │   ├── qglbase.sprx
│       │   ├── qgl_canyon_app.sprx
│       │   ├── qgl_gaia_app.sprx
│       │   ├── raf.sprx
│       │   ├── rec_plugin.sprx
│       │   ├── regcam_plugin.sprx
│       │   ├── sacd_plugin.sprx
│       │   ├── sacd.sprx
│       │   ├── SacModule.spu.isoself
│       │   ├── scenefolder_plugin.sprx
│       │   ├── screenshot_plugin.sprx
│       │   ├── silk_nas.sprx
│       │   ├── silk_npflashplayer9.sprx
│       │   ├── silk_npflashplayer.sprx
│       │   ├── silk.sprx
│       │   ├── simple_music2_decode_plugin.sprx
│       │   ├── software_update_plugin.sprx
│       │   ├── soundvisualizer_plugin.sprx
│       │   ├── strviewer_plugin.sprx
│       │   ├── swagner.self
│       │   ├── swreset.self
│       │   ├── sysconf_plugin.sprx
│       │   ├── thumthum_plugin.sprx
│       │   ├── upload_util.sprx
│       │   ├── user_info_plugin.sprx
│       │   ├── user_plugin.sprx
│       │   ├── videodownloader_plugin.sprx
│       │   ├── videoeditor_plugin.sprx
│       │   ├── videoplayer_plugin.sprx
│       │   ├── videoplayer_util.sprx
│       │   ├── vmclib.sprx
│       │   ├── vmc_savedata_plugin.sprx
│       │   ├── vshatdl.sprx
│       │   ├── vshmain_ext.sprx
│       │   ├── vshmain_util.sprx
│       │   ├── vsh.self
│       │   ├── wboard_plugin.sprx
│       │   ├── webbrowser_plugin.sprx
│       │   ├── webrender_plugin.sprx
│       │   ├── x3_amgsdk.sprx
│       │   ├── x3_gntoc.sprx
│       │   ├── x3_mdimp10.sprx
│       │   ├── x3_mdimp11.sprx
│       │   ├── x3_mdimp1.sprx
│       │   ├── x3_mdimp2.sprx
│       │   ├── x3_mdimp3.sprx
│       │   ├── x3_mdimp4.sprx
│       │   ├── x3_mdimp5.sprx
│       │   ├── x3_mdimp6.sprx
│       │   ├── x3_mdimp7.sprx
│       │   ├── x3_mdimp8.sprx
│       │   ├── x3_mdimp9.sprx
│       │   ├── xcbcontentop.sprx
│       │   ├── xcbplugin1.sprx
│       │   ├── xmb_ingame.sprx
│       │   ├── xmb_plugin.sprx
│       │   └── ycon_manual_plugin.sprx
│       └── resource
│           ├── AAA
│           ├── ap_plugin.rco
│           ├── audioplayer_plugin_dummy.rco
│           ├── audioplayer_plugin_mini.rco
│           ├── audioplayer_plugin.rco
│           ├── audioplayer_plugin_util.rco
│           ├── auth_plugin.rco
│           ├── autodownload_plugin.rco
│           ├── avc
│           │   └── image
│           │       ├── avc_background.jpg
│           │       ├── Broken_Photo.png
│           │       └── Photo_Default.png
│           ├── avc2_game_plugin.rco
│           ├── avc2_game_video_plugin.rco
│           ├── avc2_text_plugin.rco
│           ├── avc_game_plugin.rco
│           ├── avc_plugin.rco
│           ├── bdp_disccheck_plugin.rco
│           ├── bdp_plugin.rco
│           ├── bdp_storage_plugin.rco
│           ├── category_setting_plugin.rco
│           ├── checker_plugin.rco
│           ├── coldboot_multi.ac3
│           ├── coldboot.raf
│           ├── coldboot_stereo.ac3
│           ├── custom_render_plugin.rco
│           ├── data_copy_plugin.rco
│           ├── deviceconf_plugin.rco
│           ├── dlna_plugin.rco
│           ├── download_plugin.rco
│           ├── dtcpip_util.rco
│           ├── edy_plugin.rco
│           ├── eula_cddb_plugin.rco
│           ├── eula_hcopy_plugin.rco
│           ├── eula_net_plugin.rco
│           ├── explore
│           │   ├── icon
│           │   │   ├── cinfo-bg-photogallery.jpg
│           │   │   ├── cinfo-bgsd-photogallery.jpg
│           │   │   ├── cinfo-bgsd-signup.jpg
│           │   │   ├── cinfo-bgsd-storegame.jpg
│           │   │   ├── cinfo-bgsd-storemain.jpg
│           │   │   ├── cinfo-bgsd-storevideo.jpg
│           │   │   ├── cinfo-bgsd-whatsnew.jpg
│           │   │   ├── cinfo-bg-signup.png
│           │   │   ├── cinfo-bg-storegame.jpg
│           │   │   ├── cinfo-bg-storemain.jpg
│           │   │   ├── cinfo-bg-storevideo.jpg
│           │   │   ├── cinfo-bg-whatsnew.png
│           │   │   ├── cinfo-fg.png
│           │   │   ├── cinfo-fgsd.png
│           │   │   ├── fah-xmb.png
│           │   │   ├── GameStore_thumbnail.png
│           │   │   ├── hakoniwa.png
│           │   │   ├── icon_home.png
│           │   │   ├── VideoStore_thumbnail.png
│           │   │   ├── widget.png
│           │   │   └── yourchannels.png
│           │   ├── netflix
│           │   │   ├── ICON0.png
│           │   │   ├── PIC0.png
│           │   │   ├── PIC1.png
│           │   │   └── PIC2.png
│           │   ├── user
│           │   │   ├── 000.png
│           │   │   ├── 001.png
│           │   │   ├── 002.png
│           │   │   ├── 003.png
│           │   │   ├── 004.png
│           │   │   ├── 005.png
│           │   │   ├── 006.png
│           │   │   ├── 007.png
│           │   │   ├── 008.png
│           │   │   ├── 009.png
│           │   │   ├── 010.png
│           │   │   ├── 011.png
│           │   │   ├── 012.png
│           │   │   ├── 013.png
│           │   │   ├── 014.png
│           │   │   ├── 015.png
│           │   │   ├── 016.png
│           │   │   ├── 017.png
│           │   │   ├── 018.png
│           │   │   ├── 019.png
│           │   │   ├── 020.png
│           │   │   ├── 021.png
│           │   │   ├── 022.png
│           │   │   ├── 023.png
│           │   │   ├── 024.png
│           │   │   ├── 025.png
│           │   │   └── 026.png
│           │   └── xmb
│           │       ├── category_avc_photo.xml
│           │       ├── category_friend_shop.xml
│           │       ├── category_friend.xml
│           │       ├── category_game_tool2.xml
│           │       ├── category_game.xml
│           │       ├── category_music.xml
│           │       ├── category_network_shop.xml
│           │       ├── category_network_tool2.xml
│           │       ├── category_network.xml
│           │       ├── category_photo.xml
│           │       ├── category_psn.xml
│           │       ├── category_sysconf_shop.xml
│           │       ├── category_sysconf.xml
│           │       ├── category_tv.xml
│           │       ├── category_user_login.xml
│           │       ├── category_user_shop.xml
│           │       ├── category_user.xml
│           │       ├── category_video_bdponly.xml
│           │       ├── category_video.xml
│           │       ├── category_widget.xml
│           │       ├── download_list.xml
│           │       ├── null.xml
│           │       ├── playlist.xml
│           │       ├── registory.xml
│           │       ├── savedata_list.xml
│           │       ├── upload_list.xml
│           │       └── videodownloader_list.xml
│           ├── explore_category_friend.rco
│           ├── explore_category_game.rco
│           ├── explore_category_music.rco
│           ├── explore_category_network.rco
│           ├── explore_category_photo.rco
│           ├── explore_category_psn.rco
│           ├── explore_category_sysconf.rco
│           ├── explore_category_tv.rco
│           ├── explore_category_user.rco
│           ├── explore_category_video.rco
│           ├── explore_plugin_ft.rco
│           ├── explore_plugin_full.rco
│           ├── explore_plugin_game.rco
│           ├── explore_plugin_np.rco
│           ├── filecopy_plugin.rco
│           ├── friendim_plugin_game.rco
│           ├── friendim_plugin.rco
│           ├── friendml_plugin_game.rco
│           ├── friendml_plugin.rco
│           ├── friendtrophy_plugin_game.rco
│           ├── friendtrophy_plugin.rco
│           ├── gamedata_plugin.rco
│           ├── game_ext_plugin.rco
│           ├── game_indicator_plugin.rco
│           ├── gamelib_plugin.rco
│           ├── game_plugin.rco
│           ├── gameupdate_plugin.rco
│           ├── hknw_plugin
│           │   ├── circle_PlayListTarget.png
│           │   ├── circle.png
│           │   ├── comment_mark.png
│           │   ├── focus_cluster.png
│           │   ├── focus_cluster_shadow.png
│           │   ├── focus_grid.png
│           │   ├── GrainM.png
│           │   ├── jacket
│           │   │   ├── fp_jacket_ezprim2.fpo
│           │   │   ├── fp_jacket_ezprim.fpo
│           │   │   ├── frame_01.cxml
│           │   │   ├── frame_05.cxml
│           │   │   ├── index.cxml
│           │   │   ├── vp_jacket_ezprim2.vpo
│           │   │   └── vp_jacket_ezprim.vpo
│           │   ├── parameters.txt
│           │   ├── photo_envmap.png
│           │   ├── photo_shadow_1.png
│           │   ├── photo_shadow_2.png
│           │   ├── photo_shadow_3.png
│           │   ├── projection_mask.png
│           │   ├── selection_grid.png
│           │   └── sound
│           │       └── bus.sgd
│           ├── hknw_plugin.rco
│           ├── idle_plugin.rco
│           ├── imagefont.bin
│           ├── impose_plugin.rco
│           ├── kensaku_plugin.rco
│           ├── msgdialog_plugin.rco
│           ├── musicbrowser_plugin.rco
│           ├── nas_plugin.rco
│           ├── netconf_plugin.rco
│           ├── newstore
│           │   ├── sound
│           │   │   ├── CartAdd2.vag
│           │   │   ├── CartAdd.vag
│           │   │   ├── CartRemove2.vag
│           │   │   ├── CartRemove.vag
│           │   │   ├── Checkout2.vag
│           │   │   ├── Checkout.vag
│           │   │   ├── Click2.vag
│           │   │   ├── Click.vag
│           │   │   ├── FocusMove2.vag
│           │   │   ├── FocusMove.vag
│           │   │   ├── PageEnter2.vag
│           │   │   ├── PageEnter.vag
│           │   │   ├── PageExit2.vag
│           │   │   ├── PageExit.vag
│           │   │   ├── StoreBoot-L2.vag
│           │   │   ├── StoreBoot-L.vag
│           │   │   ├── StoreBoot-R2.vag
│           │   │   └── StoreBoot-R.vag
│           │   └── texture
│           │       ├── cz.png
│           │       ├── DB0001.jpg
│           │       ├── DB0002.jpg
│           │       ├── DB0003.jpg
│           │       ├── DB0004.jpg
│           │       ├── DB0005.jpg
│           │       ├── DB1001.jpg
│           │       ├── DB1002.jpg
│           │       ├── DB1003.jpg
│           │       ├── DB1101.jpg
│           │       ├── logo.png
│           │       ├── pl.png
│           │       ├── reg_ad.jpg
│           │       ├── reg_bg.png
│           │       ├── reg_sub1.png
│           │       ├── reg_sub2.png
│           │       └── reg_sub3.png
│           ├── newstore_effect.rco
│           ├── newstore_plugin.rco
│           ├── np_eula_plugin.rco
│           ├── np_matching_plugin.rco
│           ├── np_multisignin_plugin.rco
│           ├── npsignin_plugin.rco
│           ├── np_sns_plugin.rco
│           ├── np_trophy_ingame.rco
│           ├── np_trophy_plugin.rco
│           ├── oskfullkeypanel_plugin.rco
│           ├── oskpanel_plugin.rco
│           ├── osk_plugin.rco
│           ├── pesm_plugin.rco
│           ├── photolist_plugin.rco
│           ├── photo_network_sharing_plugin.rco
│           ├── photoupload_plugin.rco
│           ├── photoviewer_plugin
│           │   ├── envmap.png
│           │   ├── floor.ggfz
│           │   ├── floor_texture_1.png
│           │   ├── nega_env00.png
│           │   ├── nega_env01.png
│           │   ├── nega_M01.ggfz
│           │   ├── nega_M01_s.ggfz
│           │   ├── nega_M02.ggfz
│           │   ├── nega_M02_s.ggfz
│           │   ├── nega_M03.ggfz
│           │   ├── nega_M03_s.ggfz
│           │   ├── nega_M04.ggfz
│           │   ├── nega_M04_s.ggfz
│           │   ├── nega_M05.ggfz
│           │   ├── nega_M05_s.ggfz
│           │   ├── nega_M06_2.ggfz
│           │   ├── nega_M06_2s.ggfz
│           │   ├── nega_M06_3.ggfz
│           │   ├── nega_M06_3s.ggfz
│           │   ├── nega_M06.ggfz
│           │   ├── nega_M06_s.ggfz
│           │   ├── nega_mask.png
│           │   ├── number_H.png
│           │   ├── number_L.png
│           │   ├── number_M.png
│           │   ├── parameters.txt
│           │   ├── pattern_01_01.ggfz
│           │   ├── pattern_01_02.ggfz
│           │   ├── pattern_01_03.ggfz
│           │   ├── pattern_01_04.ggfz
│           │   ├── pattern_01_05.ggfz
│           │   ├── pattern_02_01.ggfz
│           │   ├── pattern_02_02.ggfz
│           │   ├── pattern_02_03.ggfz
│           │   ├── pattern_02_04.ggfz
│           │   ├── pattern_02_05.ggfz
│           │   ├── pattern_03_01.ggfz
│           │   ├── pattern_03_02.ggfz
│           │   ├── pattern_03_03.ggfz
│           │   ├── pattern_03_04.ggfz
│           │   ├── pattern_03_05.ggfz
│           │   ├── pattern_04_01.ggfz
│           │   ├── pattern_04_02.ggfz
│           │   ├── pattern_04_03.ggfz
│           │   ├── pattern_04_04.ggfz
│           │   ├── pattern_04_05.ggfz
│           │   ├── pattern_05_01.ggfz
│           │   ├── pattern_05_02.ggfz
│           │   ├── pattern_05_03.ggfz
│           │   ├── pattern_05_04.ggfz
│           │   ├── pattern_05_05.ggfz
│           │   ├── pattern_06_01.ggfz
│           │   ├── pattern_06_02.ggfz
│           │   ├── pattern_06_03.ggfz
│           │   ├── pattern_06_04.ggfz
│           │   ├── pattern_06_05.ggfz
│           │   ├── pattern_07_01.ggfz
│           │   ├── pattern_07_02.ggfz
│           │   ├── pattern_07_03.ggfz
│           │   ├── pattern_07_04.ggfz
│           │   ├── pattern_07_05.ggfz
│           │   ├── pattern_08_01.ggfz
│           │   ├── pattern_08_02.ggfz
│           │   ├── pattern_08_03.ggfz
│           │   ├── pattern_08_04.ggfz
│           │   ├── pattern_08_05.ggfz
│           │   ├── photo2_env00.png
│           │   ├── photo2_env01.png
│           │   ├── photo_M01.ggfz
│           │   ├── photo_M01_s.ggfz
│           │   ├── photo_M01_sv.ggfz
│           │   ├── photo_M02.ggfz
│           │   ├── photo_M02_s.ggfz
│           │   ├── photo_M02_sv.ggfz
│           │   ├── photo_M03.ggfz
│           │   ├── photo_M03_s.ggfz
│           │   ├── photo_M03_sv.ggfz
│           │   ├── photo_M04.ggfz
│           │   ├── photo_M04_s.ggfz
│           │   ├── photo_M04_sv.ggfz
│           │   ├── photo_M05.ggfz
│           │   ├── photo_M05_s.ggfz
│           │   ├── photo_M05_sv.ggfz
│           │   ├── photo.png
│           │   ├── posi_env01.png
│           │   ├── posi_mask.png
│           │   ├── scene_base.ggfz
│           │   ├── shadow1.png
│           │   ├── shadow2.png
│           │   ├── shadow3.png
│           │   ├── shadow_nega1.png
│           │   └── shadow_nega2.png
│           ├── photoviewer_plugin.rco
│           ├── playlist_plugin.rco
│           ├── poweroff_plugin.rco
│           ├── premo_plugin.rco
│           ├── print_plugin.rco
│           ├── profile_plugin_mini.rco
│           ├── profile_plugin.rco
│           ├── ps3_savedata_plugin.rco
│           ├── qgl
│           │   ├── canyon.qrc
│           │   ├── earth.qrc
│           │   ├── icons.qrc
│           │   ├── icontex.qrc
│           │   ├── lines.qrc
│           │   ├── raf.qrc
│           │   ├── rhm.qrc
│           │   └── store.qrc
│           ├── rec_plugin.rco
│           ├── regcam_plugin.rco
│           ├── sacd_plugin.rco
│           ├── scenefolder_plugin.rco
│           ├── screenshot_plugin.rco
│           ├── search_service.rco
│           ├── silk
│           │   ├── bookmark
│           │   │   ├── default_bs.xml
│           │   │   ├── default.xml
│           │   │   ├── scea_bs.xml
│           │   │   ├── scea.xml
│           │   │   ├── scee_bs.xml
│           │   │   ├── scee.xml
│           │   │   ├── sceh_bs.xml
│           │   │   ├── sceh.xml
│           │   │   ├── scej_bs.xml
│           │   │   ├── scej.xml
│           │   │   ├── scek_bs.xml
│           │   │   ├── scek.xml
│           │   │   ├── sch_bs.xml
│           │   │   └── sch.xml
│           │   ├── data
│           │   │   ├── CEFramework.bin
│           │   │   ├── CEHtmlApi.bin
│           │   │   ├── CEHtmlUI.bin
│           │   │   └── CEPhWeb.bin
│           │   ├── etc
│           │   │   ├── fontFileInfo.xml
│           │   │   ├── fontinfo-Xai.xml
│           │   │   ├── html.css
│           │   │   ├── quirk.css
│           │   │   ├── TrendMicroConfig.xml
│           │   │   └── TrendMicroFilterPolicy.xml
│           │   ├── keyconfig.xml
│           │   ├── lib
│           │   │   └── Plugins
│           │   │       └── dummy.txt
│           │   ├── mimetypes.xml
│           │   └── xai
│           │       └── widgets
│           │           └── informationboard
│           ├── silk_nas
│           │   ├── bookmark
│           │   │   ├── default.xml
│           │   │   ├── scea.xml
│           │   │   ├── scee.xml
│           │   │   ├── sceh.xml
│           │   │   ├── scej.xml
│           │   │   ├── scek.xml
│           │   │   └── sch.xml
│           │   ├── data
│           │   │   ├── CEFramework.bin
│           │   │   ├── CEHtmlApi.bin
│           │   │   ├── CEHtmlUI.bin
│           │   │   └── CEPhWeb.bin
│           │   ├── etc
│           │   │   ├── fontFileInfo.xml
│           │   │   ├── fontinfo-Xai.xml
│           │   │   ├── html.css
│           │   │   ├── quirk.css
│           │   │   └── TrendMicroFilterPolicy.xml
│           │   ├── keyconfig.xml
│           │   ├── lib
│           │   │   └── Plugins
│           │   │       └── dummy.txt
│           │   └── mimetypes.xml
│           ├── software_update_plugin.rco
│           ├── soundvisualizer_plugin.rco
│           ├── strviewer_plugin.rco
│           ├── subdisplay_plugin.rco
│           ├── sv_pseudoaudioplayer_plugin.rco
│           ├── sysconf
│           │   └── calibration
│           │       ├── 01.png
│           │       ├── 02.png
│           │       ├── 03.png
│           │       ├── 04.png
│           │       ├── 05.png
│           │       ├── 06.png
│           │       ├── 07.png
│           │       ├── 08.png
│           │       ├── 09.png
│           │       ├── 10.png
│           │       ├── 11.png
│           │       └── line.png
│           ├── sysconf_plugin.rco
│           ├── system_plugin.rco
│           ├── theme
│           │   └── 01.p3t
│           ├── thumthum_plugin.rco
│           ├── upload_util.rco
│           ├── user_info_plugin.rco
│           ├── user_plugin.rco
│           ├── videodownloader_plugin.rco
│           ├── videoeditor_plugin.rco
│           ├── videoplayer_plugin.rco
│           ├── videoplayer_util.rco
│           ├── vmc_savedata_plugin.rco
│           ├── wboard_plugin.rco
│           ├── webbrowser_plugin.rco
│           ├── webrender_plugin.rco
│           ├── xmb_ingame.rco
│           ├── xmb_plugin_normal.rco
│           └── ycon_manual_plugin.rco
└── dev_flash3
    └── data-revoke
        ├── crl
        │   ├── CRL1
        │   └── CRL2
        └── drl
            ├── DRL1
            └── DRL2



Files sorted by filename (followed by location):

could be usefull when going to document the usage/patches of files

000.png (/dev_flash/vsh/resource/explore/user)
001.png (/dev_flash/vsh/resource/explore/user)
002.png (/dev_flash/vsh/resource/explore/user)
003.png (/dev_flash/vsh/resource/explore/user)
004.png (/dev_flash/vsh/resource/explore/user)
005.png (/dev_flash/vsh/resource/explore/user)
006.png (/dev_flash/vsh/resource/explore/user)
007.png (/dev_flash/vsh/resource/explore/user)
008.png (/dev_flash/vsh/resource/explore/user)
009.png (/dev_flash/vsh/resource/explore/user)
01.p3t (/dev_flash/vsh/resource/theme)
01.png (/dev_flash/vsh/resource/sysconf/calibration)
010.png (/dev_flash/vsh/resource/explore/user)
011.png (/dev_flash/vsh/resource/explore/user)
012.png (/dev_flash/vsh/resource/explore/user)
013.png (/dev_flash/vsh/resource/explore/user)
014.png (/dev_flash/vsh/resource/explore/user)
015.png (/dev_flash/vsh/resource/explore/user)
016.png (/dev_flash/vsh/resource/explore/user)
017.png (/dev_flash/vsh/resource/explore/user)
018.png (/dev_flash/vsh/resource/explore/user)
019.png (/dev_flash/vsh/resource/explore/user)
02.png (/dev_flash/vsh/resource/sysconf/calibration)
020.png (/dev_flash/vsh/resource/explore/user)
021.png (/dev_flash/vsh/resource/explore/user)
022.png (/dev_flash/vsh/resource/explore/user)
023.png (/dev_flash/vsh/resource/explore/user)
024.png (/dev_flash/vsh/resource/explore/user)
025.png (/dev_flash/vsh/resource/explore/user)
026.png (/dev_flash/vsh/resource/explore/user)
03.png (/dev_flash/vsh/resource/sysconf/calibration)
04.png (/dev_flash/vsh/resource/sysconf/calibration)
05.png (/dev_flash/vsh/resource/sysconf/calibration)
06.png (/dev_flash/vsh/resource/sysconf/calibration)
07.png (/dev_flash/vsh/resource/sysconf/calibration)
08.png (/dev_flash/vsh/resource/sysconf/calibration)
09.png (/dev_flash/vsh/resource/sysconf/calibration)
10.png (/dev_flash/vsh/resource/sysconf/calibration)
11.png (/dev_flash/vsh/resource/sysconf/calibration)
AAA (/dev_flash/vsh/resource)
AacsModule.spu.isoself (/dev_flash/bdplayer)
aadList.dat (/dev_flash/data/dic)
adhoc_vshlib.sprx (/dev_flash/pspemu/release)
ap_plugin.rco (/dev_flash/vsh/resource)
ap_plugin.sprx (/dev_flash/vsh/module)
apotp.dic (/dev_flash/data/dic)
atokp.dic (/dev_flash/data/dic)
audio.sprx (/dev_flash/pspemu/release)
audioplayer_plugin.rco (/dev_flash/vsh/resource)
audioplayer_plugin.sprx (/dev_flash/vsh/module)
audioplayer_plugin_dummy.rco (/dev_flash/vsh/resource)
audioplayer_plugin_dummy.sprx (/dev_flash/vsh/module)
audioplayer_plugin_mini.rco (/dev_flash/vsh/resource)
audioplayer_plugin_mini.sprx (/dev_flash/vsh/module)
audioplayer_plugin_util.rco (/dev_flash/vsh/resource)
auth_plugin.rco (/dev_flash/vsh/resource)
auth_plugin.sprx (/dev_flash/vsh/module)
autodownload_plugin.rco (/dev_flash/vsh/resource)
autodownload_plugin.sprx (/dev_flash/vsh/module)
avc_background.jpg (/dev_flash/vsh/resource/avc/image)
avc_game_plugin.rco (/dev_flash/vsh/resource)
avc_plugin.rco (/dev_flash/vsh/resource)
avc_plugin.sprx (/dev_flash/vsh/module)
avc_util.sprx (/dev_flash/vsh/module)
avc2_game_plugin.rco (/dev_flash/vsh/resource)
avc2_game_plugin.sprx (/dev_flash/vsh/module)
avc2_game_video_plugin.rco (/dev_flash/vsh/resource)
avc2_game_video_plugin.sprx (/dev_flash/vsh/module)
avc2_text_plugin.rco (/dev_flash/vsh/resource)
avc2_text_plugin.sprx (/dev_flash/vsh/module)
avcodec.sprx (/dev_flash/pspemu/release)
basic_plugins.sprx (/dev_flash/vsh/module)
bdj.self (/dev_flash/bdplayer)
bdjstack (/dev_flash/bdplayer)
bdjstack.jar (/dev_flash/bdplayer/bdjstack)
bdp_BDMV.self (/dev_flash/bdplayer)
bdp_BDVD.self (/dev_flash/bdplayer)
bdp_disccheck_plugin.rco (/dev_flash/vsh/resource)
bdp_disccheck_plugin.sprx (/dev_flash/vsh/module)
bdp_plugin.rco (/dev_flash/vsh/resource)
bdp_plugin.sprx (/dev_flash/vsh/module)
bdp_storage_plugin.rco (/dev_flash/vsh/resource)
bdp_storage_plugin.sprx (/dev_flash/vsh/module)
Broken_Photo.png (/dev_flash/vsh/resource/avc/image)
bus.sgd (/dev_flash/vsh/resource/hknw_plugin/sound)
CA01.cer (/dev_flash/data/cert)
CA02.cer (/dev_flash/data/cert)
CA03.cer (/dev_flash/data/cert)
CA04.cer (/dev_flash/data/cert)
CA05.cer (/dev_flash/data/cert)
CA06.cer (/dev_flash/data/cert)
CA07.cer (/dev_flash/data/cert)
CA08.cer (/dev_flash/data/cert)
CA09.cer (/dev_flash/data/cert)
CA10.cer (/dev_flash/data/cert)
CA11.cer (/dev_flash/data/cert)
CA12.cer (/dev_flash/data/cert)
CA13.cer (/dev_flash/data/cert)
CA14.cer (/dev_flash/data/cert)
CA15.cer (/dev_flash/data/cert)
CA16.cer (/dev_flash/data/cert)
CA17.cer (/dev_flash/data/cert)
CA18.cer (/dev_flash/data/cert)
CA19.cer (/dev_flash/data/cert)
CA20.cer (/dev_flash/data/cert)
CA21.cer (/dev_flash/data/cert)
CA22.cer (/dev_flash/data/cert)
CA23.cer (/dev_flash/data/cert)
CA24.cer (/dev_flash/data/cert)
CA25.cer (/dev_flash/data/cert)
CA26.cer (/dev_flash/data/cert)
CA27.cer (/dev_flash/data/cert)
CA28.cer (/dev_flash/data/cert)
CA29.cer (/dev_flash/data/cert)
CA30.cer (/dev_flash/data/cert)
CA31.cer (/dev_flash/data/cert)
CA32.cer (/dev_flash/data/cert)
CA33.cer (/dev_flash/data/cert)
CA34.cer (/dev_flash/data/cert)
CA35.cer (/dev_flash/data/cert)
CA36.cer (/dev_flash/data/cert)
canyon.qrc (/dev_flash/vsh/resource/qql)
CapFont_MARU.cbf.LZRC (/dev_flash/bdplayer/SYS)
CapSound.pcm.LZRC (/dev_flash/bdplayer/SYS)
CartAdd.vag (/dev_flash/vsh/resource/newstore/sound)
CartAdd2.vag (/dev_flash/vsh/resource/newstore/sound)
CartRemove.vag (/dev_flash/vsh/resource/newstore/sound)
CartRemove2.vag (/dev_flash/vsh/resource/newstore/sound)
category_avc_photo.xml (/dev_flash/vsh/resource/explore/xmb)
category_friend.xml (/dev_flash/vsh/resource/explore/xmb)
category_friend_shop.xml (/dev_flash/vsh/resource/explore/xmb)
category_game.xml (/dev_flash/vsh/resource/explore/xmb)
category_game_tool2.xml (/dev_flash/vsh/resource/explore/xmb)
category_music.xml (/dev_flash/vsh/resource/explore/xmb)
category_network.xml (/dev_flash/vsh/resource/explore/xmb)
category_network_shop.xml (/dev_flash/vsh/resource/explore/xmb)
category_network_tool2.xml (/dev_flash/vsh/resource/explore/xmb)
category_photo.xml (/dev_flash/vsh/resource/explore/xmb)
category_psn.xml (/dev_flash/vsh/resource/explore/xmb)
category_setting_plugin.rco (/dev_flash/vsh/resource)
category_setting_plugin.sprx (/dev_flash/vsh/module)
category_sysconf.xml (/dev_flash/vsh/resource/explore/xmb)
category_sysconf_shop.xml (/dev_flash/vsh/resource/explore/xmb)
category_tv.xml (/dev_flash/vsh/resource/explore/xmb)
category_user.xml (/dev_flash/vsh/resource/explore/xmb)
category_user_login.xml (/dev_flash/vsh/resource/explore/xmb)
category_user_shop.xml (/dev_flash/vsh/resource/explore/xmb)
category_video.xml (/dev_flash/vsh/resource/explore/xmb)
category_video_bdponly.xml (/dev_flash/vsh/resource/explore/xmb)
category_widget.xml (/dev_flash/vsh/resource/explore/xmb)
CEFramework.bin (/dev_flash/vsh/resource/silk/data)
CEFramework.bin (/dev_flash/vsh/resource/silk_nas/data)
CEHtmlApi.bin (/dev_flash/vsh/resource/silk/data)
CEHtmlApi.bin (/dev_flash/vsh/resource/silk_nas/data)
CEHtmlUI.bin (/dev_flash/vsh/resource/silk/data)
CEHtmlUI.bin (/dev_flash/vsh/resource/silk_nas/data)
CEPhWeb.bin (/dev_flash/vsh/resource/silk/data)
CEPhWeb.bin (/dev_flash/vsh/resource/silk_nas/data)
checker_plugin.rco (/dev_flash/vsh/resource)
Checkout.vag (/dev_flash/vsh/resource/newstore/sound)
Checkout2.vag (/dev_flash/vsh/resource/newstore/sound)
cinfo-bg-photogallery.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bgsd-photogallery.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bgsd-signup.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bgsd-storegame.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bgsd-storemain.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bgsd-storevideo.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bgsd-whatsnew.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bg-signup.png (/dev_flash/vsh/resource/explore/icon)
cinfo-bg-storegame.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bg-storemain.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bg-storevideo.jpg (/dev_flash/vsh/resource/explore/icon)
cinfo-bg-whatsnew.png (/dev_flash/vsh/resource/explore/icon)
cinfo-fg.png (/dev_flash/vsh/resource/explore/icon)
cinfo-fgsd.png (/dev_flash/vsh/resource/explore/icon)
circle.png (/dev_flash/vsh/resource/hknw_plugin)
circle_PlayListTarget.png (/dev_flash/vsh/resource/hknw_plugin)
classes.zip (/dev_flash/bdplayer/bdjstack)
Click.vag (/dev_flash/vsh/resource/newstore/sound)
Click2.vag (/dev_flash/vsh/resource/newstore/sound)
coldboot.raf (/dev_flash/vsh/resource)
coldboot_multi.ac3 (/dev_flash/vsh/resource)
coldboot_stereo.ac3 (/dev_flash/vsh/resource)
comment_mark.png (/dev_flash/vsh/resource/hknw_plugin)
CprmModule.spu.isoself (/dev_flash/bdplayer)
CssModule.spu.isoself (/dev_flash/bdplayer)
ctrl.sprx (/dev_flash/pspemu/release)
custom_render_plugin.rco (/dev_flash/vsh/resource)
custom_render_plugin.sprx (/dev_flash/vsh/module)
cz.png (/dev_flash/vsh/resource/newstore/texture)
data_copy_plugin.rco (/dev_flash/vsh/resource)
data_copy_plugin.sprx (/dev_flash/vsh/module)
DB0001.jpg (/dev_flash/vsh/resource/newstore/texture)
DB0002.jpg (/dev_flash/vsh/resource/newstore/texture)
DB0003.jpg (/dev_flash/vsh/resource/newstore/texture)
DB0004.jpg (/dev_flash/vsh/resource/newstore/texture)
DB0005.jpg (/dev_flash/vsh/resource/newstore/texture)
DB1001.jpg (/dev_flash/vsh/resource/newstore/texture)
DB1002.jpg (/dev_flash/vsh/resource/newstore/texture)
DB1003.jpg (/dev_flash/vsh/resource/newstore/texture)
DB1101.jpg (/dev_flash/vsh/resource/newstore/texture)
default.xml (/dev_flash/vsh/resource/silk/bookmark)
default.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
default_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
deviceconf_plugin.rco (/dev_flash/vsh/resource)
deviceconf_plugin.sprx (/dev_flash/vsh/module)
divxdrm.sprx (/dev_flash/vsh/module)
dlna_plugin.rco (/dev_flash/vsh/resource)
dlna_plugin.sprx (/dev_flash/vsh/module)
download_list.xml (/dev_flash/vsh/resource/explore/xmb)
download_plugin.rco (/dev_flash/vsh/resource)
download_plugin.sprx (/dev_flash/vsh/module)
dtcpip_util.rco (/dev_flash/vsh/resource)
dtcpip_util.sprx (/dev_flash/vsh/module)
dummy.txt (/dev_flash/vsh/resource/silk/lib/Plugins)
dummy.txt (/dev_flash/vsh/resource/silk_nas/lib/Plugins)
earth.qrc (/dev_flash/vsh/resource/qql)
edy_plugin.rco (/dev_flash/vsh/resource)
edy_plugin.sprx (/dev_flash/vsh/module)
emulator_api.sprx (/dev_flash/pspemu/release)
emulator_drm.sprx (/dev_flash/pspemu/release)
entertainment_haiyu_nihon.aad (/dev_flash/data/dic)
entertainment_owarai_TV_talent.aad (/dev_flash/data/dic)
envmap.png (/dev_flash/vsh/resource/photoviewer_plugin)
epson.pmd (/dev_flash/vsh/etc/print)
esehttp.sprx (/dev_flash/vsh/module)
eseibrd.sprx (/dev_flash/vsh/module)
eseidle.sprx (/dev_flash/vsh/module)
eselock.sprx (/dev_flash/vsh/module)
eula_cddb_plugin.rco (/dev_flash/vsh/resource)
eula_cddb_plugin.sprx (/dev_flash/vsh/module)
eula_hcopy_plugin.rco (/dev_flash/vsh/resource)
eula_hcopy_plugin.sprx (/dev_flash/vsh/module)
eula_net_plugin.rco (/dev_flash/vsh/resource)
eula_net_plugin.sprx (/dev_flash/vsh/module)
eurus_fw.bin (/dev_flash/sys/internal)
explore_category_friend.rco (/dev_flash/vsh/resource)
explore_category_friend.sprx (/dev_flash/vsh/module)
explore_category_game.rco (/dev_flash/vsh/resource)
explore_category_game.sprx (/dev_flash/vsh/module)
explore_category_music.rco (/dev_flash/vsh/resource)
explore_category_music.sprx (/dev_flash/vsh/module)
explore_category_network.rco (/dev_flash/vsh/resource)
explore_category_network.sprx (/dev_flash/vsh/module)
explore_category_photo.rco (/dev_flash/vsh/resource)
explore_category_photo.sprx (/dev_flash/vsh/module)
explore_category_psn.rco (/dev_flash/vsh/resource)
explore_category_psn.sprx (/dev_flash/vsh/module)
explore_category_sysconf.rco (/dev_flash/vsh/resource)
explore_category_sysconf.sprx (/dev_flash/vsh/module)
explore_category_tv.rco (/dev_flash/vsh/resource)
explore_category_tv.sprx (/dev_flash/vsh/module)
explore_category_user.rco (/dev_flash/vsh/resource)
explore_category_user.sprx (/dev_flash/vsh/module)
explore_category_video.rco (/dev_flash/vsh/resource)
explore_category_video.sprx (/dev_flash/vsh/module)
explore_plugin.sprx (/dev_flash/vsh/module)
explore_plugin_ft.rco (/dev_flash/vsh/resource)
explore_plugin_ft.sprx (/dev_flash/vsh/module)
explore_plugin_full.rco (/dev_flash/vsh/resource)
explore_plugin_game.rco (/dev_flash/vsh/resource)
explore_plugin_game.sprx (/dev_flash/vsh/module)
explore_plugin_np.rco (/dev_flash/vsh/resource)
explore_plugin_np.sprx (/dev_flash/vsh/module)
face_facemark_i.aad (/dev_flash/data/dic)
fah-xmb.png (/dev_flash/vsh/resource/explore/icon)
faust_widget.sprx (/dev_flash/vsh/module)
filecopy_plugin.rco (/dev_flash/vsh/resource)
filecopy_plugin.sprx (/dev_flash/vsh/module)
flashATRAC.pic (/dev_flash/sys/external)
flashMP3.pic (/dev_flash/sys/external)
floor.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
floor_texture_1.png (/dev_flash/vsh/resource/photoviewer_plugin)
focus_cluster.png (/dev_flash/vsh/resource/hknw_plugin)
focus_cluster_shadow.png (/dev_flash/vsh/resource/hknw_plugin)
focus_grid.png (/dev_flash/vsh/resource/hknw_plugin)
FocusMove.vag (/dev_flash/vsh/resource/newstore/sound)
FocusMove2.vag (/dev_flash/vsh/resource/newstore/sound)
font.properties (/dev_flash/bdplayer/bdjstack)
fontFileInfo.xml (/dev_flash/vsh/resource/silk/etc)
fontFileInfo.xml (/dev_flash/vsh/resource/silk_nas/etc)
fontinfo-Xai.xml (/dev_flash/vsh/resource/silk/etc)
fontinfo-Xai.xml (/dev_flash/vsh/resource/silk_nas/etc)
fp_jacket_ezprim.fpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
fp_jacket_ezprim2.fpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
frame_01.cxml (/dev_flash/vsh/resource/hknw_plugin/jacket)
frame_05.cxml (/dev_flash/vsh/resource/hknw_plugin/jacket)
friendim_plugin.rco (/dev_flash/vsh/resource)
friendim_plugin.sprx (/dev_flash/vsh/module)
friendim_plugin_game.rco (/dev_flash/vsh/resource)
friendml_plugin.rco (/dev_flash/vsh/resource)
friendml_plugin.sprx (/dev_flash/vsh/module)
friendml_plugin_game.rco (/dev_flash/vsh/resource)
friendtrophy_plugin.rco (/dev_flash/vsh/resource)
friendtrophy_plugin.sprx (/dev_flash/vsh/module)
friendtrophy_plugin_game.rco (/dev_flash/vsh/resource)
g729.sprx (/dev_flash/pspemu/release)
game_ext_plugin.rco (/dev_flash/vsh/resource)
game_ext_plugin.sprx (/dev_flash/vsh/module)
game_indicator_plugin.rco (/dev_flash/vsh/resource)
game_indicator_plugin.sprx (/dev_flash/vsh/module)
game_plugin.rco (/dev_flash/vsh/resource)
gamedata_plugin.rco (/dev_flash/vsh/resource)
gamedata_plugin.sprx (/dev_flash/vsh/module)
gamelib_plugin.rco (/dev_flash/vsh/resource)
gamelib_plugin.sprx (/dev_flash/vsh/module)
GameStore_thumbnail.png (/dev_flash/vsh/resource/explore/icon)
gameupdate_plugin.rco (/dev_flash/vsh/resource)
gameupdate_plugin.sprx (/dev_flash/vsh/module)
gb3s1518.bwfon (/dev_flash/pspemu/flash0/font)
gpu.sprx (/dev_flash/bdplayer)
GrainM.png (/dev_flash/vsh/resource/hknw_plugin)
hakoniwa.png (/dev_flash/vsh/resource/explore/icon)
hknw_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
hknw_plugin.sprx (/dev_flash/vsh/module)
html.css (/dev_flash/vsh/resource/silk/etc)
html.css (/dev_flash/vsh/resource/silk_nas/etc)
icon_home.png (/dev_flash/vsh/resource/explore/icon)
ICON0.png (/dev_flash/vsh/resource/explore/netflix)
icons.qrc (/dev_flash/vsh/resource/qql)
icontex.qrc (/dev_flash/vsh/resource/qql)
idle_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
idle_plugin.sprx (/dev_flash/vsh/module)
ifhandle.sprx (/dev_flash/pspemu/release)
imagefont.bin (/dev_flash/pspemu/flash0/font)
imagefont.bin (/dev_flash/vsh/resource/hknw_plugin)
ime.sprx (/dev_flash/vsh/module)
ime_atok.sprx (/dev_flash/vsh/module)
ime_zi.sprx (/dev_flash/vsh/module)
impose.sprx (/dev_flash/pspemu/release)
impose_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
index.cxml (/dev_flash/vsh/resource/hknw_plugin/jacket)
index.dat (/dev_flash/vsh/etc)
informationboard (/dev_flash/vsh/resource/silk/xai/widgets)
iofilemgr.sprx (/dev_flash/pspemu/release)
iofilemgr_iso.sprx (/dev_flash/pspemu/release)
isofs.sprx (/dev_flash/pspemu/release)
java.security (/dev_flash/bdplayer/bdjstack)
jpn0.pgf (/dev_flash/pspemu/flash0/font)
kensaku_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
kensaku_plugin.sprx (/dev_flash/vsh/module)
keyconfig.xml (/dev_flash/vsh/resource/silk)
keyconfig.xml (/dev_flash/vsh/resource/silk_nas)
kr0.pgf (/dev_flash/pspemu/flash0/font)
layout_factor_table_1080.txt (/dev_flash/vsh/etc)
layout_factor_table_272.txt (/dev_flash/vsh/etc)
layout_factor_table_480.txt (/dev_flash/vsh/etc)
layout_factor_table_720.txt (/dev_flash/vsh/etc)
layout_grid_table_1080.txt (/dev_flash/vsh/etc)
layout_grid_table_272.txt (/dev_flash/vsh/etc)
layout_grid_table_480.txt (/dev_flash/vsh/etc)
layout_grid_table_720.txt (/dev_flash/vsh/etc)
libaac.sprx (/dev_flash/pspemu/release)
libaacenc.sprx (/dev_flash/sys/external)
libaacenc_spurs.sprx (/dev_flash/sys/external)
libac3dec.sprx (/dev_flash/sys/external)
libac3dec2.sprx (/dev_flash/sys/external)
libad_async.sprx (/dev_flash/sys/external)
libad_billboard_util.sprx (/dev_flash/sys/external)
libad_core.sprx (/dev_flash/sys/external)
libadec.sprx (/dev_flash/sys/external)
libadec_internal.sprx (/dev_flash/sys/external)
libadec2.sprx (/dev_flash/sys/external)
libapostsrc.sprx (/dev_flash/sys/internal)
libapostsrc_eqalc.sprx (/dev_flash/sys/internal)
libapostsrc_mini.sprx (/dev_flash/sys/external)
libasfparser.sprx (/dev_flash/sys/internal)
libasfparser2.sprx (/dev_flash/sys/internal)
libasfparser2_astd.sprx (/dev_flash/sys/external)
libat3dec.sprx (/dev_flash/sys/external)
libat3enc.sprx (/dev_flash/sys/internal)
libat3enc_spurs.sprx (/dev_flash/sys/internal)
libatrac3plus.sprx (/dev_flash/pspemu/release)
libatrac3plus.sprx (/dev_flash/sys/external)
libatxdec.sprx (/dev_flash/sys/external)
libatxdec2.sprx (/dev_flash/sys/external)
libatxdecmod.sprx (/dev_flash/sys/internal)
libatxenc.sprx (/dev_flash/sys/internal)
libaudio.sprx (/dev_flash/sys/external)
libavcdec.sprx (/dev_flash/sys/external)
libavcenc.sprx (/dev_flash/sys/external)
libavcenc_small.sprx (/dev_flash/sys/external)
libavchatjpgdec.sprx (/dev_flash/sys/external)
libcamera.sprx (/dev_flash/sys/external)
libcelp8dec.sprx (/dev_flash/sys/external)
libcelp8enc.sprx (/dev_flash/sys/external)
libcelpdec.sprx (/dev_flash/sys/external)
libcelpenc.sprx (/dev_flash/sys/external)
libddlenc2.sprx (/dev_flash/sys/internal)
libddpdec.sprx (/dev_flash/sys/external)
libddpdec.sprx (/dev_flash/sys/internal)
libdivx311dec.sprx (/dev_flash/sys/internal)
libdivxdec.sprx (/dev_flash/sys/external)
libdmux.sprx (/dev_flash/sys/external)
libdmuxpamf.sprx (/dev_flash/sys/external)
libdsee.sprx (/dev_flash/sys/internal)
libdtsdec.sprx (/dev_flash/sys/internal)
libdtsenc2.sprx (/dev_flash/sys/internal)
libdtshdcoredec.sprx (/dev_flash/sys/internal)
libdtshddec.sprx (/dev_flash/sys/internal)
libdtslbrdec.sprx (/dev_flash/sys/internal)
libexif.sprx (/dev_flash/sys/internal)
libfiber.sprx (/dev_flash/sys/external)
libfont.prx (/dev_flash/pspemu/flash0/usermodule)
libfont.sprx (/dev_flash/sys/external)
libfontFT.sprx (/dev_flash/sys/external)
libfreetype.sprx (/dev_flash/sys/external)
libfreetypeTT.sprx (/dev_flash/sys/external)
libfs.sprx (/dev_flash/sys/external)
libfs_155.sprx (/dev_flash/sys/external)
libfs_utility.sprx (/dev_flash/sys/internal)
libfs_utility_full.sprx (/dev_flash/sys/internal)
libfs_utility_init.sprx (/dev_flash/sys/internal)
libfs_utility2.sprx (/dev_flash/sys/internal)
libft2d.sprx (/dev_flash/sys/internal)
libgcm_sys.sprx (/dev_flash/sys/external)
libgem.sprx (/dev_flash/sys/external)
libgifdec.sprx (/dev_flash/sys/external)
libheap.prx (/dev_flash/pspemu/flash0/usermodule)
libhttp.sprx (/dev_flash/sys/external)
libio.sprx (/dev_flash/sys/external)
libjpgdec.sprx (/dev_flash/sys/external)
libjpgenc.sprx (/dev_flash/sys/external)
libkey2char.sprx (/dev_flash/sys/external)
libl10n.sprx (/dev_flash/sys/external)
liblv2.sprx (/dev_flash/sys/external)
liblv2coredump.sprx (/dev_flash/sys/external)
liblv2dbg_for_cex.sprx (/dev_flash/sys/external)
libm2aacdec.sprx (/dev_flash/sys/internal)
libm2bcdec.sprx (/dev_flash/sys/external)
libm4aacdec.sprx (/dev_flash/sys/external)
libm4aacdec2ch.sprx (/dev_flash/sys/external)
libm4aacdec2chmod.sprx (/dev_flash/sys/internal)
libm4aacdec2chmod2.sprx (/dev_flash/sys/internal)
libm4hdenc.sprx (/dev_flash/sys/external)
libm4venc.sprx (/dev_flash/sys/external)
libmcadpt.sprx (/dev_flash/sys/internal)
libmedi.sprx (/dev_flash/sys/external)
libmic.sprx (/dev_flash/sys/external)
libmp3.sprx (/dev_flash/pspemu/release)
libmp3dec.sprx (/dev_flash/sys/external)
libmp3enc.sprx (/dev_flash/sys/internal)
libmp3sdec.sprx (/dev_flash/sys/internal)
libmp4.sprx (/dev_flash/pspemu/release)
libmp4.sprx (/dev_flash/sys/external)
libmpl1dec.sprx (/dev_flash/sys/external)
libmvcdec.sprx (/dev_flash/sys/internal)
libnet.sprx (/dev_flash/sys/external)
libnetctl.sprx (/dev_flash/sys/external)
libpamf.sprx (/dev_flash/sys/external)
libpngdec.sprx (/dev_flash/sys/external)
libpngenc.sprx (/dev_flash/sys/external)
libps2hdd.sprx (/dev_flash/vsh/module)
libpsmfplayer.prx (/dev_flash/pspemu/flash0/usermodule)
libresc.sprx (/dev_flash/sys/external)
librtc.sprx (/dev_flash/sys/external)
librudp.sprx (/dev_flash/sys/external)
libsail.sprx (/dev_flash/sys/external)
libsail_avi.sprx (/dev_flash/sys/external)
libsail_rec.sprx (/dev_flash/sys/external)
libsjvtd.sprx (/dev_flash/sys/external)
libsmvd2.sprx (/dev_flash/sys/external)
libsmvd4.sprx (/dev_flash/sys/external)
libspurs_jq.sprx (/dev_flash/sys/external)
libsre.sprx (/dev_flash/sys/external)
libssl.sprx (/dev_flash/sys/external)
libsvc1d.sprx (/dev_flash/sys/internal)
libsync2.sprx (/dev_flash/sys/external)
libsysmodule.sprx (/dev_flash/sys/external)
libsysutil.sprx (/dev_flash/sys/external)
libsysutil_ap.sprx (/dev_flash/sys/external)
libsysutil_authdialog.sprx (/dev_flash/sys/external)
libsysutil_avc_ext.sprx (/dev_flash/sys/external)
libsysutil_avc2.sprx (/dev_flash/sys/external)
libsysutil_avconf_ext.sprx (/dev_flash/sys/external)
libsysutil_bgdl.sprx (/dev_flash/sys/external)
libsysutil_dtcp_ip.sprx (/dev_flash/sys/external)
libsysutil_game.sprx (/dev_flash/sys/external)
libsysutil_game_exec.sprx (/dev_flash/sys/external)
libsysutil_game_ps1emu.sprx (/dev_flash/sys/internal)
libsysutil_imejp.sprx (/dev_flash/sys/external)
libsysutil_misc.sprx (/dev_flash/sys/external)
libsysutil_music.sprx (/dev_flash/sys/external)
libsysutil_music_decode.sprx (/dev_flash/sys/external)
libsysutil_music_export.sprx (/dev_flash/sys/external)
libsysutil_np.sprx (/dev_flash/sys/external)
libsysutil_np_clans.sprx (/dev_flash/sys/external)
libsysutil_np_commerce2.sprx (/dev_flash/sys/external)
libsysutil_np_eula.sprx (/dev_flash/sys/external)
libsysutil_np_installer.sprx (/dev_flash/sys/external)
libsysutil_np_sns.sprx (/dev_flash/sys/external)
libsysutil_np_trophy.sprx (/dev_flash/sys/external)
libsysutil_np_tus.sprx (/dev_flash/sys/external)
libsysutil_np_util.sprx (/dev_flash/sys/external)
libsysutil_np2.sprx (/dev_flash/sys/external)
libsysutil_oskdialog_ext.sprx (/dev_flash/sys/external)
libsysutil_pesm.sprx (/dev_flash/sys/external)
libsysutil_photo_decode.sprx (/dev_flash/sys/external)
libsysutil_photo_export.sprx (/dev_flash/sys/external)
libsysutil_photo_import.sprx (/dev_flash/sys/external)
libsysutil_photo_network_sharing.sprx (/dev_flash/sys/external)
libsysutil_print.sprx (/dev_flash/sys/external)
libsysutil_rec.sprx (/dev_flash/sys/external)
libsysutil_remoteplay.sprx (/dev_flash/sys/external)
libsysutil_rtcalarm.sprx (/dev_flash/sys/external)
libsysutil_savedata.sprx (/dev_flash/sys/external)
libsysutil_savedata_psp.sprx (/dev_flash/sys/external)
libsysutil_screenshot.sprx (/dev_flash/sys/external)
libsysutil_search.sprx (/dev_flash/sys/external)
libsysutil_storagedata.sprx (/dev_flash/sys/external)
libsysutil_subdisplay.sprx (/dev_flash/sys/external)
libsysutil_syschat.sprx (/dev_flash/sys/external)
libsysutil_sysconf_ext.sprx (/dev_flash/sys/external)
libsysutil_sysconf_ps1emu.sprx (/dev_flash/sys/internal)
libsysutil_userinfo.sprx (/dev_flash/sys/external)
libsysutil_video_export.sprx (/dev_flash/sys/external)
libsysutil_video_player.sprx (/dev_flash/sys/external)
libsysutil_video_upload.sprx (/dev_flash/sys/external)
libtiffdec.sprx (/dev_flash/sys/internal)
libtrhddec.sprx (/dev_flash/sys/internal)
libusbd.sprx (/dev_flash/sys/external)
libusbpspcm.sprx (/dev_flash/sys/external)
libvdec.sprx (/dev_flash/sys/external)
libvideoSubsystem.sprx (/dev_flash/vsh/module)
libvoice.sprx (/dev_flash/sys/external)
libvoice_internal.sprx (/dev_flash/sys/internal)
libvpost.sprx (/dev_flash/sys/external)
libvpost.sprx (/dev_flash/sys/internal)
libvpost2.sprx (/dev_flash/sys/external)
libwmadec.sprx (/dev_flash/sys/external)
libwmadec.sprx (/dev_flash/sys/internal)
line.png (/dev_flash/vsh/resource/sysconf/calibration)
lines.qrc (/dev_flash/vsh/resource/qql)
logo.png (/dev_flash/vsh/resource/newstore/texture)
ltn0.pgf (/dev_flash/pspemu/flash0/font)
ltn1.pgf (/dev_flash/pspemu/flash0/font)
ltn10.pgf (/dev_flash/pspemu/flash0/font)
ltn11.pgf (/dev_flash/pspemu/flash0/font)
ltn12.pgf (/dev_flash/pspemu/flash0/font)
ltn13.pgf (/dev_flash/pspemu/flash0/font)
ltn14.pgf (/dev_flash/pspemu/flash0/font)
ltn15.pgf (/dev_flash/pspemu/flash0/font)
ltn2.pgf (/dev_flash/pspemu/flash0/font)
ltn3.pgf (/dev_flash/pspemu/flash0/font)
ltn4.pgf (/dev_flash/pspemu/flash0/font)
ltn5.pgf (/dev_flash/pspemu/flash0/font)
ltn6.pgf (/dev_flash/pspemu/flash0/font)
ltn7.pgf (/dev_flash/pspemu/flash0/font)
ltn8.pgf (/dev_flash/pspemu/flash0/font)
ltn9.pgf (/dev_flash/pspemu/flash0/font)
mcore.self (/dev_flash/vsh/module)
mcore_tk.self (/dev_flash/vsh/module)
mediaman.sprx (/dev_flash/pspemu/release)
mgvideo.self (/dev_flash/vsh/module)
micon_lock_plugin.sprx (/dev_flash/vsh/module)
mimetypes.xml (/dev_flash/vsh/resource/silk)
mimetypes.xml (/dev_flash/vsh/resource/silk_nas)
minis_logo.png (/dev_flash/pspemu/flash0/logo)
mintx_client.sprx (/dev_flash/vsh/module)
mms.sprx (/dev_flash/vsh/module)
mms_cls.sprx (/dev_flash/vsh/module)
mms_db_full.sprx (/dev_flash/vsh/module)
mms_ext_full.sprx (/dev_flash/vsh/module)
mms_ext_mini.sprx (/dev_flash/vsh/module)
mms_maintenance.sprx (/dev_flash/vsh/module)
mms_minimdimp_avi.sprx (/dev_flash/vsh/module)
mms_minimdimp_dir_gamehdd.sprx (/dev_flash/vsh/module)
mms_minimdimp_dir_npachive.sprx (/dev_flash/vsh/module)
mms_minimdimp_dir_ps3savedata.sprx (/dev_flash/vsh/module)
mms_minimdimp_jpeg.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_bdvd.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_cdda.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_cdrom.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_gamedisc.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_hdd.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_sacd.sprx (/dev_flash/vsh/module)
mms_minimdimp_media_usbmass.sprx (/dev_flash/vsh/module)
mms_minimdimp_mp3.sprx (/dev_flash/vsh/module)
mms_minimdimp_mp4aac.sprx (/dev_flash/vsh/module)
mms_minimdimp_mp4video.sprx (/dev_flash/vsh/module)
mms_minimdimp_mpeg.sprx (/dev_flash/vsh/module)
mms_minimdimp_msv.sprx (/dev_flash/vsh/module)
mms_minimdimp_music_default.sprx (/dev_flash/vsh/module)
mms_minimdimp_photo_default.sprx (/dev_flash/vsh/module)
mms_minimdimp_png.sprx (/dev_flash/vsh/module)
mms_minimdimp_riff.sprx (/dev_flash/vsh/module)
mms_minimdimp_video_default.sprx (/dev_flash/vsh/module)
mms_schema.sprx (/dev_flash/vsh/module)
mpeg.sprx (/dev_flash/pspemu/release)
msgdialog_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
msmw1.sprx (/dev_flash/vsh/module)
msmw1_aaconly.sprx (/dev_flash/vsh/module)
msmw1_atraconly.sprx (/dev_flash/vsh/module)
msmw2.sprx (/dev_flash/vsh/module)
music_2000_2006spring_jpop_art.aad (/dev_flash/data/dic)
musicbrowser_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
musicbrowser_plugin.sprx (/dev_flash/vsh/module)
nas_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
nas_plugin.sprx (/dev_flash/vsh/module)
nega_env00.png (/dev_flash/vsh/resource/photoviewer_plugin)
nega_env01.png (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M01_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M02_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M03_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M04_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M05_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_2.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_2s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_3.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_3s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_M06_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
nega_mask.png (/dev_flash/vsh/resource/photoviewer_plugin)
netconf_plugin.rco (/dev_flash/vsh/resource/hknw_plugin)
netconf_plugin.sprx (/dev_flash/vsh/module)
newstore_effect.rco (/dev_flash/vsh/resource)
newstore_effect.sprx (/dev_flash/vsh/module)
newstore_plugin.rco (/dev_flash/vsh/resource)
newstore_plugin.sprx (/dev_flash/vsh/module)
np.sprx (/dev_flash/pspemu/release)
np_auth.sprx (/dev_flash/pspemu/release)
np_eula_plugin.rco (/dev_flash/vsh/resource)
np_eula_plugin.sprx (/dev_flash/vsh/module)
np_matching_plugin.rco (/dev_flash/vsh/resource)
np_matching_plugin.sprx (/dev_flash/vsh/module)
np_multisignin_plugin.rco (/dev_flash/vsh/resource)
np_multisignin_plugin.sprx (/dev_flash/vsh/module)
np_service.sprx (/dev_flash/pspemu/release)
np_sns_plugin.rco (/dev_flash/vsh/resource)
np_sns_plugin.sprx (/dev_flash/vsh/module)
np_trophy_ingame.rco (/dev_flash/vsh/resource)
np_trophy_ingame.sprx (/dev_flash/vsh/module)
np_trophy_plugin.rco (/dev_flash/vsh/resource)
np_trophy_plugin.sprx (/dev_flash/vsh/module)
np_trophy_util.sprx (/dev_flash/vsh/module)
npsignin_plugin.rco (/dev_flash/vsh/resource)
npsignin_plugin.sprx (/dev_flash/vsh/module)
null.xml (/dev_flash/vsh/resource/explore/xmb)
number_H.png (/dev_flash/vsh/resource/photoviewer_plugin)
number_L.png (/dev_flash/vsh/resource/photoviewer_plugin)
number_M.png (/dev_flash/vsh/resource/photoviewer_plugin)
onicore_child.self (/dev_flash/vsh/module)
osk_plugin.rco (/dev_flash/vsh/resource)
osk_plugin.sprx (/dev_flash/vsh/module)
oskfullkeypanel_plugin.rco (/dev_flash/vsh/resource)
oskfullkeypanel_plugin.sprx (/dev_flash/vsh/module)
oskpanel_plugin.rco (/dev_flash/vsh/resource)
oskpanel_plugin.sprx (/dev_flash/vsh/module)
paf_ext.sprx (/dev_flash/vsh/module)
paf_psjs.sprx (/dev_flash/vsh/module)
paf_web.sprx (/dev_flash/vsh/module)
PageEnter.vag (/dev_flash/vsh/resource/newstore/sound)
PageEnter2.vag (/dev_flash/vsh/resource/newstore/sound)
PageExit.vag (/dev_flash/vsh/resource/newstore/sound)
PageExit2.vag (/dev_flash/vsh/resource/newstore/sound)
parameters.txt (/dev_flash/vsh/resource/hknw_plugin)
parameters.txt (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_01_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_02_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_03_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_04_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_05_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_06_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_07_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pattern_08_05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
pbpcell.properties (/dev_flash/bdplayer/bdjstack)
pbpuiformhp.jar (/dev_flash/bdplayer/bdjstack)
PEmuCoreLib.sprx (/dev_flash/pspemu/release)
pesm_plugin.rco (/dev_flash/vsh/resource)
pesm_plugin.sprx (/dev_flash/vsh/module)
photo.png (/dev_flash/vsh/resource/photoviewer_plugin)
Photo_Default.png (/dev_flash/vsh/resource/avc/image)
photo_envmap.png (/dev_flash/vsh/resource/hknw_plugin)
photo_M01.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M01_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M01_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M02.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M02_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M02_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M03.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M03_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M03_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M04.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M04_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M04_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M05.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M05_s.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_M05_sv.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
photo_network_sharing_plugin.rco (/dev_flash/vsh/resource)
photo_network_sharing_plugin.sprx (/dev_flash/vsh/module)
photo_shadow_1.png (/dev_flash/vsh/resource/hknw_plugin)
photo_shadow_2.png (/dev_flash/vsh/resource/hknw_plugin)
photo_shadow_3.png (/dev_flash/vsh/resource/hknw_plugin)
photo2_env00.png (/dev_flash/vsh/resource/photoviewer_plugin)
photo2_env01.png (/dev_flash/vsh/resource/photoviewer_plugin)
photolist_plugin.rco (/dev_flash/vsh/resource)
photolist_plugin.sprx (/dev_flash/vsh/module)
photoupload_plugin.rco (/dev_flash/vsh/resource)
photoupload_plugin.sprx (/dev_flash/vsh/module)
photoviewer_plugin.rco (/dev_flash/vsh/resource)
photoviewer_plugin.sprx (/dev_flash/vsh/module)
PIC0.png (/dev_flash/vsh/resource/explore/netflix)
PIC1.png (/dev_flash/vsh/resource/explore/netflix)
PIC2.png (/dev_flash/vsh/resource/explore/netflix)
pl.png (/dev_flash/vsh/resource/newstore/texture)
playlist.xml (/dev_flash/vsh/resource/explore/xmb)
playlist_plugin.rco (/dev_flash/vsh/resource)
playlist_plugin.sprx (/dev_flash/vsh/module)
posi_env01.png (/dev_flash/vsh/resource/photoviewer_plugin)
posi_mask.png (/dev_flash/vsh/resource/photoviewer_plugin)
post_nr.sprx (/dev_flash/vsh/module)
poweroff_plugin.rco (/dev_flash/vsh/resource)
poweroff_plugin.sprx (/dev_flash/vsh/module)
premo_game_plugin.sprx (/dev_flash/vsh/module)
premo_plugin.rco (/dev_flash/vsh/resource)
premo_plugin.sprx (/dev_flash/vsh/module)
print_canon_library.sprx (/dev_flash/vsh/module)
print_dlna_library.sprx (/dev_flash/vsh/module)
print_epson_library.sprx (/dev_flash/vsh/module)
print_plugin.rco (/dev_flash/vsh/resource)
print_plugin.sprx (/dev_flash/vsh/module)
profile_plugin.rco (/dev_flash/vsh/resource)
profile_plugin.sprx (/dev_flash/vsh/module)
profile_plugin_mini.rco (/dev_flash/vsh/resource)
projection_mask.png (/dev_flash/vsh/resource/hknw_plugin)
ps1_emu.self (/dev_flash/ps1emu)
ps1_netemu.self (/dev_flash/ps1emu)
ps1_newemu.self (/dev_flash/ps1emu)
ps1_rom.bin (/dev_flash/ps1emu)
ps2_emu.self (/dev_flash/ps2emu)
ps2_gxemu.self (/dev_flash/ps2emu)
ps2_softemu.self (/dev_flash/ps2emu)
ps3_savedata_plugin.rco (/dev_flash/vsh/resource)
ps3_savedata_plugin.sprx (/dev_flash/vsh/module)
ps3_savedata_plugin_game.sprx (/dev_flash/vsh/module)
ps3_savedata_plugin_game_mini.sprx (/dev_flash/vsh/module)
ps3_savedata_plugin_psp.sprx (/dev_flash/vsh/module)
psmf.sprx (/dev_flash/pspemu/release)
psp_emulator.self (/dev_flash/pspemu/)
psp_translator.self (/dev_flash/pspemu/)
pspnet.sprx (/dev_flash/pspemu/release)
pspnet_adhoc.sprx (/dev_flash/pspemu/release)
pspnet_adhoc_auth.sprx (/dev_flash/pspemu/release)
pspnet_adhoc_discover.sprx (/dev_flash/pspemu/release)
pspnet_adhoc_matching.sprx (/dev_flash/pspemu/release)
pspnet_adhocctl.sprx (/dev_flash/pspemu/release)
pspnet_ap_dialog_dummy.sprx (/dev_flash/pspemu/release)
pspnet_apctl.sprx (/dev_flash/pspemu/release)
pspnet_inet.sprx (/dev_flash/pspemu/release)
pspnet_resolver.sprx (/dev_flash/pspemu/release)
qgl_canyon_app.sprx (/dev_flash/vsh/module)
qgl_gaia_app.sprx (/dev_flash/vsh/module)
qglbase.sprx (/dev_flash/vsh/module)
quirk.css (/dev_flash/vsh/resource/silk/etc)
quirk.css (/dev_flash/vsh/resource/silk_nas/etc)
raf.qrc (/dev_flash/vsh/resource/qql)
raf.sprx (/dev_flash/vsh/module)
rec_plugin.rco (/dev_flash/vsh/resource)
rec_plugin.sprx (/dev_flash/vsh/module)
reg_ad.jpg (/dev_flash/vsh/resource/newstore/texture)
reg_bg.png (/dev_flash/vsh/resource/newstore/texture)
reg_sub1.png (/dev_flash/vsh/resource/newstore/texture)
reg_sub2.png (/dev_flash/vsh/resource/newstore/texture)
reg_sub3.png (/dev_flash/vsh/resource/newstore/texture)
regcam_plugin.rco (/dev_flash/vsh/resource)
regcam_plugin.sprx (/dev_flash/vsh/module)
registory.xml (/dev_flash/vsh/resource/explore/xmb)
rhm.qrc (/dev_flash/vsh/resource/qql)
rtc.sprx (/dev_flash/pspemu/release)
sacd.sprx (/dev_flash/vsh/module)
sacd_plugin.rco (/dev_flash/vsh/resource)
sacd_plugin.sprx (/dev_flash/vsh/module)
SacModule.spu.isoself (/dev_flash/vsh/module)
sascore.sprx (/dev_flash/pspemu/release)
savedata_list.xml (/dev_flash/vsh/resource/explore/xmb)
scea.xml (/dev_flash/vsh/resource/silk/bookmark)
scea.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scea_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scee.xml (/dev_flash/vsh/resource/silk/bookmark)
scee.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scee_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
sceh.xml (/dev_flash/vsh/resource/silk/bookmark)
sceh.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
sceh_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scej.xml (/dev_flash/vsh/resource/silk/bookmark)
scej.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scej_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scek.xml (/dev_flash/vsh/resource/silk/bookmark)
scek.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
scek_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
scene_base.ggfz (/dev_flash/vsh/resource/photoviewer_plugin)
scenefolder_plugin.rco (/dev_flash/vsh/resource)
scenefolder_plugin.sprx (/dev_flash/vsh/module)
SCE-PS3-CP-R-KANA.TTF (/dev_flash/data/font)
SCE-PS3-DH-R-CGB.TTF (/dev_flash/data/font)
SCE-PS3-MT-BI-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-MT-B-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-MT-I-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-MT-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-NR-B-JPN.TTF (/dev_flash/data/font)
SCE-PS3-NR-L-JPN.TTF (/dev_flash/data/font)
SCE-PS3-NR-R-EXT.TTF (/dev_flash/data/font)
SCE-PS3-NR-R-JPN.TTF (/dev_flash/data/font)
SCE-PS3-RD-BI-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-B-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-B-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-RD-I-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-LI-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-L-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-L-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-RD-R-LATIN.TTF (/dev_flash/bdplayer/bdjstack)
SCE-PS3-RD-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-RD-R-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-EXT.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-JPN.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-SR-R-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-VR-R-LATIN.TTF (/dev_flash/data/font)
SCE-PS3-VR-R-LATIN2.TTF (/dev_flash/data/font)
SCE-PS3-YG-B-KOR.TTF (/dev_flash/data/font)
SCE-PS3-YG-L-KOR.TTF (/dev_flash/data/font)
SCE-PS3-YG-R-KOR.TTF (/dev_flash/data/font)
sch.xml (/dev_flash/vsh/resource/silk/bookmark)
sch.xml (/dev_flash/vsh/resource/silk_nas/bookmark)
sch_bs.xml (/dev_flash/vsh/resource/silk/bookmark)
screenshot_plugin.rco (/dev_flash/vsh/resource)
screenshot_plugin.sprx (/dev_flash/vsh/module)
search_service.rco (/dev_flash/vsh/resource)
selection_grid.png (/dev_flash/vsh/resource/hknw_plugin)
shadow_nega1.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow_nega2.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow1.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow2.png (/dev_flash/vsh/resource/photoviewer_plugin)
shadow3.png (/dev_flash/vsh/resource/photoviewer_plugin)
silk.sprx (/dev_flash/vsh/module)
silk_nas.sprx (/dev_flash/vsh/module)
silk_npflashplayer.sprx (/dev_flash/vsh/module)
silk_npflashplayer9.sprx (/dev_flash/vsh/module)
simple_music2_decode_plugin.sprx (/dev_flash/vsh/module)
software_update_plugin.rco (/dev_flash/vsh/resource)
software_update_plugin.sprx (/dev_flash/vsh/module)
soundvisualizer_plugin.rco (/dev_flash/vsh/resource)
soundvisualizer_plugin.sprx (/dev_flash/vsh/module)
store.qrc (/dev_flash/vsh/resource/qql)
StoreBoot-L.vag (/dev_flash/vsh/resource/newstore/sound)
StoreBoot-L2.vag (/dev_flash/vsh/resource/newstore/sound)
StoreBoot-R.vag (/dev_flash/vsh/resource/newstore/sound)
StoreBoot-R2.vag (/dev_flash/vsh/resource/newstore/sound)
strviewer_plugin.rco (/dev_flash/vsh/resource)
strviewer_plugin.sprx (/dev_flash/vsh/module)
subdisplay_plugin.rco (/dev_flash/vsh/resource)
sv_pseudoaudioplayer_plugin.rco (/dev_flash/vsh/resource)
swagner.self (/dev_flash/vsh/module)
swreset.self (/dev_flash/vsh/module)
sys_audio.self (/dev_flash/sys/internal)
sys_audio.sprx (/dev_flash/sys/internal)
sys_init_osd.self (/dev_flash/sys/internal)
sysconf_plugin.rco (/dev_flash/vsh/resource)
sysconf_plugin.sprx (/dev_flash/vsh/module)
sysmem.sprx (/dev_flash/pspemu/release)
system_plugin.rco (/dev_flash/vsh/resource)
sysvoice_modules.sprx (/dev_flash/sys/internal)
threadman.sprx (/dev_flash/pspemu/release)
thumthum_plugin.rco (/dev_flash/vsh/resource)
thumthum_plugin.sprx (/dev_flash/vsh/module)
TrendMicroConfig.xml (/dev_flash/vsh/resource/silk/etc)
TrendMicroFilterPolicy.xml (/dev_flash/vsh/resource/silk/etc)
TrendMicroFilterPolicy.xml (/dev_flash/vsh/resource/silk_nas/etc)
umd9660.sprx (/dev_flash/pspemu/release)
umdcache.sprx (/dev_flash/pspemu/release)
umdman.sprx (/dev_flash/pspemu/release)
upload_list.xml (/dev_flash/vsh/resource/explore/xmb)
upload_util.rco (/dev_flash/vsh/resource)
upload_util.sprx (/dev_flash/vsh/module)
user_info_plugin.rco (/dev_flash/vsh/resource)
user_info_plugin.sprx (/dev_flash/vsh/module)
user_plugin.rco (/dev_flash/vsh/resource)
user_plugin.sprx (/dev_flash/vsh/module)
usersystemlib.sprx (/dev_flash/pspemu/release)
vaudio.sprx (/dev_flash/pspemu/release)
version.txt (/dev_flash/vsh/etc)
videodownloader_list.xml (/dev_flash/vsh/resource/explore/xmb)
videodownloader_plugin.rco (/dev_flash/vsh/resource)
videodownloader_plugin.sprx (/dev_flash/vsh/module)
videoeditor_plugin.rco (/dev_flash/vsh/resource)
videoeditor_plugin.sprx (/dev_flash/vsh/module)
videoplayer_plugin.rco (/dev_flash/vsh/resource)
videoplayer_plugin.sprx (/dev_flash/vsh/module)
videoplayer_util.rco (/dev_flash/vsh/resource)
videoplayer_util.sprx (/dev_flash/vsh/module)
VideoStore_thumbnail.png (/dev_flash/vsh/resource/explore/icon)
vmc_savedata_plugin.rco (/dev_flash/vsh/resource)
vmc_savedata_plugin.sprx (/dev_flash/vsh/module)
vmclib.sprx (/dev_flash/vsh/module)
vp_jacket_ezprim.vpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
vp_jacket_ezprim2.vpo (/dev_flash/vsh/resource/hknw_plugin/jacket)
vsh.self (/dev_flash/vsh/module)
vshatdl.sprx (/dev_flash/vsh/module)
vshmain_ext.sprx (/dev_flash/vsh/module)
vshmain_util.sprx (/dev_flash/vsh/module)
wboard_plugin.rco (/dev_flash/vsh/resource)
wboard_plugin.sprx (/dev_flash/vsh/module)
webbrowser_plugin.rco (/dev_flash/vsh/resource)
webbrowser_plugin.sprx (/dev_flash/vsh/module)
webrender_plugin.rco (/dev_flash/vsh/resource)
webrender_plugin.sprx (/dev_flash/vsh/module)
widget.png (/dev_flash/vsh/resource/explore/icon)
wlan.sprx (/dev_flash/pspemu/release)
x3_amgsdk.sprx (/dev_flash/vsh/module)
x3_gntoc.sprx (/dev_flash/vsh/module)
x3_mdimp1.sprx (/dev_flash/vsh/module)
x3_mdimp10.sprx (/dev_flash/vsh/module)
x3_mdimp11.sprx (/dev_flash/vsh/module)
x3_mdimp2.sprx (/dev_flash/vsh/module)
x3_mdimp3.sprx (/dev_flash/vsh/module)
x3_mdimp4.sprx (/dev_flash/vsh/module)
x3_mdimp5.sprx (/dev_flash/vsh/module)
x3_mdimp6.sprx (/dev_flash/vsh/module)
x3_mdimp7.sprx (/dev_flash/vsh/module)
x3_mdimp8.sprx (/dev_flash/vsh/module)
x3_mdimp9.sprx (/dev_flash/vsh/module)
xcbcontentop.sprx (/dev_flash/vsh/module)
xcbplugin1.sprx (/dev_flash/vsh/module)
xmb_ingame.rco (/dev_flash/vsh/resource)
xmb_ingame.sprx (/dev_flash/vsh/module)
xmb_plugin.sprx (/dev_flash/vsh/module)
xmb_plugin_normal.rco (/dev_flash/vsh/resource)
ycon_manual_plugin.rco (/dev_flash/vsh/resource)
ycon_manual_plugin.sprx (/dev_flash/vsh/module)
yourchannels.png (/dev_flash/vsh/resource/explore/icon)
Zi8DatDA.z8d (/dev_flash/data/dic)
Zi8DatDE.z8d (/dev_flash/data/dic)
Zi8DatENAM.z8d (/dev_flash/data/dic)
Zi8DatENUK.z8d (/dev_flash/data/dic)
Zi8DatESEU.z8d (/dev_flash/data/dic)
Zi8DatESSA.z8d (/dev_flash/data/dic)
Zi8DatFI.z8d (/dev_flash/data/dic)
Zi8DatFRCA.z8d (/dev_flash/data/dic)
Zi8DatFREU.z8d (/dev_flash/data/dic)
Zi8DatIT.z8d (/dev_flash/data/dic)
Zi8DatNL.z8d (/dev_flash/data/dic)
Zi8DatNO.z8d (/dev_flash/data/dic)
Zi8DatPL.z8d (/dev_flash/data/dic)
Zi8DatPTBZ.z8d (/dev_flash/data/dic)
Zi8DatPTEU.z8d (/dev_flash/data/dic)
Zi8DatRU.z8d (/dev_flash/data/dic)
Zi8DatSV.z8d (/dev_flash/data/dic)
Zi8DatZH.z8d (/dev_flash/data/dic)
Zi8DatZH_HK.z8d (/dev_flash/data/dic)
Zi8DatZH_TW.z8d (/dev_flash/data/dic)
Zi8URLOEM.dat (/dev_flash/data/dic)



dev_flash content 3.55 Tool/DECR


\PS3DECRUpdateData.355.001d\dev_flash
27-08-2011  20:56    <DIR>          data
27-08-2011  20:58                 0 dir.txt
27-08-2011  20:56    <DIR>          sys
27-08-2011  20:55    <DIR>          vsh
               1 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\data
27-08-2011  20:56    <DIR>          cert
27-08-2011  20:56    <DIR>          dic
27-08-2011  20:56    <DIR>          font
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\data\cert
29-11-2010  03:34             1.387 CA01.cer
29-11-2010  03:34             1.387 CA02.cer
29-11-2010  03:34             1.387 CA03.cer
29-11-2010  03:34             1.387 CA04.cer
29-11-2010  03:34             1.387 CA05.cer
29-11-2010  03:34             1.282 CA06.cer
29-11-2010  03:34             1.122 CA07.cer
29-11-2010  03:34             1.508 CA08.cer
29-11-2010  03:34               854 CA09.cer
29-11-2010  03:34             1.126 CA10.cer
29-11-2010  03:34             1.504 CA11.cer
29-11-2010  03:34               848 CA12.cer
29-11-2010  03:34             1.122 CA13.cer
29-11-2010  03:34             1.508 CA14.cer
29-11-2010  03:34               848 CA15.cer
29-11-2010  03:34             1.122 CA16.cer
29-11-2010  03:34             1.508 CA17.cer
29-11-2010  03:34             1.768 CA18.cer
29-11-2010  03:34             1.162 CA19.cer
29-11-2010  03:34               948 CA20.cer
29-11-2010  03:34             1.236 CA21.cer
29-11-2010  03:34             1.282 CA22.cer
29-11-2010  03:34               890 CA23.cer
29-11-2010  03:34               758 CA24.cer
29-11-2010  03:34             1.066 CA25.cer
29-11-2010  03:34             1.233 CA26.cer
29-11-2010  03:34               840 CA27.cer
29-11-2010  03:34             1.174 CA28.cer
29-11-2010  03:34             1.146 CA29.cer
29-11-2010  03:34             1.084 CA30.cer
29-11-2010  03:34             1.402 CA31.cer
29-11-2010  03:34             1.517 CA32.cer
29-11-2010  03:34             1.521 CA33.cer
29-11-2010  03:34             1.606 CA34.cer
29-11-2010  03:34               964 CA35.cer
29-11-2010  03:34             1.760 CA36.cer
              36 file(s)           44.644 bytes

\PS3DECRUpdateData.355.001d\dev_flash\data\dic
29-11-2010  03:34               121 aadList.dat
29-11-2010  03:34         1.572.104 apotp.dic
29-11-2010  03:34         2.051.885 atokp.dic
29-11-2010  03:34            18.164 entertainment_haiyu_nihon.aad
29-11-2010  03:34            18.731 entertainment_owarai_TV_talent.aad
29-11-2010  03:34            13.808 face_facemark_i.aad
29-11-2010  03:34            12.194 music_2000_2006spring_jpop_art.aad
29-11-2010  03:34           160.176 Zi8DatDA.z8d
29-11-2010  03:34           107.332 Zi8DatDE.z8d
29-11-2010  03:34            86.120 Zi8DatENAM.z8d
29-11-2010  03:34            95.012 Zi8DatENUK.z8d
29-11-2010  03:34           112.068 Zi8DatESEU.z8d
29-11-2010  03:34           109.988 Zi8DatESSA.z8d
29-11-2010  03:34           117.512 Zi8DatFI.z8d
29-11-2010  03:34            75.976 Zi8DatFRCA.z8d
29-11-2010  03:34            79.836 Zi8DatFREU.z8d
29-11-2010  03:34           105.632 Zi8DatIT.z8d
29-11-2010  03:34           105.436 Zi8DatNL.z8d
29-11-2010  03:34           116.748 Zi8DatNO.z8d
29-11-2010  03:34           196.200 Zi8DatPL.z8d
29-11-2010  03:34            95.444 Zi8DatPTBZ.z8d
29-11-2010  03:34           142.888 Zi8DatPTEU.z8d
29-11-2010  03:34           111.564 Zi8DatRU.z8d
29-11-2010  03:34            93.620 Zi8DatSV.z8d
29-11-2010  03:34           627.796 Zi8DatZH.z8d
29-11-2010  03:34           590.216 Zi8DatZH_HK.z8d
29-11-2010  03:34           503.272 Zi8DatZH_TW.z8d
29-11-2010  03:34             4.368 Zi8URLOEM.dat
              28 file(s)        7.324.211 bytes

\PS3DECRUpdateData.355.001d\dev_flash\data\font
29-11-2010  07:32            62.076 SCE-PS3-CP-R-KANA.TTF
29-11-2010  07:32         8.226.948 SCE-PS3-DH-R-CGB.TTF
29-11-2010  07:32            74.116 SCE-PS3-MT-B-LATIN.TTF
29-11-2010  07:32            78.120 SCE-PS3-MT-BI-LATIN.TTF
29-11-2010  07:32            78.808 SCE-PS3-MT-I-LATIN.TTF
29-11-2010  07:32            73.772 SCE-PS3-MT-R-LATIN.TTF
29-11-2010  07:32         2.987.812 SCE-PS3-NR-B-JPN.TTF
29-11-2010  07:32         3.083.956 SCE-PS3-NR-L-JPN.TTF
29-11-2010  07:32           279.480 SCE-PS3-NR-R-EXT.TTF
29-11-2010  07:32         3.103.800 SCE-PS3-NR-R-JPN.TTF
29-11-2010  07:32            37.936 SCE-PS3-RD-B-LATIN.TTF
29-11-2010  07:32            54.056 SCE-PS3-RD-B-LATIN2.TTF
29-11-2010  07:32            40.064 SCE-PS3-RD-BI-LATIN.TTF
29-11-2010  07:32            40.612 SCE-PS3-RD-I-LATIN.TTF
29-11-2010  07:32            38.676 SCE-PS3-RD-L-LATIN.TTF
29-11-2010  07:32            55.292 SCE-PS3-RD-L-LATIN2.TTF
29-11-2010  07:32            41.016 SCE-PS3-RD-LI-LATIN.TTF
29-11-2010  07:32            38.388 SCE-PS3-RD-R-LATIN.TTF
29-11-2010  07:32            54.908 SCE-PS3-RD-R-LATIN2.TTF
29-11-2010  07:32           275.536 SCE-PS3-SR-R-EXT.TTF
29-11-2010  07:32         4.667.404 SCE-PS3-SR-R-JPN.TTF
29-11-2010  07:32            53.680 SCE-PS3-SR-R-LATIN.TTF
29-11-2010  07:32            77.544 SCE-PS3-SR-R-LATIN2.TTF
29-11-2010  07:32            66.372 SCE-PS3-VR-R-LATIN.TTF
29-11-2010  07:32           137.392 SCE-PS3-VR-R-LATIN2.TTF
29-11-2010  07:32           495.304 SCE-PS3-YG-B-KOR.TTF
29-11-2010  07:32           495.464 SCE-PS3-YG-L-KOR.TTF
29-11-2010  07:32           497.448 SCE-PS3-YG-R-KOR.TTF
              28 file(s)       25.215.980 bytes

\PS3DECRUpdateData.355.001d\dev_flash\sys
27-08-2011  20:57    <DIR>          external
27-08-2011  20:57    <DIR>          internal
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\sys\external
29-11-2010  07:12            90.564 daisy_ppu_typeinfo.elf
29-11-2010  03:34            35.131 flashATRAC.pic
29-11-2010  03:34            69.695 flashMP3.pic
29-11-2010  08:18           180.236 libaacenc.sprx
29-11-2010  08:18           185.179 libaacenc_spurs.sprx
29-11-2010  08:18            90.763 libac3dec.sprx
29-11-2010  08:18            91.822 libac3dec2.sprx
29-11-2010  08:17            35.448 libadec.sprx
29-11-2010  08:18            34.328 libadec2.sprx
29-11-2010  08:18            35.448 libadec_internal.sprx
29-11-2010  08:18            11.206 libad_async.sprx
29-11-2010  08:18             4.771 libad_billboard_util.sprx
29-11-2010  08:18            66.568 libad_core.sprx
29-11-2010  08:18            85.113 libapostsrc_mini.sprx
29-11-2010  08:18            39.166 libasfparser2_astd.sprx
29-11-2010  08:18            28.564 libat3dec.sprx
29-11-2010  08:18            11.194 libatrac3plus.sprx
29-11-2010  08:18            98.006 libatxdec.sprx
29-11-2010  08:18           100.041 libatxdec2.sprx
29-11-2010  08:17            15.346 libaudio.sprx
29-11-2010  08:18         1.013.153 libavcdec.sprx
29-11-2010  08:18         1.191.120 libavcenc.sprx
29-11-2010  08:18           973.162 libavcenc_small.sprx
29-11-2010  08:18            66.601 libavchatjpgdec.sprx
29-11-2010  08:18             9.335 libcamera.sprx
29-11-2010  08:18            32.655 libcelp8dec.sprx
29-11-2010  08:18            61.867 libcelp8enc.sprx
29-11-2010  08:18            35.488 libcelpdec.sprx
29-11-2010  08:18            66.403 libcelpenc.sprx
29-11-2010  08:05           183.589 libda.sprx
29-11-2010  08:18           188.236 libddpdec.sprx
29-11-2010  08:18           205.421 libdivxdec.sprx
29-11-2010  08:17             7.289 libdmux.sprx
29-11-2010  08:18            34.314 libdmuxpamf.sprx
29-11-2010  08:18            16.526 libfiber.sprx
29-11-2010  08:17            37.100 libfont.sprx
29-11-2010  08:17            23.789 libfontFT.sprx
29-11-2010  08:18           276.067 libfreetype.sprx
29-11-2010  08:18           133.844 libfreetypeTT.sprx
29-11-2010  08:18            34.095 libfs.sprx
29-11-2010  08:18            20.930 libfs_155.sprx
29-11-2010  08:06            35.094 libgcm_sys.sprx
29-11-2010  08:05            86.670 libgcm_sys_deh.sprx
29-11-2010  08:18           281.039 libgem.sprx
29-11-2010  08:17            33.312 libgifdec.sprx
29-11-2010  08:17           126.734 libhttp.sprx
29-11-2010  08:18            23.554 libio.sprx
29-11-2010  08:17           199.818 libjpgdec.sprx
29-11-2010  08:18           153.219 libjpgenc.sprx
29-11-2010  08:18            10.560 libkey2char.sprx
29-11-2010  08:18           165.560 libl10n.sprx
29-11-2010  08:18            44.228 liblv2.sprx
29-11-2010  08:05            73.745 liblv2coredump.sprx
29-11-2010  08:18             3.100 liblv2dbg_for_cex.sprx
29-11-2010  08:12             9.724 liblv2dbg_for_dex.sprx
29-11-2010  08:18            63.511 libm2bcdec.sprx
29-11-2010  08:18           314.189 libm4aacdec.sprx
29-11-2010  08:18           311.255 libm4aacdec2ch.sprx
29-11-2010  08:18           108.486 libm4hdenc.sprx
29-11-2010  08:18           412.268 libm4venc.sprx
29-11-2010  08:18            37.513 libmedi.sprx
29-11-2010  08:18            10.326 libmic.sprx
29-11-2010  08:18            90.512 libmp3dec.sprx
29-11-2010  08:18           159.873 libmp4.sprx
29-11-2010  08:18            59.541 libmpl1dec.sprx
29-11-2010  08:17            75.065 libnet.sprx
29-11-2010  08:18            15.522 libnetctl.sprx
29-11-2010  08:18            11.457 libpamf.sprx
29-11-2010  08:17           171.710 libpngdec.sprx
29-11-2010  08:17           157.792 libpngenc.sprx
29-11-2010  08:05             7.459 libprof.sprx
29-11-2010  08:18            26.430 libresc.sprx
29-11-2010  08:17            11.358 librtc.sprx
29-11-2010  08:18            82.547 librudp.sprx
29-11-2010  08:18            83.892 libsail.sprx
29-11-2010  08:18            24.460 libsail_avi.sprx
29-11-2010  08:18           259.902 libsail_rec.sprx
29-11-2010  08:18           707.081 libsjvtd.sprx
29-11-2010  08:18           179.343 libsmvd2.sprx
29-11-2010  08:18           137.974 libsmvd4.sprx
29-11-2010  08:18            40.952 libspurs_jq.sprx
29-11-2010  08:18           113.882 libsre.sprx
29-11-2010  08:17           180.259 libssl.sprx
29-11-2010  08:18            16.363 libsync2.sprx
29-11-2010  08:18            19.549 libsysmodule.sprx
29-11-2010  08:18            66.515 libsysutil.sprx
29-11-2010  08:18             4.335 libsysutil_ap.sprx
29-11-2010  08:18             4.735 libsysutil_authdialog.sprx
29-11-2010  08:18            14.002 libsysutil_avc2.sprx
29-11-2010  08:18             9.402 libsysutil_avconf_ext.sprx
29-11-2010  08:18             9.992 libsysutil_avc_ext.sprx
29-11-2010  08:18             4.766 libsysutil_bgdl.sprx
29-11-2010  08:18            11.213 libsysutil_dtcp_ip.sprx
29-11-2010  08:18             9.816 libsysutil_game.sprx
29-11-2010  08:18             6.996 libsysutil_game_exec.sprx
29-11-2010  08:18            10.212 libsysutil_imejp.sprx
29-11-2010  08:18             2.825 libsysutil_misc.sprx
29-11-2010  08:18             8.261 libsysutil_music.sprx
29-11-2010  08:18             9.881 libsysutil_music_decode.sprx
29-11-2010  08:18             5.866 libsysutil_music_export.sprx
29-11-2010  08:18            79.708 libsysutil_np.sprx
29-11-2010  08:18            41.049 libsysutil_np2.sprx
29-11-2010  08:18            50.348 libsysutil_np_clans.sprx
29-11-2010  08:18            31.085 libsysutil_np_commerce2.sprx
29-11-2010  08:18             5.195 libsysutil_np_eula.sprx
29-11-2010  08:18             4.190 libsysutil_np_installer.sprx
29-11-2010  08:18             9.087 libsysutil_np_sns.sprx
29-11-2010  08:18            16.132 libsysutil_np_trophy.sprx
29-11-2010  08:18            18.045 libsysutil_np_tus.sprx
29-11-2010  08:18             4.265 libsysutil_np_util.sprx
29-11-2010  08:18             9.031 libsysutil_oskdialog_ext.sprx
29-11-2010  08:18            12.690 libsysutil_pesm.sprx
29-11-2010  08:18             5.516 libsysutil_photo_decode.sprx
29-11-2010  08:18             6.092 libsysutil_photo_export.sprx
29-11-2010  08:18             5.503 libsysutil_photo_import.sprx
29-11-2010  08:18             6.757 libsysutil_photo_network_sharing.sprx
29-11-2010  08:18             7.132 libsysutil_print.sprx
29-11-2010  08:18             8.915 libsysutil_rec.sprx
29-11-2010  08:18             5.922 libsysutil_remoteplay.sprx
29-11-2010  08:18             5.070 libsysutil_rtcalarm.sprx
29-11-2010  08:18            10.549 libsysutil_savedata.sprx
29-11-2010  08:18            15.796 libsysutil_savedata_psp.sprx
29-11-2010  08:18             4.931 libsysutil_screenshot.sprx
29-11-2010  08:18             8.836 libsysutil_search.sprx
29-11-2010  08:18             5.460 libsysutil_storagedata.sprx
29-11-2010  08:18             7.858 libsysutil_subdisplay.sprx
29-11-2010  08:18             5.511 libsysutil_syschat.sprx
29-11-2010  08:18             3.775 libsysutil_sysconf_ext.sprx
29-11-2010  08:18             6.819 libsysutil_userinfo.sprx
29-11-2010  08:18             5.920 libsysutil_video_export.sprx
29-11-2010  08:18            14.280 libsysutil_video_player.sprx
29-11-2010  08:18             5.580 libsysutil_video_upload.sprx
29-11-2010  08:18            18.078 libusbd.sprx
29-11-2010  08:18            17.043 libusbpspcm.sprx
29-11-2010  08:17           112.580 libvdec.sprx
29-11-2010  08:18             8.738 libvoice.sprx
29-11-2010  08:17           243.539 libvpost.sprx
29-11-2010  08:17           241.384 libvpost2.sprx
29-11-2010  08:18            85.109 libwmadec.sprx
29-11-2010  07:12           100.672 spurs_jm1.elf
29-11-2010  07:12            95.139 spurs_jm2.elf
29-11-2010  07:12           209.271 spurs_jq.elf
29-11-2010  07:12            18.490 spurs_kernel.elf
29-11-2010  07:12            19.101 spurs_kernel2.elf
29-11-2010  07:12           111.136 spurs_ppu_typeinfo.elf
29-11-2010  07:12            66.406 spurs_ss.elf
29-11-2010  07:12            59.041 spurs_tm.elf
             147 file(s)       13.067.992 bytes

\PS3DECRUpdateData.355.001d\dev_flash\sys\internal
29-11-2010  03:34           462.740 eurus_fw.bin
29-11-2010  08:17           165.341 libapostsrc.sprx
29-11-2010  08:17            31.639 libasfparser.sprx
29-11-2010  08:17            58.152 libasfparser2.sprx
29-11-2010  08:17            36.650 libat3enc.sprx
29-11-2010  08:17            39.889 libat3enc_spurs.sprx
29-11-2010  08:17           100.205 libatxdecmod.sprx
29-11-2010  08:17           158.086 libatxenc.sprx
29-11-2010  08:17            34.532 libddlenc2.sprx
29-11-2010  08:17           188.236 libddpdec.sprx
29-11-2010  08:17            85.730 libdivx311dec.sprx
29-11-2010  08:17            34.244 libdsee.sprx
29-11-2010  08:17           194.601 libdtsdec.sprx
29-11-2010  08:17            73.769 libdtsenc2.sprx
29-11-2010  08:17           237.543 libdtshdcoredec.sprx
29-11-2010  08:17           739.070 libdtshddec.sprx
29-11-2010  08:17           144.586 libdtslbrdec.sprx
29-11-2010  08:17            77.974 libexif.sprx
29-11-2010  08:17            95.959 libfs_utility.sprx
29-11-2010  08:17            17.212 libfs_utility2.sprx
29-11-2010  08:17            30.585 libfs_utility_full.sprx
29-11-2010  08:17            74.292 libfs_utility_init.sprx
29-11-2010  08:17           114.917 libft2d.sprx
29-11-2010  08:04            74.397 libgcm_osd_deh.sprx
29-11-2010  08:17           310.172 libm2aacdec.sprx
29-11-2010  08:17           102.300 libm4aacdec2chmod.sprx
29-11-2010  08:17           104.993 libm4aacdec2chmod2.sprx
29-11-2010  08:17            13.453 libmcadpt.sprx
29-11-2010  08:17           169.922 libmp3enc.sprx
29-11-2010  08:17           187.690 libmp3sdec.sprx
29-11-2010  08:17         1.051.934 libmvcdec.sprx
29-11-2010  08:17           474.665 libsvc1d.sprx
29-11-2010  08:17             3.714 libsysutil_game_ps1emu.sprx
29-11-2010  08:17             4.637 libsysutil_sysconf_ps1emu.sprx
29-11-2010  08:17           225.641 libtiffdec.sprx
29-11-2010  08:17            90.106 libtrhddec.sprx
29-11-2010  08:17             8.353 libvoice_internal.sprx
29-11-2010  08:17           243.572 libvpost.sprx
29-11-2010  08:17            85.109 libwmadec.sprx
29-11-2010  08:17           178.867 sysvoice_modules.sprx
29-11-2010  08:06           234.256 sys_agent.self
29-11-2010  08:19           417.528 sys_audio.self
29-11-2010  08:17           389.491 sys_audio.sprx
29-11-2010  08:19           112.024 sys_init_osd.self
29-11-2010  08:06           270.072 sys_tsma.self
              45 file(s)        7.948.848 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh
27-08-2011  20:56    <DIR>          etc
27-08-2011  20:56    <DIR>          module
27-08-2011  20:55    <DIR>          resource
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\etc
29-11-2010  05:59               528 index.dat
29-11-2010  03:34               489 layout_factor_table_1080.txt
29-11-2010  03:34               467 layout_factor_table_272.txt
29-11-2010  03:34               468 layout_factor_table_480.txt
29-11-2010  03:34               502 layout_factor_table_720.txt
29-11-2010  03:34            16.206 layout_grid_table_1080.txt
29-11-2010  03:34            15.228 layout_grid_table_272.txt
29-11-2010  03:34            15.182 layout_grid_table_480.txt
29-11-2010  03:34            15.688 layout_grid_table_720.txt
27-08-2011  20:56    <DIR>          print
29-11-2010  05:59               482 version.txt
              10 file(s)           65.240 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\etc\print
29-11-2010  03:34            29.012 epson.pmd
               1 file(s)           29.012 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\module
29-11-2010  08:15             8.227 ap_plugin.sprx
29-11-2010  08:15           264.931 audioplayer_plugin.sprx
29-11-2010  08:16            22.026 audioplayer_plugin_dummy.sprx
29-11-2010  08:16           153.125 audioplayer_plugin_mini.sprx
29-11-2010  08:14            29.434 auth_plugin.sprx
29-11-2010  08:17           168.535 autodownload_plugin.sprx
29-11-2010  08:15           193.511 avc2_game_plugin.sprx
29-11-2010  08:16           227.059 avc2_game_video_plugin.sprx
29-11-2010  08:16           272.656 avc2_text_plugin.sprx
29-11-2010  08:14         1.151.056 avc_plugin.sprx
29-11-2010  08:15           182.543 avc_util.sprx
29-11-2010  08:15           194.130 basic_plugins.sprx
29-11-2010  08:14            20.508 category_setting_plugin.sprx
29-11-2010  08:10           179.152 checker_plugin.sprx
29-11-2010  08:14           331.716 custom_render_plugin.sprx
29-11-2010  08:15            47.871 data_copy_plugin.sprx
29-11-2010  08:15           110.359 deviceconf_plugin.sprx
29-11-2010  08:16            29.253 divxdrm.sprx
29-11-2010  08:15            20.104 dlna_plugin.sprx
29-11-2010  08:14           175.786 download_plugin.sprx
29-11-2010  08:17            32.780 dtcpip_util.sprx
29-11-2010  08:15            24.511 esehttp.sprx
29-11-2010  08:16             2.995 eseibrd.sprx
29-11-2010  08:15             4.006 eseidle.sprx
29-11-2010  08:15             2.995 eselock.sprx
29-11-2010  08:14            45.186 eula_cddb_plugin.sprx
29-11-2010  08:17            78.432 eula_hcopy_plugin.sprx
29-11-2010  08:17           662.473 eula_net_plugin.sprx
29-11-2010  08:16           529.092 explore_category_friend.sprx
29-11-2010  08:16           521.547 explore_category_game.sprx
29-11-2010  08:16           564.873 explore_category_music.sprx
29-11-2010  08:16           455.527 explore_category_network.sprx
29-11-2010  08:16           504.364 explore_category_photo.sprx
29-11-2010  08:16           421.237 explore_category_psn.sprx
29-11-2010  08:16           267.400 explore_category_sysconf.sprx
29-11-2010  08:16           435.294 explore_category_tv.sprx
29-11-2010  08:16           297.877 explore_category_user.sprx
29-11-2010  08:16           621.932 explore_category_video.sprx
29-11-2010  08:14         1.403.438 explore_plugin.sprx
29-11-2010  08:16           305.279 explore_plugin_ft.sprx
29-11-2010  08:15           294.765 explore_plugin_game.sprx
29-11-2010  08:15           347.149 explore_plugin_np.sprx
29-11-2010  08:16         2.504.225 faust_widget.sprx
29-11-2010  08:16            73.872 filecopy_plugin.sprx
29-11-2010  08:14           235.771 friendim_plugin.sprx
29-11-2010  08:16            62.845 friendml_plugin.sprx
29-11-2010  08:16           239.733 friendtrophy_plugin.sprx
29-11-2010  08:14            16.693 gamedata_plugin.sprx
29-11-2010  08:15             5.519 gamelib_plugin.sprx
29-11-2010  08:15            12.330 gameupdate_plugin.sprx
29-11-2010  08:15           152.583 game_ext_plugin.sprx
29-11-2010  08:15            13.830 game_indicator_plugin.sprx
29-11-2010  08:16         1.846.142 hknw_plugin.sprx
29-11-2010  08:16             6.194 idle_plugin.sprx
29-11-2010  08:14           125.309 ime.sprx
29-11-2010  08:15           155.039 ime_atok.sprx
29-11-2010  08:15           105.783 ime_zi.sprx
29-11-2010  08:16            15.903 kensaku_plugin.sprx
29-11-2010  08:16           170.916 libvideoSubsystem.sprx
29-11-2010  03:33           383.568 mcore.self
29-11-2010  03:33           110.304 mgvideo.self
29-11-2010  08:14             4.940 micon_lock_plugin.sprx
29-11-2010  08:14           359.277 mms.sprx
29-11-2010  08:16           210.177 mms_cls.sprx
29-11-2010  08:16            23.781 mms_db_full.sprx
29-11-2010  08:16            49.567 mms_ext_full.sprx
29-11-2010  08:16            29.489 mms_ext_mini.sprx
29-11-2010  08:15            67.618 mms_maintenance.sprx
29-11-2010  08:16            14.317 mms_minimdimp_avi.sprx
29-11-2010  08:16            13.276 mms_minimdimp_dir_gamehdd.sprx
29-11-2010  08:16            13.436 mms_minimdimp_dir_npachive.sprx
29-11-2010  08:16            11.059 mms_minimdimp_dir_ps3savedata.sprx
29-11-2010  08:16            20.437 mms_minimdimp_jpeg.sprx
29-11-2010  08:16            24.347 mms_minimdimp_media_bdvd.sprx
29-11-2010  08:16            11.454 mms_minimdimp_media_cdda.sprx
29-11-2010  08:16             4.477 mms_minimdimp_media_cdrom.sprx
29-11-2010  08:16            22.952 mms_minimdimp_media_gamedisc.sprx
29-11-2010  08:16             3.917 mms_minimdimp_media_hdd.sprx
29-11-2010  08:16             7.590 mms_minimdimp_media_sacd.sprx
29-11-2010  08:16             5.932 mms_minimdimp_media_usbmass.sprx
29-11-2010  08:16            19.097 mms_minimdimp_mp3.sprx
29-11-2010  08:16            28.351 mms_minimdimp_mp4aac.sprx
29-11-2010  08:16            22.889 mms_minimdimp_mp4video.sprx
29-11-2010  08:16            56.949 mms_minimdimp_mpeg.sprx
29-11-2010  08:16            18.161 mms_minimdimp_msv.sprx
29-11-2010  08:16             3.188 mms_minimdimp_music_default.sprx
29-11-2010  08:16             3.157 mms_minimdimp_photo_default.sprx
29-11-2010  08:16            11.461 mms_minimdimp_png.sprx
29-11-2010  08:16             8.418 mms_minimdimp_riff.sprx
29-11-2010  08:16            13.820 mms_minimdimp_video_default.sprx
29-11-2010  08:15            10.788 mms_schema.sprx
29-11-2010  08:14           190.813 msmw1.sprx
29-11-2010  08:16            52.654 msmw1_aaconly.sprx
29-11-2010  08:16            45.871 msmw1_atraconly.sprx
29-11-2010  08:14           536.453 msmw2.sprx
29-11-2010  08:15            29.192 musicbrowser_plugin.sprx
29-11-2010  08:15           184.999 nas_plugin.sprx
29-11-2010  08:15           138.758 netconf_plugin.sprx
29-11-2010  08:16           179.912 newstore_effect.sprx
29-11-2010  08:16           589.157 newstore_plugin.sprx
29-11-2010  08:15            53.520 npsignin_plugin.sprx
29-11-2010  08:16            49.417 np_eula_plugin.sprx
29-11-2010  08:15             9.082 np_matching_plugin.sprx
29-11-2010  08:16            32.096 np_multisignin_plugin.sprx
29-11-2010  08:17            73.023 np_sns_plugin.sprx
29-11-2010  08:16            26.053 np_trophy_ingame.sprx
29-11-2010  08:15           204.675 np_trophy_plugin.sprx
29-11-2010  08:15           194.315 np_trophy_util.sprx
29-11-2010  03:33            89.568 onicore_child.self
29-11-2010  08:15            96.972 oskfullkeypanel_plugin.sprx
29-11-2010  08:15           121.200 oskpanel_plugin.sprx
29-11-2010  08:15            62.560 osk_plugin.sprx
29-11-2010  08:15           150.399 paf_ext.sprx
29-11-2010  08:16            95.543 paf_psjs.sprx
29-11-2010  08:15            81.348 paf_web.sprx
29-11-2010  08:17            13.880 pesm_plugin.sprx
29-11-2010  08:15            21.663 photolist_plugin.sprx
29-11-2010  08:16           224.307 photoupload_plugin.sprx
29-11-2010  08:15           830.473 photoviewer_plugin.sprx
29-11-2010  08:17            59.683 photo_network_sharing_plugin.sprx
29-11-2010  08:15            69.286 playlist_plugin.sprx
29-11-2010  08:15            66.970 post_nr.sprx
29-11-2010  08:16            27.609 poweroff_plugin.sprx
29-11-2010  08:15           109.914 premo_game_plugin.sprx
29-11-2010  08:15           102.365 premo_plugin.sprx
29-11-2010  08:15           596.064 print_canon_library.sprx
29-11-2010  08:15            60.652 print_dlna_library.sprx
29-11-2010  08:15            89.465 print_epson_library.sprx
29-11-2010  08:15           145.475 print_plugin.sprx
29-11-2010  08:16           226.831 profile_plugin.sprx
29-11-2010  08:15            85.667 ps3_savedata_plugin.sprx
29-11-2010  08:15           127.653 ps3_savedata_plugin_game.sprx
29-11-2010  08:16            65.002 ps3_savedata_plugin_game_mini.sprx
29-11-2010  08:15           102.151 ps3_savedata_plugin_psp.sprx
29-11-2010  08:15           216.062 qglbase.sprx
29-11-2010  08:15            92.857 qgl_canyon_app.sprx
29-11-2010  08:15           366.173 qgl_gaia_app.sprx
29-11-2010  08:16           220.063 raf.sprx
29-11-2010  08:15           249.738 rec_plugin.sprx
29-11-2010  08:16           659.675 regcam_plugin.sprx
29-11-2010  08:15            23.627 sacd.sprx
29-11-2010  08:16            67.395 scenefolder_plugin.sprx
29-11-2010  08:16            18.955 screenshot_plugin.sprx
29-11-2010  08:15         3.434.575 silk.sprx
29-11-2010  08:16         3.443.775 silk_nas.sprx
29-11-2010  08:15           841.040 silk_npflashplayer.sprx
29-11-2010  08:15         2.430.994 silk_npflashplayer9.sprx
29-11-2010  08:19           216.839 software_update_plugin.sprx
29-11-2010  08:15            12.199 soundvisualizer_plugin.sprx
29-11-2010  03:33           437.208 swagner.self
29-11-2010  03:33            76.904 swreset.self
29-11-2010  08:15           893.754 sysconf_plugin.sprx
29-11-2010  08:15            41.288 thumthum_plugin.sprx
29-11-2010  08:16            24.869 upload_util.sprx
29-11-2010  08:15            13.186 user_info_plugin.sprx
29-11-2010  08:15            18.837 user_plugin.sprx
29-11-2010  08:15            79.055 videodownloader_plugin.sprx
29-11-2010  08:16         2.765.758 videoeditor_plugin.sprx
29-11-2010  08:15         1.590.151 videoplayer_plugin.sprx
29-11-2010  08:17         1.536.693 videoplayer_util.sprx
29-11-2010  08:15            56.469 vmclib.sprx
29-11-2010  08:15           150.601 vmc_savedata_plugin.sprx
29-11-2010  08:19         3.137.768 vsh.self
29-11-2010  08:17             3.636 vshatdl.sprx
29-11-2010  08:15            38.966 vshmain_ext.sprx
29-11-2010  08:15             8.838 vshmain_util.sprx
29-11-2010  08:16            49.955 wboard_plugin.sprx
29-11-2010  08:15           481.094 webbrowser_plugin.sprx
29-11-2010  08:16           477.214 webrender_plugin.sprx
29-11-2010  08:15            33.230 x3_amgsdk.sprx
29-11-2010  08:15            27.330 x3_gntoc.sprx
29-11-2010  08:15            48.242 x3_mdimp1.sprx
29-11-2010  08:15           542.886 x3_mdimp10.sprx
29-11-2010  08:15            15.922 x3_mdimp11.sprx
29-11-2010  08:15            31.089 x3_mdimp2.sprx
29-11-2010  08:15            66.862 x3_mdimp3.sprx
29-11-2010  08:15            50.209 x3_mdimp4.sprx
29-11-2010  08:15            46.197 x3_mdimp5.sprx
29-11-2010  08:15           248.050 x3_mdimp6.sprx
29-11-2010  08:15           133.899 x3_mdimp7.sprx
29-11-2010  08:15            13.851 x3_mdimp8.sprx
29-11-2010  08:15           114.481 x3_mdimp9.sprx
29-11-2010  08:16            25.843 xcbcontentop.sprx
29-11-2010  08:15         1.030.082 xcbplugin1.sprx
29-11-2010  08:16            60.322 xmb_ingame.sprx
29-11-2010  08:15            71.927 xmb_plugin.sprx
29-11-2010  08:17             8.744 ycon_manual_plugin.sprx
             187 file(s)       51.994.082 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource
27-08-2011  20:54    <DIR>          AAA
29-11-2010  03:34               372 ap_plugin.rco
29-11-2010  03:34           286.624 audioplayer_plugin.rco
29-11-2010  03:34            99.076 audioplayer_plugin_dummy.rco
29-11-2010  03:34            99.272 audioplayer_plugin_mini.rco
29-11-2010  03:34            99.268 audioplayer_plugin_util.rco
29-11-2010  03:34             8.688 auth_plugin.rco
29-11-2010  03:34            20.400 autodownload_plugin.rco
27-08-2011  20:54    <DIR>          avc
29-11-2010  03:34             4.520 avc2_game_plugin.rco
29-11-2010  03:34             6.228 avc2_game_video_plugin.rco
29-11-2010  03:34           234.096 avc2_text_plugin.rco
29-11-2010  03:34             6.424 avc_game_plugin.rco
29-11-2010  03:34           192.132 avc_plugin.rco
29-11-2010  03:34           414.528 bdp_plugin.rco
29-11-2010  03:34            71.596 category_setting_plugin.rco
29-11-2010  03:34               356 checker_plugin.rco
29-11-2010  03:34            51.446 coldboot.raf
29-11-2010  03:34           801.280 coldboot_multi.ac3
29-11-2010  03:34           801.280 coldboot_stereo.ac3
29-11-2010  03:34            11.988 custom_render_plugin.rco
29-11-2010  03:34            16.068 data_copy_plugin.rco
29-11-2010  03:34           102.024 deviceconf_plugin.rco
29-11-2010  03:34            19.712 dlna_plugin.rco
29-11-2010  03:34           288.892 download_plugin.rco
29-11-2010  03:34             2.792 dtcpip_util.rco
29-11-2010  03:34           343.684 eula_cddb_plugin.rco
29-11-2010  03:34            53.544 eula_hcopy_plugin.rco
29-11-2010  03:34         1.222.824 eula_net_plugin.rco
27-08-2011  20:55    <DIR>          explore
29-11-2010  03:34           140.608 explore_category_friend.rco
29-11-2010  03:34           344.520 explore_category_game.rco
29-11-2010  03:34           229.920 explore_category_music.rco
29-11-2010  03:34           176.768 explore_category_network.rco
29-11-2010  03:34           173.952 explore_category_photo.rco
29-11-2010  03:34           104.692 explore_category_psn.rco
29-11-2010  03:34           126.828 explore_category_sysconf.rco
29-11-2010  03:34            83.508 explore_category_tv.rco
29-11-2010  03:34            46.224 explore_category_user.rco
29-11-2010  03:34           278.772 explore_category_video.rco
29-11-2010  03:34            86.196 explore_plugin_ft.rco
29-11-2010  03:34         2.217.360 explore_plugin_full.rco
29-11-2010  03:34           136.924 explore_plugin_game.rco
29-11-2010  03:34            37.228 explore_plugin_np.rco
29-11-2010  03:34           190.372 filecopy_plugin.rco
29-11-2010  03:34           164.000 friendim_plugin.rco
29-11-2010  03:34           115.632 friendim_plugin_game.rco
29-11-2010  03:34            40.152 friendml_plugin.rco
29-11-2010  03:34            24.968 friendml_plugin_game.rco
29-11-2010  03:34            22.472 friendtrophy_plugin.rco
29-11-2010  03:34            19.260 friendtrophy_plugin_game.rco
29-11-2010  03:34             8.608 gamedata_plugin.rco
29-11-2010  03:34             4.620 gamelib_plugin.rco
29-11-2010  03:34            43.840 gameupdate_plugin.rco
29-11-2010  03:34           293.124 game_ext_plugin.rco
29-11-2010  03:34               788 game_indicator_plugin.rco
29-11-2010  03:34            43.992 game_plugin.rco
29-11-2010  03:34         1.111.964 hknw_plugin.rco
29-11-2010  03:34               360 idle_plugin.rco
29-11-2010  03:34           417.620 imagefont.bin
29-11-2010  03:34            38.972 impose_plugin.rco
29-11-2010  03:34             5.104 kensaku_plugin.rco
29-11-2010  03:34           178.796 msgdialog_plugin.rco
29-11-2010  03:34             3.184 musicbrowser_plugin.rco
29-11-2010  03:34           148.952 nas_plugin.rco
29-11-2010  03:34           485.304 netconf_plugin.rco
27-08-2011  20:54    <DIR>          newstore
29-11-2010  03:34               205 newstore_effect.rco
29-11-2010  03:34           487.780 newstore_plugin.rco
29-11-2010  03:34            33.744 npsignin_plugin.rco
29-11-2010  03:34            12.060 np_eula_plugin.rco
29-11-2010  03:34            34.704 np_matching_plugin.rco
29-11-2010  03:34            17.488 np_multisignin_plugin.rco
29-11-2010  03:34            39.312 np_sns_plugin.rco
29-11-2010  03:34            22.120 np_trophy_ingame.rco
29-11-2010  03:34            22.448 np_trophy_plugin.rco
29-11-2010  03:34           173.192 oskfullkeypanel_plugin.rco
29-11-2010  03:34           141.556 oskpanel_plugin.rco
29-11-2010  03:34            19.204 osk_plugin.rco
29-11-2010  03:34               360 pesm_plugin.rco
29-11-2010  03:34             1.512 photolist_plugin.rco
29-11-2010  03:34           156.192 photoupload_plugin.rco
27-08-2011  20:55    <DIR>          photoviewer_plugin
29-11-2010  03:34           357.152 photoviewer_plugin.rco
29-11-2010  03:34            42.204 photo_network_sharing_plugin.rco
29-11-2010  03:34            63.764 playlist_plugin.rco
29-11-2010  03:34             9.480 poweroff_plugin.rco
29-11-2010  03:34            25.692 premo_plugin.rco
29-11-2010  03:34            82.048 print_plugin.rco
29-11-2010  03:34           181.612 profile_plugin.rco
29-11-2010  03:34            82.712 profile_plugin_mini.rco
29-11-2010  03:34            61.708 ps3_savedata_plugin.rco
27-08-2011  20:55    <DIR>          qgl
29-11-2010  03:34               376 rec_plugin.rco
29-11-2010  03:34         1.228.452 regcam_plugin.rco
29-11-2010  03:34           343.656 sacd_plugin.rco
29-11-2010  03:34            60.160 scenefolder_plugin.rco
29-11-2010  03:34             4.076 screenshot_plugin.rco
29-11-2010  03:34             2.540 search_service.rco
27-08-2011  20:55    <DIR>          silk
27-08-2011  20:54    <DIR>          silk_nas
29-11-2010  03:34            75.264 software_update_plugin.rco
29-11-2010  03:34             8.684 soundvisualizer_plugin.rco
29-11-2010  03:34               396 subdisplay_plugin.rco
29-11-2010  03:34             8.760 sv_pseudoaudioplayer_plugin.rco
27-08-2011  20:54    <DIR>          sysconf
29-11-2010  03:34         1.287.364 sysconf_plugin.rco
29-11-2010  03:34           282.404 system_plugin.rco
27-08-2011  20:54    <DIR>          theme
29-11-2010  03:34            14.224 thumthum_plugin.rco
29-11-2010  03:34            48.868 upload_util.rco
29-11-2010  03:34             3.008 user_info_plugin.rco
29-11-2010  03:34            37.892 user_plugin.rco
29-11-2010  03:34           129.208 videodownloader_plugin.rco
29-11-2010  03:34           757.100 videoeditor_plugin.rco
29-11-2010  03:34           397.288 videoplayer_plugin.rco
29-11-2010  03:34               317 videoplayer_util.rco
29-11-2010  03:34           161.188 vmc_savedata_plugin.rco
29-11-2010  03:34           124.400 wboard_plugin.rco
29-11-2010  03:34           403.248 webbrowser_plugin.rco
29-11-2010  03:34           384.328 webrender_plugin.rco
29-11-2010  03:34            32.764 xmb_ingame.rco
29-11-2010  03:34            25.364 xmb_plugin_normal.rco
29-11-2010  03:34            21.144 ycon_manual_plugin.rco
             114 file(s)       20.715.420 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\AAA
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\avc
27-08-2011  20:54    <DIR>          image
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\avc\image
29-11-2010  03:34            98.478 avc_background.jpg
29-11-2010  03:34            15.067 Broken_Photo.png
29-11-2010  03:34            12.024 Photo_Default.png
               3 file(s)          125.569 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore
27-08-2011  20:55    <DIR>          icon
27-08-2011  20:55    <DIR>          netflix
27-08-2011  20:55    <DIR>          user
27-08-2011  20:55    <DIR>          xmb
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\icon
29-11-2010  03:34           811.609 cinfo-bg-photogallery.jpg
29-11-2010  03:34           976.399 cinfo-bg-signup.png
29-11-2010  03:34           301.998 cinfo-bg-storegame.jpg
29-11-2010  03:34           314.038 cinfo-bg-storemain.jpg
29-11-2010  03:34           323.157 cinfo-bg-storevideo.jpg
29-11-2010  03:34         1.061.728 cinfo-bg-whatsnew.png
29-11-2010  03:34           198.388 cinfo-bgsd-photogallery.jpg
29-11-2010  03:34           248.252 cinfo-bgsd-signup.jpg
29-11-2010  03:34            64.737 cinfo-bgsd-storegame.jpg
29-11-2010  03:34            72.687 cinfo-bgsd-storemain.jpg
29-11-2010  03:34            73.813 cinfo-bgsd-storevideo.jpg
29-11-2010  03:34            74.303 cinfo-bgsd-whatsnew.jpg
29-11-2010  03:34               311 cinfo-fg.png
29-11-2010  03:34               242 cinfo-fgsd.png
29-11-2010  03:34            32.696 fah-xmb.png
29-11-2010  03:34           159.329 GameStore_thumbnail.png
29-11-2010  03:34           163.415 VideoStore_thumbnail.png
29-11-2010  03:34            17.205 widget.png
29-11-2010  03:34            18.054 yourchannels.png
              19 file(s)        4.912.361 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\netflix
29-11-2010  03:34             3.334 ICON0.png
29-11-2010  03:34            83.314 PIC0.png
29-11-2010  03:34         1.009.249 PIC1.png
29-11-2010  03:34            15.336 PIC2.png
               4 file(s)        1.111.233 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\user
29-11-2010  03:34             8.732 000.png
29-11-2010  03:34             8.692 001.png
29-11-2010  03:34             8.314 002.png
29-11-2010  03:34             7.599 003.png
29-11-2010  03:34             9.590 004.png
29-11-2010  03:34            10.141 005.png
29-11-2010  03:34             9.761 006.png
29-11-2010  03:34            10.818 007.png
29-11-2010  03:34            10.013 008.png
29-11-2010  03:34             2.297 009.png
29-11-2010  03:34             2.784 010.png
29-11-2010  03:34             4.138 011.png
29-11-2010  03:34             3.063 012.png
29-11-2010  03:34             3.489 013.png
29-11-2010  03:34             3.162 014.png
29-11-2010  03:34             3.388 015.png
29-11-2010  03:34             4.305 016.png
29-11-2010  03:34             3.920 017.png
29-11-2010  03:34            16.597 018.png
29-11-2010  03:34            17.617 019.png
29-11-2010  03:34            16.912 020.png
29-11-2010  03:34            16.595 021.png
29-11-2010  03:34            18.742 022.png
29-11-2010  03:34            18.387 023.png
29-11-2010  03:34            18.016 024.png
29-11-2010  03:34            18.551 025.png
29-11-2010  03:34            17.346 026.png
              27 file(s)          272.969 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\explore\xmb
29-11-2010  03:34               885 category_avc_photo.xml
29-11-2010  03:34             9.269 category_friend.xml
29-11-2010  03:34            24.314 category_game.xml
29-11-2010  03:34            16.951 category_game_tool2.xml
29-11-2010  03:34             9.443 category_music.xml
29-11-2010  03:34             4.087 category_network.xml
29-11-2010  03:34             1.455 category_network_tool2.xml
29-11-2010  03:34             9.136 category_photo.xml
29-11-2010  03:34            46.569 category_psn.xml
29-11-2010  03:34            19.099 category_sysconf.xml
29-11-2010  03:34               783 category_tv.xml
29-11-2010  03:34               562 category_user.xml
29-11-2010  03:34               449 category_user_login.xml
29-11-2010  03:34            15.028 category_video.xml
29-11-2010  03:34            23.864 download_list.xml
29-11-2010  03:34                91 null.xml
29-11-2010  03:34             4.318 playlist.xml
29-11-2010  03:34            27.097 registory.xml
29-11-2010  03:34               697 savedata_list.xml
29-11-2010  03:34             7.294 upload_list.xml
29-11-2010  03:34             2.972 videodownloader_list.xml
              21 file(s)          224.363 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\newstore
27-08-2011  20:54    <DIR>          sound
27-08-2011  20:54    <DIR>          texture
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\newstore\sound
29-11-2010  03:34             6.336 CartAdd.vag
29-11-2010  03:34            22.464 CartAdd2.vag
29-11-2010  03:34             5.632 CartRemove.vag
29-11-2010  03:34            25.424 CartRemove2.vag
29-11-2010  03:34            14.832 Checkout.vag
29-11-2010  03:34            16.320 Checkout2.vag
29-11-2010  03:34             1.440 Click.vag
29-11-2010  03:34             7.104 Click2.vag
29-11-2010  03:34             2.464 FocusMove.vag
29-11-2010  03:34            11.648 FocusMove2.vag
29-11-2010  03:34             6.720 PageEnter.vag
29-11-2010  03:34             8.320 PageEnter2.vag
29-11-2010  03:34             6.592 PageExit.vag
29-11-2010  03:34             9.504 PageExit2.vag
29-11-2010  03:34            62.288 StoreBoot-L.vag
29-11-2010  03:34            62.288 StoreBoot-L2.vag
29-11-2010  03:34            62.288 StoreBoot-R.vag
29-11-2010  03:34            62.288 StoreBoot-R2.vag
              18 file(s)          393.952 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\newstore\texture
29-11-2010  03:34            38.207 cz.png
29-11-2010  03:34            21.757 DB0001.jpg
29-11-2010  03:34             6.861 DB0002.jpg
29-11-2010  03:34             3.566 DB0003.jpg
29-11-2010  03:34            29.282 DB0004.jpg
29-11-2010  03:34            11.712 DB0005.jpg
29-11-2010  03:34            16.434 DB1001.jpg
29-11-2010  03:34             9.561 DB1002.jpg
29-11-2010  03:34             9.561 DB1003.jpg
29-11-2010  03:34            30.498 DB1101.jpg
29-11-2010  03:34            21.465 logo.png
29-11-2010  03:34            40.832 pl.png
29-11-2010  03:34           158.105 reg_ad.jpg
29-11-2010  03:34               152 reg_bg.png
29-11-2010  03:34            68.062 reg_sub1.png
29-11-2010  03:34           176.699 reg_sub2.png
29-11-2010  03:34           198.998 reg_sub3.png
              17 file(s)          841.752 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\photoviewer_plugin
29-11-2010  03:34            13.600 envmap.png
29-11-2010  03:34            11.070 floor.ggfz
29-11-2010  03:34            36.876 floor_texture_1.png
29-11-2010  03:34             2.658 nega_env00.png
29-11-2010  03:34             3.877 nega_env01.png
29-11-2010  03:34             8.146 nega_M01.ggfz
29-11-2010  03:34               512 nega_M01_s.ggfz
29-11-2010  03:34            15.661 nega_M02.ggfz
29-11-2010  03:34               374 nega_M02_s.ggfz
29-11-2010  03:34            22.723 nega_M03.ggfz
29-11-2010  03:34               433 nega_M03_s.ggfz
29-11-2010  03:34            29.063 nega_M04.ggfz
29-11-2010  03:34               490 nega_M04_s.ggfz
29-11-2010  03:34            37.342 nega_M05.ggfz
29-11-2010  03:34               558 nega_M05_s.ggfz
29-11-2010  03:34            45.403 nega_M06.ggfz
29-11-2010  03:34            43.807 nega_M06_2.ggfz
29-11-2010  03:34               592 nega_M06_2s.ggfz
29-11-2010  03:34            44.592 nega_M06_3.ggfz
29-11-2010  03:34               590 nega_M06_3s.ggfz
29-11-2010  03:34               470 nega_M06_s.ggfz
29-11-2010  03:34           116.688 nega_mask.png
29-11-2010  03:34            23.732 number_H.png
29-11-2010  03:34             1.409 number_L.png
29-11-2010  03:34             3.771 number_M.png
29-11-2010  03:34            12.528 parameters.txt
29-11-2010  03:34             8.253 pattern_01_01.ggfz
29-11-2010  03:34            20.520 pattern_01_02.ggfz
29-11-2010  03:34             6.048 pattern_01_03.ggfz
29-11-2010  03:34            43.222 pattern_01_04.ggfz
29-11-2010  03:34             9.459 pattern_01_05.ggfz
29-11-2010  03:34            16.681 pattern_02_01.ggfz
29-11-2010  03:34            46.462 pattern_02_02.ggfz
29-11-2010  03:34            48.789 pattern_02_03.ggfz
29-11-2010  03:34            30.693 pattern_02_04.ggfz
29-11-2010  03:34            17.762 pattern_02_05.ggfz
29-11-2010  03:34            40.957 pattern_03_01.ggfz
29-11-2010  03:34            64.606 pattern_03_02.ggfz
29-11-2010  03:34            44.319 pattern_03_03.ggfz
29-11-2010  03:34            77.156 pattern_03_04.ggfz
29-11-2010  03:34            59.088 pattern_03_05.ggfz
29-11-2010  03:34            49.563 pattern_04_01.ggfz
29-11-2010  03:34            89.227 pattern_04_02.ggfz
29-11-2010  03:34           101.705 pattern_04_03.ggfz
29-11-2010  03:34            48.298 pattern_04_04.ggfz
29-11-2010  03:34           113.783 pattern_04_05.ggfz
29-11-2010  03:34            61.726 pattern_05_01.ggfz
29-11-2010  03:34           145.659 pattern_05_02.ggfz
29-11-2010  03:34            87.846 pattern_05_03.ggfz
29-11-2010  03:34           139.335 pattern_05_04.ggfz
29-11-2010  03:34            99.569 pattern_05_05.ggfz
29-11-2010  03:34            83.784 pattern_06_01.ggfz
29-11-2010  03:34           139.827 pattern_06_02.ggfz
29-11-2010  03:34           171.489 pattern_06_03.ggfz
29-11-2010  03:34           143.310 pattern_06_04.ggfz
29-11-2010  03:34            98.385 pattern_06_05.ggfz
29-11-2010  03:34            79.624 pattern_07_01.ggfz
29-11-2010  03:34           167.560 pattern_07_02.ggfz
29-11-2010  03:34           225.386 pattern_07_03.ggfz
29-11-2010  03:34           177.095 pattern_07_04.ggfz
29-11-2010  03:34           164.596 pattern_07_05.ggfz
29-11-2010  03:34           123.219 pattern_08_01.ggfz
29-11-2010  03:34            93.407 pattern_08_02.ggfz
29-11-2010  03:34           198.753 pattern_08_03.ggfz
29-11-2010  03:34           196.930 pattern_08_04.ggfz
29-11-2010  03:34           132.751 pattern_08_05.ggfz
29-11-2010  03:34                97 photo.png
29-11-2010  03:34             1.473 photo2_env00.png
29-11-2010  03:34            16.365 photo2_env01.png
29-11-2010  03:34            83.955 photo_M01.ggfz
29-11-2010  03:34               251 photo_M01_s.ggfz
29-11-2010  03:34               577 photo_M01_sv.ggfz
29-11-2010  03:34            47.365 photo_M02.ggfz
29-11-2010  03:34               730 photo_M02_s.ggfz
29-11-2010  03:34               646 photo_M02_sv.ggfz
29-11-2010  03:34            36.600 photo_M03.ggfz
29-11-2010  03:34               251 photo_M03_s.ggfz
29-11-2010  03:34               656 photo_M03_sv.ggfz
29-11-2010  03:34            54.025 photo_M04.ggfz
29-11-2010  03:34            56.644 photo_M04_s.ggfz
29-11-2010  03:34               698 photo_M04_sv.ggfz
29-11-2010  03:34            26.547 photo_M05.ggfz
29-11-2010  03:34               251 photo_M05_s.ggfz
29-11-2010  03:34               691 photo_M05_sv.ggfz
29-11-2010  03:34             7.601 posi_env01.png
29-11-2010  03:34            74.974 posi_mask.png
29-11-2010  03:34               717 scene_base.ggfz
29-11-2010  03:34            10.213 shadow1.png
29-11-2010  03:34            18.783 shadow2.png
29-11-2010  03:34            14.970 shadow3.png
29-11-2010  03:34            26.854 shadow_nega1.png
29-11-2010  03:34            16.611 shadow_nega2.png
              92 file(s)        4.642.352 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\qgl
29-11-2010  03:34            73.828 canyon.qrc
29-11-2010  03:34         2.148.509 earth.qrc
29-11-2010  03:34            32.171 icons.qrc
29-11-2010  03:34         1.426.032 icontex.qrc
29-11-2010  03:34           183.981 lines.qrc
29-11-2010  03:34             5.542 raf.qrc
29-11-2010  03:34             2.489 rhm.qrc
29-11-2010  03:34           291.393 store.qrc
               8 file(s)        4.163.945 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk
27-08-2011  20:55    <DIR>          bookmark
27-08-2011  20:55    <DIR>          data
27-08-2011  20:55    <DIR>          etc
29-11-2010  03:34             1.282 keyconfig.xml
27-08-2011  20:55    <DIR>          lib
29-11-2010  03:34               858 mimetypes.xml
27-08-2011  20:55    <DIR>          xai
               2 file(s)            2.140 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\bookmark
29-11-2010  03:34               145 default.xml
29-11-2010  03:34               147 scea.xml
29-11-2010  03:34               164 scea_bs.xml
29-11-2010  03:34               147 scee.xml
29-11-2010  03:34               164 scee_bs.xml
29-11-2010  03:34               149 sceh.xml
29-11-2010  03:34               164 sceh_bs.xml
29-11-2010  03:34               158 scej.xml
29-11-2010  03:34               274 scej_bs.xml
29-11-2010  03:34               150 scek.xml
29-11-2010  03:34               164 scek_bs.xml
29-11-2010  03:34               145 sch.xml
29-11-2010  03:34               164 sch_bs.xml
              13 file(s)            2.135 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\data
29-11-2010  03:34            40.141 CEFramework.bin
29-11-2010  03:34             1.699 CEHtmlApi.bin
29-11-2010  03:34            14.857 CEHtmlUI.bin
29-11-2010  03:34            50.995 CEPhWeb.bin
               4 file(s)          107.692 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\etc
29-11-2010  03:34             1.471 fontFileInfo.xml
29-11-2010  03:34             3.135 fontinfo-Xai.xml
29-11-2010  03:34             9.245 html.css
29-11-2010  03:34               518 quirk.css
29-11-2010  03:34               600 TrendMicroConfig.xml
29-11-2010  03:34               669 TrendMicroFilterPolicy.xml
               6 file(s)           15.638 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\lib
27-08-2011  20:55    <DIR>          Plugins
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\lib\Plugins
29-11-2010  03:34                 0 dummy.txt
               1 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\xai
27-08-2011  20:55    <DIR>          widgets
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\xai\widgets
27-08-2011  20:55    <DIR>          informationboard
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk\xai\widgets\informationboard
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas
27-08-2011  20:54    <DIR>          bookmark
27-08-2011  20:54    <DIR>          data
27-08-2011  20:54    <DIR>          etc
29-11-2010  03:34             1.282 keyconfig.xml
27-08-2011  20:54    <DIR>          lib
29-11-2010  03:34               858 mimetypes.xml
               2 file(s)            2.140 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\bookmark
29-11-2010  03:34               145 default.xml
29-11-2010  03:34               147 scea.xml
29-11-2010  03:34               147 scee.xml
29-11-2010  03:34               149 sceh.xml
29-11-2010  03:34               158 scej.xml
29-11-2010  03:34               150 scek.xml
29-11-2010  03:34               145 sch.xml
               7 file(s)            1.041 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\data
29-11-2010  03:34            40.141 CEFramework.bin
29-11-2010  03:34             1.699 CEHtmlApi.bin
29-11-2010  03:34            14.777 CEHtmlUI.bin
29-11-2010  03:34            42.453 CEPhWeb.bin
               4 file(s)           99.070 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\etc
29-11-2010  03:34             1.471 fontFileInfo.xml
29-11-2010  03:34             3.063 fontinfo-Xai.xml
29-11-2010  03:34             9.374 html.css
29-11-2010  03:34               520 quirk.css
29-11-2010  03:34               615 TrendMicroFilterPolicy.xml
               5 file(s)           15.043 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\lib
27-08-2011  20:54    <DIR>          Plugins
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\silk_nas\lib\Plugins
29-11-2010  03:34                 0 dummy.txt
               1 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\sysconf
27-08-2011  20:54    <DIR>          calibration
               0 file(s)                0 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\sysconf\calibration
29-11-2010  03:34            46.611 01.png
29-11-2010  03:34            10.766 02.png
29-11-2010  03:34            45.806 03.png
29-11-2010  03:34            12.972 04.png
29-11-2010  03:34            20.260 05.png
29-11-2010  03:34            10.045 06.png
29-11-2010  03:34            21.912 07.png
29-11-2010  03:34            13.720 08.png
29-11-2010  03:34            21.264 09.png
29-11-2010  03:34            14.383 10.png
29-11-2010  03:34            21.600 11.png
29-11-2010  03:34            12.793 line.png
              12 file(s)          252.132 bytes

\PS3DECRUpdateData.355.001d\dev_flash\vsh\resource\theme
29-11-2010  03:34         1.992.880 01.p3t
               1 file(s)        1.992.880 bytes

     Total:
             864 file(s)      145.583.836 bytes
             131 folder(s)