Join Us and become a Member for a Verified Badge to access private areas with the latest PS4 PKGs.
PS4 CFW and Hacks       Thread starter PSXHAX       Start date Dec 9, 2018 at 10:54 PM       16      
Status
Not open for further replies.
This past week we saw some Tweets from @zecoxao on Twitter of OpenGL (Open Graphics Library) for PS4 homebrew in development, and today PlayStation 4 developer @flatz made available an OpenGL ES for PS4 Writeup and PlayStation 4 GL Test on Twitter which can also be found below. :notworthy:

Download: gl-writeup.7z (139 KB) / Mirror by @pearlxcore / ps4_gl_test-master.zip / GIT / gl_test.pkg (16.06 MB - PS4 OpenGL Test Package) / gl_test.pkg (Mirror) / ps4_gl_test.7z (17.30 MB - Source Code) / piglet.7z (2.81 MB - 4.05 / 4.55 OpenGL Shader Compiler DevKit Modules)

To quote from the index.html file: OpenGL ES

Overview


Zer0xFF and masterzorag were working on making it usable for homebrew applications but then got stucked with native shader compilation. So I've decided to give it a try.

However I have experienced other problems as well, which were solved successfully. Basically they appeared because I decided to implement OpenGL ES application as my own PKG based application. But OpenGL ES in browser didn't work for me too and I don't know if it's because I've used a more recent firmware than guys did or because I did some dumb mistake. So, nevermind, let's begin.

Library linking macroses to make fake C function definitions that gets prefix __declspec(dllexport) during compilation but the actual code is not included in an object file due to usage of --stub-only flag during linking process. Then linker generates proper NID tables in a static library which are resolved during runtime linking.

Also it was possible to specify custom function name with some specific NID value if the actual name of function is not known. Later I've modified this method a bit by removing redundant function declaration from source files and having only header files with macro calls that generates both function declarations and definitions.

But I didn't like this method anyway. Mostly because it requires you to change function declarations in header files (and maybe even in source files) to make them use of macro calls and if you're working on some big library it's just annoying (even if you use code generation like I do with OpenGL ES libraries).

So I've decided to implement a new way to do it. A toolchain contains a feature called EMD files, they are plain text files that describes what library contains which functions. So you could just create a list of functions that will be marked in the same way as __declspec(dllexport) does, and then you link this file using orbis-ld linker as well as your object files (see below). Here's an example of .emd file:
Code:
Library: lib<name> {
   export: {
       <func name 1>
       <func name 2>
       ...
       <obj name 1>
       <obj name 2>
       ...
   }
}
As you may see you could also specify library name, it's very useful if single module contains multiple libraries, for example, libSceSystemService.sprx contains libSceSystemService and libSceLncUtil libraries.

To link using .emd files you still need object files too, so you need to compile code of these functions (even if they are dummy ones). So I've wrote a trivial script on Python that reads simple text file with a list of names of functions/objects that needs to be exported, creates .emd files for each needed library and .c/.S source files for them, where assembly files contains dummy objects and functions and .c files contains TLS variables (it's possible to move anything to .c files but you may have some warnings/errors when trying to compile some special stuff like builtin functions). Makefile then combines them all to produce stub libraries which could be used later in your application. You could find it here: stub lib maker v2

Implementing GL support

I've started by looking into what guys (the ones I did mention before) already did (we're working with a payload that runs from the browser currently).
First, we need to take header files from Khronos, I won't describe on how to prepare them here but if want to know, just look into the repository. Be sure that it's needed to do some modifications to the source code to make it compatible with PS4 platform.
Code:
struct _SceWindow {
   uint32_t id;
   uint32_t width;
   uint32_t height;
};
typedef struct _SceWindow SceWindow;

typedef int EGLNativeDisplayType;
typedef void *EGLNativePixmapType;
typedef SceWindow *EGLNativeWindowType;
Also, need to set define some macroses:
Code:
//...
#elif defined(__ORBIS__)
#   define KHRONOS_APICALL
#else
//...
#endif
#define EGL_EGLEXT_PROTOTYPES 1

#define GL_GLES_PROTOTYPES 1
#define GL_GLEXT_PROTOTYPES 1
Now we need to do platform's initialization. Here it's done by using a special function in Piglet library: bool scePigletSetConfigurationVSH(const ScePglConfig* config). It uses provided configuration to set up internal memory buffers, display parameters, command buffers, etc. But an actual format of config struct is unknown, so I need to try to determine it by myself by doing reverse-engineering of system applications. One of scePigletSetConfigurationVSH clients is located in system/common/lib/WebBrowserUIProcess.sprx.

OpenGL ES for PS4 Writeup and PlayStation 4 GL Test by Flat_z.png

