Revision: 14069
http://xbmc.svn.sourceforge.net/xbmc/?rev=14069&view=rev
Author: spiff_
Date: 2008-07-14 11:42:49 -0700 (Mon, 14 Jul 2008)
Log Message:
-----------
changed: compile ym codec instead of keeping binary in svn (linux x86)
Modified Paths:
--------------
branches/linuxport/XBMC/Makefile.in
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/Makefile
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/StSoundLibrary.vcproj
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/XBMCYM.cpp
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/Ym2149Ex.cpp
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/digidrum.cpp
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/license.txt
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/readme.html
Added Paths:
-----------
branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/
Removed Paths:
-------------
branches/linuxport/XBMC/system/players/paplayer/stsoundlibrary-i486-linux.so
branches/linuxport/sources/paplayer/YMCodec/
Modified: branches/linuxport/XBMC/Makefile.in
===================================================================
--- branches/linuxport/XBMC/Makefile.in 2008-07-14 18:11:29 UTC (rev 14068)
+++ branches/linuxport/XBMC/Makefile.in 2008-07-14 18:42:49 UTC (rev 14069)
@@ -1,4 +1,4 @@
-DIRS=guilib xbmc xbmc/FileSystem xbmc/FileSystem/MusicDatabaseDirectory xbmc/FileSystem/VideoDatabaseDirectory xbmc/cores xbmc/cores/paplayer xbmc/cores/DllLoader xbmc/cores/DllLoader/exports xbmc/cores/DllLoader/exports/util xbmc/xbox xbmc/linux xbmc/visualizations xbmc/screensavers xbmc/utils guilib/common guilib/tinyXML xbmc/lib/sqLite xbmc/lib/libPython xbmc/lib/libPython/xbmcmodule xbmc/lib/libPython/linux xbmc/lib/libscrobbler xbmc/lib/UnrarXLib xbmc/lib/libGoAhead xbmc/lib/libUPnP xbmc/cores/dvdplayer xbmc/cores/dvdplayer/DVDSubtitles xbmc/cores/dvdplayer/DVDInputStreams xbmc/cores/dvdplayer/DVDCodecs xbmc/cores/dvdplayer/DVDCodecs/Audio xbmc/cores/dvdplayer/DVDCodecs/Video xbmc/cores/dvdplayer/DVDCodecs/Overlay xbmc/cores/dvdplayer/DVDCodecs/Overlay/libspucc xbmc/cores/dvdplayer/DVDDemuxers xbmc/cores/VideoRenderers xbmc/cores/VideoRenderers/VideoShaders xbmc/cdrip xbmc/lib/libcmyth tools/EventClients xbmc/lib/libRTMP xbmc/cores/paplayer/AC3Codec xbmc/cores/paplayer/ADPCMCodec xbmc/cores/paplayer/AACCodec xbmc/cores/paplayer/CubeCodec xbmc/cores/paplayer/NSFCodec xbmc/cores/paplayer/MIDCodec xbmc/cores/paplayer/SIDCodec xbmc/cores/paplayer/WavPackCodec xbmc/cores/paplayer/GYMCodec xbmc/cores/paplayer/DCACodec
+DIRS=guilib xbmc xbmc/FileSystem xbmc/FileSystem/MusicDatabaseDirectory xbmc/FileSystem/VideoDatabaseDirectory xbmc/cores xbmc/cores/paplayer xbmc/cores/DllLoader xbmc/cores/DllLoader/exports xbmc/cores/DllLoader/exports/util xbmc/xbox xbmc/linux xbmc/visualizations xbmc/screensavers xbmc/utils guilib/common guilib/tinyXML xbmc/lib/sqLite xbmc/lib/libPython xbmc/lib/libPython/xbmcmodule xbmc/lib/libPython/linux xbmc/lib/libscrobbler xbmc/lib/UnrarXLib xbmc/lib/libGoAhead xbmc/lib/libUPnP xbmc/cores/dvdplayer xbmc/cores/dvdplayer/DVDSubtitles xbmc/cores/dvdplayer/DVDInputStreams xbmc/cores/dvdplayer/DVDCodecs xbmc/cores/dvdplayer/DVDCodecs/Audio xbmc/cores/dvdplayer/DVDCodecs/Video xbmc/cores/dvdplayer/DVDCodecs/Overlay xbmc/cores/dvdplayer/DVDCodecs/Overlay/libspucc xbmc/cores/dvdplayer/DVDDemuxers xbmc/cores/VideoRenderers xbmc/cores/VideoRenderers/VideoShaders xbmc/cdrip xbmc/lib/libcmyth tools/EventClients xbmc/lib/libRTMP xbmc/cores/paplayer/AC3Codec xbmc/cores/paplayer/ADPCMCodec xbmc/cores/paplayer/AACCodec xbmc/cores/paplayer/CubeCodec xbmc/cores/paplayer/NSFCodec xbmc/cores/paplayer/MIDCodec xbmc/cores/paplayer/SIDCodec xbmc/cores/paplayer/WavPackCodec xbmc/cores/paplayer/GYMCodec xbmc/cores/paplayer/DCACodec xbmc/cores/paplayer/YMCodec
LIBS=@LIBS@
DEBUG_FLAGS=@DEBUG_FLAGS@
@@ -95,6 +95,7 @@
$(MAKE) -C xbmc/cores/paplayer/NSFCodec
$(MAKE) -C xbmc/cores/paplayer/SIDCodec
$(MAKE) -C xbmc/cores/paplayer/WavPackCodec
+ $(MAKE) -C xbmc/cores/paplayer/YMCodec
compile: guilib xbmc filesystem musicdatabase videodatabase cores paplayer dllloader exports xbox linux visualizations screensavers utils common tinyxml sqllite libscrobbler libgoahead unrarxlib libpython dvdplayer libupnp cdrip libcmyth librtmp papcodecs
Deleted: branches/linuxport/XBMC/system/players/paplayer/stsoundlibrary-i486-linux.so
===================================================================
(Binary files differ)
Copied: branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec (from rev 14067, branches/linuxport/sources/paplayer/YMCodec)
Modified: branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/Makefile
===================================================================
--- branches/linuxport/sources/paplayer/YMCodec/StSoundLibrary/Makefile 2008-07-14 12:05:16 UTC (rev 14067)
+++ branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/Makefile 2008-07-14 18:42:49 UTC (rev 14069)
@@ -2,7 +2,7 @@
OBJS=Depacker.o digidrum.o XBMCYM.o Ym2149Ex.o Ymload.o YmMusic.o YmUserInterface.o LZH/LZHXLIB.o
stsoundlibrary-i486-linux.so: $(OBJS)
- gcc -fPIC -shared -o $@ $(OBJS) `cat ../../../../XBMC/xbmc/cores/DllLoader/exports/wrapper.def` ../../../../XBMC/xbmc/cores/DllLoader/exports/wrapper.o
+ gcc -fPIC -shared -o $@ $(OBJS) `cat ../../../DllLoader/exports/wrapper.def` ../../../DllLoader/exports/wrapper.o && cp $@ ../../../../../system/players/paplayer/
clean:
$(RM) $(OBJS) *.so
Modified: branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/StSoundLibrary.vcproj
===================================================================
--- branches/linuxport/sources/paplayer/YMCodec/StSoundLibrary/StSoundLibrary.vcproj 2008-07-14 12:05:16 UTC (rev 14067)
+++ branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/StSoundLibrary.vcproj 2008-07-14 18:42:49 UTC (rev 14069)
@@ -1,290 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="7.10"
- Name="StSoundLibrary"
- ProjectGUID="{D9885434-4B9D-41FB-B5FC-5E89D41AEFF0}"
- SccProjectName=""$/StSoundGPL/StSoundLibrary", IWAAAAAA"
- SccLocalPath=".">
- <Platforms>
- <Platform
- Name="Win32"/>
- </Platforms>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory=".\Debug"
- IntermediateDirectory=".\Debug"
- ConfigurationType="2"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="FALSE"
- CharacterSet="2">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
- BasicRuntimeChecks="3"
- RuntimeLibrary="3"
- UsePrecompiledHeader="2"
- PrecompiledHeaderFile=".\Debug/StSoundLibrary.pch"
- AssemblerListingLocation=".\Debug/"
- ObjectFile=".\Debug/"
- ProgramDataBaseFileName=".\Debug/"
- WarningLevel="3"
- SuppressStartupBanner="TRUE"
- DebugInformationFormat="4"/>
- <Tool
- Name="VCCustomBuildTool"/>
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="odbc32.lib odbccp32.lib"/>
- <Tool
- Name="VCMIDLTool"/>
- <Tool
- Name="VCPostBuildEventTool"/>
- <Tool
- Name="VCPreBuildEventTool"/>
- <Tool
- Name="VCPreLinkEventTool"/>
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="_DEBUG"
- Culture="1036"/>
- <Tool
- Name="VCWebServiceProxyGeneratorTool"/>
- <Tool
- Name="VCXMLDataGeneratorTool"/>
- <Tool
- Name="VCWebDeploymentTool"/>
- <Tool
- Name="VCManagedWrapperGeneratorTool"/>
- <Tool
- Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory=".\Release"
- IntermediateDirectory=".\Release"
- ConfigurationType="2"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="FALSE"
- CharacterSet="2">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- InlineFunctionExpansion="1"
- PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
- StringPooling="TRUE"
- RuntimeLibrary="2"
- EnableFunctionLevelLinking="TRUE"
- UsePrecompiledHeader="2"
- PrecompiledHeaderFile=".\Release/StSoundLibrary.pch"
- AssemblerListingLocation=".\Release/"
- ObjectFile=".\Release/"
- ProgramDataBaseFileName=".\Release/"
- WarningLevel="3"
- SuppressStartupBanner="TRUE"/>
- <Tool
- Name="VCCustomBuildTool"/>
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="odbc32.lib odbccp32.lib"/>
- <Tool
- Name="VCMIDLTool"/>
- <Tool
- Name="VCPostBuildEventTool"/>
- <Tool
- Name="VCPreBuildEventTool"/>
- <Tool
- Name="VCPreLinkEventTool"/>
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1036"/>
- <Tool
- Name="VCWebServiceProxyGeneratorTool"/>
- <Tool
- Name="VCXMLDataGeneratorTool"/>
- <Tool
- Name="VCWebDeploymentTool"/>
- <Tool
- Name="VCManagedWrapperGeneratorTool"/>
- <Tool
- Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
- <File
- RelativePath="Depacker.cpp">
- <FileConfiguration
- Name="Debug|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions=""
- BasicRuntimeChecks="3"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- PreprocessorDefinitions=""/>
- </FileConfiguration>
- </File>
- <File
- RelativePath="digidrum.cpp">
- <FileConfiguration
- Name="Debug|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions=""
- BasicRuntimeChecks="3"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- PreprocessorDefinitions=""/>
- </FileConfiguration>
- </File>
- <File
- RelativePath=".\XBMCYM.cpp">
- </File>
- <File
- RelativePath="Ym2149Ex.cpp">
- <FileConfiguration
- Name="Debug|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions=""
- BasicRuntimeChecks="3"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- PreprocessorDefinitions=""/>
- </FileConfiguration>
- </File>
- <File
- RelativePath="Ymload.cpp">
- <FileConfiguration
- Name="Debug|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions=""
- BasicRuntimeChecks="3"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- PreprocessorDefinitions=""/>
- </FileConfiguration>
- </File>
- <File
- RelativePath="YmMusic.cpp">
- <FileConfiguration
- Name="Debug|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions=""
- BasicRuntimeChecks="3"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- PreprocessorDefinitions=""/>
- </FileConfiguration>
- </File>
- <File
- RelativePath="YmUserInterface.cpp">
- <FileConfiguration
- Name="Debug|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions=""
- BasicRuntimeChecks="3"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- PreprocessorDefinitions=""/>
- </FileConfiguration>
- </File>
- <Filter
- Name="LZH"
- Filter="">
- <File
- RelativePath="LZH\LZH.H">
- </File>
- <File
- RelativePath="LZH\LZHXLIB.C">
- <FileConfiguration
- Name="Debug|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions=""
- BasicRuntimeChecks="3"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- PreprocessorDefinitions=""/>
- </FileConfiguration>
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl">
- <File
- RelativePath="Depacker.h">
- </File>
- <File
- RelativePath="digidrum.h">
- </File>
- <File
- RelativePath="StSoundLibrary.h">
- </File>
- <File
- RelativePath="Ym2149Ex.h">
- </File>
- <File
- RelativePath="Ymload.h">
- </File>
- <File
- RelativePath="YmMusic.h">
- </File>
- <File
- RelativePath="YmTypes.h">
- </File>
- </Filter>
- <File
- RelativePath="..\revision.txt">
- </File>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
Modified: branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/XBMCYM.cpp
===================================================================
--- branches/linuxport/sources/paplayer/YMCodec/StSoundLibrary/XBMCYM.cpp 2008-07-14 12:05:16 UTC (rev 14067)
+++ branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/XBMCYM.cpp 2008-07-14 18:42:49 UTC (rev 14069)
@@ -1,74 +0,0 @@
-#include "StSoundLibrary.h"
-#include "YmMusic.h"
-
-#include <stdio.h>
-
-#ifdef __linux__
-#define __declspec(x)
-#endif
-
-extern "C"
-{
- int __declspec(dllexport) DLL_LoadYM(const char* szFileName)
- {
- YMMUSIC *pMusic = ymMusicCreate();
-
- if (ymMusicLoad(pMusic,szFileName))
- {
- ymMusicSetLoopMode(pMusic,YMFALSE);
- ymMusicPlay(pMusic);
- return (int)pMusic;
- }
-
- ymMusicDestroy(pMusic);
-
- return 0;
- }
-
- void __declspec(dllexport) DLL_FreeYM(int ym)
- {
- ymMusicStop((YMMUSIC*)ym);
- ymMusicDestroy((YMMUSIC*)ym);
- }
-
- int __declspec(dllexport) DLL_FillBuffer(int ym, char* szBuffer, int iSize)
- {
- if (ymMusicCompute((YMMUSIC*)ym,(ymsample*)szBuffer,iSize/2))
- return iSize;
- else
- return 0;
- }
-
- unsigned long __declspec(dllexport) DLL_Seek(int ym, unsigned long timepos)
- {
- if (ymMusicIsSeekable((YMMUSIC*)ym))
- {
- ymMusicSeek((YMMUSIC*)ym,timepos);
- return timepos;
- }
-
- return 0;
- }
-
- const char __declspec(dllexport) *DLL_GetTitle(int ym)
- {
- ymMusicInfo_t info;
- ymMusicGetInfo((YMMUSIC*)ym,&info);
- return info.pSongName;
- }
-
- const char __declspec(dllexport) *DLL_GetArtist(int ym)
- {
- ymMusicInfo_t info;
- ymMusicGetInfo((YMMUSIC*)ym,&info);
- return info.pSongAuthor;
- }
-
- unsigned long __declspec(dllexport) DLL_GetLength(int ym)
- {
- ymMusicInfo_t info;
- ymMusicGetInfo((YMMUSIC*)ym,&info);
- return info.musicTimeInSec;
- }
-}
-
Modified: branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/Ym2149Ex.cpp
===================================================================
--- branches/linuxport/sources/paplayer/YMCodec/StSoundLibrary/Ym2149Ex.cpp 2008-07-14 12:05:16 UTC (rev 14067)
+++ branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/Ym2149Ex.cpp 2008-07-14 18:42:49 UTC (rev 14069)
@@ -1,603 +0,0 @@
-/*-----------------------------------------------------------------------------
-
- ST-Sound ( YM files player library )
-
- Copyright (C) 1995-1999 Arnaud Carre ( http://leonard.oxg.free.fr )
-
- Extended YM-2149 Emulator, with ATARI music demos effects.
- (SID-Like, Digidrum, Sync Buzzer, Sinus SID and Pattern SID)
-
------------------------------------------------------------------------------*/
-
-/*-----------------------------------------------------------------------------
-
- This file is part of ST-Sound
-
- ST-Sound is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- ST-Sound is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with ST-Sound; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
------------------------------------------------------------------------------*/
-
-#include "YmTypes.h"
-#include <stdlib.h>
-#include <string.h>
-#include <math.h>
-#include <stdio.h>
-#include "Ym2149Ex.h"
-
-//-------------------------------------------------------------------
-// env shapes.
-//-------------------------------------------------------------------
-static const ymint Env00xx[8]={ 1,0,0,0,0,0,0,0 };
-static const ymint Env01xx[8]={ 0,1,0,0,0,0,0,0 };
-static const ymint Env1000[8]={ 1,0,1,0,1,0,1,0 };
-static const ymint Env1001[8]={ 1,0,0,0,0,0,0,0 };
-static const ymint Env1010[8]={ 1,0,0,1,1,0,0,1 };
-static const ymint Env1011[8]={ 1,0,1,1,1,1,1,1 };
-static const ymint Env1100[8]={ 0,1,0,1,0,1,0,1 };
-static const ymint Env1101[8]={ 0,1,1,1,1,1,1,1 };
-static const ymint Env1110[8]={ 0,1,1,0,0,1,1,0 };
-static const ymint Env1111[8]={ 0,1,0,0,0,0,0,0 };
-static const ymint * EnvWave[16] = { Env00xx,Env00xx,Env00xx,Env00xx,
- Env01xx,Env01xx,Env01xx,Env01xx,
- Env1000,Env1001,Env1010,Env1011,
- Env1100,Env1101,Env1110,Env1111};
-
-static ymint ymVolumeTable[16] =
-{ 62,161,265,377,580,774,1155,1575,2260,3088,4570,6233,9330,13187,21220,32767};
-
-
-//----------------------------------------------------------------------
-// Very cool and fast DC Adjuster ! This is the *new* stuff of that
-// package coz I get that idea working on SainT in 2004 !
-// ( almost everything here is from 1995 !)
-//----------------------------------------------------------------------
-CDcAdjuster::CDcAdjuster()
-{
- Reset();
-}
-
-void CDcAdjuster::Reset(void)
-{
- for (ymint i=0;i<DC_ADJUST_BUFFERLEN;i++)
- m_buffer[i] = 0;
-
- m_pos = 0;
- m_sum = 0;
-}
-
-void CDcAdjuster::AddSample(ymint sample)
-{
- m_sum -= m_buffer[m_pos];
- m_sum += sample;
-
- m_buffer[m_pos] = sample;
- m_pos = (m_pos+1)&(DC_ADJUST_BUFFERLEN-1);
-}
-
-
-
-
-//----------------------------------------------------------------------
-// Very simple low pass filter.
-// Filter coefs are 0.25,0.5,0.25
-//----------------------------------------------------------------------
-static ymsample *pInternalInput = NULL;
-static yms32 internalInputLen = 0;
-static ymsample oldFilter[2] = {0,0};
-
-ymsample *getBufferCopy(ymsample *pIn,ymint len)
-{
- if (len>internalInputLen)
- {
- if (pInternalInput) free(pInternalInput);
- pInternalInput = (ymsample*)malloc(len*sizeof(ymsample));
- internalInputLen = len;
- }
- memcpy(pInternalInput,pIn,len*sizeof(ymsample));
- return pInternalInput;
-}
-
-#define DSP_FILTER(a,b,c) (((ymint)(a)+((ymint)b+(ymint)b)+(ymint)(c))>>2)
-
-
-// Cheap but efficient low pass filter ( 0.25,0.5,0.25 )
-// filter: out -> out
-void lowpFilterProcess(ymsample *pOut,ymint len) // private
-{
-ymsample *pIn;
-ymint i;
-
- pIn = getBufferCopy(pOut,len);
- if (len>0) *pOut++ = DSP_FILTER(oldFilter[0],oldFilter[1],pIn[0]);
- if (len>1) *pOut++ = DSP_FILTER(oldFilter[1],pIn[0],pIn[1]);
- oldFilter[0] = pIn[len-2];
- oldFilter[1] = pIn[len-1];
- for (i=2;i<len;i++)
- {
- *pOut++ = DSP_FILTER(pIn[0],pIn[1],pIn[2]);
- pIn++;
- }
-}
-
-
-
-static ymu8 *ym2149EnvInit(ymu8 *pEnv,ymint a,ymint b)
-{
-ymint i;
-ymint d;
-
- d = b-a;
- a *= 15;
- for (i=0;i<16;i++)
- {
- *pEnv++ = (ymu8)a;
- a += d;
- }
- return pEnv;
-}
-
-
-CYm2149Ex::CYm2149Ex(ymu32 masterClock,ymint prediv,ymu32 playRate)
-{
-ymint i,env;
-
-
- frameCycle = 0;
- if (ymVolumeTable[15]==32767) // excuse me for that bad trick ;-)
- {
- for (i=0;i<16;i++)
- {
- ymVolumeTable[i] = (ymVolumeTable[i]*2)/6;
- }
- }
-
- //--------------------------------------------------------
- // build env shapes.
- //--------------------------------------------------------
- ymu8 *pEnv = &envData[0][0][0];
- for (env=0;env<16;env++)
- {
- const ymint *pse = EnvWave[env];
- for (ymint phase=0;phase<4;phase++)
- {
- pEnv = ym2149EnvInit(pEnv,pse[phase*2+0],pse[phase*2+1]);
- }
- }
-
- internalClock = masterClock/prediv; // YM at 2Mhz on ATARI ST
- replayFrequency = playRate; // DAC at 44.1Khz on PC
- cycleSample = 0;
-
- // Set volume voice pointers.
- pVolA = &volA;
- pVolB = &volB;
- pVolC = &volC;
-
- // Reset YM2149
- reset();
-
-
-}
-
-CYm2149Ex::~CYm2149Ex()
-{
-}
-
-void CYm2149Ex::setClock(ymu32 _clock)
-{
- internalClock = _clock;
-}
-
-
-ymu32 CYm2149Ex::toneStepCompute(ymint rHigh,ymint rLow)
-{
-
- ymint per = rHigh&15;
- per = (per<<8)+rLow;
- if (per<=5)
- {
- return 0;
- }
-
-#ifdef YM_INTEGER_ONLY
- yms64 step = internalClock;
- step <<= (15+16-3);
- step /= (per * replayFrequency);
-#else
- ymfloat step = internalClock;
- step /= ((ymfloat)per*8.0*(ymfloat)replayFrequency);
- step *= 32768.0*65536.0;
-#endif
- ymu32 istep = (ymu32)step;
- return istep;
-}
-
-ymu32 CYm2149Ex::noiseStepCompute(ymint rNoise)
-{
-
-
- ymint per = (rNoise&0x1f);
- if (per<3)
- return 0;
-
-#ifdef YM_INTEGER_ONLY
- yms64 step = internalClock;
- step <<= (16-1-3);
- step /= (per * replayFrequency);
-#else
- ymfloat step = internalClock;
- step /= ((ymfloat)per*8.0*(ymfloat)replayFrequency);
- step *= 65536.0/2.0;
-#endif
-
- return (ymu32)step;
-}
-
-ymu32 CYm2149Ex::rndCompute(void)
-{
- ymint rBit = (rndRack&1) ^ ((rndRack>>2)&1);
- rndRack = (rndRack>>1) | (rBit<<16);
- return (rBit ? 0 : 0xffff);
-}
-
-ymu32 CYm2149Ex::envStepCompute(ymint rHigh,ymint rLow)
-{
-
-
- ymint per = rHigh;
- per = (per<<8)+rLow;
- if (per<3)
- return 0;
-
-#ifdef YM_INTEGER_ONLY
- yms64 step = internalClock;
- step <<= (16+16-9);
- step /= (per * replayFrequency);
-#else
- ymfloat step = internalClock;
- step /= ((ymfloat)per*512.0*(ymfloat)replayFrequency);
- step *= 65536.0*65536.0;
-#endif
-
- return (ymu32)step;
-}
-
-
-void CYm2149Ex::reset(void)
-{
- writeRegister(7,0x3f);
- writeRegister(8,0);
- writeRegister(9,0);
- writeRegister(10,0);
- currentNoise = 0xffff;
- rndRack = 1;
- sidStop(0);
- sidStop(1);
- sidStop(2);
-
- envShape = 0;
- envPhase = 0;
- envPos = 0;
-
- m_dcAdjust.Reset();
-
- memset(specialEffect,0,sizeof(specialEffect));
-
- syncBuzzerStop();
-
-}
-
-
-void CYm2149Ex::sidVolumeCompute(ymint voice,ymint *pVol)
-{
-
- struct YmSpecialEffect *pVoice = specialEffect+voice;
-
- if (pVoice->bSid)
- {
- if (pVoice->sidPos & (1<<31))
- writeRegister(8+voice,pVoice->sidVol);
- else
- writeRegister(8+voice,0);
- }
- else if (pVoice->bDrum)
- {
-// writeRegister(8+voice,pVoice->drumData[pVoice->drumPos>>DRUM_PREC]>>4);
-
- *pVol = (pVoice->drumData[pVoice->drumPos>>DRUM_PREC] * 255) / 6;
-
- switch (voice)
- {
- case 0:
- pVolA = &volA;
- mixerTA = 0xffff;
- mixerNA = 0xffff;
- break;
- case 1:
- pVolB = &volB;
- mixerTB = 0xffff;
- mixerNB = 0xffff;
- break;
- case 2:
- pVolC = &volC;
- mixerTC = 0xffff;
- mixerNC = 0xffff;
- break;
- }
-
- pVoice->drumPos += pVoice->drumStep;
- if ((pVoice->drumPos>>DRUM_PREC) >= pVoice->drumSize)
- {
- pVoice->bDrum = YMFALSE;
- }
-
- }
-}
-
-ymsample CYm2149Ex::nextSample(void)
-{
-ymint vol;
-ymint bt,bn;
-
- if (noisePos&0xffff0000)
- {
- currentNoise ^= rndCompute();
- noisePos &= 0xffff;
- }
- bn = currentNoise;
-
- volE = ymVolumeTable[envData[envShape][envPhase][envPos>>(32-5)]];
-
- sidVolumeCompute(0,&volA);
- sidVolumeCompute(1,&volB);
- sidVolumeCompute(2,&volC);
-
- //---------------------------------------------------
- // Tone+noise+env+DAC for three voices !
- //---------------------------------------------------
- bt = ((((yms32)posA)>>31) | mixerTA) & (bn | mixerNA);
- vol = (*pVolA)&bt;
- bt = ((((yms32)posB)>>31) | mixerTB) & (bn | mixerNB);
- vol += (*pVolB)&bt;
- bt = ((((yms32)posC)>>31) | mixerTC) & (bn | mixerNC);
- vol += (*pVolC)&bt;
-
- //---------------------------------------------------
- // Inc
- //---------------------------------------------------
- posA += stepA;
- posB += stepB;
- posC += stepC;
- noisePos += noiseStep;
- envPos += envStep;
- if (0 == envPhase)
- {
- if (envPos<envStep)
- {
- envPhase = 1;
- }
- }
-
- syncBuzzerPhase += syncBuzzerStep;
- if (syncBuzzerPhase&(1<<31))
- {
- envPos = 0;
- envPhase = 0;
- syncBuzzerPhase &= 0x7fffffff;
- }
-
- specialEffect[0].sidPos += specialEffect[0].sidStep;
- specialEffect[1].sidPos += specialEffect[1].sidStep;
- specialEffect[2].sidPos += specialEffect[2].sidStep;
-
- //---------------------------------------------------
- // Normalize process
- //---------------------------------------------------
- m_dcAdjust.AddSample(vol);
- return (vol - m_dcAdjust.GetDcLevel());
-}
-
-
-ymint CYm2149Ex::readRegister(ymint reg)
-{
- if ((reg>=0) && (reg<=13)) return registers[reg];
- else return -1;
-}
-
-void CYm2149Ex::writeRegister(ymint reg,ymint data)
-{
-
- switch (reg)
- {
- case 0:
- registers[0] = data&255;
- stepA = toneStepCompute(registers[1],registers[0]);
- if (!stepA) posA = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !)
- break;
-
- case 2:
- registers[2] = data&255;
- stepB = toneStepCompute(registers[3],registers[2]);
- if (!stepB) posB = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !)
- break;
-
- case 4:
- registers[4] = data&255;
- stepC = toneStepCompute(registers[5],registers[4]);
- if (!stepC) posC = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !)
- break;
-
- case 1:
- registers[1] = data&15;
- stepA = toneStepCompute(registers[1],registers[0]);
- if (!stepA) posA = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !)
- break;
-
- case 3:
- registers[3] = data&15;
- stepB = toneStepCompute(registers[3],registers[2]);
- if (!stepB) posB = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !)
- break;
-
- case 5:
- registers[5] = data&15;
- stepC = toneStepCompute(registers[5],registers[4]);
- if (!stepC) posC = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !)
- break;
-
- case 6:
- registers[6] = data&0x1f;
- noiseStep = noiseStepCompute(registers[6]);
- if (!noiseStep)
- {
- noisePos = 0;
- currentNoise = 0xffff;
- }
- break;
-
- case 7:
- registers[7] = data&255;
- mixerTA = (data&(1<<0)) ? 0xffff : 0;
- mixerTB = (data&(1<<1)) ? 0xffff : 0;
- mixerTC = (data&(1<<2)) ? 0xffff : 0;
- mixerNA = (data&(1<<3)) ? 0xffff : 0;
- mixerNB = (data&(1<<4)) ? 0xffff : 0;
- mixerNC = (data&(1<<5)) ? 0xffff : 0;
- break;
-
- case 8:
- registers[8] = data&31;
- volA = ymVolumeTable[data&15];
- if (data&0x10)
- pVolA = &volE;
- else
- pVolA = &volA;
- break;
-
- case 9:
- registers[9] = data&31;
- volB = ymVolumeTable[data&15];
- if (data&0x10)
- pVolB = &volE;
- else
- pVolB = &volB;
- break;
-
- case 10:
- registers[10] = data&31;
- volC = ymVolumeTable[data&15];
- if (data&0x10)
- pVolC = &volE;
- else
- pVolC = &volC;
- break;
-
- case 11:
- registers[11] = data&255;
- envStep = envStepCompute(registers[12],registers[11]);
- break;
-
- case 12:
- registers[12] = data&255;
- envStep = envStepCompute(registers[12],registers[11]);
- break;
-
- case 13:
- registers[13] = data&0xf;
- envPos = 0;
- envPhase = 0;
- envShape = data&0xf;
- break;
-
- }
-}
-
-void CYm2149Ex::update(ymsample *pSampleBuffer,ymint nbSample)
-{
-
-
- ymsample *pBuffer = pSampleBuffer;
- ymint nbs = nbSample;
-
-
- if (nbSample>0)
- {
- do
- {
- *pSampleBuffer++ = nextSample();
- }
- while (--nbSample);
- }
-
- lowpFilterProcess((ymsample*)pBuffer,nbs);
-
-}
-
-void CYm2149Ex::drumStart(ymint voice,ymu8 *pDrumBuffer,ymu32 drumSize,ymint drumFreq)
-{
- specialEffect[voice].drumData = pDrumBuffer;
- specialEffect[voice].drumPos = 0;
- specialEffect[voice].drumSize = drumSize;
- specialEffect[voice].drumStep = (drumFreq<<DRUM_PREC)/replayFrequency;
- specialEffect[voice].bDrum = YMTRUE;
-}
-
-void CYm2149Ex::drumStop(ymint voice)
-{
- specialEffect[voice].bDrum = YMFALSE;
-}
-
-void CYm2149Ex::sidStart(ymint voice,ymint timerFreq,ymint vol)
-{
-#ifdef YM_INTEGER_ONLY
- ymu32 tmp = timerFreq * ((1<<31) / replayFrequency);
-#else
- ymfloat tmp = (ymfloat)timerFreq*((ymfloat)(1<<31))/(ymfloat)replayFrequency;
-#endif
- specialEffect[voice].sidStep = (ymu32)tmp;
- specialEffect[voice].sidVol = vol&15;
- specialEffect[voice].bSid = YMTRUE;
-}
-
-void CYm2149Ex::sidSinStart(ymint voice,ymint timerFreq,ymint vol)
-{
- // TODO
-}
-
-void CYm2149Ex::sidStop(ymint voice)
-{
- specialEffect[voice].bSid = YMFALSE;
-}
-
-void CYm2149Ex::syncBuzzerStart(ymint timerFreq,ymint _envShape)
-{
-#ifdef YM_INTEGER_ONLY
- ymu32 tmp = timerFreq * ((1<<31) / replayFrequency);
-#else
- ymfloat tmp = (ymfloat)timerFreq*((ymfloat)(1<<31))/(ymfloat)replayFrequency;
-#endif
- envShape = envShape&15;
- syncBuzzerStep = (ymu32)tmp;
- syncBuzzerPhase = 0;
- bSyncBuzzer = YMTRUE;
-}
-
-void CYm2149Ex::syncBuzzerStop(void)
-{
- bSyncBuzzer = YMFALSE;
- syncBuzzerPhase = 0;
- syncBuzzerStep = 0;
-}
-
Modified: branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/digidrum.cpp
===================================================================
--- branches/linuxport/sources/paplayer/YMCodec/StSoundLibrary/digidrum.cpp 2008-07-14 12:05:16 UTC (rev 14067)
+++ branches/linuxport/XBMC/xbmc/cores/paplayer/YMCodec/StSoundLibrary/digidrum.cpp 2008-07-14 18:42:49 UTC (rev 14069)
@@ -1,2584 +0,0 @@
-/*-----------------------------------------------------------------------------
-
- ST-Sound ( YM files player library )
-
- Copyright (C) 1995-1999 Arnaud Carre ( http://leonard.oxg.free.fr )
-
- Sample datas of some common YM music. ( YM2 format )
- YM3 or greater uses sample data inside the music file.
-
------------------------------------------------------------------------------*/
-
-/*-----------------------------------------------------------------------------
-
- This file is part of ST-Sound
-
- ST-Sound is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- ST-Sound is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with ST-Sound; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
------------------------------------------------------------------------------*/
-
-#include "YmTypes.h"
-
-static ymu8 sample00[631]={
- 0xCC,0x84,0xB4,0x70,0x90,0x94,0x70,0x80,0x80,0xAC,
- 0x58,0xFF,0x00,0x80,0x54,0x40,0x6C,0x78,0x94,0x7C,
- 0x8C,0x58,0x84,0x08,0x4C,0x54,0x78,0xA8,0xDC,0xDC,
- 0xFF,0xFF,0xF0,0xA4,0x70,0x44,0x3C,0x2C,0x14,0x00,
- 0x00,0x00,0x00,0x1C,0x90,0xE4,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xF4,0xB4,0x8C,0x44,0x08,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x28,0x70,0xDC,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xC0,0x78,0x38,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x38,0x84,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xC0,0x84,0x50,0x18,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x04,0x50,0x98,0xDC,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xD8,0x8C,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x58,
- 0xA0,0xDC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDC,0xC0,0x88,
- 0x58,0x1C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x40,
- 0x64,0x80,0xA8,0xD0,0xF8,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xE4,0xBC,0x8C,0x68,0x48,0x20,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x04,0x2C,0x60,0x78,0xA0,0xC4,0xF0,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEC,0xC4,0x98,0x64,
- 0x30,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0C,0x2C,0x50,
- 0x74,0x8C,0xB0,0xCC,0xE8,0xFC,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF8,
- 0xF0,0xDC,0xC8,0xBC,0xB0,0x90,0x80,0x70,0x5C,0x58,
- 0x48,0x38,0x38,0x28,0x24,0x1C,0x24,0x24,0x20,0x28,
- 0x38,0x48,0x58,0x50,0x50,0x5C,0x60,0x5C,0x5C,0x5C,
- 0x5C,0x60,0x5C,0x60,0x60,0x5C,0x54,0x5C,0x58,0x64,
- 0x68,0x64,0x64,0x6C,0x74,0x7C,0x78,0x80,0x88,0x90,
- 0x98,0x9C,0xA8,0xB8,0xB8,0xC0,0xC8,0xD0,0xD8,0xE0,
- 0xE0,0xE4,0xDC,0xD4,0xD8,0xDC,0xD0,0xCC,0xC0,0xC4,
- 0xBC,0xB0,0xA8,0x9C,0x98,0x94,0x90,0x7C,0x74,0x6C,
- 0x64,0x4C,0x40,0x30,0x20,0x18,0x08,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x0C,0x14,0x28,
- 0x34,0x44,0x50,0x64,0x74,0x84,0x98,0x98,0xAC,0xC0,
- 0xD0,0xD8,0xEC,0xF0,0xFC,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF0,0xD8,
- 0xD4,0xC8,0xBC,0x9C,0x8C,0x6C,0x74,0x50,0x40,0x34,
- 0x24,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x24,
- 0x38,0x4C,0x58,0x6C,0x80,0x90,0xA4,0xAC,0xBC,0xC8,
- 0xD8,0xE4,0xE4,0xEC,0xF0,0xF4,0xFC,0xFC,0xFC,0xF8,
- 0xFC,0xFC,0xF8,0xF8,0xF0,0xF0,0xEC,0xEC,0xE4,0xE0,
- 0xD8,0xD0,0xC4,0xBC,0xB0,0xA0,0x94,0x88,0x78,0x68,
- 0x58,0x44,0x38,0x30,0x24,0x20,0x14,0x0C,0x08,0x00,
- 0x00,0x00,0x04,0x0C,0x14,0x18,0x18,0x20,0x24,0x34,
- 0x38,0x40,0x48,0x50,0x5C,0x60,0x6C,0x70,0x74,0x80,
- 0x8C,0x90,0x98,0x9C,0xAC,0xB0,0xB8,0xC4,0xC0,0xBC,
- 0xC0,0xC8,0xD0,0xCC,0xC8,0xC4,0xC0,0xC0,0xC0,0xB4,
- 0xB4,0xAC,0xB0,0xA8,0xA4,0xA4,0x9C,0x98,0x94,0x94,
- 0x94,0x94,0x94,0x8C,0x80,0x80,0x74,0x74,0x70,0x64,
- 0x58,0x50,0x4C,0x4C,0x44,0x40,0x48,0x48,0x4C,0x4C,
- 0x4C,0x58,0x60,0x68,0x6C,0x6C,0x74,0x7C,0x7C,0x84,
- 0x84,0x88,0x8C,0x8C,0x88,0x88,0x84,0x84,0x84,0x7C,
- 0x78,0x70,0x6C,0x68,0x64,0x64,0x64,0x60,0x68,0x6C,
- 0x6C,0x70,0x7C,0x84,0x80,0x80,0x80,0x80,0x80,0x80,
- 0x80,};
-static ymu8 sample01[631]={
- 0x97,0x81,0x90,0x7B,0x84,0x86,0x7B,0x80,0x80,0x8D,
- 0x73,0xA7,0x58,0x80,0x72,0x6C,0x79,0x7D,0x86,0x7E,
- 0x83,0x73,0x81,0x5A,0x6F,0x72,0x7D,0x8C,0x9C,0x9C,
- 0xA7,0xA7,0xA2,0x8B,0x7B,0x6D,0x6A,0x65,0x5E,0x58,
- 0x58,0x58,0x58,0x60,0x84,0x9F,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA4,0x90,0x83,0x6D,0x5A,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x64,0x7B,0x9C,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0x93,0x7D,0x69,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x69,0x81,0xA1,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0x93,0x81,0x71,0x5F,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x59,0x71,0x87,0x9C,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0x9B,0x83,0x6D,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x64,0x73,
- 0x89,0x9C,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0x9C,0x93,0x82,
- 0x73,0x60,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x5F,0x6C,
- 0x77,0x80,0x8C,0x98,0xA5,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0x9F,0x92,0x83,0x78,0x6E,0x62,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x59,0x65,0x76,0x7D,0x89,0x95,0xA2,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA1,0x95,0x87,0x77,
- 0x67,0x59,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x5B,0x65,0x71,
- 0x7C,0x83,0x8E,0x97,0xA0,0xA6,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA5,
- 0xA2,0x9C,0x96,0x92,0x8E,0x84,0x80,0x7B,0x74,0x73,
- 0x6E,0x69,0x69,0x64,0x63,0x60,0x63,0x63,0x62,0x64,
- 0x69,0x6E,0x73,0x71,0x71,0x74,0x76,0x74,0x74,0x74,
- 0x74,0x76,0x74,0x76,0x76,0x74,0x72,0x74,0x73,0x77,
- 0x78,0x77,0x77,0x79,0x7C,0x7E,0x7D,0x80,0x82,0x84,
- 0x87,0x88,0x8C,0x91,0x91,0x93,0x96,0x98,0x9B,0x9D,
- 0x9D,0x9F,0x9C,0x9A,0x9B,0x9C,0x98,0x97,0x93,0x95,
- 0x92,0x8E,0x8C,0x88,0x87,0x86,0x84,0x7E,0x7C,0x79,
- 0x77,0x6F,0x6C,0x67,0x62,0x5F,0x5A,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x59,0x5B,0x5E,0x64,
- 0x68,0x6D,0x71,0x77,0x7C,0x81,0x87,0x87,0x8D,0x93,
- 0x98,0x9B,0xA1,0xA2,0xA6,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA2,0x9B,
- 0x9A,0x96,0x92,0x88,0x83,0x79,0x7C,0x71,0x6C,0x68,
- 0x63,0x5F,0x5A,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x5A,0x5D,0x63,
- 0x69,0x6F,0x73,0x79,0x80,0x84,0x8B,0x8D,0x92,0x96,
- 0x9B,0x9F,0x9F,0xA1,0xA2,0xA4,0xA6,0xA6,0xA6,0xA5,
- 0xA6,0xA6,0xA5,0xA5,0xA2,0xA2,0xA1,0xA1,0x9F,0x9D,
- 0x9B,0x98,0x95,0x92,0x8E,0x89,0x86,0x82,0x7D,0x78,
- 0x73,0x6D,0x69,0x67,0x63,0x62,0x5E,0x5B,0x5A,0x58,
- 0x58,0x58,0x59,0x5B,0x5E,0x5F,0x5F,0x62,0x63,0x68,
- 0x69,0x6C,0x6E,0x71,0x74,0x76,0x79,0x7B,0x7C,0x80,
- 0x83,0x84,0x87,0x88,0x8D,0x8E,0x91,0x95,0x93,0x92,
- 0x93,0x96,0x98,0x97,0x96,0x95,0x93,0x93,0x93,0x90,
- 0x90,0x8D,0x8E,0x8C,0x8B,0x8B,0x88,0x87,0x86,0x86,
- 0x86,0x86,0x86,0x83,0x80,0x80,0x7C,0x7C,0x7B,0x77,
- 0x73,0x71,0x6F,0x6F,0x6D,0x6C,0x6E,0x6E,0x6F,0x6F,
- 0x6F,0x73,0x76,0x78,0x79,0x79,0x7C,0x7E,0x7E,0x81,
- 0x81,0x82,0x83,0x83,0x82,0x82,0x81,0x81,0x81,0x7E,
- 0x7D,0x7B,0x79,0x78,0x77,0x77,0x77,0x76,0x78,0x79,
- 0x79,0x7B,0x7E,0x81,0x80,0x80,0x80,0x80,0x80,0x80,
- 0x80,};
-static ymu8 sample02[490]={
- 0x74,0xB4,0x96,0x64,0x3C,0x00,0x1E,0x70,0x00,0x40,
- 0xF9,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCA,0x4C,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0A,0xDB,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xE4,0x5A,0x16,0x24,0x02,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xC4,
- 0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xED,0xFF,0x4A,0x06,0x1A,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x1E,0x84,0xBA,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFD,0xF9,0x6E,0x00,0x3A,0x0C,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x96,
- 0x8A,0x58,0x60,0xDD,0xB3,0x40,0xFF,0xF3,0x90,0xFD,
- 0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xE9,
- 0x8A,0xEB,0xB9,0x44,0x04,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x08,0x50,0x14,0x36,0xFD,0xD3,0xD9,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAD,0xCF,
- 0xF5,0x92,0xFD,0xC2,0x10,0xA6,0x24,0x06,0x14,0x00,
- 0x00,0x00,0x00,0x00,0x1C,0x00,0x72,0x18,0x6A,0xF1,
- 0x80,0xFF,0xFF,0xFF,0xFF,0xF9,0xFF,0xF3,0xAA,0x88,
- 0xA8,0xAA,0x8C,0x1A,0xCA,0x50,0xB9,0x00,0xD9,0x5E,
- 0xA2,0x24,0x30,0x80,0x30,0x2E,0x00,0x0C,0x5E,0x06,
- 0x08,0x70,0x58,0x00,0x9E,0xFD,0xA8,0xFF,0xFF,0xF7,
- 0xFF,0xF5,0xFF,0xF5,0xFB,0xD5,0x70,0xC8,0xB6,0xA2,
- 0x36,0xC3,0x00,0x72,0x30,0x2E,0x00,0x3E,0x30,0x2E,
- 0x1C,0x74,0x56,0x32,0x5C,0xD5,0x9C,0x74,0xD0,0xDB,
- 0xB5,0xB9,0xCB,0x9E,0xE0,0xFF,0x90,0xCC,0x98,0xE9,
- 0x72,0xB4,0xB8,0x60,0xAE,0x6C,0x0C,0x44,0x4A,0x3C,
- 0x36,0x60,0x10,0x2C,0x88,0x02,0x88,0x60,0x92,0x94,
- 0xE1,0x6E,0xC4,0xE7,0xF7,0xF3,0x7A,0xCB,0xD0,0xAA,
- 0x6E,0xC4,0xCD,0xB6,0x6A,0x90,0x44,0x34,0x5A,0x20,
- 0x58,0x10,0x40,0x22,0x10,0x38,0x4A,0x42,0x5A,0x74,
- 0x42,0x92,0xC6,0xBE,0xE1,0xDF,0xE7,0xFF,0xF5,0xD5,
- 0xB1,0xC8,0xCA,0xD5,0x6E,0x6A,0x8A,0x40,0x52,0x22,
- 0x72,0x48,0x44,0x3E,0x92,0x82,0x66,0xD2,0x88,0xD2,
- 0xAC,0xA0,0x84,0x8A,0x8C,0x94,0xA3,0x86,0xE3,0x90,
- 0x7A,0xE1,0x8E,0xE7,0xAC,0x7C,0xAC,0xCD,0x86,0x7A,
- 0xA4,0x80,0x9A,0x3A,0x76,0x86,0x4E,0x50,0x94,0x4C,
- 0x32,0x9E,0x70,0xA0,0x72,0x74,0x56,0xAE,0xB8,0x80,
- 0xCA,0x82,0xA4,0x7C,0xEA,0xAA,0x84,0x32,0xD5,0xA2,
- 0x9A,0x50,0x4A,0x6A,0x28,0x9A,0x18,0x16,0x78,0x82,
- 0x94,0x94,0x9C,0x92,0x8E,0x7E,0x72,0x5A,0x88,0x44,
- 0x98,0xA8,0x64,0xA0,0x66,0xA6,0x84,0x7E,0x8C,0x92,
- 0xBC,0x92,0xB6,0x92,0xAA,0x5A,0x70,0x7A,0x66,0x7E,
- 0x4E,0x62,0xAE,0x6A,0x82,0x84,0x54,0x88,0x80,0x94,
- 0x78,0xBE,0xAC,0xA2,0xE1,0x8E,0xDD,0xD6,0xA6,0xAA,
- 0x60,0xA2,0x86,0x90,0x78,0x5C,0x94,0x72,0x54,0xB2,
- 0x6A,0x74,0x60,0x90,0x78,0x5A,0x9A,0x70,0x8C,0xA2,
- 0x64,0x4C,0xA8,0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample03[490]={
- 0x7C,0x90,0x86,0x77,0x6A,0x58,0x61,0x7B,0x58,0x6C,
- 0xA5,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0x97,0x6F,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x5B,0x9C,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0x9F,0x74,0x5E,0x63,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x64,0x95,
- 0xA2,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA2,0xA7,0x6F,0x59,0x60,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,
- 0x61,0x81,0x92,0x93,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA5,0x7A,0x58,0x6A,0x5B,
- 0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x86,
- 0x83,0x73,0x76,0x9D,0x8F,0x6C,0xA7,0xA3,0x84,0xA7,
- 0xA2,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA0,
- 0x83,0xA1,0x91,0x6D,0x59,0x58,0x58,0x58,0x58,0x58,
- 0x58,0x58,0x58,0x5A,0x71,0x5E,0x68,0xA7,0x99,0x9B,
- 0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0x8E,0x98,
- 0xA4,0x85,0xA7,0x94,0x5D,0x8B,0x63,0x59,0x5E,0x58,
- 0x58,0x58,0x58,0x58,0x60,0x58,0x7B,0x5F,0x79,0xA3,
- 0x80,0xA7,0xA7,0xA7,0xA7,0xA5,0xA7,0xA3,0x8D,0x82,
- 0x8C,0x8D,0x83,0x60,0x97,0x71,0x91,0x58,0x9B,0x75,
- 0x8A,0x63,0x67,0x80,0x67,0x66,0x58,0x5B,0x75,0x59,
- 0x5A,0x7B,0x73,0x58,0x89,0xA7,0x8C,0xA7,0xA7,0xA5,
- 0xA7,0xA4,0xA7,0xA4,0xA6,0x9A,0x7B,0x96,0x90,0x8A,
- 0x68,0x94,0x58,0x7B,0x67,0x66,0x58,0x6B,0x67,0x66,
- 0x60,0x7C,0x72,0x67,0x74,0x9A,0x88,0x7C,0x98,0x9C,
- 0x90,0x91,0x97,0x89,0x9D,0xA7,0x84,0x97,0x87,0xA0,
- 0x7B,0x90,0x91,0x76,0x8E,0x79,0x5B,0x6D,0x6F,0x6A,
- 0x68,0x76,0x5D,0x65,0x82,0x58,0x82,0x76,0x85,0x86,
- 0x9E,0x7A,0x95,0xA0,0xA5,0xA3,0x7E,0x97,0x98,0x8D,
- 0x7A,0x95,0x98,0x90,0x79,0x84,0x6D,0x68,0x74,0x62,
- 0x73,0x5D,0x6C,0x62,0x5D,0x69,0x6F,0x6C,0x74,0x7C,
- 0x6C,0x85,0x95,0x93,0x9E,0x9D,0xA0,0xA7,0xA4,0x9A,
- 0x8F,0x96,0x97,0x9A,0x7A,0x79,0x83,0x6C,0x71,0x62,
- 0x7B,0x6E,0x6D,0x6B,0x85,0x80,0x77,0x99,0x82,0x99,
- 0x8D,0x89,0x81,0x83,0x83,0x86,0x8A,0x81,0x9E,0x84,
- 0x7E,0x9E,0x84,0xA0,0x8D,0x7E,0x8D,0x98,0x81,0x7E,
- 0x8B,0x80,0x88,0x6A,0x7C,0x81,0x70,0x71,0x86,0x6F,
- 0x67,0x89,0x7B,0x89,0x7B,0x7C,0x72,0x8E,0x91,0x80,
- 0x97,0x80,0x8B,0x7E,0xA1,0x8D,0x81,0x67,0x9A,0x8A,
- 0x88,0x71,0x6F,0x79,0x64,0x88,0x5F,0x5E,0x7D,0x80,
- 0x86,0x86,0x88,0x85,0x84,0x80,0x7B,0x74,0x82,0x6D,
- 0x87,0x8C,0x77,0x89,0x77,0x8B,0x81,0x80,0x83,0x85,
- 0x92,0x85,0x90,0x85,0x8D,0x74,0x7B,0x7E,0x77,0x80,
- 0x70,0x76,0x8E,0x79,0x80,0x81,0x72,0x82,0x80,0x86,
- 0x7D,0x93,0x8D,0x8A,0x9E,0x84,0x9D,0x9A,0x8B,0x8D,
- 0x76,0x8A,0x81,0x84,0x7D,0x74,0x86,0x7B,0x72,0x8F,
- 0x79,0x7C,0x76,0x84,0x7D,0x74,0x88,0x7B,0x83,0x8A,
- 0x77,0x6F,0x8C,0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample04[699]={
- 0x80,0x80,0x80,0x80,0x80,0x80,0x90,0x94,0x94,0xE0,
- 0x28,0xC0,0x00,0x34,0xFF,0xA4,0xFF,0x78,0xE4,0xC0,
- 0x98,0x70,0xFF,0x30,0x7C,0x28,0x58,0x00,0xFF,0x00,
- 0xFF,0x00,0x00,0x5C,0x64,0x00,0x94,0x38,0x00,0x8C,
- 0x00,0x00,0x00,0x50,0x48,0x4C,0xBC,0xC8,0xF8,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0x9C,0xF8,0x44,0x3C,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x38,
- 0x18,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xB8,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x68,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xCC,0x7C,0x38,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x4C,
- 0x88,0xE8,0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xE8,0xAC,0x48,0x24,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,
- 0x3C,0x7C,0x98,0xD4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xEC,0xC8,0xB4,0x9C,0x68,0x60,0x40,0x34,0x2C,
- 0x0C,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x0C,0x08,0x1C,0x1C,
- 0x20,0x50,0x58,0x64,0x7C,0x98,0x7C,0x90,0xA0,0xB4,
- 0xC0,0xB8,0xC8,0xDC,0xE4,0xF0,0xDC,0xF4,0xF0,0xFC,
- 0xFF,0xF0,0xF4,0xEC,0xE8,0xEC,0xE4,0xDC,0xF4,0xDC,
- 0xD8,0xE4,0xCC,0xD8,0xCC,0xBC,0xA0,0xAC,0xA0,0xB4,
- 0xA4,0xA4,0xA8,0x9C,0x90,0x84,0x74,0x64,0x6C,0x58,
- 0x68,0x5C,0x5C,0x54,0x4C,0x40,0x4C,0x40,0x20,0x34,
- 0x20,0x14,0x20,0x20,0x10,0x1C,0x18,0x18,0x18,0x18,
- 0x20,0x20,0x18,0x18,0x28,0x24,0x38,0x40,0x34,0x3C,
- 0x4C,0x48,0x50,0x48,0x50,0x58,0x68,0x68,0x70,0x74,
- 0x74,0x84,0x88,0x94,0x90,0x90,0x98,0xA0,0xA4,0xAC,
- 0xA8,0xB8,0xB0,0xB4,0xB8,0xA8,0xB4,0xB8,0xB4,0xBC,
- 0xC0,0xB4,0xB4,0xC4,0xC8,0xC8,0xC0,0xD0,0xBC,0xCC,
- 0xC8,0xCC,0xCC,0xE0,0xD0,0xD8,0xDC,0xDC,0xE8,0xEC,
- 0xEC,0xE0,0xDC,0xE0,0xD8,0xE0,0xDC,0xD0,0xC8,0xC8,
- 0xC8,0xC8,0xBC,0xB4,0xB4,0xA0,0x98,0x88,0x8C,0x8C,
- 0x80,0x7C,0x78,0x68,0x5C,0x5C,0x4C,0x48,0x40,0x40,
- 0x34,0x34,0x34,0x34,0x2C,0x28,0x24,0x18,0x20,0x14,
- 0x18,0x20,0x18,0x24,0x1C,0x18,0x28,0x1C,0x2C,0x2C,
- 0x2C,0x3C,0x38,0x30,0x40,0x38,0x44,0x48,0x4C,0x48,
- 0x54,0x50,0x5C,0x64,0x64,0x70,0x68,0x70,0x78,0x84,
- 0x84,0x88,0x98,0x9C,0xAC,0xAC,0xAC,0xAC,0xB4,0xA8,
- 0xC4,0xC4,0xBC,0xCC,0xC8,0xC0,0xC0,0xB8,0xB4,0xB4,
- 0xB4,0xB0,0xB4,0xA8,0xA8,0xA0,0x94,0x94,0x8C,0x88,
- 0x88,0x88,0x80,0x7C,0x78,0x70,0x6C,0x64,0x60,0x60,
- 0x5C,0x5C,0x54,0x54,0x4C,0x48,0x40,0x40,0x40,0x3C,
- 0x44,0x40,0x40,0x48,0x40,0x40,0x44,0x44,0x48,0x4C,
- 0x58,0x60,0x5C,0x64,0x64,0x6C,0x6C,0x70,0x6C,0x70,
- 0x78,0x88,0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample05[505]={
- 0x9F,0x74,0x71,0x47,0x4D,0x63,0x2C,0x2F,0x80,0x99,
- 0xD9,0xC3,0xFA,0xB3,0xA7,0xA1,0x94,0x95,0x5A,0x69,
- 0x02,0x29,0x0B,0x13,0x00,0x0B,0x0A,0x03,0x00,0x41,
- 0x92,0xC4,0xE5,0xFF,0xFF,0xFF,0xEB,0x93,0xF9,0xB4,
- 0xC3,0xFF,0xFF,0xFB,0xDD,0xF4,0xD7,0x88,0x52,0x22,
- 0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x4A,0x9E,0xE8,0xFF,0xFF,0xF9,0xFF,0xE1,
- 0xFF,0xFC,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFB,0xAA,0x7E,0x0E,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x09,0x1A,0x28,0x15,0x2D,0x23,0x15,0x0E,0x17,
- 0x17,0x24,0x38,0x36,0xA0,0x75,0x95,0x96,0x8F,0x90,
- 0x5B,0x4F,0x00,0x00,0x00,0x00,0x26,0x5E,0xA2,0xC7,
- 0xEF,0xFE,0xFF,0xFF,0xFA,0xFF,0xF9,0xE3,0xFA,0xD7,
- 0xFE,0x83,0x93,0xA1,0xC7,0x73,0xFF,0xDE,0xEC,0xFE,
- 0xCF,0xB5,0x89,0x8A,0x51,0x95,0x42,0x9E,0x7B,0x84,
- 0x93,0x8C,0x5C,0xA3,0x5C,0x46,0x16,0x0C,0x33,0x02,
- 0x73,0x10,0x1A,0x00,0x2B,0x00,0x48,0x22,0x73,0x52,
- 0x83,0xB2,0xA0,0x5C,0xB5,0x54,0x38,0x3D,0x00,0x0B,
- 0x2A,0x14,0x1D,0x2B,0x07,0x0F,0x2B,0x16,0x26,0x4A,
- 0x80,0xE2,0xDE,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFD,0xFF,0xFF,0xFA,0xFE,0xFF,0xFA,
- 0xFF,0xFA,0xFB,0xF7,0x80,0x4E,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x20,0x00,0x1B,0x1B,0x2C,0x1E,0x3D,0x44,0x56,0x52,
- 0x77,0x84,0x8B,0x8A,0x92,0x8D,0xBA,0xE8,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xF8,0xE0,0xD6,0xB4,0x7C,0x8A,
- 0x33,0x4B,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,
- 0x2A,0x52,0x1C,0x6B,0x5B,0x7A,0xAC,0xAD,0xA8,0xE2,
- 0xA7,0xD9,0x90,0xD1,0x95,0xD4,0x8A,0xD2,0xB6,0xE4,
- 0xEA,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEA,0xF9,
- 0xC8,0x95,0x4F,0x3E,0x0F,0x00,0x09,0x02,0x03,0x00,
- 0x29,0x05,0x12,0x17,0x0C,0x08,0x17,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x2A,0x22,0x40,
- 0x47,0x93,0x64,0x9B,0xAC,0xB5,0xF2,0xD7,0xFD,0xFE,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA7,0xF9,0xC6,
- 0xB3,0xE4,0xAA,0xBA,0x97,0xA6,0x44,0x60,0x1C,0x14,
- 0x47,0x10,0x05,0x00,0x00,0x00,0x1C,0x07,0x00,0x0B,
- 0x23,0x35,0x61,0x66,0xA6,0xA4,0x96,0x8E,0xA6,0xB0,
- 0x5D,0xBD,0x7D,0x7C,0x57,0x77,0x52,0x62,0x69,0x6E,
- 0x7B,0x62,0x97,0x80,0xA1,0x92,0xC2,0xA9,0xB0,0xC7,
- 0xFC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xF3,0xE7,0xC8,0xCB,0x91,0xAC,0x7D,0x67,
- 0x41,0x30,0x04,0x00,0x00,0x00,0x00,0x00,0x09,0x00,
- 0x00,0x34,0x0C,0x1E,0x34,0x1F,0x25,0x2B,0x18,0x12,
- 0x09,0x1B,0x00,0x16,0x0F,0x39,0x1E,0x40,0x49,0x55,
- 0x6E,0x7D,0x84,0xA2,0xBC,0xCA,0xC6,0xCA,0xC3,0xCA,
- 0xB4,0xD7,0xAC,0x86,0x9F,0x7E,0x89,0x81,0x80,0x80,
- 0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample06[727]={
- 0x8C,0x38,0x74,0xA4,0x64,0x98,0xD8,0x80,0x0C,0x44,
- 0xB0,0xB4,0xA4,0xA4,0x54,0x14,0x48,0x84,0xC4,0xF8,
- 0xFF,0x5C,0x00,0x00,0x5C,0xFF,0xFF,0x7C,0x8C,0x20,
- 0x00,0xA8,0xF8,0x68,0x2C,0x8C,0xB0,0x14,0x00,0x74,
- 0xFF,0xFF,0xE4,0x0C,0x00,0x60,0x5C,0x00,0x00,0x00,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x00,0x00,0x00,0x00,
- 0x00,0x14,0xF8,0xF4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0xA4,
- 0xFF,0xFF,0xFF,0xFF,0xA8,0x10,0x00,0x00,0x00,0x70,
- 0x8C,0x84,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFC,
- 0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,
- 0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0x70,0xB4,0xE4,0x84,0x3C,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0xBC,0xDC,
- 0xE8,0xE0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0x84,0x34,0x30,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x3C,0x34,0x58,0xAC,0x58,
- 0xCC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xE4,0xFF,
- 0xFF,0xFF,0xFF,0x44,0x00,0x38,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x30,0xFF,0x38,0x00,0x00,
- 0xDC,0xFF,0xFF,0x98,0x7C,0xB8,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0x8C,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x6C,0x00,0x00,0x64,0x6C,0x08,0x48,
- 0x40,0x30,0x70,0x3C,0x68,0xFF,0x8C,0x1C,0x54,0x98,
- 0x8C,0xC8,0xFF,0xFF,0xFF,0xBC,0xFF,0xFF,0xFF,0xFF,
- 0x24,0x60,0xFF,0xF8,0x00,0x00,0x00,0x38,0x00,0x00,
- 0x40,0x00,0x00,0x34,0xFF,0xFF,0x14,0x0C,0xFF,0x8C,
- 0x00,0x10,0xFC,0xA8,0x54,0x00,0x68,0xFF,0xFF,0xFF,
- 0xD4,0xA8,0xFF,0xFF,0xFF,0x8C,0x40,0xFF,0xFF,0x00,
- 0x00,0x64,0x6C,0x00,0x00,0x00,0x00,0x00,0x38,0xF0,
- 0x40,0x00,0x24,0x84,0xA4,0x00,0x00,0x98,0xFF,0x08,
- 0x00,0xFF,0xFF,0xE4,0x94,0xFF,0xFF,0xFF,0x54,0xFF,
- 0xFF,0xFF,0xE8,0xFF,0x78,0x00,0x00,0xF8,0xFF,0x00,
- 0x00,0x70,0x3C,0x00,0x54,0x74,0x00,0x00,0x28,0xFF,
- 0xEC,0x00,0x00,0x44,0xFF,0xFF,0x94,0x30,0xA8,0xFF,
- 0xFF,0xFF,0x94,0xD8,0xFF,0xFF,0x80,0x00,0xBC,0xFF,
- 0x30,0x00,0x34,0xFF,0x30,0x00,0x00,0xC8,0xC4,0x64,
- 0x00,0x00,0xD4,0x74,0x00,0x00,0xDC,0xFC,0x00,0x00,
- 0x00,0xFF,0xFF,0x14,0x00,0xFF,0xFF,0xFF,0xD8,0xFF,
- 0xFF,0xFC,0xD8,0x5C,0x00,0x40,0xFF,0xFF,0x00,0x00,
- 0x00,0xE4,0xFF,0x1C,0x00,0x7C,0xFF,0xA4,0x00,0x54,
- 0xFF,0x08,0x00,0x00,0x3C,0x04,0x98,0x18,0x18,0xF0,
- 0xFF,0xFF,0x14,0x4C,0xFF,0xFF,0xE4,0x14,0x00,0xA8,
- 0xFF,0xFF,0x00,0x00,0x38,0xFF,0xFF,0x20,0x00,0xC4,
- 0xFF,0x5C,0xA8,0xB0,0x28,0x50,0xFF,0x90,0x00,0x00,
- 0xF8,0xA4,0x00,0x00,0x10,0xB0,0xCC,0xC4,0xFF,0xFF,
- 0xEC,0x7C,0xFF,0xFF,0x98,0x9C,0xFF,0x8C,0x00,0x00,
- 0xFF,0xFF,0x84,0x00,0x30,0xFF,0xFC,0x04,0x08,0xD0,
- 0x90,0x00,0x00,0x44,0xB4,0x20,0x00,0x00,0x5C,0xF0,
- 0x58,0x1C,0xFF,0xFF,0xFF,0x70,0x50,0xFF,0xFF,0xFF,
- 0xC0,0x88,0x40,0x20,0xF4,0xFF,0x14,0x00,0x00,0x0C,
- 0x7C,0xA0,0x68,0x00,0x00,0x40,0x94,0x38,0xA0,0x60,
- 0x00,0x24,0xFF,0xF0,0x00,0x00,0x38,0xFF,0xFF,0x8C,
- 0x2C,0x64,0xFF,0xFF,0xA4,0xD4,0x8C,0x00,0x2C,0xE4,
- 0x8C,0x70,0x6C,0x00,0x44,0xA8,0x68,0x78,0xFF,0xEC,
- 0x00,0x00,0xF0,0xFF,0x84,0x10,0x00,0x6C,0xFF,0x30,
- 0x00,0xDC,0xFF,0x1C,0x08,0xFF,0xFF,0xA4,0x00,0x50,
- 0xFF,0xD8,0x24,0x60,0xFC,0x70,0x00,0x64,0xFF,0xC0,
- 0x00,0x0C,0xFF,0xEC,0xFF,0xFF,0x30,0x00,0xC4,0xFF,
- 0x00,0x1C,0xE0,0x40,0x00,0x70,0xC0,0x9C,0x00,0x00,
- 0xD4,0xFF,0x7C,0x00,0x3C,0xFF,0xD4,0x00,0x0C,0xFF,
- 0xD4,0x00,0x10,0xF0,0xFF,0x14,0x00,0xFF,0xDC,0x74,
- 0xFF,0xFF,0x10,0x00,0xFF,0xFF,0x00,0x00,0xC8,0xA4,
- 0x00,0x34,0xD8,0xB8,0x00,0x00,0xA0,0xFF,0x78,0x00,
- 0x68,0xFF,0x80,0x00,0xBC,0xBC,0x5C,0xB4,0x08,0x00,
- 0xDC,0xFF,0x88,0x00,0x84,0xFF,0xA4,0x14,0x84,0x68,
- 0x5C,0x10,0x00,0x70,0x34,0x00,0x00,0xC8,0xEC,0x40,
- 0x00,0x00,0xD8,0xFF,0xFF,0x40,0x70,0xA0,0x78,0xDC,
- 0xFF,0xE4,0x00,0x58,0xE8,0xFF,0xFF,0x94,0x18,0x70,
- 0xFF,0xFF,0x98,0x00,0x8C,0xB4,0x20,0x14,0xBC,0xFF,
- 0x48,0x00,0x00,0xFF,0xFF,0x00,0x00,0x94,0xFF,0xD0,
- 0x00,0x1C,0xFF,0xFF,0x38,0x00,0xBC,0xFF,0x44,0x38,
- 0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample07[480]={
- 0x3E,0xFD,0x13,0xFA,0x18,0xD5,0x1D,0xC1,0xC3,0xB5,
- 0xE7,0x6F,0xDF,0x01,0xFF,0x70,0xAD,0xE9,0x27,0xEB,
- 0x9F,0x2B,0xFD,0x38,0xB2,0xD9,0x0D,0xFF,0x4C,0x3B,
- 0xFB,0x00,0xD3,0x9D,0x00,0xD3,0xDF,0x1C,0xED,0xCD,
- 0x00,0xCB,0xB2,0x00,0x86,0xCE,0x10,0x13,0xD1,0x85,
- 0x90,0x07,0xCD,0xE3,0x22,0x3D,0x8F,0x8A,0x33,0x7E,
- 0xB4,0x3A,0x45,0xCE,0xA7,0x3A,0x47,0xE9,0xAF,0x08,
- 0x49,0xAE,0xC0,0x4C,0x10,0x46,0xF1,0x38,0x03,0x89,
- 0xEF,0x6A,0x11,0xC7,0xF3,0x43,0x00,0x2D,0xE5,0xF1,
- 0x3E,0x00,0x17,0xA9,0xFF,0xEC,0x73,0x00,0x43,0xE5,
- 0xF3,0x72,0x28,0x57,0xFF,0xC7,0x4E,0x22,0x5F,0xF3,
- 0xFF,0xF1,0x65,0x0B,0x08,0xA9,0xFF,0xDF,0x66,0x24,
- 0x18,0xA7,0xC6,0x9C,0xDC,0x9D,0xA3,0x56,0x00,0x00,
- 0x63,0xD1,0xF8,0xFD,0x94,0x32,0x00,0x15,0x9E,0xF9,
- 0xFD,0x91,0x5E,0x02,0x01,0x23,0x5A,0xDA,0xFE,0xFE,
- 0xBC,0x3E,0x00,0x00,0x65,0xD6,0xFF,0xED,0xD8,0x4D,
- 0x02,0x00,0x00,0x28,0xAD,0xFF,0xFF,0xFF,0xDB,0x69,
- 0x29,0x00,0x01,0x00,0x03,0x8C,0xDF,0xFF,0xFF,0xFF,
- 0xD5,0xC7,0x0B,0x37,0x00,0x00,0x21,0x4B,0x85,0xB3,
- 0xB8,0xD0,0xFD,0x9E,0xBB,0xA2,0xE3,0xB1,0x60,0x25,
- 0x30,0x02,0x28,0x58,0x3D,0x69,0xE0,0xFF,0xFF,0xD5,
- 0x94,0x6D,0xA1,0x46,0x3C,0x00,0x00,0x00,0x04,0x79,
- 0xB9,0xBF,0xD2,0xFF,0xFF,0xFF,0xFF,0xC5,0x76,0x52,
- 0x5C,0x72,0x42,0x00,0x00,0x00,0x00,0x29,0x62,0xFF,
- 0xE5,0xFF,0xFF,0xFE,0xD6,0xFE,0xE8,0xBF,0x96,0x81,
- 0x79,0x62,0x2F,0x00,0x01,0x0E,0x1D,0x29,0x0D,0x27,
- 0x48,0x97,0xCB,0xE7,0xEC,0xF6,0xF1,0xFF,0xF5,0x9C,
- 0xA9,0xB2,0x9C,0x8A,0x6E,0x47,0x21,0x00,0x00,0x00,
- 0x00,0x02,0x1C,0x47,0x5D,0x70,0x79,0x87,0xBF,0xCA,
- 0xDF,0xDA,0xFD,0xFF,0xEF,0xFF,0xCF,0xF7,0xC5,0xDF,
- 0xB3,0x7C,0x13,0x03,0x01,0x50,0x00,0x00,0x00,0x00,
- 0x3C,0x69,0x82,0x65,0x62,0x71,0x8B,0x9D,0xBB,0x9F,
- 0x9E,0x99,0xBA,0xAD,0xB5,0xE3,0xD5,0xF1,0xB2,0x9F,
- 0x95,0x86,0x8F,0xBA,0xC9,0xDA,0xDA,0xDA,0x70,0x39,
- 0x4C,0x58,0x6F,0x52,0x29,0x00,0x00,0x2D,0x0B,0x00,
- 0x00,0x03,0x3F,0x82,0xA7,0xF5,0x98,0x99,0x8A,0xCD,
- 0xB0,0x9B,0xDD,0xFE,0xFF,0xFF,0xF1,0xBA,0x92,0x6C,
- 0x71,0x5A,0x91,0x4A,0x49,0x59,0x58,0x69,0x61,0x7A,
- 0x75,0x67,0x62,0x81,0x92,0xD9,0xD9,0x82,0x34,0x03,
- 0x28,0x3D,0x67,0x62,0x52,0x7B,0x6D,0x8F,0x90,0x81,
- 0x7D,0x84,0x9D,0xC0,0xCE,0xBE,0x9C,0x93,0xA5,0xBA,
- 0xA8,0xB7,0xAE,0x94,0x8F,0x82,0x6A,0x6D,0x51,0x5A,
- 0x5F,0x69,0x84,0x95,0x8B,0x85,0x74,0x78,0x7A,0xA0,
- 0x88,0x74,0x58,0x3B,0x34,0x09,0x00,0x00,0x0E,0x47,
- 0x7E,0x94,0x8B,0x74,0x61,0x7B,0x80,0x90,0x90,0xA0,
- 0xBD,0xCB,0xDA,0xC6,0xC1,0xA3,0x9F,0x92,0x98,0xA5,
- 0x9C,0xAB,0xB0,0xAB,0xA8,0x96,0xB7,0xB5,0xC7,0xA4,
- 0xB5,0xD0,0xD9,0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample08[2108]={
- 0x8A,0xAB,0x9D,0x3F,0x29,0x4A,0x68,0x97,0xF2,0x85,
- 0x90,0x6D,0x68,0x68,0x71,0x82,0x88,0xEB,0x9A,0x59,
- 0x30,0x00,0x33,0x41,0x84,0xA9,0xCC,0x92,0x81,0x60,
- 0x77,0x79,0x80,0x95,0xB6,0xDA,0x92,0x6B,0x45,0x2E,
- 0x02,0x51,0x63,0x8B,0xA1,0xA3,0xD6,0x92,0x92,0x83,
- 0x76,0x7D,0x7C,0x7C,0x8B,0x88,0x7D,0x92,0xD5,0xAC,
- 0x60,0x48,0x32,0x19,0x0C,0x49,0x5A,0x93,0x8D,0x93,
- 0xA7,0xD6,0x90,0x88,0x78,0x7D,0x75,0x8D,0x7E,0x7E,
- 0x8F,0x84,0x89,0x8B,0xE7,0xA9,0x61,0x53,0x36,0x28,
- 0x1B,0x4E,0x5E,0x7C,0xA0,0x99,0xA5,0xCC,0xA8,0x9A,
- 0x94,0x89,0x87,0x89,0x98,0x83,0x8C,0x8F,0x84,0x7A,
- 0x8E,0xD4,0xD3,0x58,0x48,0x24,0x24,0x06,0x47,0x4E,
- 0x82,0x97,0x89,0x9D,0xEC,0x83,0x95,0x8C,0x7C,0x7E,
- 0x89,0x89,0x76,0x86,0x87,0x78,0x89,0xA2,0x86,0xB9,
- 0x62,0x3D,0x1D,0x2D,0x10,0x4A,0x63,0x8A,0x98,0x98,
- 0xB1,0xF3,0xA0,0xA9,0x8D,0x87,0x93,0x92,0x8F,0x90,
- 0x94,0x90,0x81,0x8F,0xC8,0x54,0xA3,0x6A,0x36,0x28,
- 0x2C,0x2B,0x38,0x6B,0x90,0x96,0xA5,0xEB,0x96,0x8D,
- 0x81,0x7D,0x7D,0x89,0x8F,0x8F,0x87,0x91,0xB3,0xB1,
- 0x63,0x54,0x30,0x03,0x4A,0x49,0x6C,0x86,0xB7,0x80,
- 0x85,0x7C,0x69,0x80,0x79,0x89,0x89,0x95,0xBC,0xBE,
- 0x6F,0x60,0x3F,0x06,0x5B,0x60,0x83,0x9C,0xC3,0x93,
- 0x8B,0x86,0x6F,0x7A,0x7C,0x85,0x8E,0x97,0xBB,0xC5,
- 0x6A,0x5C,0x34,0x04,0x4E,0x4E,0x80,0x97,0xB9,0x90,
- 0x81,0x75,0x6A,0x73,0x7A,0x86,0x89,0x90,0xB5,0xBA,
- 0x63,0x58,0x40,0x06,0x55,0x5E,0x82,0x91,0xBC,0x92,
- 0x83,0x7D,0x69,0x7A,0x79,0x85,0x86,0x91,0xB8,0xB0,
- 0x62,0x65,0x45,0x08,0x53,0x5E,0x8A,0x9A,0xEE,0x8F,
- 0x86,0x6D,0x74,0x72,0x7E,0x88,0x92,0xC1,0xD6,0x70,
- 0x56,0x33,0x13,0x53,0x5D,0x8C,0x98,0xDF,0x89,0x7E,
- 0x66,0x70,0x79,0x79,0x87,0x8D,0xA3,0xC6,0x79,0x65,
- 0x40,0x13,0x57,0x59,0x75,0x8D,0xA3,0xB2,0x84,0x83,
- 0x6D,0x7A,0x81,0x80,0x8A,0x91,0xAA,0xCE,0x80,0x6C,
- 0x43,0x12,0x50,0x54,0x76,0x95,0xAA,0xB4,0x86,0x82,
- 0x67,0x6E,0x7A,0x80,0x90,0x90,0xA4,0xCA,0x77,0x69,
- 0x3F,0x0F,0x4E,0x5B,0x79,0x8E,0xA5,0xB7,0x87,0x82,
- 0x65,0x70,0x7A,0x83,0x85,0x92,0xA4,0xC5,0x7B,0x65,
- 0x43,0x1C,0x48,0x59,0x70,0x95,0x9D,0xF0,0x8A,0x8A,
- 0x70,0x70,0x7B,0x7C,0x8B,0x8D,0x90,0xA0,0xC6,0x81,
- 0x66,0x44,0x28,0x37,0x55,0x6C,0x93,0x98,0xDE,0x80,
- 0x88,0x71,0x74,0x79,0x76,0x8A,0x8A,0x90,0x90,0xEE,
- 0xCB,0x63,0x52,0x32,0x05,0x50,0x5F,0x7D,0x90,0x9C,
- 0xE7,0x80,0x8D,0x78,0x6B,0x77,0x7C,0x87,0x88,0x91,
- 0x92,0xB8,0xC4,0x66,0x56,0x37,0x2A,0x31,0x54,0x70,
- 0x92,0x8F,0xB2,0xBC,0x8E,0x8B,0x76,0x7E,0x7A,0x85,
- 0x8B,0x88,0x8F,0x98,0xDF,0xB9,0x6D,0x49,0x2A,0x07,
- 0x53,0x5C,0x80,0x95,0x97,0xEB,0x85,0x88,0x73,0x71,
- 0x78,0x75,0x83,0x92,0x90,0x8D,0xCD,0xC1,0x57,0x57,
- 0x3A,0x21,0x4A,0x5D,0x70,0x8B,0x9B,0xB0,0x8B,0x88,
- 0x84,0x70,0x78,0x82,0x86,0x85,0x90,0x8F,0x8F,0xA1,
- 0xC0,0x98,0x62,0x49,0x32,0x1A,0x4A,0x60,0x76,0x96,
- 0x98,0x9E,0xE4,0x8B,0x8B,0x7A,0x79,0x7D,0x7D,0x85,
- 0x86,0x85,0x85,0x89,0x8A,0xD1,0xB9,0x5C,0x3F,0x30,
- 0x26,0x2D,0x56,0x74,0x8C,0x95,0xA4,0xC8,0x8F,0x96,
- 0x84,0x79,0x81,0x80,0x88,0x89,0x8F,0x87,0x88,0x94,
- 0xEA,0xD8,0x65,0x4B,0x30,0x27,0x15,0x51,0x66,0x90,
- 0x91,0x99,0xB7,0xA6,0x97,0x8D,0x80,0x87,0x82,0x8C,
- 0x8A,0x86,0x88,0x85,0x83,0x9C,0xA8,0x90,0x52,0x43,
- 0x2F,0x24,0x20,0x5C,0x69,0x89,0x94,0x9B,0xA5,0xEC,
- 0x95,0x94,0x80,0x8A,0x80,0x83,0x8D,0x85,0x85,0x89,
- 0x87,0x85,0xC8,0xA8,0x5F,0x4C,0x3B,0x29,0x13,0x4C,
- 0x5A,0x73,0x92,0x98,0xA1,0xB2,0xBA,0x96,0x94,0x87,
- 0x88,0x84,0x8A,0x8B,0x82,0x84,0x88,0x80,0x7E,0x88,
- 0xE5,0xC2,0x5C,0x47,0x2F,0x2C,0x30,0x09,0x58,0x6D,
- 0x8D,0x93,0x9D,0xA9,0xAE,0xF5,0x9F,0x9F,0x87,0x8B,
- 0x87,0x84,0x86,0x85,0x7E,0x76,0x78,0x76,0x7A,0x83,
- 0xE2,0xBD,0x55,0x3E,0x2C,0x29,0x31,0x0E,0x5E,0x70,
- 0x8F,0x9D,0xA5,0xAC,0xB7,0xF3,0xA7,0xA7,0x8C,0x88,
- 0x85,0x7E,0x84,0x83,0x81,0x7D,0x7B,0x7B,0x75,0x80,
- 0xE7,0xB9,0x43,0x40,0x2C,0x28,0x2D,0x05,0x4E,0x69,
- 0x91,0x9A,0xA8,0xAD,0xAF,0xF7,0x99,0xA5,0x8D,0x89,
- 0x89,0x82,0x83,0x80,0x7B,0x7B,0x76,0x73,0x78,0x82,
- 0xDF,0x56,0x87,0x4D,0x27,0x2D,0x30,0x03,0x97,0x70,
- 0x80,0x96,0xAA,0xA8,0xAF,0xF2,0x6F,0xCB,0x90,0x83,
- 0x8D,0x80,0x88,0x84,0x80,0x80,0x78,0x71,0x79,0x7C,
- 0xC8,0x8F,0x93,0x26,0x37,0x22,0x2A,0x05,0x6B,0x56,
- 0x92,0x97,0xA7,0xAA,0xAE,0xEF,0xCA,0x7C,0xB3,0x71,
- 0x9C,0x77,0x94,0x81,0x81,0x7D,0x76,0x74,0x76,0x78,
- 0xB4,0xCD,0x81,0x35,0x18,0x34,0x1E,0x04,0x20,0xA9,
- 0x60,0xB0,0xB1,0xA2,0xB8,0xE5,0xF6,0x63,0xAA,0x98,
- 0x70,0x95,0x82,0x7C,0x84,0x7D,0x78,0x76,0x75,0x77,
- 0xA1,0xD9,0x8F,0x50,0x03,0x33,0x17,0x00,0x92,0x6B,
- 0x8B,0x9B,0xA5,0xAE,0xB4,0xD5,0xB2,0xA6,0x9F,0x87,
- 0x87,0x81,0x87,0x83,0x80,0x7D,0x80,0x7A,0x75,0x78,
- 0x78,0xC1,0x80,0x72,0x44,0x33,0x25,0x28,0x28,0x3C,
- 0x6C,0x7D,0x9F,0xA1,0xAA,0xB2,0xB3,0xEF,0xA1,0xA9,
- 0x8F,0x84,0x81,0x7D,0x7B,0x7D,0x7C,0x76,0x73,0x71,
- 0x6D,0x71,0x75,0x9A,0x79,0xA8,0x4F,0x3B,0x2B,0x32,
- 0x35,0x0E,0x6B,0x76,0x94,0xA7,0xAD,0xB8,0xB8,0xBF,
- 0xED,0xA8,0xAF,0x95,0x85,0x84,0x7B,0x7B,0x75,0x76,
- 0x6F,0x6A,0x6A,0x6A,0x6E,0x6D,0x74,0xD7,0x86,0x5A,
- 0x40,0x31,0x2E,0x3A,0x3A,0x1A,0x6D,0x7C,0x9E,0xA9,
- 0xB3,0xBA,0xBC,0xC0,0xF4,0xAD,0xAA,0x8D,0x84,0x7E,
- 0x79,0x77,0x74,0x74,0x6D,0x69,0x6B,0x69,0x6B,0x70,
- 0x77,0xD9,0x80,0x6D,0x43,0x36,0x31,0x38,0x3D,0x1E,
- 0x71,0x78,0x94,0xAF,0xB4,0xBD,0xBF,0xC3,0xC7,0xF5,
- 0xAE,0xA1,0x86,0x80,0x73,0x6F,0x6F,0x6E,0x67,0x65,
- 0x63,0x5F,0x63,0x69,0x68,0x6C,0x7D,0xB4,0xC4,0x50,
- 0x44,0x34,0x33,0x45,0x4B,0x11,0x77,0x85,0xA6,0xB4,
- 0xBD,0xBF,0xBF,0xC4,0xD3,0xBF,0xAC,0xA0,0x7D,0x7D,
- 0x74,0x6F,0x6C,0x69,0x66,0x62,0x60,0x63,0x63,0x6A,
- 0x6C,0x6D,0x8F,0x82,0xE0,0x2D,0x47,0x3E,0x34,0x42,
- 0x4F,0x0B,0x73,0x83,0xA7,0xAF,0xB8,0xBD,0xB9,0xBD,
- 0xBE,0xCC,0xCA,0xA1,0x92,0x73,0x6F,0x67,0x63,0x61,
- 0x64,0x60,0x5D,0x61,0x61,0x63,0x66,0x6B,0x72,0x73,
- 0x7E,0x95,0xA6,0xCA,0x60,0x4D,0x46,0x3F,0x4B,0x54,
- 0x5F,0x28,0x85,0x90,0xB2,0xB7,0xBE,0xC2,0xC0,0xBE,
- 0xBE,0xC7,0xC3,0x9A,0x8C,0x6D,0x66,0x5D,0x5B,0x58,
- 0x5A,0x58,0x55,0x56,0x58,0x5D,0x61,0x66,0x6D,0x73,
- 0x77,0x88,0xC2,0xBB,0x5D,0x5C,0x50,0x3F,0x4F,0x57,
- 0x5F,0x0E,0x87,0x92,0xB4,0xBF,0xC3,0xC6,0xC6,0xC5,
- 0xC3,0xCA,0xF7,0xA2,0x86,0x6B,0x69,0x62,0x5F,0x5D,
- 0x5B,0x5D,0x5A,0x57,0x59,0x5D,0x5E,0x66,0x71,0x71,
- 0x79,0x88,0xF7,0x3C,0xCB,0x1E,0x5B,0x32,0x46,0x4F,
- 0x54,0x1C,0x93,0x71,0xBA,0xAE,0xC0,0xC3,0xC1,0xC1,
- 0xC1,0xC6,0xFD,0x83,0x98,0x7B,0x56,0x73,0x50,0x64,
- 0x54,0x60,0x54,0x57,0x5E,0x5D,0x64,0x67,0x6D,0x73,
- 0x7A,0x84,0xDB,0xC1,0x9B,0x56,0x31,0x3E,0x3D,0x49,
- 0x57,0x65,0x25,0x8E,0xA0,0xBD,0xC3,0xCB,0xCA,0xC5,
- 0xC5,0xBF,0xB9,0xBA,0xED,0x91,0x82,0x61,0x57,0x4E,
- 0x4E,0x4F,0x4A,0x4E,0x4F,0x50,0x54,0x59,0x61,0x66,
- 0x6D,0x77,0x78,0x82,0x89,0x8E,0xBD,0x81,0xDA,0x5C,
- 0x58,0x52,0x4B,0x56,0x61,0x67,0x67,0x44,0x90,0x98,
- 0xB8,0xBD,0xC3,0xC2,0xC2,0xC1,0xB9,0xB7,0xB6,0xF1,
- 0x9D,0x8C,0x64,0x57,0x52,0x4D,0x4D,0x4C,0x4D,0x4B,
- 0x4F,0x55,0x56,0x5E,0x67,0x6A,0x72,0x79,0x80,0x85,
- 0x8B,0xB4,0x99,0xDA,0x7B,0x51,0x52,0x46,0x55,0x5C,
- 0x67,0x6C,0x0D,0xCC,0x8E,0xB2,0xC3,0xC2,0xC8,0xC5,
- 0xC5,0xC2,0xBB,0xBC,0xFA,0x65,0xAA,0x4F,0x63,0x48,
- 0x4D,0x4B,0x49,0x4A,0x4F,0x4E,0x51,0x59,0x5F,0x66,
- 0x6B,0x71,0x78,0x80,0x86,0x8E,0xA5,0xF4,0x79,0xA1,
- 0x5A,0x32,0x4E,0x54,0x52,0x62,0x6D,0x2A,0x6D,0xD1,
- 0x95,0xD0,0xC2,0xCD,0xC4,0xC2,0xC3,0xBD,0xBA,0xE0,
- 0x81,0x87,0x6A,0x55,0x53,0x47,0x49,0x4A,0x47,0x4A,
- 0x4E,0x51,0x59,0x5D,0x63,0x67,0x70,0x79,0x7E,0x85,
- 0x8B,0x8F,0x96,0xE6,0x86,0xDD,0x5F,0x5B,0x48,0x4A,
- 0x55,0x5D,0x68,0x6B,0x1E,0x8F,0x9A,0xB5,0xBE,0xC2,
- 0xC8,0xC3,0xC1,0xBD,0xB9,0xB5,0xB0,0xED,0x91,0x7E,
- 0x5A,0x51,0x46,0x46,0x46,0x45,0x49,0x4A,0x4E,0x53,
- 0x58,0x61,0x67,0x72,0x75,0x7D,0x86,0x8A,0x8E,0x93,
- 0x9D,0xEF,0x82,0xC2,0x3F,0x6F,0x48,0x55,0x5A,0x63,
- 0x6D,0x6D,0x15,0xC2,0x9A,0xAA,0xC1,0xC2,0xC4,0xC2,
- 0xBF,0xBA,0xB4,0xAF,0xAD,0xF6,0x40,0x96,0x3F,0x58,
- 0x43,0x45,0x44,0x47,0x47,0x48,0x4F,0x54,0x59,0x61,
- 0x68,0x6D,0x75,0x80,0x85,0x89,0x91,0x95,0xA0,0xF9,
- 0x7A,0xAE,0x70,0x3A,0x47,0x58,0x56,0x60,0x6F,0x6F,
- 0x1F,0xC4,0x7D,0xD7,0xC3,0xC4,0xCC,0xC7,0xC3,0xBF,
- 0xBB,0xAF,0xA8,0xA8,0xC3,0x76,0x68,0x45,0x3E,0x39,
- 0x37,0x37,0x39,0x42,0x43,0x47,0x51,0x59,0x60,0x6E,
- 0x77,0x7C,0x84,0x8A,0x8F,0x92,0x96,0x9B,0x9A,0x9E,
- 0xB8,0x84,0x95,0x9D,0x64,0x5A,0x48,0x55,0x56,0x63,
- 0x6F,0x73,0x77,0x2A,0x8C,0xA1,0xC2,0xC7,0xCB,0xCC,
- 0xC8,0xC0,0xBB,0xB6,0xAC,0x9F,0x99,0xC6,0x48,0x62,
- 0x53,0x3B,0x35,0x30,0x31,0x30,0x3A,0x3E,0x41,0x49,
- 0x53,0x5B,0x65,0x71,0x78,0x80,0x8A,0x90,0x92,0x97,
- 0x9D,0x9F,0x9F,0xA2,0xEA,0x6F,0xC7,0x94,0x39,0x70,
- 0x4B,0x58,0x61,0x63,0x76,0x77,0x6F,0x49,0xD3,0x8A,
- 0xDD,0xB7,0xD0,0xC6,0xC1,0xBE,0xB6,0xB1,0xA5,0x9C,
- 0x93,0xA0,0x70,0x61,0x4D,0x34,0x33,0x2C,0x2F,0x32,
- 0x36,0x3B,0x3E,0x48,0x52,0x5A,0x67,0x71,0x78,0x82,
- 0x89,0x91,0x96,0x9A,0x9F,0x9F,0xA0,0xA0,0x9D,0x9D,
- 0x9D,0xC6,0x7A,0x8B,0xBC,0x5F,0x5B,0x48,0x4F,0x54,
- 0x60,0x6B,0x74,0x7E,0x84,0x55,0xC0,0xB3,0xC5,0xD2,
- 0xD2,0xD2,0xCA,0xC1,0xB8,0xAE,0xA2,0x99,0x8D,0x80,
- 0x76,0x81,0x67,0x63,0x3B,0x1B,0x1E,0x1E,0x25,0x2A,
- 0x33,0x3A,0x40,0x4E,0x58,0x65,0x71,0x7C,0x88,0x90,
- 0x97,0x9F,0xA3,0xA7,0xA9,0xAB,0xAB,0xAA,0xA8,0xA4,
- 0xA2,0xAC,0xF0,0x49,0xCB,0x7C,0x3A,0x6A,0x3E,0x5D,
- 0x5D,0x68,0x70,0x79,0x82,0x86,0x33,0xA4,0xAE,0xC7,
- 0xCC,0xCC,0xC8,0xBF,0xB8,0xAD,0xA2,0x97,0x8C,0x80,
- 0x74,0x69,0x62,0xB3,0x3F,0x38,0x1E,0x1A,0x1B,0x1E,
- 0x26,0x30,0x38,0x43,0x4F,0x58,0x65,0x71,0x7E,0x88,
- 0x94,0x9C,0xA3,0xA7,0xAD,0xAF,0xAF,0xB0,0xAE,0xAD,
- 0xA8,0xA6,0xA2,0x9E,0xA1,0xF1,0x82,0x8C,0x81,0x57,
- 0x4F,0x4F,0x55,0x5B,0x68,0x6F,0x77,0x80,0x87,0x85,
- 0x53,0xAF,0xC5,0xC2,0xC6,0xC9,0xBF,0xB8,0xAF,0xA4,
- 0x9A,0x8F,0x84,0x76,0x6A,0x5F,0x59,0xA0,0x0C,0x4F,
- 0x07,0x25,0x16,0x23,0x29,0x35,0x3F,0x48,0x55,0x60,
- 0x6D,0x7A,0x86,0x90,0x9A,0xA2,0xA8,0xAC,0xB1,0xB3,
- 0xB1,0xB0,0xAF,0xAB,0xA8,0xA6,0xA0,0x9D,0x9D,0xE1,
- 0x7D,0x86,0xA7,0x3A,0x6C,0x42,0x58,0x59,0x63,0x6D,
- 0x74,0x7B,0x86,0x8E,0x8F,0x3E,0xAB,0xAF,0xC3,0xC7,
- 0xC1,0xBD,0xB3,0xA8,0x9B,0x93,0x89,0x79,0x6E,0x64,
- 0x58,0x4D,0x48,0x43,0x80,0x20,0x2C,0x1E,0x1A,0x25,
- 0x29,0x36,0x44,0x51,0x5B,0x68,0x74,0x80,0x8C,0x97,
- 0x9F,0xA8,0xB1,0xB5,0xB6,0xB9,0xBA,0xB7,0xB5,0xB3,
- 0xAF,0xA9,0xA4,0x9E,0x99,0x95,0x92,0x8C,0x8B,0x8A,
- 0xD3,0x4F,0x94,0x8D,0x5A,0x41,0x56,0x44,0x5B,0x5C,
- 0x68,0x70,0x77,0x80,0x85,0x8C,0x89,0x47,0xD5,0x93,
- 0xCC,0xB6,0xB6,0xB3,0xA2,0x9D,0x8F,0x86,0x7D,0x72,
- 0x67,0x5D,0x56,0x4D,0x46,0x46,0x74,0x50,0x18,0x37,
- 0x23,0x2E,0x38,0x46,0x50,0x5D,0x6A,0x74,0x81,0x8B,
- 0x95,0x9E,0xA6,0xAE,0xB4,0xB7,0xB8,0xB9,0xB7,0xB7,
- 0xB1,0xAE,0xAA,0xA5,0xA1,0x9C,0x98,0x91,0x8F,0x8A,
- 0x85,0x83,0x81,0x7E,0x7E,0x83,0xD5,0x7C,0x71,0x9D,
- 0x39,0x5E,0x4B,0x4D,0x58,0x5F,0x69,0x70,0x78,0x80,
- 0x84,0x8D,0x91,0x94,0x82,0x89,0x8F,0xB7,0xB9,0xAA,
- 0xA9,0x9E,0x95,0x8B,0x80,0x77,0x6D,0x63,0x5C,0x54,
- 0x4D,0x49,0x44,0x42,0x42,0x47,0x88,0x3F,0x3E,0x44,
- 0x36,0x54,0x4E,0x67,0x6B,0x7E,0x85,0x90,0x9A,0xA1,
- 0xA8,0xAD,0xB3,0xB9,0xBC,0xBD,0xBD,0xBC,0xB9,0xB5,
- 0xB2,0xAD,0xAB,0xA4,0x9E,0x99,0x93,0x8F,0x89,0x85,
- 0x81,0x7C,0x7A,0x77,0x76,0x74,0x72,0x73,0xA5,0x52,
- 0x62,0x69,0x67,0x54,0x45,0x43,0x4D,0x54,0x5D,0x65,
- 0x6D,0x75,0x7C,0x81,0x87,0x8C,0x8B,0x39,0xAF,0xAB,
- 0xB2,0xAA,0xA8,0xA2,0x9A,0x90,0x87,0x81,0x79,0x71,
- 0x68,0x61,0x5B,0x56,0x53,0x52,0x51,0x52,0x58,0xAF,
- 0x35,0x47,0x46,0x4F,0x58,0x63,0x6E,0x79,0x85,0x8D,
- 0x96,0x9F,0xA4,0xAB,0xB3,0xB6,0xB9,0xBB,0xBC,0xB8,
- 0xB5,0xB5,0xAF,0xAB,0xA8,0xA2,0x9D,0x97,0x92,0x8A,
- 0x85,0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample09[4231]={
- 0x7E,0x7E,0x7C,0x7E,0x7E,0x80,0x7A,0x7C,0x70,0x70,
- 0x74,0x62,0x6A,0x62,0x74,0x6E,0x72,0x6C,0x6C,0x6C,
- 0x64,0x62,0x5A,0x58,0x52,0x54,0x50,0x4E,0x4E,0x4E,
- 0x4E,0x52,0x52,0x58,0x60,0x6C,0x76,0x86,0x90,0xA6,
- 0xB4,0xBE,0xCE,0xD8,0xE2,0xE8,0xF4,0xEA,0xEE,0xE0,
- 0xDC,0xD8,0xCA,0xC6,0xB0,0xB0,0x94,0x84,0x7A,0x66,
- 0x62,0x4A,0x4C,0x4A,0x42,0x42,0x34,0x2E,0x3A,0x2C,
- 0x38,0x24,0x30,0x2E,0x40,0x46,0x42,0x4A,0x54,0x56,
- 0x6E,0x72,0x70,0x74,0x70,0x7E,0x70,0x7C,0x7E,0x82,
- 0x82,0x92,0xA2,0xC0,0xEA,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFA,0xFF,0xF2,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFC,0xF8,0xEC,0xDE,
- 0xD8,0xDA,0xDA,0xE4,0xD2,0xDC,0xDC,0xC4,0xC8,0xA2,
- 0x96,0x76,0x44,0x32,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x18,0x22,
- 0x1A,0x22,0x16,0x0C,0x02,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x08,0x0C,0x18,0x2E,0x2A,0x42,0x3A,0x4C,0x4A,
- 0x50,0x54,0x50,0x64,0x58,0x7C,0x74,0x9C,0x9C,0xAA,
- 0xAA,0xAC,0xAE,0xBC,0xCA,0xCA,0xDA,0xD4,0xE6,0xF0,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,
- 0xF4,0xF6,0xEA,0xE0,0xC6,0xB6,0x94,0x84,0x6E,0x5E,
- 0x54,0x44,0x34,0x36,0x34,0x44,0x4A,0x5A,0x5E,0x62,
- 0x68,0x6A,0x7A,0x7C,0x86,0x90,0x9E,0xAA,0xA6,0xB4,
- 0xB0,0xC8,0xC8,0xD8,0xC8,0xD6,0xCC,0xCE,0xB0,0x9C,
- 0x6E,0x60,0x46,0x44,0x36,0x36,0x30,0x3E,0x42,0x54,
- 0x50,0x60,0x56,0x5C,0x4C,0x48,0x46,0x46,0x4A,0x58,
- 0x5E,0x6A,0x70,0x7E,0x88,0x9C,0xA2,0xB8,0xBA,0xCE,
- 0xC0,0xAE,0x86,0x68,0x4E,0x50,0x44,0x50,0x4E,0x5E,
- 0x72,0x82,0x9A,0x98,0xA6,0x98,0x98,0x8C,0x7E,0x78,
- 0x78,0x82,0x8C,0x96,0x9C,0x98,0xAC,0xAA,0xBA,0xB6,
- 0xC4,0xBA,0xBA,0x8C,0x66,0x34,0x18,0x12,0x0E,0x1E,
- 0x26,0x36,0x50,0x62,0x7C,0x80,0x8A,0x84,0x7E,0x78,
- 0x66,0x64,0x6C,0x76,0x92,0x98,0xB4,0xB8,0xC4,0xCE,
- 0xD6,0xE2,0xE0,0xDE,0xBC,0x7E,0x52,0x18,0x18,0x0A,
- 0x12,0x20,0x26,0x4C,0x5C,0x78,0x80,0x7E,0x86,0x76,
- 0x70,0x56,0x4A,0x4C,0x52,0x72,0x7E,0x9E,0xAC,0xC0,
- 0xD0,0xDA,0xEE,0xEA,0xE2,0xA8,0x6A,0x40,0x18,0x1C,
- 0x0C,0x18,0x2A,0x46,0x74,0x86,0x9C,0xA4,0xA6,0xAE,
- 0x98,0x86,0x68,0x5A,0x64,0x68,0x82,0x94,0xB0,0xC8,
- 0xD4,0xF0,0xEA,0xFF,0xF4,0xEA,0xA4,0x6C,0x34,0x1C,
- 0x12,0x06,0x10,0x1A,0x42,0x68,0x7E,0x94,0x90,0x9C,
- 0x96,0x84,0x6E,0x48,0x44,0x44,0x50,0x54,0x7E,0xA2,
- 0xBC,0xCC,0xEA,0xFF,0xFF,0xFC,0xCC,0x6A,0x46,0x18,
- 0x00,0x00,0x00,0x26,0x46,0x74,0x8C,0x96,0xB6,0xA4,
- 0x8C,0x74,0x4C,0x48,0x26,0x2A,0x3A,0x5A,0x8A,0xA0,
- 0xC8,0xE8,0xF6,0xFF,0xFF,0xFF,0xFF,0xBE,0x3C,0x2E,
- 0x00,0x00,0x00,0x00,0x4A,0x72,0xA2,0xB2,0xC0,0xE0,
- 0xA0,0x74,0x50,0x32,0x22,0x00,0x16,0x4C,0x68,0x96,
- 0xAC,0xEA,0xFF,0xFC,0xFF,0xFF,0xFF,0xFF,0xB2,0x36,
- 0x4C,0x00,0x00,0x00,0x00,0x60,0x64,0x8A,0xD0,0xD4,
- 0xD6,0x9E,0x80,0x78,0x32,0x0C,0x0A,0x20,0x44,0x48,
- 0x82,0xBE,0xD4,0xEA,0xFA,0xFF,0xFF,0xFF,0xFF,0xF2,
- 0x52,0x5A,0x1E,0x00,0x00,0x00,0x2E,0x50,0x5A,0xBA,
- 0xD6,0xCC,0xC6,0xA0,0xA0,0x5E,0x24,0x1E,0x18,0x18,
- 0x30,0x54,0x9A,0xAC,0xD4,0xF8,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0x9A,0x62,0x62,0x00,0x00,0x00,0x00,0x1E,0x2C,
- 0x72,0xCE,0xB4,0xC8,0xD6,0xC0,0x9E,0x5E,0x46,0x32,
- 0x02,0x14,0x30,0x5A,0x82,0xA4,0xDA,0xFE,0xFF,0xFF,
- 0xFF,0xFF,0xFE,0x84,0x9C,0x36,0x00,0x00,0x00,0x00,
- 0x06,0x2A,0x78,0x9E,0xA4,0xE0,0xD2,0xC6,0xB2,0x7E,
- 0x5E,0x2C,0x14,0x2A,0x22,0x50,0x7E,0xA6,0xCE,0xF6,
- 0xFF,0xFF,0xFF,0xFF,0xAC,0xCE,0x70,0x00,0x0C,0x00,
- 0x00,0x00,0x00,0x32,0x62,0x7C,0xB4,0xC0,0xD0,0xD2,
- 0xAC,0xA0,0x64,0x4A,0x44,0x2E,0x48,0x6A,0x7C,0xAC,
- 0xD2,0xFF,0xFF,0xFF,0xFF,0xD2,0xE0,0x58,0x46,0x2A,
- 0x00,0x00,0x00,0x00,0x1C,0x3A,0x60,0x86,0x9E,0xC0,
- 0xB6,0xBA,0xAA,0x86,0x80,0x6C,0x5A,0x7C,0x74,0x94,
- 0xBC,0xD6,0xF0,0xFF,0xBA,0xF0,0xBC,0x4E,0x90,0x2E,
- 0x04,0x2C,0x04,0x0C,0x30,0x36,0x4A,0x62,0x90,0x7A,
- 0xA0,0xAC,0x84,0x96,0x94,0x6C,0x88,0x8C,0x8A,0xA2,
- 0xC0,0xD6,0xE2,0xFF,0xAA,0xDC,0xC4,0x3C,0x94,0x32,
- 0x04,0x34,0x14,0x02,0x40,0x34,0x52,0x54,0x9A,0x6E,
- 0x96,0xAA,0x7A,0x8A,0x9C,0x5A,0x90,0x86,0x86,0xA0,
- 0xBE,0xBC,0xE8,0xFA,0xD8,0xB4,0xFF,0x56,0x82,0x74,
- 0x0A,0x28,0x32,0x00,0x2A,0x30,0x36,0x4A,0x7C,0x72,
- 0x88,0xA6,0x8E,0x86,0xAA,0x70,0x84,0x8C,0x84,0x90,
- 0xB4,0xAC,0xD4,0xE6,0xFA,0x98,0xFC,0xAE,0x4C,0xB8,
- 0x2C,0x1E,0x50,0x06,0x10,0x38,0x26,0x32,0x58,0x76,
- 0x50,0xA8,0x8A,0x76,0xB0,0x80,0x7E,0xA2,0x7E,0x98,
- 0xAE,0xB2,0xC4,0xDE,0xFA,0xB4,0xC0,0xF4,0x2E,0xBA,
- 0x5A,0x16,0x54,0x26,0x02,0x3E,0x20,0x32,0x40,0x74,
- 0x4C,0x8A,0x94,0x74,0xA2,0x96,0x72,0xAA,0x80,0x92,
- 0xA0,0xAE,0xB0,0xDA,0xDA,0xF8,0x9C,0xFC,0x94,0x68,
- 0xB8,0x26,0x4A,0x44,0x0E,0x28,0x2C,0x28,0x2E,0x58,
- 0x5A,0x56,0x9E,0x72,0x90,0xA4,0x7A,0x9C,0x92,0x88,
- 0x9C,0xA0,0xAE,0xC4,0xD4,0xF4,0xC2,0xC4,0xF2,0x40,
- 0xCA,0x4E,0x36,0x58,0x22,0x1A,0x34,0x26,0x2E,0x3C,
- 0x68,0x44,0x8A,0x82,0x74,0xA8,0x88,0x86,0xA4,0x80,
- 0x9E,0x96,0xAE,0xAC,0xD4,0xD2,0xF0,0xA0,0xFE,0x92,
- 0x7A,0xB0,0x2A,0x5E,0x3A,0x24,0x24,0x36,0x2A,0x28,
- 0x5E,0x46,0x5C,0x92,0x60,0x98,0x92,0x84,0x9A,0x90,
- 0x90,0x98,0xA4,0xA8,0xBE,0xD2,0xDA,0xDA,0xA8,0xFC,
- 0x5E,0xAC,0x76,0x3A,0x5A,0x30,0x2C,0x2A,0x36,0x2A,
- 0x36,0x60,0x40,0x76,0x7A,0x6E,0x98,0x86,0x8C,0x98,
- 0x8E,0x9A,0x98,0xB0,0xA8,0xCE,0xCE,0xE8,0xBA,0xC8,
- 0xD4,0x5A,0xC0,0x4E,0x52,0x4E,0x32,0x28,0x30,0x3A,
- 0x22,0x48,0x58,0x3C,0x8C,0x64,0x7C,0x94,0x7E,0x90,
- 0x90,0x90,0x96,0x9C,0xAE,0xA2,0xDA,0xBC,0xEE,0xAC,
- 0xD0,0xC2,0x64,0xC0,0x42,0x60,0x50,0x30,0x34,0x34,
- 0x36,0x2A,0x4A,0x52,0x44,0x88,0x62,0x88,0x90,0x86,
- 0x94,0x90,0x92,0x96,0x9A,0xAE,0x9E,0xD0,0xBA,0xDC,
- 0xBE,0xB6,0xD0,0x66,0xB0,0x62,0x4E,0x64,0x2E,0x3E,
- 0x32,0x3A,0x30,0x3E,0x58,0x46,0x72,0x78,0x72,0x98,
- 0x84,0x8A,0x90,0x8E,0x92,0x98,0xA6,0x9C,0xB0,0xC8,
- 0xB0,0xE2,0x96,0xD0,0x9E,0x70,0xAE,0x48,0x68,0x56,
- 0x36,0x4C,0x32,0x46,0x30,0x48,0x5C,0x46,0x86,0x6E,
- 0x7C,0x94,0x78,0x96,0x7E,0x90,0x94,0x8C,0xA6,0x98,
- 0xAE,0xB4,0xB8,0xD0,0xA4,0xB4,0xC0,0x68,0xAA,0x6E,
- 0x58,0x68,0x48,0x46,0x3C,0x46,0x40,0x36,0x6C,0x4C,
- 0x6E,0x86,0x6A,0x8A,0x8C,0x78,0x8C,0x96,0x7E,0x90,
- 0xA8,0x86,0xA4,0xB2,0xA6,0xB4,0xCA,0xAC,0x9C,0xC6,
- 0x82,0x80,0x90,0x5E,0x54,0x58,0x42,0x38,0x40,0x52,
- 0x36,0x5E,0x72,0x56,0x80,0x8C,0x66,0x90,0x90,0x6C,
- 0x94,0x86,0x84,0x92,0x96,0x9A,0x90,0xAE,0xA2,0xA6,
- 0xC4,0xAE,0x9C,0xBC,0x94,0x72,0x90,0x58,0x4E,0x54,
- 0x3E,0x40,0x40,0x58,0x54,0x58,0x7E,0x6C,0x74,0x8E,
- 0x78,0x80,0x88,0x78,0x7E,0x82,0x8A,0x80,0x96,0x96,
- 0x8A,0x9E,0xAA,0x8A,0xC0,0xA4,0xB2,0x9A,0xA4,0x94,
- 0x6A,0x84,0x64,0x42,0x64,0x44,0x4A,0x54,0x5E,0x66,
- 0x5C,0x84,0x7A,0x6A,0x98,0x76,0x7E,0x86,0x7A,0x80,
- 0x80,0x82,0x92,0x7C,0xA0,0x86,0x9C,0x92,0x92,0xA4,
- 0x8C,0xA2,0x9A,0x94,0x8E,0x8C,0x7E,0x72,0x6A,0x6C,
- 0x5C,0x62,0x60,0x66,0x6A,0x6A,0x76,0x78,0x72,0x7A,
- 0x7A,0x7E,0x7E,0x7E,0x82,0x7A,0x84,0x7E,0x84,0x8A,
- 0x86,0x8C,0x88,0x86,0x8A,0x8C,0x86,0x88,0x8A,0x94,
- 0x86,0x90,0x84,0x88,0x84,0x7E,0x7E,0x64,0x68,0x60,
- 0x50,0x64,0x58,0x60,0x6C,0x5C,0x78,0x6C,0x7C,0x7C,
- 0x68,0x80,0x70,0x78,0x74,0x84,0x74,0x7C,0x70,0x88,
- 0x60,0xA4,0x70,0xA4,0x9C,0x8C,0xA0,0x94,0xC0,0x88,
- 0xA4,0x8C,0x7C,0x84,0x7C,0x78,0x6C,0x74,0x6C,0x70,
- 0x6C,0x74,0x70,0x68,0x70,0x64,0x64,0x58,0x70,0x5C,
- 0x60,0x7C,0x68,0x7C,0x74,0x84,0x8C,0x8C,0x90,0xA0,
- 0x88,0x94,0x88,0x94,0x90,0x8C,0x88,0x88,0x8C,0x94,
- 0x88,0x9C,0x88,0x9C,0x80,0x88,0x84,0x74,0x7C,0x6C,
- 0x6C,0x5C,0x60,0x6C,0x60,0x6C,0x78,0x64,0x80,0x6C,
- 0x90,0x68,0x84,0x7C,0x7C,0x84,0x84,0x80,0x80,0x78,
- 0x90,0x7C,0x94,0x84,0x88,0x8C,0x84,0x80,0x94,0x78,
- 0x88,0x68,0x94,0x70,0x80,0x94,0x70,0x88,0x7C,0x74,
- 0x80,0x6C,0x90,0x64,0x7C,0x88,0x6C,0x74,0x60,0x7C,
- 0x78,0x64,0x8C,0x84,0x60,0x98,0x50,0x90,0x60,0x8C,
- 0x74,0x68,0x8C,0x70,0x8C,0x80,0x80,0x88,0x7C,0x90,
- 0x80,0x90,0x88,0x7C,0x7C,0x90,0x70,0x8C,0x78,0x8C,
- 0x78,0x84,0x80,0x70,0x8C,0x6C,0x88,0x78,0x80,0x7C,
- 0x6C,0x70,0x70,0x80,0x68,0x78,0x80,0x78,0x6C,0x90,
- 0x74,0x80,0x74,0x94,0x70,0x80,0x8C,0x8C,0x80,0x78,
- 0x90,0x68,0x80,0x8C,0x90,0x7C,0x80,0x94,0x6C,0x80,
- 0x88,0x74,0x88,0x64,0x88,0x68,0x78,0x78,0x78,0x7C,
- 0x70,0x8C,0x74,0x7C,0x78,0x80,0x78,0x80,0x6C,0x88,
- 0x7C,0x6C,0x8C,0x7C,0x80,0x70,0x88,0x8C,0x80,0x7C,
- 0x84,0x7C,0x7C,0x5C,0x90,0x74,0x7C,0x78,0x6C,0x80,
- 0x70,0x74,0x84,0x80,0x80,0x74,0x80,0x90,0x5C,0x8C,
- 0x74,0x74,0x88,0x68,0x90,0x74,0x70,0x98,0x70,0x90,
- 0x70,0x88,0x84,0x68,0x6C,0x88,0x68,0x80,0x6C,0x84,
- 0x78,0x78,0x70,0x84,0x68,0x74,0x60,0x78,0x70,0x68,
- 0x68,0x88,0x70,0x70,0x78,0x80,0x7C,0x74,0x78,0x80,
- 0x80,0x70,0x84,0x7C,0x84,0x78,0x7C,0x78,0x88,0x84,
- 0x8C,0x90,0x90,0x94,0x98,0x98,0x94,0x94,0x94,0x94,
- 0x9C,0x9C,0x98,0x98,0xA8,0xA0,0xA4,0xA8,0xA8,0xA4,
- 0xA8,0xAC,0xA0,0x9C,0x94,0xAC,0xA0,0x8C,0xA4,0xA8,
- 0xA8,0x98,0x9C,0x98,0x88,0x9C,0x8C,0x8C,0x8C,0x78,
- 0x80,0x74,0x68,0x58,0x58,0x58,0x48,0x4C,0x50,0x48,
- 0x44,0x44,0x58,0x48,0x44,0x4C,0x4C,0x5C,0x54,0x5C,
- 0x60,0x64,0x70,0x70,0x70,0x7C,0x80,0x84,0x90,0x90,
- 0x90,0x8C,0x90,0x84,0x84,0x7C,0x80,0x7E,0x7E,0x7E,
- 0x7A,0x7E,0x7A,0x7C,0x7C,0x74,0x74,0x74,0x74,0x74,
- 0x76,0x74,0x74,0x7A,0x7A,0x7A,0x80,0x7C,0x80,0x82,
- 0x82,0x82,0x82,0x84,0x80,0x80,0x7E,0x7E,0x7A,0x7E,
- 0x7E,0x7E,0x7E,0x80,0x80,0x7E,0x80,0x80,0x80,0x80,
- 0x82,0x82,0x84,0x86,0x88,0x88,0x8A,0x8E,0x8C,0x8A,
- 0x8E,0x8E,0x8A,0x8A,0x8A,0x88,0x88,0x84,0x84,0x82,
- 0x80,0x7E,0x7E,0x7C,0x7C,0x7C,0x78,0x78,0x76,0x76,
- 0x70,0x70,0x70,0x6E,0x6C,0x6E,0x70,0x6E,0x6C,0x6E,
- 0x6E,0x74,0x72,0x74,0x76,0x76,0x7A,0x7C,0x7C,0x80,
- 0x80,0x82,0x84,0x84,0x86,0x84,0x84,0x8A,0x8A,0x88,
- 0x86,0x84,0x80,0x7A,0x7A,0x7A,0x7A,0x7A,0x78,0x74,
- 0x72,0x72,0x72,0x74,0x76,0x7A,0x7A,0x7A,0x7C,0x7C,
- 0x80,0x80,0x84,0x86,0x84,0x86,0x86,0x88,0x88,0x8A,
- 0x8A,0x8C,0x8E,0x90,0x8E,0x8A,0x86,0x7E,0x78,0x74,
- 0x74,0x72,0x72,0x70,0x72,0x6E,0x6E,0x70,0x72,0x72,
- 0x72,0x72,0x74,0x76,0x76,0x7A,0x7A,0x7A,0x7C,0x80,
- 0x82,0x84,0x86,0x8A,0x8A,0x8C,0x8C,0x90,0x92,0x96,
- 0x96,0x94,0x8E,0x86,0x7E,0x76,0x76,0x76,0x78,0x78,
- 0x78,0x76,0x76,0x76,0x76,0x78,0x7A,0x78,0x78,0x78,
- 0x78,0x7A,0x7A,0x7A,0x7C,0x7C,0x7E,0x80,0x82,0x84,
- 0x86,0x88,0x8A,0x8C,0x92,0x94,0x94,0x92,0x88,0x7E,
- 0x72,0x6A,0x6C,0x72,0x7A,0x7C,0x7C,0x7C,0x7C,0x7E,
- 0x82,0x82,0x84,0x84,0x82,0x82,0x84,0x86,0x88,0x8A,
- 0x8A,0x8A,0x8A,0x8A,0x8E,0x90,0x92,0x94,0x96,0x9A,
- 0xA0,0xA2,0x9E,0x94,0x84,0x74,0x64,0x5E,0x5C,0x62,
- 0x70,0x76,0x78,0x76,0x74,0x76,0x78,0x7C,0x7A,0x78,
- 0x76,0x70,0x72,0x74,0x7A,0x7C,0x7E,0x82,0x84,0x8A,
- 0x90,0x94,0x9C,0x9E,0xA6,0xAC,0xAE,0xAC,0xA4,0x92,
- 0x80,0x6E,0x62,0x5E,0x62,0x6A,0x76,0x80,0x84,0x86,
- 0x88,0x8A,0x90,0x90,0x8C,0x84,0x7A,0x74,0x72,0x7A,
- 0x80,0x88,0x8E,0x8E,0x90,0x90,0x92,0x94,0x96,0x9A,
- 0xA0,0xA8,0xA4,0x9A,0x82,0x66,0x4C,0x3C,0x38,0x3C,
- 0x4C,0x5A,0x66,0x6E,0x72,0x76,0x7A,0x80,0x82,0x82,
- 0x76,0x68,0x54,0x4A,0x48,0x5A,0x72,0x80,0x86,0x86,
- 0x88,0x88,0x90,0x96,0xA2,0xB0,0xBA,0xBC,0xB2,0x98,
- 0x74,0x50,0x38,0x30,0x3A,0x4E,0x62,0x76,0x80,0x84,
- 0x88,0x8A,0x8E,0x90,0x90,0x82,0x6C,0x4E,0x34,0x26,
- 0x2A,0x48,0x74,0x98,0xA8,0xA2,0x9A,0x92,0x94,0x9E,
- 0xB4,0xC4,0xCE,0xBC,0x9E,0x6C,0x3A,0x1C,0x14,0x2A,
- 0x4A,0x70,0x8C,0x98,0x9C,0x9A,0x98,0x9A,0x9C,0x9A,
- 0x8A,0x6E,0x48,0x2A,0x1A,0x22,0x42,0x70,0x9E,0xBE,
- 0xCA,0xC4,0xB0,0xA4,0x9C,0xA8,0xC0,0xD6,0xDA,0xBA,
- 0x86,0x40,0x16,0x08,0x26,0x5A,0x90,0xB6,0xBE,0xB4,
- 0xA2,0x90,0x90,0x92,0x94,0x84,0x66,0x3C,0x1C,0x14,
- 0x28,0x5A,0x8C,0xB2,0xBE,0xBA,0xAC,0x9E,0x98,0xA0,
- 0xB0,0xCC,0xDE,0xDE,0xAC,0x6C,0x18,0x00,0x00,0x14,
- 0x60,0x9E,0xC8,0xC6,0xB4,0x9A,0x86,0x86,0x7E,0x74,
- 0x58,0x36,0x22,0x1C,0x40,0x64,0x96,0xAC,0xAC,0xA0,
- 0x88,0x82,0x84,0x9A,0xB2,0xC8,0xE4,0xF2,0xEE,0xBA,
- 0x6C,0x0C,0x00,0x00,0x04,0x64,0xB0,0xE2,0xE4,0xC8,
- 0xA6,0x86,0x74,0x5C,0x44,0x28,0x14,0x24,0x4A,0x86,
- 0xB0,0xBE,0xA6,0x7E,0x66,0x5C,0x76,0x98,0xB6,0xCC,
- 0xD4,0xE4,0xFC,0xFF,0xC8,0x62,0x00,0x00,0x00,0x0A,
- 0x98,0xFC,0xFF,0xF6,0xB6,0x82,0x66,0x60,0x44,0x24,
- 0x00,0x0E,0x4A,0x9A,0xDC,0xD8,0xA4,0x5C,0x30,0x40,
- 0x68,0xA0,0xBA,0xC2,0xC2,0xC8,0xEE,0xFF,0xFF,0xC4,
- 0x2C,0x00,0x00,0x00,0x58,0xF8,0xFF,0xFF,0xC6,0x88,
- 0x86,0x72,0x52,0x02,0x00,0x00,0x54,0xD8,0xFF,0xEE,
- 0x88,0x28,0x16,0x34,0x72,0x90,0x98,0xA0,0xAC,0xD0,
- 0xE2,0xF0,0xFA,0xF8,0xD4,0x54,0x00,0x00,0x00,0x2A,
- 0xBC,0xFF,0xFF,0xDE,0xA2,0x74,0x60,0x24,0x00,0x00,
- 0x1A,0x94,0xEA,0xFF,0xB8,0x5A,0x22,0x1C,0x48,0x60,
- 0x7C,0x92,0xAA,0xCC,0xCA,0xC6,0xB8,0xC6,0xF0,0xFF,
- 0xDE,0x3C,0x00,0x00,0x00,0x86,0xF2,0xFF,0xCA,0xA8,
- 0x9C,0x88,0x58,0x00,0x00,0x06,0x92,0xFF,0xFF,0xAE,
- 0x46,0x26,0x36,0x4C,0x56,0x54,0x80,0xB0,0xCC,0xB8,
- 0x8E,0x8C,0xAC,0xE4,0xFF,0xFF,0xE4,0x5C,0x00,0x00,
- 0x00,0x50,0xA6,0xF2,0xEE,0xD4,0xBC,0x78,0x3A,0x00,
- 0x00,0x2A,0x88,0xEC,0xEA,0xBE,0x62,0x30,0x28,0x20,
- 0x40,0x60,0x9C,0xC2,0xAE,0x8E,0x6A,0x90,0xBE,0xDA,
- 0xE0,0xD6,0xFA,0xF6,0x64,0x00,0x00,0x00,0x88,0xE6,
- 0xFF,0xD0,0xC6,0xC2,0x78,0x0E,0x00,0x00,0x68,0xDE,
- 0xFF,0xCE,0x96,0x5C,0x2E,0x22,0x00,0x34,0x88,0xC2,
- 0xD2,0x80,0x66,0x70,0xA6,0xD0,0xBE,0xBC,0xD0,0xFF,
- 0xFF,0x98,0x00,0x00,0x00,0x8C,0xCC,0xD6,0xE2,0xE6,
- 0xF4,0x72,0x00,0x00,0x00,0x8A,0xCA,0xD4,0xDC,0xD4,
- 0xCC,0x28,0x00,0x00,0x30,0xC0,0xAC,0x9C,0x9C,0x86,
- 0x90,0x60,0x7A,0xBA,0xCA,0xE0,0xC2,0xF0,0xFF,0xD2,
- 0x00,0x00,0x00,0x72,0xC8,0xB6,0xC6,0xF2,0xEE,0x74,
- 0x00,0x00,0x14,0x8A,0xAE,0xB8,0xEA,0xFF,0xBA,0x2E,
- 0x00,0x00,0x4C,0x82,0xA6,0xA8,0xC8,0xA2,0x42,0x36,
- 0x68,0xC4,0xD4,0xAE,0xC8,0xE6,0xFF,0xFF,0x98,0x00,
- 0x00,0x00,0x3C,0x7A,0xB4,0xFF,0xFF,0xB6,0x3A,0x00,
- 0x0E,0x20,0x32,0x7C,0xE0,0xFF,0xE0,0x80,0x50,0x26,
- 0x00,0x06,0x48,0x9E,0xC8,0x9E,0x98,0x6A,0x58,0x66,
- 0x82,0xC4,0xCA,0xB8,0xC8,0xD0,0xFA,0xFC,0xB0,0x08,
- 0x00,0x0C,0x28,0x62,0x9E,0xFF,0xFF,0xB4,0x58,0x2C,
- 0x18,0x0E,0x0C,0x74,0xD8,0xEE,0xD6,0xAA,0x82,0x40,
- 0x00,0x00,0x4A,0x78,0xA0,0xB0,0xC2,0xA4,0x48,0x50,
- 0x76,0x92,0xA4,0xB0,0xE0,0xEE,0xD6,0xF8,0xFC,0x9E,
- 0x00,0x00,0x18,0x1C,0x50,0xA6,0xFF,0xFF,0xAC,0x7C,
- 0x4E,0x00,0x00,0x0C,0x80,0xB2,0xB6,0xE6,0xE8,0xA4,
- 0x44,0x04,0x0A,0x24,0x1E,0x66,0xC2,0xC2,0xA4,0x84,
- 0x84,0x7A,0x6A,0x98,0xB6,0xB0,0xC0,0xDA,0xF6,0xFC,
- 0xD6,0x6A,0x00,0x10,0x02,0x0E,0x74,0xB6,0xDE,0xCC,
- 0xB6,0xAE,0x54,0x10,0x20,0x2A,0x4C,0x70,0xAA,0xD2,
- 0xBC,0xB2,0xA4,0x48,0x06,0x2A,0x1E,0x36,0x7C,0xAC,
- 0xB8,0x98,0xA2,0xA2,0x6C,0x78,0x9A,0x9C,0xAC,0xC4,
- 0xDA,0xE6,0xFA,0xDA,0x60,0x26,0x30,0x00,0x00,0x5A,
- 0x8E,0xB4,0xCE,0xEC,0xCC,0x72,0x60,0x46,0x0A,0x16,
- 0x46,0x6A,0x8E,0xB6,0xDA,0xC2,0x96,0x72,0x38,0x2E,
- 0x10,0x2C,0x64,0x72,0xA4,0xBA,0xAC,0xAE,0xA0,0xA6,
- 0x9A,0x8A,0xA2,0xA4,0xA8,0xD4,0xE6,0xC4,0x84,0x68,
- 0x62,0x00,0x0C,0x48,0x34,0x62,0xB6,0xBC,0xBC,0xBE,
- 0xA6,0x72,0x4A,0x4A,0x34,0x1E,0x52,0x6E,0x7E,0xAA,
- 0xC4,0xAC,0x92,0x94,0x48,0x24,0x48,0x38,0x4A,0x7C,
- 0x9C,0xAE,0xB8,0xBC,0xB2,0x9C,0xAC,0x9E,0x98,0xB2,
- 0xC0,0xCA,0xBA,0x80,0x64,0x5C,0x14,0x2C,0x42,0x38,
- 0x72,0xA0,0x9A,0xAE,0xB6,0x9A,0x78,0x66,0x5C,0x50,
- 0x58,0x68,0x62,0x76,0x8C,0x84,0x8A,0x80,0x7A,0x84,
- 0x62,0x64,0x64,0x5E,0x70,0x70,0x74,0x8C,0x96,0xA8,
- 0xB4,0xB6,0xBC,0xB4,0xBC,0xBE,0xBC,0xAC,0x98,0x5E,
- 0x6C,0x34,0x1E,0x4C,0x3A,0x50,0x7C,0x7C,0x90,0xA4,
- 0x9A,0x9C,0x9C,0x8A,0x76,0x70,0x68,0x5A,0x5C,0x5E,
- 0x56,0x70,0x7A,0x7A,0x84,0x90,0x7C,0x76,0x80,0x6A,
- 0x72,0x76,0x6A,0x74,0x84,0x8E,0xA6,0xB4,0xB8,0xBA,
- 0xC4,0xC2,0xC2,0xAE,0x9E,0x6E,0x76,0x46,0x30,0x48,
- 0x2A,0x3E,0x5C,0x62,0x78,0x90,0x9A,0xA6,0xB2,0xAA,
- 0x9A,0x9A,0x7C,0x62,0x60,0x4A,0x44,0x56,0x5C,0x6A,
- 0x78,0x80,0x80,0x84,0x82,0x7C,0x7E,0x7E,0x7C,0x90,
- 0x94,0xA4,0xA4,0xB0,0xB0,0xCC,0xD8,0xFF,0xFF,0xFF,
- 0xD4,0x98,0x9C,0x24,0x28,0x00,0x00,0x04,0x14,0x20,
- 0x4C,0x70,0x80,0xA0,0xBC,0xAC,0xC0,0xC0,0xA4,0xA4,
- 0x90,0x70,0x68,0x54,0x34,0x30,0x2C,0x20,0x44,0x48,
- 0x6C,0x88,0x88,0x94,0xA4,0x98,0xA0,0xA8,0x9C,0x9C,
- 0xB8,0xB8,0xD8,0xEC,0xE0,0xD8,0xE0,0x8C,0x98,0x64,
- 0x30,0x4C,0x20,0x20,0x30,0x28,0x1C,0x40,0x4C,0x50,
- 0x8C,0xA4,0xB4,0xD4,0xC0,0xB8,0xB8,0x9C,0x7C,0x7C,
- 0x5C,0x4C,0x48,0x3C,0x34,0x50,0x48,0x4C,0x70,0x64,
- 0x70,0x7C,0x70,0x8C,0x9C,0xB0,0xBC,0xCC,0xC4,0xD8,
- 0xDC,0xD0,0xBC,0xD8,0x9C,0x94,0x9C,0x44,0x6C,0x40,
- 0x1C,0x1C,0x18,0x14,0x34,0x54,0x58,0x8C,0x98,0x94,
- 0xC0,0xB4,0xA4,0xB8,0xA8,0x90,0x94,0x74,0x5C,0x68,
- 0x4C,0x44,0x50,0x48,0x40,0x5C,0x50,0x5C,0x74,0x64,
- 0x7C,0x94,0xA0,0xBC,0xC0,0xB8,0xB8,0xBC,0xAC,0xC8,
- 0xC4,0xD4,0xA8,0xB0,0x8C,0x60,0x70,0x2C,0x2C,0x24,
- 0x2C,0x30,0x4C,0x50,0x5C,0x78,0x74,0x90,0xA4,0xA0,
- 0xB4,0xB4,0xA8,0xA0,0x9C,0x80,0x7C,0x70,0x58,0x5C,
- 0x4C,0x44,0x3C,0x44,0x4C,0x54,0x68,0x6C,0x88,0x94,
- 0xA0,0xAC,0xA8,0xAC,0xB4,0xBC,0xB8,0xCC,0xC4,0xC8,
- 0xA4,0xA0,0x80,0x64,0x6C,0x40,0x40,0x38,0x40,0x38,
- 0x4C,0x48,0x54,0x6C,0x70,0x8C,0x98,0x9C,0xA4,0xA8,
- 0x9C,0x9C,0x9C,0x88,0x88,0x78,0x6C,0x70,0x5C,0x58,
- 0x48,0x48,0x48,0x50,0x60,0x70,0x88,0x8C,0x98,0x9C,
- 0x9C,0x9C,0xA4,0xA8,0xB8,0xC4,0xC4,0xD0,0xB8,0xA4,
- 0x98,0x60,0x60,0x44,0x48,0x44,0x54,0x44,0x54,0x54,
- 0x48,0x60,0x68,0x74,0x84,0x90,0x9C,0xA8,0xAC,0xA0,
- 0xA0,0x8C,0x84,0x80,0x78,0x78,0x7C,0x68,0x68,0x60,
- 0x58,0x5C,0x60,0x60,0x68,0x74,0x78,0x88,0x8C,0x90,
- 0x9C,0x9C,0xA0,0xA8,0xAC,0xB4,0xB4,0xB0,0x9C,0xA4,
- 0x7C,0x74,0x68,0x54,0x54,0x50,0x4C,0x44,0x5C,0x54,
- 0x6C,0x70,0x70,0x7C,0x80,0x84,0x8C,0x9C,0xA0,0xA8,
- 0xA4,0x94,0x94,0x80,0x70,0x6C,0x70,0x6C,0x78,0x78,
- 0x74,0x78,0x70,0x68,0x6C,0x64,0x68,0x6C,0x70,0x78,
- 0x80,0x84,0x8C,0x88,0x88,0x8C,0x8C,0x8C,0x94,0x94,
- 0x94,0x9C,0x9C,0x94,0x98,0x84,0x80,0x74,0x6C,0x64,
- 0x64,0x68,0x6C,0x74,0x70,0x74,0x74,0x6C,0x70,0x68,
- 0x6C,0x78,0x84,0x8C,0x8C,0x90,0x8C,0x84,0x80,0x7C,
- 0x78,0x80,0x80,0x80,0x84,0x80,0x80,0x78,0x68,0x68,
- 0x70,0x70,0x78,0x70,0x70,0x78,0x80,0x80,0x88,0x88,
- 0x88,0x88,0x88,0x80,0x88,0x80,0x78,0x70,0x78,0x78,
- 0x80,0x80,0x80,0x78,0x78,0x68,0x60,0x60,0x68,0x68,
- 0x70,0x78,0x80,0x80,0x80,0x80,0x78,0x70,0x80,0x78,
- 0x80,0x80,0x88,0x88,0x88,0x80,0x80,0x80,0x78,0x80,
- 0x78,0x80,0x80,0x80,0x78,0x68,0x70,0x70,0x70,0x70,
- 0x78,0x78,0x80,0x78,0x78,0x78,0x70,0x68,0x68,0x60,
- 0x70,0x70,0x78,0x70,0x78,0x78,0x78,0x70,0x78,0x78,
- 0x80,0x80,0x80,0x78,0x80,0x88,0x88,0x80,0x80,0x78,
- 0x80,0x80,0x78,0x78,0x80,0x78,0x78,0x78,0x78,0x78,
- 0x78,0x78,0x70,0x78,0x80,0x78,0x70,0x78,0x78,0x70,
- 0x78,0x78,0x78,0x80,0x88,0x80,0x88,0x80,0x80,0x80,
- 0x80,0x80,0x80,0x80,0x78,0x80,0x88,0x80,0x78,0x70,
- 0x68,0x68,0x70,0x78,0x80,0x80,0x88,0x88,0x88,0x88,
- 0x80,0x78,0x78,0x78,0x80,0x78,0x80,0x78,0x80,0x80,
- 0x88,0x80,0x80,0x78,0x80,0x78,0x78,0x80,0x80,0x88,
- 0x88,0x80,0x80,0x78,0x80,0x78,0x78,0x80,0x88,0x88,
- 0x88,0x80,0x80,0x78,0x70,0x68,0x70,0x78,0x80,0x80,
- 0x80,0x80,0x80,0x80,0x80,0x78,0x80,0x78,0x80,0x78,
- 0x80,0x80,0x80,0x80,0x80,0x78,0x78,0x70,0x70,0x78,
- 0x80,0x80,0x80,0x88,0x88,0x80,0x70,0x68,0x68,0x68,
- 0x70,0x78,0x88,0x80,0x88,0x80,0x88,0x80,0x78,0x78,
- 0x78,0x70,0x78,0x78,0x80,0x80,0x80,0x78,0x70,0x70,
- 0x78,0x80,0x78,0x80,0x80,0x80,0x80,0x78,0x70,0x70,
- 0x70,0x78,0x80,0x78,0x80,0x78,0x80,0x78,0x80,0x78,
- 0x80,0x78,0x78,0x78,0x78,0x70,0x78,0x70,0x78,0x70,
- 0x78,0x78,0x80,0x78,0x80,0x78,0x80,0x78,0x80,0x78,
- 0x78,0x70,0x78,0x80,0x80,0x80,0x80,0x78,0x80,0x78,
- 0x78,0x78,0x80,0x78,0x78,0x70,0x78,0x78,0x78,0x70,
- 0x78,0x78,0x78,0x80,0x88,0x80,0x88,0x80,0x80,0x78,
- 0x78,0x80,0x80,0x78,0x80,0x78,0x80,0x78,0x78,0x70,
- 0x78,0x78,0x80,0x80,0x80,0x80,0x80,0x80,0x78,0x70,
- 0x78,0x80,0x78,0x80,0x88,0x80,0x88,0x80,0x78,0x70,
- 0x70,0x70,0x78,0x70,0x78,0x70,0x78,0x78,0x80,0x78,
- 0x80,0x78,0x80,0x80,0x80,0x88,0x80,0x80,0x80,0x78,
- 0x80,0x78,0x80,0x78,0x78,0x70,0x78,0x70,0x78,0x78,
- 0x78,0x78,0x78,0x78,0x78,0x80,0x78,0x70,0x78,0x78,
- 0x80,0x80,0x88,0x80,0x88,0x80,0x80,0x78,0x70,0x68,
- 0x70,0x68,0x70,0x78,0x80,0x78,0x80,0x78,0x80,0x78,
- 0x80,0x78,0x80,0x80,0x80,0x80,0x80,0x78,0x80,0x78,
- 0x78,0x70,0x78,0x78,0x80,0x78,0x80,0x78,0x78,0x70,
- 0x78,0x70,0x78,0x78,0x80,0x78,0x78,0x80,0x88,0x80,
- 0x80,0x80,0x80,0x78,0x80,0x78,0x80,0x78,0x80,0x78,
- 0x78,0x78,0x80,0x78,0x80,0x78,0x80,0x78,0x80,0x80,
- 0x80,0x80,0x80,0x78,0x78,0x78,0x80,0x78,0x80,0x78,
- 0x80,0x78,0x78,0x70,0x70,0x70,0x78,0x80,0x88,0x80,
- 0x88,0x78,0x80,0x78,0x78,0x78,0x80,0x80,0x88,0x80,
- 0x88,0x80,0x80,0x78,0x78,0x70,0x78,0x78,0x80,0x78,
- 0x80,0x78,0x78,0x70,0x78,0x70,0x78,0x70,0x80,0x78,
- 0x80,0x78,0x80,0x78,0x80,0x78,0x80,0x78,0x80,0x78,
- 0x78,0x70,0x78,0x78,0x80,0x78,0x80,0x78,0x80,0x78,
- 0x78,0x70,0x80,0x78,0x88,0x80,0x80,0x78,0x78,0x70,
- 0x78,0x70,0x80,0x78,0x80,0x78,0x80,0x70,0x80,0x60,
- 0x80,0x40,0x78,0x58,0x80,0x80,0x80,0x90,0x78,0x98,
- 0x80,0x98,0x80,0x90,0x78,0x80,0x78,0x78,0x60,0x70,
- 0x78,0x70,0x80,0x70,0x80,0x70,0x78,0x78,0x78,0x70,
- 0x70,0x88,0x88,0x80,0x78,0x70,0x80,0x80,0x90,0x70,
- 0x78,0x70,0x80,0x78,0x78,0x88,0x78,0x70,0x78,0x88,
- 0x80,0x88,0x88,0x80,0x90,0x70,0x88,0x68,0x80,0x78,
- 0x68,0x70,0x88,0x68,0x78,0x98,0x88,0x80,0x90,0x70,
- 0x78,0x88,0x88,0x78,0x88,0x78,0x80,0x80,0x78,0x88,
- 0x50,0x40,0x88,0x68,0xB8,0x78,0xA0,0x50,0xB0,0x70,
- 0xB0,0x38,0x68,0x70,0x70,0x98,0xA8,0x90,0x78,0xA0,
- 0x80,0x88,0x88,0x98,0x88,0x68,0x88,0x80,0x60,0x68,
- 0x80,0x80,0x70,0x80,0x60,0x68,0x80,0x80,0x78,0x80,
- 0x78,0x88,0x80,0x78,0x88,0x88,0x80,0x80,0x78,0x78,
- 0x78,0x80,0x78,0x98,0x70,0x80,0x78,0x68,0x78,0x88,
- 0x78,0x88,0x78,0x80,0x80,0x80,0x88,0x80,0x78,0x70,
- 0x78,0x78,0x80,0x88,0x70,0x88,0x80,0x88,0x78,0x90,
- 0x78,0x78,0x80,0x80,0x78,0x80,0x80,0x88,0x88,0x90,
- 0x80,0x88,0x80,0x78,0x88,0x70,0x78,0x88,0x78,0x80,
- 0x80,0x80,0x78,0x78,0x78,0x68,0x78,0x78,0x90,0x80,
- 0x80,0x88,0x78,0x78,0x88,0x70,0x80,0x80,0x88,0x80,
- 0x80,0x88,0x70,0x80,0x68,0x80,0x80,0x80,0x78,0x80,
- 0x80,0x80,0x78,0x88,0x68,0x78,0x80,0x80,0x78,0x80,
- 0x80,0x78,0x80,0x78,0x78,0x78,0x78,0x88,0x70,0x80,
- 0x78,0x88,0x78,0x70,0x80,0x78,0x80,0x78,0x80,0x80,
- 0x70,0x80,0x80,0x80,0x80,0x80,0x78,0x78,0x70,0x80,
- 0x80,0x88,0x78,0x90,0x80,0x78,0x80,0x78,0x78,0x70,
- 0x70,0x88,0x78,0x80,0x80,0x80,0x80,0x70,0x80,0x78,
- 0x78,0x78,0x84,0x80,0x7C,0x80,0x80,0x7C,0x7C,0x80,
- 0x80,0x80,0x80,0x88,0x80,0x84,0x7C,0x80,0x78,0x7C,
- 0x7C,0x7C,0x80,0x7C,0x80,0x7C,0x80,0x7C,0x80,0x84,
- 0x78,0x84,0x7C,0x80,0x7C,0x7C,0x80,0x7C,0x7C,0x7C,
- 0x7C,0x80,0x7C,0x80,0x80,0x7C,0x80,0x80,0x80,0x7C,
- 0x7C,0x80,0x7C,0x80,0x7C,0x80,0x80,0x80,0x80,0x80,
- 0x84,0x7C,0x7C,0x80,0x7C,0x80,0x80,0x84,0x7C,0x7C,
- 0x80,0x7C,0x80,0x7C,0x80,0x80,0x7C,0x80,0x7C,0x80,
- 0x7C,0x80,0x80,0x7C,0x80,0x80,0x80,0x80,0x80,0x84,
- 0x7C,0x80,0x7C,0x80,0x80,0x7C,0x80,0x7C,0x80,0x80,
- 0x7C,0x80,0x7C,0x80,0x7C,0x80,0x80,0x7C,0x80,0x7C,
- 0x80,0x80,0x7C,0x7C,0x80,0x80,0x7C,0x7C,0x7C,0x7C,
- 0x7C,0x7C,0x80,0x80,0x7C,0x80,0x7C,0x80,0x7C,0x80,
- 0x7C,0x7C,0x7C,0x7C,0x7C,0x80,0x7C,0x7C,0x7C,0x80,
- 0x80,0x80,0x80,0x80,0x7C,0x7C,0x7C,0x7C,0x7C,0x7C,
- 0x7C,0x80,0x7C,0x7C,0x7C,0x7C,0x7C,0x80,0x7C,0x80,
- 0x7C,0x80,0x80,0x80,0x7C,0x80,0x7C,0x7C,0x7C,0x80,
- 0x7C,0x80,0x7E,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
- 0x80,};
-static ymu8 sample10[378]={
- 0x80,0x80,0xCE,0xD4,0xFA,0xFF,0xFF,0xBE,0x9E,0xFF,
- 0xFF,0x00,0xFF,0x5E,0xFF,0xFF,0x18,0xDC,0x00,0x9E,
- 0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x2C,0x1C,0x52,0x66,0xA2,0xCC,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xFF,
- 0x92,0xA8,0x56,0x1C,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1A,0x36,
- 0x5A,0x7A,0x98,0xA6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xE6,0xAA,0x86,0x80,0x6C,0x40,0x24,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x08,0x20,0x62,0x76,0x6E,0x8A,0xB4,0xA4,0xCC,0xE2,
- 0xE4,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xD6,0xD2,0xD4,0xB2,0xBE,0xB6,0x96,0x92,0x6E,0x70,
- 0x52,0x58,0x58,0x3C,0x26,0x2C,0x0A,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0E,
- 0x00,0x02,0x14,0x06,0x16,0x48,0x18,0x30,0x78,0x64,
- 0x7C,0xBE,0x9A,0xA6,0xA8,0x9E,0x98,0x9C,0x92,0x74,
- 0xA2,0xB6,0xB6,0x9A,0xBE,0xBE,0xA4,0xB0,0x86,0x8C,
- 0xAC,0xB4,0xBA,0xA6,0xD2,0xC0,0xDC,0xD8,0xE8,0xDE,
- 0xC2,0xAC,0x90,0x9C,0x9E,0x84,0x7A,0x7A,0x78,0x84,
- 0x56,0x56,0x2C,0x44,0x4C,0x12,0x22,0x0C,0x30,0x12,
- 0x24,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x06,0x16,
- 0x14,0x3C,0x22,0x36,0x3A,0x46,0x30,0x58,0x5E,0x54,
- 0x8C,0x84,0x6C,0x8A,0x9A,0x96,0xB0,0xBA,0xBA,0x98,
- 0xAE,0xB2,0x96,0xB6,0xAE,0xB4,0xB8,0xB4,0xAE,0xAE,
- 0xAE,0xB2,0xB4,0xD2,0xC6,0xBE,0xD2,0xC4,0xC4,0xB2,
- 0xAC,0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample11[1527]={
- 0xA0,0x90,0xC4,0xB6,0x92,0xE8,0xFF,0xFF,0x52,0xFE,
- 0x4E,0x86,0xAE,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xD6,0xFF,0xFF,0x00,0xBC,0x46,0x00,0x00,0x16,0x00,
- 0x36,0x7E,0xDE,0xFE,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,
- 0xFF,0xF6,0xFF,0xFF,0x98,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xA4,0x86,0x66,0x00,0x00,0x1C,
- 0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x06,0x46,0x0E,
- 0xAE,0xAE,0x4E,0xFF,0xFF,0xFF,0xCE,0xE8,0xB4,0xA6,
- 0x92,0xBC,0xC6,0xA6,0xBA,0xB6,0x66,0x5A,0x3E,0x0A,
- 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x86,0x26,0xAE,0x2E,0x94,0x9E,
- 0xEA,0xA0,0x8A,0xA4,0xA0,0x86,0x74,0xF4,0x60,0xB6,
- 0xBE,0x9E,0x8E,0x72,0x86,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x1C,0x1E,0x00,0x0A,0x26,0x46,0x30,
- 0x1C,0x60,0x92,0x26,0xE6,0x9A,0xE6,0xCA,0xFF,0xFF,
- 0xFE,0xFF,0xD6,0xFF,0xFF,0xFF,0xE2,0xFF,0x8A,0x8A,
- 0xA0,0x7C,0x4A,0x4E,0x5E,0x64,0x8E,0x4E,0x5A,0x72,
- 0x6C,0x3A,0x12,0x32,0xCE,0x96,0xB8,0x9E,0xCC,0xD2,
- 0xE6,0xE6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD6,0x7E,0xCA,
- 0xFE,0xB4,0x6E,0x76,0x4C,0x96,0x60,0x1E,0x56,0x8A,
- 0x62,0xF0,0x8A,0x3E,0xC6,0x56,0xC2,0x74,0x86,0xD2,
- 0xE2,0xFF,0xFF,0xA6,0xFF,0xFF,0xD6,0xDE,0xAA,0xB8,
- 0xFC,0xC0,0x86,0x9A,0x84,0x2C,0x44,0x52,0x48,0x5E,
- 0x02,0x56,0x00,0x48,0x12,0x00,0x1E,0x12,0x00,0x16,
- 0x14,0x00,0x12,0x0E,0x00,0x22,0x08,0x0E,0x0A,0x5E,
- 0x8A,0x4A,0x9E,0x6E,0x86,0x60,0x76,0x5C,0x66,0x36,
- 0x1C,0x4C,0x16,0x72,0x0E,0x00,0x0A,0x1A,0x02,0x00,
- 0x00,0x00,0x00,0x06,0x0A,0x00,0x00,0x12,0x16,0x4E,
- 0x22,0x20,0x72,0x56,0x64,0x4E,0x5E,0x9A,0x94,0x8E,
- 0xA2,0x7A,0x7A,0x9A,0xAC,0xAE,0xA6,0xC2,0xAE,0xA6,
- 0xBA,0x9E,0xDC,0x9E,0xC2,0x8E,0x6E,0x7C,0x80,0x9A,
- 0x76,0x80,0x88,0x82,0xB0,0xD6,0x7E,0x94,0xBC,0xFC,
- 0xD6,0xFF,0xF8,0xFF,0xE6,0xFF,0xB2,0xFC,0xBE,0xF4,
- 0xFA,0xFF,0xFF,0xFF,0xFF,0xFF,0xF2,0xFF,0xD0,0xC8,
- 0xAA,0xFF,0xDA,0xFF,0xC2,0xF0,0xEA,0xB0,0xD0,0xC8,
- 0xEC,0xDE,0xF6,0xCA,0xEE,0xBE,0x8E,0x9E,0xBA,0x5E,
- 0x8A,0xC8,0x9A,0xA8,0xDE,0x8C,0xB2,0x8A,0x96,0x70,
- 0xA8,0x9A,0x92,0xAE,0xE6,0x82,0xA8,0x9E,0x22,0x5C,
- 0x58,0x5E,0x30,0xA4,0x54,0x5E,0x32,0x6A,0x14,0x2C,
- 0x6C,0x2C,0x36,0x00,0x00,0x00,0x00,0x4A,0x00,0x00,
- 0x00,0x06,0x1C,0x00,0x06,0x00,0x14,0x00,0x32,0x20,
- 0x40,0x4C,0x42,0x0A,0x2E,0x1C,0x0E,0x00,0x00,0x00,
- 0x1A,0x00,0x00,0x00,0x00,0x00,0x1E,0x36,0x54,0x16,
- 0x2A,0x12,0x2A,0x38,0x46,0x00,0x0C,0x24,0x1E,0x14,
- 0x14,0x3C,0x18,0x3C,0x60,0x88,0x86,0x88,0x96,0xA6,
- 0xBA,0x7C,0xBA,0x82,0xAC,0x82,0x84,0x80,0xA4,0x22,
- 0xA4,0x8A,0xA2,0xC8,0xD6,0xBE,0xD6,0xB4,0xD4,0x9A,
- 0xB6,0x98,0xA0,0xA6,0xB6,0xD0,0xAA,0xCC,0xC6,0xF6,
- 0xE8,0xDC,0xDA,0xE6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
- 0xEA,0xFF,0xF6,0xFF,0xEA,0xE4,0xF6,0xF8,0xD4,0xD2,
- 0xDA,0xDA,0xFE,0xF4,0xD8,0xD0,0xDA,0xBE,0xF2,0xE0,
- 0xDA,0xBA,0xDE,0xD6,0xC6,0xFF,0xC6,0xE2,0xB6,0xB6,
- 0x9E,0xB8,0xA8,0xB8,0x70,0xBA,0x96,0xDE,0xB6,0xA6,
- 0x8E,0x9A,0x82,0x5E,0x42,0x74,0x64,0x6C,0xA4,0x68,
- 0x7A,0x74,0x6E,0x56,0x00,0x22,0x50,0x4E,0x3E,0x5C,
- 0x62,0x4C,0x30,0x12,0x00,0x34,0x00,0x00,0x0A,0x0E,
- 0x1C,0x44,0x3C,0x5A,0x2E,0x3E,0x06,0x20,0x00,0x0E,
- 0x12,0x30,0x36,0x00,0x0A,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x2E,0x30,0x5C,0x48,0x20,0x4C,0x28,
- 0x0E,0x46,0x26,0x4C,0x2A,0x2C,0x54,0x40,0x26,0x00,
- 0x34,0x58,0x64,0x40,0x62,0x18,0x46,0x58,0x3A,0x5A,
- 0x2A,0x9A,0x6E,0x74,0xAC,0xBA,0xC8,0x9A,0xA0,0x98,
- 0xB8,0xB4,0xCE,0xB6,0xD2,0x86,0xC0,0xA6,0xB6,0xDA,
- 0xFF,0xFF,0xFF,0xFF,0xFF,0xD0,0xBA,0xAA,0xF4,0xFA,
- 0xDE,0xC4,0xDE,0xCA,0xEA,0xF2,0xFF,0xF6,0xE8,0xFF,
- 0xFF,0xE8,0xE8,0xDC,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,
- 0xFF,0xFF,0xFF,0xFF,0xFC,0xFF,0xE6,0xFF,0xEA,0xD8,
- 0xCA,0xCA,0xC6,0xC2,0xE6,0xA0,0xC2,0x96,0x7E,0xAE,
- 0x58,0x8A,0x5E,0x6A,0x82,0x84,0x44,0x5C,0x86,0x5C,
- 0x8C,0x9A,0x80,0x86,0x86,0x4C,0x60,0x7E,0x50,0x4C,
- 0x36,0x6E,0x44,0x40,0x1C,0x3A,0x14,0x02,0x20,0x1A,
- 0x3C,0x3A,0x04,0x2C,0x0A,0x1E,0x26,0x00,0x00,0x02,
- 0x00,0x00,0x02,0x00,0x00,0x14,0x0C,0x10,0x00,0x00,
- 0x00,0x16,0x1A,0x24,0x40,0x50,0x6A,0x44,0x2E,0x2C,
- 0x38,0x28,0x38,0x38,0x6E,0x6A,0x5C,0x7E,0x40,0x44,
- 0x34,0x2E,0x28,0x74,0x44,0x2A,0x3A,0x5C,0x66,0x84,
- 0x88,0x74,0x78,0x9E,0x9E,0x9E,0x82,0x9A,0x82,0xA6,
- 0x66,0xB0,0x9A,0xA2,0xA6,0xEE,0xB8,0xD4,0xD6,0x96,
- 0xC6,0xB8,0xB4,0xA8,0xE2,0xB0,0xC8,0xA6,0xD2,0xD2,
- 0xD4,0xDE,0xF6,0xCA,0xD0,0xBA,0xB4,0xC0,0xB6,0xB6,
- 0xC6,0x9C,0xD4,0xDA,0xC0,0xA6,0xC2,0xC0,0xD2,0xA8,
- 0xBC,0xB2,0x98,0xCA,0x80,0xCA,0xB2,0xF6,0xE2,0xC2,
- 0xBC,0xD6,0xAE,0x86,0xB8,0x8E,0xBA,0xB0,0x80,0x92,
- 0x58,0x9C,0x7E,0x82,0x74,0x72,0x82,0x6C,0x8A,0x7C,
- 0x9A,0x7E,0x7A,0x7C,0x92,0x7C,0x78,0x96,0x80,0x7E,
- 0x64,0x54,0x5A,0x4C,0x62,0x64,0x70,0x3E,0x68,0x6E,
- 0x78,0x7A,0x76,0x58,0x4C,0x46,0x40,0x3C,0x2E,0x38,
- 0x34,0x44,0x4C,0x28,0x52,0x50,0x46,0x48,0x64,0x4E,
- 0x4E,0x50,0x62,0x32,0x46,0x66,0x60,0x66,0x80,0x7E,
- 0x60,0x60,0x7E,0x52,0x6A,0x66,0x60,0x48,0x5A,0x50,
- 0x66,0x5C,0x6A,0x4E,0x52,0x48,0x54,0x72,0x60,0x7A,
- 0x72,0x7A,0x76,0x78,0x7C,0x7C,0x64,0x8A,0x6E,0x78,
- 0x84,0x8E,0x98,0xB6,0x98,0xB8,0x92,0xA2,0x8E,0x86,
- 0x72,0x80,0x82,0x88,0x84,0x96,0x78,0x88,0x7E,0x8A,
- 0x8E,0x76,0x9C,0x98,0x98,0x7E,0x90,0x70,0x76,0x8C,
- 0xA2,0xA6,0x8C,0xB2,0xA0,0xAE,0x92,0xA6,0x90,0x88,
- 0x9C,0xAE,0xA8,0xBA,0xBA,0xA4,0xBC,0x9E,0x7E,0x7E,
- 0x7E,0x86,0x96,0x72,0xA0,0x86,0x84,0xB6,0x8E,0x96,
- 0x8E,0x9A,0xA2,0x8A,0x8E,0x80,0x76,0x82,0x8A,0x7A,
- 0x80,0x64,0x80,0x96,0xA2,0x9E,0xAA,0xAC,0xA4,0xA4,
- 0xA2,0x80,0x74,0x74,0x6A,0x78,0x6A,0x74,0x7C,0x7A,
- 0x7E,0x60,0x80,0x72,0x6A,0x76,0x7E,0x80,0x5A,0x78,
- 0x74,0x66,0x72,0x76,0x8A,0x6A,0x66,0x78,0x6C,0x68,
- 0x80,0x86,0x68,0x86,0x92,0x8E,0x88,0x74,0x64,0x38,
- 0x4A,0x4E,0x54,0x6E,0x5E,0x82,0x6E,0x7A,0x6A,0x9C,
- 0x6C,0x80,0x74,0x78,0x90,0x82,0x7A,0x78,0x60,0x5E,
- 0x5E,0x70,0x72,0x62,0x64,0x74,0x68,0x86,0x7A,0x9A,
- 0x78,0x9C,0x80,0x9E,0x7C,0x5A,0x66,0x96,0x7A,0x88,
- 0x88,0x9A,0x70,0x86,0x6C,0x6A,0x7A,0x64,0x8E,0x80,
- 0x84,0x7A,0x84,0x82,0x92,0x9A,0x9E,0x8A,0xA0,0x9E,
- 0x84,0x90,0x98,0x6E,0x7A,0x74,0x82,0x86,0x80,0x8E,
- 0x92,0x84,0x84,0x7A,0x92,0x94,0x94,0xAC,0x8C,0x8E,
- 0x7C,0x8C,0x94,0x80,0x88,0x68,0x7E,0x74,0x8C,0x8E,
- 0x74,0x92,0x92,0x8E,0x94,0x72,0x92,0x8E,0x72,0x88,
- 0x8A,0x84,0x88,0x8A,0x96,0x82,0x8C,0x84,0x84,0x9A,
- 0x70,0x68,0x80,0x7A,0x66,0x82,0x7C,0x78,0x78,0x7C,
- 0x74,0x6E,0x72,0x78,0x7A,0x88,0x7E,0x82,0x84,0x80,
- 0x84,0x7C,0x8A,0x72,0x76,0x80,0x7C,0x80,0x82,0x82,
- 0x80,0x8C,0x8C,0x80,0x84,0x76,0x7E,0x6C,0x7A,0x78,
- 0x7A,0x7E,0x74,0x70,0x68,0x70,0x72,0x74,0x70,0x76,
- 0x74,0x86,0x76,0x98,0x84,0x80,0x7C,0x6E,0x7C,0x82,
- 0x7A,0x8E,0x88,0x8A,0x76,0x84,0x7C,0x8E,0x70,0x8C,
- 0x8C,0x7E,0x8E,0x82,0x7E,0x84,0x68,0x66,0x78,0x80,
- 0x92,0x84,0x82,0x74,0x7E,0x72,0x76,0x6C,0x6A,0x72,
- 0x76,0x86,0x8E,0x8E,0x8A,0x86,0x86,0x70,0x84,0x78,
- 0x92,0x8E,0x8E,0x90,0x8C,0x8E,0x7E,0x82,0x7C,0x82,
- 0x70,0x80,0x74,0x72,0x6C,0x74,0x76,0x70,0x6E,0x7E,
- 0x80,0x78,0x7A,0x88,0x82,0x92,0x82,0x8A,0x80,0x7A,
- 0x88,0x86,0x7E,0x8A,0x86,0x88,0x96,0x8E,0x82,0x8C,
- 0x76,0x8C,0x84,0xA0,0x88,0x86,0x7C,0x8A,0x82,0x7C,
- 0x8C,0x60,0x7C,0x82,0x76,0x86,0x80,0x78,0x76,0x72,
- 0x7E,0x78,0x78,0x7E,0x80,0x6E,0x7E,0x7E,0x8C,0x9E,
- 0x86,0x92,0x8E,0x96,0x7C,0x82,0x78,0x7C,0x8A,0x82,
- 0x86,0x76,0x80,0x76,0x80,0x7E,0x82,0x78,0x7C,0x80,
- 0x7E,0x88,0x80,0x7E,0x70,0x86,0x7A,0x80,0x7C,0x74,
- 0x76,0x7E,0x74,0x6C,0x70,0x7A,0x7A,0x86,0x82,0x86,
- 0x8A,0x8A,0x86,0x88,0x78,0x82,0x78,0x82,0x74,0x7A,
- 0x7C,0x76,0x84,0x7C,0x7A,0x8A,0x7C,0x84,0x7E,0x7E,
- 0x80,0x7E,0x82,0x7A,0x7A,0x7A,0x6E,0x76,0x78,0x6E,
- 0x7A,0x7C,0x86,0x78,0x8A,0x82,0x78,0x8E,0x80,0x8A,
- 0x86,0x8A,0x8C,0x84,0x94,0x88,0x8E,0x84,0x7A,0x78,
- 0x7A,0x84,0x80,0x7E,0x7C,0x86,0x7C,0x86,0x82,0x7C,
- 0x7A,0x7A,0x76,0x76,0x7A,0x7E,0x84,0x84,0x80,0x7A,
- 0x7C,0x7C,0x80,0x84,0x80,0x8C,0x82,0x86,0x82,0x86,
- 0x7E,0x80,0x7C,0x84,0x8A,0x82,0x7E,0x88,0x7C,0x82,
- 0x7A,0x86,0x78,0x7C,0x72,0x84,0x7E,0x7C,0x72,0x80,
- 0x82,0x82,0x84,0x86,0x82,0x82,0x80,0x80,0x78,0x7A,
- 0x7A,0x82,0x7E,0x7A,0x7E,0x72,0x78,0x84,0x82,0x84,
- 0x86,0x8E,0x7E,0x78,0x7E,0x78,0x7A,0x7A,0x84,0x8C,
- 0x8A,0x86,0x86,0x7E,0x7A,0x74,0x80,0x88,0x7E,0x80,
- 0x7E,0x74,0x80,0x80,0x88,0x7A,0x80,0x76,0x7C,0x7E,
- 0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample12[258]={
- 0x6F,0x77,0x80,0x5F,0x41,0x80,0xE0,0xFF,0x3F,0x01,
- 0xC0,0xFF,0x07,0xC0,0xBF,0x00,0xFE,0x07,0xE0,0x3F,
- 0xC0,0x3F,0xC0,0x3F,0xE0,0x07,0xFF,0x00,0xFF,0x40,
- 0x3F,0xFF,0x00,0xBF,0xE0,0x00,0xFF,0xC0,0x00,0xFF,
- 0xF0,0x00,0x80,0xFF,0x20,0x00,0xFF,0xF0,0x00,0x0F,
- 0xFF,0xF0,0x00,0x01,0xDF,0xFF,0x80,0x00,0x3F,0xFF,
- 0xFC,0x50,0x00,0x3F,0xDF,0xFF,0xA0,0x20,0x03,0x5F,
- 0xDF,0xFC,0xB0,0x50,0x2B,0x77,0xC7,0xCC,0x94,0x60,
- 0x30,0x1F,0x5F,0xAF,0xC4,0xB0,0x84,0x60,0x30,0x18,
- 0x37,0x77,0xA7,0xDB,0xD8,0xB4,0x80,0x54,0x35,0x3F,
- 0x5F,0x87,0xAF,0xDB,0xDA,0xC0,0x9A,0x78,0x58,0x42,
- 0x47,0x5F,0x80,0x9B,0xBB,0xD6,0xCA,0xB8,0xA0,0x84,
- 0x68,0x4C,0x45,0x4D,0x5F,0x73,0x87,0x9F,0xAF,0xC7,
- 0xBC,0xA8,0x9C,0x88,0x70,0x58,0x4C,0x4A,0x49,0x53,
- 0x69,0x75,0x85,0x97,0xAD,0xB3,0xB2,0xAA,0xA0,0x90,
- 0x80,0x70,0x5C,0x51,0x48,0x49,0x49,0x4F,0x5E,0x6B,
- 0x7B,0x8D,0x97,0x9F,0xAB,0xB0,0xAE,0xA8,0xA0,0x94,
- 0x8B,0x80,0x70,0x65,0x60,0x58,0x53,0x52,0x52,0x57,
- 0x5F,0x69,0x6D,0x7D,0x83,0x8F,0x97,0x9E,0xA4,0xA6,
- 0xAD,0xA8,0xA5,0xA2,0x9A,0x93,0x8B,0x82,0x79,0x70,
- 0x72,0x65,0x60,0x5B,0x55,0x52,0x4F,0x56,0x53,0x57,
- 0x5B,0x5F,0x65,0x6F,0x71,0x7B,0x83,0x8B,0x92,0x9B,
- 0xA1,0xA7,0xB2,0xB6,0xB5,0xB5,0xB4,0xB0,0xAB,0xA4,
- 0x9C,0x94,0x92,0x82,0x81,0x79,0x71,0x77,0x6D,0x68,
- 0x67,0x61,0x5C,0x5E,0x59,0x5C,0x5C,0x63,0x69,0x6D,
- 0x73,0x80,0x80,0x80,0x80,0x80,0x80,0x80,};
-static ymu8 sample13[258]={
- 0x77,0x7B,0x80,0x6F,0x60,0x80,0xAF,0xBF,0x5F,0x40,
- 0x9F,0xBF,0x43,0x9F,0x9F,0x40,0xBE,0x43,0xAF,0x5F,
- 0x9F,0x5F,0x9F,0x5F,0xAF,0x43,0xBF,0x40,0xBF,0x60,
- 0x5F,0xBF,0x40,0x9F,0xAF,0x40,0xBF,0x9F,0x40,0xBF,
- 0xB7,0x40,0x80,0xBF,0x50,0x40,0xBF,0xB7,0x40,0x47,
- 0xBF,0xB7,0x40,0x40,0xAF,0xBF,0x80,0x40,0x5F,0xBF,
- 0xBD,0x68,0x40,0x5F,0xAF,0xBF,0x90,0x50,0x41,0x6F,
- 0xAF,0xBD,0x97,0x68,0x55,0x7B,0xA3,0xA5,0x8A,0x70,
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|