As you may see just before this call there's a call to the function that does something with .ini file for Piglet and it takes some callback function as an argument and it's INI parser obviously. Let's see what's inside callback function:

OpenGL ES for PS4 Writeup and PlayStation 4 GL Test by Flat_z 2.png

Bingo! There are some parameters that gets parsed from these files, so we could find where they store their values. Others parameters are not handled here, so I've spent some time to determine what they're doing by looking into the code. However I didn't find all fields but it's okay because most of them are not important for us and we could omit them.
Code:
TYPE_BEGIN(struct _ScePglConfig, SIZEOF_SCE_PGL_CONFIG);
   TYPE_FIELD(uint32_t size, 0x00);
   TYPE_FIELD(uint32_t flags, 0x04);
   TYPE_FIELD(uint8_t processOrder, 0x08);
   TYPE_FIELD(uint32_t unk_0x0C, 0x0C);
   TYPE_FIELD(uint32_t unk_0x10, 0x10);
   TYPE_FIELD(uint32_t unk_0x14, 0x14);
   TYPE_FIELD(uint64_t systemSharedMemorySize, 0x18);

   TYPE_FIELD(uint32_t unk_0x20, 0x20);
   TYPE_FIELD(uint32_t unk_0x24, 0x24);
   TYPE_FIELD(uint64_t videoSharedMemorySize, 0x28);
   TYPE_FIELD(uint64_t maxMappedFlexibleMemory, 0x30);
   TYPE_FIELD(uint64_t minFlexibleMemoryChunkSize, 0x38);

   /* TODO: sets boundaries of debug window? see sceCompositorSetDebugPositionCommand((uint8_t)unk_0x50, (uint16_t)unk_0x48, (uint16_t)unk_0x4C, (uint16_t)unk_0x40, (uint16_t)unk_0x44) */
   TYPE_FIELD(uint32_t dbgPosCmd_0x40, 0x40);
   TYPE_FIELD(uint32_t dbgPosCmd_0x44, 0x44);
   TYPE_FIELD(uint32_t dbgPosCmd_0x48, 0x48);
   TYPE_FIELD(uint32_t dbgPosCmd_0x4C, 0x4C);
   TYPE_FIELD(uint8_t dbgPosCmd_0x50, 0x50);

   TYPE_FIELD(uint32_t drawCommandBufferSize, 0x54);
   TYPE_FIELD(uint32_t lcueResourceBufferSize, 0x58);

   TYPE_FIELD(uint32_t unk_0x5C, 0x5C);

   TYPE_FIELD(uint64_t unk_0x60, 0x60);
   TYPE_FIELD(uint64_t unk_0x68, 0x68);
   TYPE_FIELD(uint64_t unk_0x70, 0x70);
   TYPE_FIELD(uint64_t unk_0x78, 0x78);
TYPE_END();
typedef struct _ScePglConfig ScePglConfig;
Now it's a time to fill it and try to set up Piglet. I've grabbed parameters from one of system applications.

   //...

   ScePglConfig pgl_config;
   SceWindow render_window = { 0, width, height };
   EGLDisplay display = EGL_NO_DISPLAY;
   EGLConfig config = NULL;
   EGLint num_configs;
   EGLSurface surface = EGL_NO_SURFACE;
   EGLContext context = EGL_NO_CONTEXT;

   EGLint attribs[] = {
       EGL_RED_SIZE, 8,
       EGL_GREEN_SIZE, 8,
       EGL_BLUE_SIZE, 8,
       EGL_ALPHA_SIZE, 8,
       EGL_DEPTH_SIZE, 0,
       EGL_STENCIL_SIZE, 0,
       EGL_SAMPLE_BUFFERS, 0,
       EGL_SAMPLES, 0,
       EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
       EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
       EGL_NONE,
   };

   EGLint ctx_attribs[] = {
       EGL_CONTEXT_CLIENT_VERSION, 2,
       EGL_NONE,
   };

   EGLint window_attribs[] = {
       EGL_RENDER_BUFFER, EGL_BACK_BUFFER,
       EGL_NONE,
   };

   //...

   memset(&pgl_config, 0, sizeof(pgl_config));
   {
       pgl_config.size = sizeof(pgl_config);
#if 1
       pgl_config.flags = SCE_PGL_FLAGS_USE_COMPOSITE_EXT | SCE_PGL_FLAGS_USE_FLEXIBLE_MEMORY | 0x60;
       pgl_config.processOrder = 1;
       pgl_config.systemSharedMemorySize = 0x200000;
       pgl_config.videoSharedMemorySize = 0x2400000;
       pgl_config.maxMappedFlexibleMemory = 0xAA00000;
       pgl_config.drawCommandBufferSize = 0xC0000;
       pgl_config.lcueResourceBufferSize = 0x10000;
       pgl_config.dbgPosCmd_0x40 = 1920;
       pgl_config.dbgPosCmd_0x44 = 1080;
       pgl_config.dbgPosCmd_0x48 = 0;
       pgl_config.dbgPosCmd_0x4C = 0;
       pgl_config.unk_0x5C = 2;
#elif 1
       pgl_config.flags = SCE_PGL_FLAGS_USE_COMPOSITE_EXT;
       pgl_config.processOrder = 1;
       pgl_config.systemSharedMemorySize = 0x2000000;
       pgl_config.videoSharedMemorySize = 0xA000000;
       pgl_config.unk_0x5C = 2;
#endif
   }

   if (!scePigletSetConfigurationVSH(&pgl_config)) {
       EPRINTF("scePigletSetConfigurationVSH failed.\n");
       goto err;
   }

   display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
   if (display == EGL_NO_DISPLAY) {
       EPRINTF("eglGetDisplay failed.\n");
       goto err;
   }

   if (!eglInitialize(display, &major, &minor)) {
       ret = eglGetError();
       EPRINTF("eglInitialize failed: 0x%08X\n", ret);
       goto err;
   }
   printf("EGL version major:%d, minor:%d\n", major, minor);

   if (!eglBindAPI(EGL_OPENGL_ES_API)) {
       ret = eglGetError();
       EPRINTF("eglBindAPI failed: 0x%08X\n", ret);
       goto err;
   }

   if (!eglSwapInterval(display, 0)) {
       ret = eglGetError();
       EPRINTF("eglSwapInterval failed: 0x%08X\n", ret);
       goto err;
   }

   if (!eglChooseConfig(display, attribs, &config, 1, &num_configs)) {
       ret = eglGetError();
       EPRINTF("eglChooseConfig failed: 0x%08X\n", ret);
       goto err;
   }
   if (num_configs != 1) {
       EPRINTF("No available configuration found.\n");
       goto err;
   }

   surface = eglCreateWindowSurface(display, config, &render_window, window_attribs);
   if (surface == EGL_NO_SURFACE) {
       ret = eglGetError();
       EPRINTF("eglCreateWindowSurface failed: 0x%08X\n", ret);
       goto err;
   }

   context = eglCreateContext(display, config, EGL_NO_CONTEXT, ctx_attribs);
   if (context == EGL_NO_CONTEXT) {
       ret = eglGetError();
       EPRINTF("eglCreateContext failed: 0x%08X\n", ret);
       goto err;
   }

   if (!eglMakeCurrent(display, surface, surface, context)) {
       ret = eglGetError();
       EPRINTF("eglMakeCurrent failed: 0x%08X\n", ret);
       goto err;
   }

   printf("GL_VERSION: %s\n", glGetString(GL_VERSION));
   printf("GL_RENDERER: %s\n", glGetString(GL_RENDERER));
Unfortunately, this code doesn't work, eglGetDisplay() just returns NULL, we may also see in the system's log:

[Client Pid=114]nread errno 3
nread Client Header Read: No such process
[PIG]C-pglInitializeLibrary:229 - Failed to initialize platform layer!
[PIG]C-pglDisplayCreate:102 - Failed to initialize library
[PIG]E-eglGetDisplay:684 - Out of memory!

With a different config it throwns a bit different error:

[Client Pid=116]nwrite errno 32
nwrite Client HeaderWrite: Broken pipe
[PIG]C-pglInitializeLibrary:229 - Failed to initialize platform layer!
[PIG]C-pglDisplayCreate:102 - Failed to initialize library
[PIG]E-eglGetDisplay:684 - Out of memory!
I suppose it's because OpenGL ES could be used (not sure when this restriction was added) for system applications only. We could try to change SELF auth info in process's structure, thus telling system that our application have system privileges too. For example, we could try to set PAID field to Shellcore's PAID (0x3800000000000010) or Web browser's UI process(0x3800000000000035). And now it failed at eglCreateContext() and we got a different error:
Code:
[GnmCompositor]W:\Build\J02015311\sys\internal\usermode\src\compositor\common\memory_util.cpp(182): in allocate() Allocate failed ret=-2147352541
sceCompositorInit failure SystemShared 0x00800000 VideoShared 0x0e400000 VideoPrivate 0x00000000 ProcessOrder 0[PIG]C-pglInitializeLibrary:229 - Failed to initialize platform layer!
[PIG]C-pglDisplayCreate:102 - Failed to initialize library
[PIG]E-eglGetDisplay:684 - Out of memory!
For some reason, a compositor process can't allocate video memory for us. I've spent some time to understand what's the reason of such behavior but I will discuss it a bit later. Let's try to do the same using a custom application and not the browser.

Moving to fPKG patches for publishing tools that allows creating of PS2 packages for PS4 and people did make a GUI frontends for it, so just use them.
Code:
orbis-pub-cmd.exe patch to allow gdo project creation (it's better to rename file by adding ps2 suffix, for example):
   0x2F2BF: FF 15 AC 62 5E 00 -> 31 C0 90 90 90 90

you should take some dump of ps2-ps4 game and use it as template, i've used max payne (EP1004-CUSA04488_00-SLES503260000001), it have 1 disc only
just remove trophies/features/patches data from config file and from gp4 project below, also remove npbind.dat/nptitle.dat and trophy00.trp

remove these lines from config (you may need them later if you want to fix game issues like freezing/glitching/not booting, but you need some sort of debugging capabilities):
   --path-patches="/app0/patches"
   --path-trophydata="/app0/trophy_data"
   --path-featuredata="/app0/feature_data"
   --path-toolingscript="/app0/patches"

auth infos for fselfs:
   eboot.bin:
       paid: 0x34000003ACC20000
       auth_info:0000C2AC03000034000000008003002000FF00000000002000000000000000000000000000000000000080C000400040000000000000004002000000000080000040FFFF000000F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
   ps2-emu-compiler.self:
       paid: 0x34000003ACC20000
       auth_info:0000C2AC03000034000000008003002000FF00000000004000000000000000000000000000000000000080C000400040000000000000004008000000000080000040FFFF000000F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
   sce_module/libSceFios2.prx:
       paid: 0x34000003ACC20000
       auth_info:0000C2AC03000035000000000000000000FF000000000000000000000000000000000000000000000000004000300030000000000000004000000000000080000040FFFF000000F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
   sce_module/libc.prx:
       paid: 0x34000003ACC20000
       auth_info:0000C2AC03000035000000000000000000FF000000000000000000000000000000000000000000000000004000300030000000000000004000000000000080000040FFFF000000F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

you need proper auth infos to create fselfs for eboot, ps2-emu-compiler and libs using make_fself.py

i should note that these auth infos are taken from 5.01, and though they may work on 4.05, it's better to dump them on 4.05 and compare (auth info of prxes could be dumped if you change auth info of your current process where you do a dump to match it to auth info from eboot.bin), also note that i've removed first 2 bytes from auth id (because it matches to CUSAXXXXX in decimal)

template gp4 (for max payne):
   <?xml version="1.0" encoding="utf-8" standalone="yes"?>
   <psproject fmt="gp4" version="1000">
     <volume>
       <volume_type>pkg_ps4_app</volume_type>
       <volume_id>PS4VOLUME</volume_id>
       <volume_ts>2016-03-31 03:46:18</volume_ts>
       <package content_id="EP1004-CUSA04488_00-SLES503260000001" passcode="95AJRcZ9Fo5AfOcsN4lJErMRB12W-Iiu" storage_type="digital50" app_type="full"/>
       <chunk_info chunk_count="1" scenario_count="1">
         <chunks supported_languages="en" default_language="en">
           <chunk id="0" disc_no="0" layer_no="0" label="Chunk #0"/>
         </chunks>
         <scenarios default_id="0">
           <scenario id="0" type="sp" initial_chunk_count="1" label="Scenario #0">0</scenario>
         </scenarios>
       </chunk_info>
     </volume>
     <files img_no="0">
         <file targ_path="sce_sys/nptitle.dat" orig_path="Sc0\nptitle.dat"/>
         <file targ_path="sce_sys/npbind.dat" orig_path="Sc0\npbind.dat"/>
         <file targ_path="sce_sys/param.sfo" orig_path="Sc0\param.sfo"/>
         <file targ_path="sce_sys/pronunciation.xml" orig_path="Sc0\pronunciation.xml"/>
         <file targ_path="sce_sys/pronunciation.sig" orig_path="Sc0\pronunciation.sig"/>
         <file targ_path="sce_sys/pic1.png" orig_path="Sc0\pic1.png"/>
         <file targ_path="sce_sys/shareparam.json" orig_path="Sc0\shareparam.json"/>
         <file targ_path="sce_sys/save_data.png" orig_path="Sc0\save_data.png"/>
         <file targ_path="sce_sys/icon0.png" orig_path="Sc0\icon0.png"/>
         <file targ_path="sce_sys/trophy/trophy00.trp" orig_path="Sc0\trophy\trophy00.trp"/>
         <file targ_path="docs/revision.h" orig_path="Image0\docs\revision.h" pfs_compression="enable"/>
         <file targ_path="feature_data/SLES-50326_features.lua" orig_path="Image0\feature_data\SLES-50326_features.lua" pfs_compression="enable"/>
         <file targ_path="image/disc01.iso" orig_path="Image0\image\disc01.iso" pfs_compression="enable"/>
         <file targ_path="lua_include/ee-cpr0-alias.lua" orig_path="Image0\lua_include\ee-cpr0-alias.lua" pfs_compression="enable"/>
         <file targ_path="lua_include/ee-gpr-alias.lua" orig_path="Image0\lua_include\ee-gpr-alias.lua" pfs_compression="enable"/>
         <file targ_path="lua_include/ee-hwaddr.lua" orig_path="Image0\lua_include\ee-hwaddr.lua" pfs_compression="enable"/>
         <file targ_path="lua_include/language.lua" orig_path="Image0\lua_include\language.lua" pfs_compression="enable"/>
         <file targ_path="lua_include/pad-and-key.lua" orig_path="Image0\lua_include\pad-and-key.lua" pfs_compression="enable"/>
         <file targ_path="lua_include/ps2.lua" orig_path="Image0\lua_include\ps2.lua" pfs_compression="enable"/>
         <file targ_path="lua_include/utils.lua" orig_path="Image0\lua_include\utils.lua" pfs_compression="enable"/>
         <file targ_path="patches/SLES-50326_cli.conf" orig_path="Image0\patches\SLES-50326_cli.conf" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/base/arrow_up.png" orig_path="Image0\sce_companion_httpd\html\base\arrow_up.png" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/base/sprites.png" orig_path="Image0\sce_companion_httpd\html\base\sprites.png" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/css/default-skin.png" orig_path="Image0\sce_companion_httpd\html\css\default-skin.png"/>
         <file targ_path="sce_companion_httpd/html/css/styles.min.css" orig_path="Image0\sce_companion_httpd\html\css\styles.min.css" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/js/app.min.js" orig_path="Image0\sce_companion_httpd\html\js\app.min.js" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Box01.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Box01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Box04.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Box04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page01.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page02.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page03.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page04.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page05.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page06.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page07.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page08.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page09.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page10.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page11.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page12.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page13.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page14.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page15.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page16.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page17.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page18.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page19.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page20.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page21.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page22.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page23.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page24.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page25.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page26.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page27.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page28.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page29.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page30.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page31.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page32.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page33.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page34.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page35.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page36.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page37.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page38.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page39.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page40.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page41.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page42.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page43.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page44.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page45.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page46.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page47.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page48.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page49.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page50.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page51.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page52.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page53.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page54.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page55.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page56.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page57.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page58.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/landscape/Page59.jpg" orig_path="Image0\sce_companion_httpd\html\large\landscape\Page59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Box01.jpg" orig_path="Image0\sce_companion_httpd\html\large\Box01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Box04.jpg" orig_path="Image0\sce_companion_httpd\html\large\Box04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page01.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page02.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page03.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page04.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page05.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page06.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page07.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page08.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page09.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page10.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page100.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page100.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page101.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page101.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page102.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page102.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page103.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page103.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page104.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page104.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page105.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page105.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page106.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page106.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page107.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page107.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page108.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page108.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page109.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page109.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page11.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page110.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page110.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page111.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page111.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page112.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page112.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page113.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page113.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page114.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page114.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page115.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page115.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page116.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page116.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page12.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page13.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page14.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page15.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page16.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page17.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page18.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page19.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page20.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page21.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page22.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page23.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page24.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page25.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page26.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page27.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page28.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page29.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page30.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page31.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page32.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page33.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page34.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page35.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page36.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page37.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page38.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page39.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page40.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page41.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page42.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page43.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page44.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page45.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page46.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page47.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page48.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page49.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page50.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page51.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page52.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page53.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page54.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page55.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page56.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page57.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page58.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page59.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page60.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page60.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page61.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page61.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page62.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page62.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page63.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page63.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page64.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page64.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page65.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page65.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page66.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page66.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page67.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page67.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page68.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page68.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page69.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page69.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page70.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page70.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page71.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page71.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page72.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page72.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page73.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page73.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page74.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page74.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page75.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page75.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page76.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page76.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page77.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page77.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page78.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page78.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page79.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page79.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page80.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page80.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page81.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page81.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page82.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page82.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page83.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page83.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page84.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page84.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page85.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page85.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page86.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page86.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page87.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page87.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page88.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page88.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page89.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page89.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page90.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page90.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page91.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page91.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page92.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page92.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page93.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page93.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page94.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page94.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page95.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page95.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page96.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page96.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page97.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page97.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page98.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page98.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/large/Page99.jpg" orig_path="Image0\sce_companion_httpd\html\large\Page99.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Box01.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Box01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Box04.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Box04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page01.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page02.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page03.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page04.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page05.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page06.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page07.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page08.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page09.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page10.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page11.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page12.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page13.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page14.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page15.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page16.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page17.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page18.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page19.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page20.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page21.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page22.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page23.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page24.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page25.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page26.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page27.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page28.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page29.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page30.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page31.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page32.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page33.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page34.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page35.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page36.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page37.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page38.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page39.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page40.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page41.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page42.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page43.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page44.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page45.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page46.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page47.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page48.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page49.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page50.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page51.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page52.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page53.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page54.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page55.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page56.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page57.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page58.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/landscape/Page59.jpg" orig_path="Image0\sce_companion_httpd\html\medium\landscape\Page59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Box01.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Box01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Box04.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Box04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page01.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page02.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page03.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page04.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page05.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page06.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page07.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page08.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page09.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page10.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page100.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page100.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page101.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page101.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page102.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page102.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page103.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page103.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page104.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page104.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page105.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page105.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page106.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page106.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page107.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page107.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page108.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page108.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page109.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page109.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page11.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page110.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page110.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page111.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page111.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page112.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page112.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page113.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page113.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page114.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page114.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page115.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page115.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page116.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page116.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page12.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page13.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page14.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page15.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page16.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page17.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page18.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page19.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page20.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page21.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page22.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page23.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page24.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page25.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page26.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page27.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page28.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page29.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page30.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page31.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page32.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page33.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page34.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page35.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page36.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page37.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page38.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page39.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page40.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page41.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page42.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page43.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page44.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page45.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page46.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page47.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page48.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page49.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page50.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page51.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page52.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page53.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page54.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page55.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page56.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page57.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page58.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page59.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page60.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page60.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page61.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page61.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page62.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page62.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page63.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page63.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page64.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page64.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page65.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page65.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page66.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page66.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page67.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page67.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page68.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page68.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page69.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page69.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page70.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page70.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page71.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page71.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page72.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page72.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page73.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page73.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page74.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page74.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page75.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page75.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page76.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page76.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page77.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page77.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page78.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page78.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page79.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page79.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page80.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page80.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page81.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page81.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page82.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page82.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page83.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page83.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page84.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page84.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page85.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page85.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page86.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page86.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page87.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page87.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page88.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page88.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page89.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page89.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page90.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page90.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page91.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page91.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page92.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page92.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page93.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page93.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page94.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page94.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page95.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page95.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page96.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page96.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page97.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page97.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page98.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page98.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/medium/Page99.jpg" orig_path="Image0\sce_companion_httpd\html\medium\Page99.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Box01.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Box01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Box04.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Box04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page01.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page02.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page03.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page04.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page05.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page06.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page07.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page08.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page09.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page10.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page11.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page12.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page13.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page14.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page15.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page16.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page17.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page18.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page19.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page20.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page21.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page22.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page23.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page24.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page25.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page26.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page27.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page28.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page29.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page30.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page31.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page32.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page33.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page34.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page35.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page36.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page37.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page38.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page39.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page40.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page41.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page42.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page43.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page44.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page45.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page46.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page47.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page48.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page49.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page50.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page51.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page52.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page53.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page54.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page55.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page56.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page57.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page58.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/landscape/Page59.jpg" orig_path="Image0\sce_companion_httpd\html\small\landscape\Page59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Box01.jpg" orig_path="Image0\sce_companion_httpd\html\small\Box01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Box04.jpg" orig_path="Image0\sce_companion_httpd\html\small\Box04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page01.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page02.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page03.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page04.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page05.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page06.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page07.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page08.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page09.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page10.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page100.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page100.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page101.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page101.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page102.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page102.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page103.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page103.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page104.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page104.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page105.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page105.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page106.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page106.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page107.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page107.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page108.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page108.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page109.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page109.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page11.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page110.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page110.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page111.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page111.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page112.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page112.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page113.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page113.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page114.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page114.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page115.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page115.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page116.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page116.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page12.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page13.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page14.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page15.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page16.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page17.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page18.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page19.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page20.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page21.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page22.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page23.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page24.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page25.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page26.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page27.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page28.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page29.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page30.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page31.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page32.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page33.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page34.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page35.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page36.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page37.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page38.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page39.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page40.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page41.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page42.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page43.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page44.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page45.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page46.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page47.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page48.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page49.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page50.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page51.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page52.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page53.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page54.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page55.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page56.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page57.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page58.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page59.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page60.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page60.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page61.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page61.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page62.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page62.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page63.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page63.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page64.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page64.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page65.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page65.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page66.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page66.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page67.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page67.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page68.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page68.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page69.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page69.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page70.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page70.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page71.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page71.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page72.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page72.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page73.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page73.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page74.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page74.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page75.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page75.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page76.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page76.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page77.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page77.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page78.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page78.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page79.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page79.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page80.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page80.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page81.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page81.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page82.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page82.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page83.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page83.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page84.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page84.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page85.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page85.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page86.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page86.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page87.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page87.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page88.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page88.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page89.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page89.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page90.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page90.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page91.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page91.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page92.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page92.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page93.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page93.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page94.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page94.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page95.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page95.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page96.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page96.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page97.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page97.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page98.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page98.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/small/Page99.jpg" orig_path="Image0\sce_companion_httpd\html\small\Page99.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/BoxThumb01.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\BoxThumb01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/BoxThumb04.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\BoxThumb04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb01.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb02.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb03.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb04.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb05.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb06.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb07.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb08.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb09.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb10.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb11.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb12.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb13.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb14.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb15.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb16.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb17.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb18.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb19.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb20.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb21.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb22.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb23.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb24.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb25.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb26.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb27.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb28.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb29.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb30.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb31.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb32.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb33.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb34.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb35.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb36.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb37.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb38.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb39.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb40.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb41.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb42.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb43.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb44.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb45.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb46.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb47.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb48.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb49.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb50.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb51.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb52.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb53.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb54.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb55.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb56.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb57.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb58.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/landscape/Thumb59.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\landscape\Thumb59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/BoxThumb01.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\BoxThumb01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/BoxThumb04.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\BoxThumb04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb01.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb01.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb02.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb02.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb03.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb03.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb04.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb04.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb05.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb05.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb06.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb06.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb07.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb07.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb08.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb08.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb09.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb09.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb10.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb10.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb100.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb100.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb101.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb101.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb102.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb102.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb103.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb103.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb104.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb104.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb105.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb105.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb106.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb106.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb107.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb107.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb108.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb108.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb109.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb109.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb11.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb11.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb110.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb110.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb111.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb111.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb112.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb112.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb113.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb113.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb114.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb114.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb115.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb115.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb116.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb116.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb12.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb12.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb13.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb13.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb14.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb14.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb15.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb15.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb16.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb16.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb17.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb17.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb18.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb18.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb19.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb19.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb20.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb20.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb21.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb21.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb22.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb22.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb23.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb23.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb24.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb24.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb25.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb25.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb26.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb26.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb27.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb27.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb28.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb28.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb29.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb29.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb30.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb30.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb31.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb31.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb32.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb32.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb33.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb33.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb34.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb34.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb35.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb35.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb36.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb36.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb37.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb37.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb38.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb38.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb39.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb39.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb40.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb40.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb41.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb41.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb42.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb42.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb43.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb43.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb44.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb44.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb45.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb45.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb46.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb46.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb47.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb47.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb48.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb48.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb49.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb49.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb50.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb50.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb51.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb51.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb52.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb52.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb53.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb53.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb54.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb54.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb55.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb55.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb56.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb56.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb57.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb57.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb58.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb58.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb59.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb59.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb60.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb60.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb61.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb61.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb62.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb62.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb63.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb63.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb64.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb64.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb65.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb65.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb66.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb66.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb67.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb67.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb68.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb68.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb69.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb69.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb70.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb70.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb71.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb71.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb72.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb72.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb73.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb73.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb74.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb74.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb75.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb75.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb76.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb76.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb77.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb77.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb78.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb78.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb79.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb79.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb80.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb80.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb81.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb81.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb82.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb82.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb83.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb83.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb84.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb84.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb85.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb85.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb86.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb86.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb87.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb87.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb88.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb88.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb89.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb89.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb90.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb90.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb91.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb91.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb92.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb92.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb93.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb93.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb94.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb94.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb95.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb95.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb96.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb96.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb97.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb97.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb98.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb98.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/thumbnails/Thumb99.jpg" orig_path="Image0\sce_companion_httpd\html\thumbnails\Thumb99.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/BackCover.jpg" orig_path="Image0\sce_companion_httpd\html\BackCover.jpg" pfs_compression="enable"/>
         <file targ_path="sce_companion_httpd/html/index.html" orig_path="Image0\sce_companion_httpd\html\index.html" pfs_compression="enable"/>
         <file targ_path="trophy_data/SLES-50326_trophies.lua" orig_path="Image0\trophy_data\SLES-50326_trophies.lua" pfs_compression="enable"/>
         <file targ_path="PS20220WD20050620.crack" orig_path="Image0\PS20220WD20050620.crack" pfs_compression="enable"/>
         <file targ_path="config-emu-ps4.txt" orig_path="Image0\config-emu-ps4.txt" pfs_compression="enable"/>
         <file targ_path="formatted.card" orig_path="Image0\formatted.card" pfs_compression="enable"/>
         <file targ_path="eboot.bin" orig_path="Image0\eboot.fself"/>
         <file targ_path="ps2-emu-compiler.self" orig_path="Image0\ps2-emu-compiler.fself"/>
         <file targ_path="sce_module/libSceFios2.prx" orig_path="Image0\sce_module\libSceFios2.fself"/>
         <file targ_path="sce_module/libc.prx" orig_path="Image0\sce_module\libc.fself"/>
     </files>
     <rootdir>
       <dir targ_name="sce_sys">
         <dir targ_name="trophy"/>
       </dir>
       <dir targ_name="docs"/>
       <dir targ_name="feature_data"/>
       <dir targ_name="image"/>
       <dir targ_name="lua_include"/>
       <dir targ_name="patches"/>
       <dir targ_name="sce_companion_httpd">
         <dir targ_name="html">
           <dir targ_name="base"/>
           <dir targ_name="css"/>
           <dir targ_name="js"/>
           <dir targ_name="large">
             <dir targ_name="landscape"/>
           </dir>
           <dir targ_name="medium">
             <dir targ_name="landscape"/>
           </dir>
           <dir targ_name="small">
             <dir targ_name="landscape"/>
           </dir>
           <dir targ_name="thumbnails">
             <dir targ_name="landscape"/>
           </dir>
         </dir>
       </dir>
       <dir targ_name="sce_module"/>
       <dir targ_name="trophy_data"/>
     </rootdir>
   </psproject>

as you may see here, ps2 games use only one scenario and single chunk and all ps2 files have compression flag, so it's easy to maintain this gp4 project, just add your files here

you could also replace pictures, change title ids in all files from template's one

place iso into image/disc01.iso

then use:
   ./orbis-pub-cmd_ps2 img_create test.gp4 test.pkg
After building a package file let's try to install and run it, and, ..., bingo!

EGL version major:1, minor:4
GL_VERSION: OpenGL ES 2.0 Piglet
GL_RENDERER: Piglet

We have OpenGL ES 2.0 with EGL 1.4. Just need to set CATEGORY to gde.

Resolving runtime shader compilation issue this patch for sceSblAuthMgrIsLoadable() -> sceSblACMgrGetPathId(), you could load both modules from /data/self/system/common/lib directory. In that case user could download fSELFs of these two modules and place them to that folder (could use some tool to automate that).

From self_spawn_501.c:
Code:
////
// (f)SELFs launcher from /data/self/ using sceSystemServiceLoadExec(const char* path, char* const argv[]).
//
// NOTE!
// Offsets are given for 5.01 retail kernel.
////

//...

DECLARE_FUNCTION(0x117E0, sceSblACMgrGetPathId, int, const char* path);

//...

/* XXX: We're hooking this function to give SAMU proper path id, for example, if we place our file
   that requires system privileges (auth info) into /data/self/system/common/lib/spawn_me.self, then
   SM code will see it as /system/common/lib/spawn_me.self and won't cry about check failure.
 */
static int sceSblAuthMgrIsLoadable__sceSblACMgrGetPathId__hook(const char* path) {
   static const char* self_dir_prefix = "/data/self/";
   const char* p;
   int ret;

   if (path) {
       p = strstr(path, self_dir_prefix);
       if (p)
           path = p + strlen(self_dir_prefix);
   }

   ret = sceSblACMgrGetPathId(path);

   return ret;
}

// ...

INSTALL_CALL_HOOK(0x63DE7D, sceSblAuthMgrIsLoadable__sceSblACMgrGetPathId__hook);

//...

#define SHELLCORE_SANDBOX_ENABLE_DATA_MOUNT_OFFSET 0x319A53

int do_shellcore_patches(void) {
   //...
   uint8_t xor__eax_eax__inc__eax[5] = { 0x31, 0xC0, 0xFF, 0xC0, 0x90 };
   //...
   /* XXX: Let ShellCore to mount /data into app's sandbox. */
   ret = proc_write_mem(p, text_seg_base + SHELLCORE_SANDBOX_ENABLE_DATA_MOUNT_OFFSET, sizeof(xor__eax_eax__inc__eax), xor__eax_eax__inc__eax, &n);
   if (ret) {
       //printf("proc_write_mem(%p) failed.\n", p);
       goto error;
   }
   //...
}
Final words https://github.com/flatz/ps4_gl_test

And from the README, to quote: OpenGL ES test

Prerequisites:
  • *** (oouch! need to move to open source *** in the future...)
  • Linux & Wine (it could be backported to Windows and to other existing custom ***s)
OpenGL ES for PS4 Writeup and PlayStation 4 GL Test by Flat_z.jpg
 

Comments

It's still listed in the browser test as unsupported, but are you going to run it on the system?

Also, the write up mentioned Khronos headers, is this Vulkan?
 
Status
Not open for further replies.
Back
Top