diff --git a/help/Commands.html b/help/Commands.html index 5d897a94..31c38d35 100644 --- a/help/Commands.html +++ b/help/Commands.html @@ -203,7 +203,7 @@
BIT(n); -- returns a number with only bit n set (1)
The emulator specific Lua is equal to the one of snes9x, with some platform specific changes (few buttons, for instance).
-You can find the reference here: http://dehacked.2y.net/snes9x-lua.html
+You can find the reference here: http://dehacked.2y.net/snes9x-lua.html
The following is a quick reference, you can go to the snes9x reference for more details.
To paint stuff on screen, use the gui table. This contains a few predefined functions to manipulate the main window. For any coordinate, 0,0 is the top-left pixel of the window. You have to prevent out-of-bound errors yourself for now. If a color can be passed on, it is a string. HTML-syntax is supported ("#34053D"), as well as a FEW colors ("red", "green", "blue" ...).
diff --git a/help/FAQGuides.html b/help/FAQGuides.html index d13f1bd0..8b0f484f 100644 --- a/help/FAQGuides.html +++ b/help/FAQGuides.html @@ -56,22 +56,22 @@Information regarding various concepts such as TAS, ROM Hacking, RAM Mapping.
A guide to common problems people experience, and what to do about them.
Information regarding Tool Assisted Speedruns and the TAS community.
Information regarding making ROM Hacks and the ROM Hacking community.
A guide to the layout of NES RAM, and how to interpret its contents.
Bitwise Operations
All the following functions are left for backward compatibility, since LuaBitOp is embedded in FCEUX.
+The following bit functions were added to FCEUX internally to compensate for Lua's lack of them. But it also supports all operations from LuaBitOp module, since it is also embedded in FCEUX.
int AND(int n1, int n2, ..., int nn)
Binary logical AND of all the given integers. This function compensates for Lua's lack of it.
+Binary logical AND of all the given integers.
int OR(int n1, int n2, ..., int nn)
Binary logical OR of all the given integers. This function compensates for Lua's lack of it.
+Binary logical OR of all the given integers.
int XOR(int n1, int n2, ..., int nn)
Binary logical XOR of all the given integers. This function compensates for Lua's lack of it.
+Binary logical XOR of all the given integers.
int BIT(int n1, int n2, ..., int nn)
LuaPerks
+FCEUX has several extension libraries integrated that are not included in LUA normally, but can be called from the external modules. These modules were collected into a common library called LuaPerks and built into FCEUX. The included libraries are very powerful compared to standard EmuLua functionality. Their functions can be called without using require.
+IUP library
+IUP (Portable User Interface) is a multi-platform toolkit for building graphical user interfaces.
+Usage example: creating custom dialogs.
+http://www.tecgraf.puc-rio.br/iup/
+IM library
+IM is a toolkit for Digital Imaging. IM is based on 4 concepts: Image Representation, Storage, Processing and Capture. The main goal of the library is to provide a simple API and abstraction of images for scientific applications.
+The most popular file formats are supported: TIFF, BMP, PNG, JPEG, GIF and AVI. Image representation includes scientific data types. About a hundred Image Processing operations are available.
+Usage example: dumping level maps during playing.
+http://www.tecgraf.puc-rio.br/im/
+CD library
+CD (Canvas Draw) is a platform-independent graphics library. It is implemented in several platforms using native graphics libraries: Microsoft Windows (GDI) and X-Windows (XLIB).
+The library contains functions to support both vector and image applications, and the visualization surface can be either a window or a more abstract surface, such as Image, Clipboard, Metafile, PS, and so on.
+Usage example: drawing hitboxes over level maps.
+http://www.tecgraf.puc-rio.br/cd/
+LuaSocket library
+LuaSocket is a Lua extension library that is composed by two parts: a C core that provides support for the TCP and UDP transport layers, and a set of Lua modules that add support for the SMTP (sending e-mails), HTTP (WWW access) and FTP (uploading and downloading files) protocols and other functionality commonly needed by applications that deal with the Internet.
+Usage examples: netplay, local data transmission.
+http://w3.impa.br/~diego/software/luasocket/home.html
+WinAPI library
+This module provides some basic tools for working with Windows systems, finding out system resources, and gives you more control over process creation. In this introduction any plain reference is in the winapi table, so that find_window means winapi.find_window. Normally winapi works with the current Windows code page, but can be told to use UTF-8 with @{set_encoding}; interally string operations are in Unicode.
+Usage example: making the emulator window jumping.
+https://github.com/stevedonovan/winapi
+Created with the Personal Edition of HelpNDoc: Free EBook and documentation generator
+How to use Luau's version of Basic bot.
+Additional libraries integrated into FCEUX.
Created with the Personal Edition of HelpNDoc: Free iPhone documentation generator
diff --git a/help/NESRAMMappingFindingValues.html b/help/NESRAMMappingFindingValues.html index fa71bc47..7ae32a62 100644 --- a/help/NESRAMMappingFindingValues.html +++ b/help/NESRAMMappingFindingValues.html @@ -232,7 +232,7 @@These distinctions are easier to see in a visual example. This is the enemy/player stats as they are mapped in the game Teenage Mutant Ninja Turtles.
Block 4
-P W1 W2 W3 E1 E2 E3 E4 E5 E6 E7 E8 X X X X
+P W1 W2 W3 E1 E2 E3 E4 E5 E6 E7 E8 X X X X
Sprite ID: 040x: 09 00 00 00 00 9E 9E 9E 9E 00 00 00 00 00 00 00
ID counter: 041x: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Timer/sp change: 042x: 02 00 00 00 00 03 03 03 03 00 00 00 00 00 00 00
diff --git a/help/OverviewofIncludedScripts.html b/help/OverviewofIncludedScripts.html index ba1dce72..d12fb79f 100644 --- a/help/OverviewofIncludedScripts.html +++ b/help/OverviewofIncludedScripts.html @@ -46,7 +46,7 @@Integer keys (also used for booleans, with a 1 for true and 0 for false) must have a value that can be stored as int32:
- version (required) - the version of the movie file format; for now it is always 3
-- emuVersion (required) - the version of the emulator used to produce the movie
-- rerecordCount (optional) - the rerecord count
-- palFlag (bool) (optional) - true if the movie uses PAL timing
-- NewPPU (bool) (optional) - true if the movie uses New PPU
-- FDS (bool) (optional) - true if movie was recorded on a Famicom Disk System (FDS) game
-- fourscore (bool) - true if a fourscore was used. If fourscore is not used, then port0 and port1 are required
-- port0 - indicates the type of input device attached to the port 0. Supported values are:
SI_NONE = 0
SI_GAMEPAD = 1
SI_ZAPPER = 2
-- port1 - indicates the type of input device attached to the port 1. Supported values are:
SI_NONE = 0
SI_GAMEPAD = 1
SI_ZAPPER = 2
-- port2 (required) - indicates the type of the FCExp port device which was attached. Supported values are:
SIFC_NONE = 0
-- binary (bool) (optional) - true if input log is stored in binary format
-- length (optional) - movie size (number of frames in the input log). If this key is specified and the number is >= 0, the input log ends after specified number of records, and any remaining data should not be parsed. This key is used in fm3 format to allow storing extra data after the end of input log
+- length (optional) - movie size (number of frames in the input log). If this key is specified and the number is >= 0, the input log ends after specified number of records, and any remaining data should not be parsed. This key is used in fm3 format to allow storing extra data after the end of input log
String keys have values that consist of the remainder of the key-value pair line. As a consequence, string values cannot contain newlines.
- romFilename (required) - the name of the file used to record the movie
-- comment (optional) - simply a memo
- subtitle (optional) - a message that will be displayed on screen when movie is played back (unless Subtitles are turned off, see Movie options)
At frame 1000 the words "Level Two" will be displayed on the screen
-- guid (required) - a unique identifier for a movie, generated when the movie is created, which is used when loading a savestate to make sure it belongs to the current movie
GUID keys have a value which is in the standard guide format: 452DE2C3-EF43-2FA9-77AC-0677FC51543B
-- romChecksum (required) - the base64 of the hexified MD5 hash of the ROM which was used to record the movie
-- savestate (optional) - a fcs savestate blob, in case a movie was recorded from savestate
Hex string keys (used for binary blobs) have a value that is like 0x0123456789ABCDEF...
The input log section consists of movie records either in the form of text lines or in the form of binary data.
Text format (default format):
+Text format (default format):
Every frame of the movie is represented by line of text beginning and ending with a | (pipe).
The fields in the line are as follows, except when fourscore is used.
@@ -206,7 +206,7 @@{commands, player1, player2, player3, player4, port2}
Binary format:
+Binary format:
Input log section starts with a | (pipe).
Every frame of the movie is represented by a record of a fixed length which can be determined by the devices on port0 and port1.
diff --git a/help/js/searchdata.js b/help/js/searchdata.js index b9bb5412..de1ab664 100644 --- a/help/js/searchdata.js +++ b/help/js/searchdata.js @@ -1 +1 @@ -var aTl=[['Intro.html','Introduction'],['Introduction.html','Introduction'],['Overview.html','Overview'],['FCEUltraVersionHistory.html','FCE%20Ultra%20Version%20History'],['WhatsNew221.html','What%27s%20New%3F%202%2E2%2E1%20%28changelog%29'],['WhatsNew220.html','What%27s%20New%3F%202%2E2%2E0%20%28changelog%29'],['WhatsNew215.html','What%27s%20New%3F%202%2E1%2E5%20%28changelog%29'],['WhatsNew214.html','What%27s%20New%3F%202%2E1%2E4%20%28changelog%29'],['WhatsNew213.html','What%27s%20New%3F%202%2E1%2E3%20%28changelog%29'],['WhatsNew212.html','What%27s%20New%3F%202%2E1%2E2%20%28changelog%29'],['WhatsNew211.html','What%27s%20New%3F%202%2E1%2E1%20%28changelog%29'],['WhatsNew210.html','What%27s%20New%3F%202%2E1%20%28changelog%29'],['WhatsNew203.html','What%27s%20New%3F%202%2E0%2E3%20%28changelog%29'],['WhatsNew202.html','What%27s%20New%3F%202%2E0%2E2%20%28changelog%29'],['WhatsNew201.html','What%27s%20New%3F%202%2E0%2E1%20%28changelog%29'],['WhatsNew200.html','What%27s%20New%3F%202%2E0%2E0'],['General.html','General'],['Gettingstarted.html','Getting%20Started'],['Gamefilecompatibility.html','Game%20file%20compatibility'],['CommandLineOptions.html','Command%20Line%20Options'],['CustomizingthroughtheConfigFil.html','Customizing%20through%20the%20Config%20File'],['FamicomDiskSytem.html','Famicom%20Disk%20Sytem'],['AVICapturing.html','AVI%20Capturing'],['MovieRecording.html','Movie%20Recording'],['NES.html','NES%20Menu'],['PaletteOptions.html','Palette%20Options'],['Config.html','Config'],['ToggleSwitchesHideMenuetc.html','Menu%20Items%20%26amp%3B%20Submenus'],['Directories.html','Directories'],['GUI.html','GUI'],['Input.html','Input'],['NetworkPlay.html','Network%20Play'],['Palette.html','Palette'],['SoundOptions.html','Sound'],['Timing.html','Timing'],['Video.html','Video'],['MovieOptions.html','Movie%20Options'],['MapHotkeys.html','Map%20Hotkeys'],['ContextMenuItems.html','Context%20Menu%20Items'],['Tools2.html','Tools'],['CheatSearch.html','Cheat%20Search'],['RAMSearch.html','RAM%20Search'],['RAMWatch.html','RAM%20Watch'],['MemoryWatch.html','Memory%20Watch'],['TASEditor.html','TAS%20Editor'],['Covertfcm.html','Convert%20fcm'],['AutoFireConfigurations.html','Auto%20Fire%20Settings'],['ExternalInput.html','External%20Input'],['TextHooker.html','Text%20Hooker'],['Debug.html','Debug'],['Debugger.html','Debugger'],['PPUViewer.html','PPU%20Viewer'],['NameTableViewer.html','Name%20Table%20Viewer'],['HexEditor.html','Hex%20Editor'],['TraceLogger.html','Trace%20Logger'],['CodeDataLogger.html','Code/Data%20Logger'],['GameGenieEncoderDecoder.html','Game%20Genie%20Encoder/Decoder'],['LuaScripting.html','Lua%20Scripting'],['LuaGettingStarted.html','Getting%20Started'],['LuaFunctionsList.html','Lua%20Functions%20List'],['Commands.html','Using%20Lua'],['LuaBot.html','Lua%20Bot'],['OverviewofIncludedScripts.html','Overview%20of%20Included%20Scripts'],['FAQGuides.html','FAQ%20/%20Guides'],['Troubleshooting.html','Troubleshooting'],['ToolAssistedSpeedruns.html','Tool%20Assisted%20Speedruns'],['ROMHacking.html','ROM%20Hacking'],['NESRAMMappingFindingValues.html','NES%20RAM%20%28Mapping/Finding%20Values%29'],['Technicalinformation.html','Technical%20Information'],['Movieformats.html','Movie%20%26amp%3B%20Savestate%20formats'],['fm2.html','%2Efm2'],['fcm.html','%2Efcm'],['fcs.html','Savestate%20%28%2Efcs%29'],['Sound.html','Sound'],['NSFFormat.html','NSF%20Format'],['NESSound.html','NES%20Sound'],['NESProcessor.html','NES%20Processing'],['6502CPU.html','CPU%20%2D%206502'],['PPU.html','PPU%20%2D%202C02'],['NESScrolling1.html','NES%20Scrolling%201'],['NESScrolling2.html','NES%20Scrolling%202']];var oWl= {'redrawing':[[4,1]],'relation':[[40,1],[48,1]],'otherwise':[[59,6],[54,1],[29,1],[78,2],[60,1],[61,1],[75,2],[77,6]],'rightclick':[[59,1],[5,1]],'comma':[[59,1],[27,1]],'content':[[60,1]],'areascrambler':[[62,1]],'become':[[61,2],[78,2],[7,1]],'matching':[[45,1],[40,1]],'chrominance':[[78,6]],'dff8':[[50,1]],'rare':[[77,1],[67,2]],'multilinecomment':[[50,2]],'especially':[[72,1]],'irqs':[[72,1]],'0x16':[[59,1]],'f23':[[59,1]],'roll':[[4,1]],'speedrunning':[[65,1],[5,1]],'buttons':[[46,1],[30,3],[50,3],[61,2],[59,4],[9,1],[23,1],[26,1],[70,3],[60,1],[71,1],[40,2],[11,2],[7,3]],'precision':[[65,1],[78,1],[23,2]],'takeshi':[[30,1]],'increments':[[59,1],[77,1],[80,1]],'application':[[59,1],[60,1],[61,1]],'dark':[[55,1]],'redundant':[[70,1],[9,1]],'let':[[55,1],[62,1],[43,1],[60,2],[77,3],[48,1],[74,1],[40,1],[79,1]],'submitinputchange':[[59,1]],'ispoweron':[[59,2],[7,1]],'key':[[46,1],[53,2],[12,1],[27,9],[37,1],[5,1],[15,1],[22,1],[23,10],[29,1],[24,2],[54,1],[59,1],[60,1],[70,11],[75,3],[65,2]],'realize':[[48,1]],'practical':[[77,2]],'feeds':[[78,1]],'reverts':[[4,1],[38,4]],'byte':[[55,12],[50,1],[77,60],[74,11],[56,2],[59,8],[54,1],[78,12],[70,9],[43,2],[60,2],[72,10],[48,3],[75,1],[40,1]],'config':[[1,2],[19,7],[30,1],[28,1],[12,3],[13,4],[20,4],[8,2],[5,6],[27,3],[64,5],[9,3],[22,1],[23,1],[25,1],[26,3],[4,6],[10,4],[11,3],[7,2]],'dong':[[4,1]],'reference':[[48,3],[60,6],[50,1]],'#rrggbb':[[59,1]],'from':[[50,6],[61,2],[77,75],[56,2],[35,1],[27,2],[15,8],[80,9],[2,1],[24,3],[48,6],[32,2],[79,2],[38,7],[28,1],[44,1],[12,2],[13,5],[64,1],[5,9],[69,1],[21,2],[22,1],[11,6],[67,2],[74,5],[16,1],[59,23],[9,5],[14,1],[23,12],[51,1],[54,3],[60,5],[4,3],[71,1],[10,5],[40,5],[18,3],[7,4],[65,4],[55,3],[53,5],[30,3],[8,1],[17,1],[78,17],[70,4],[72,4],[75,17],[3,4],[58,2]],'port1':[[70,7]],'dpad':[[8,1]],'gpl':[[3,1]],'cdl':[[4,4],[55,5]],'incorrect':[[77,1]],'specification':[[74,1],[58,1]],'cleans':[[59,1]],'compact':[[4,1]],'4009':[[75,1]],'64kb':[[13,1],[14,1]],'crashing':[[13,1],[12,2],[8,1],[62,1]],'dumps':[[38,1]],'approximately':[[77,1]],'04dx':[[67,1]],'slo':[[77,13]],'fed':[[78,3],[75,5]],'modulator':[[72,1]],'zeromus':[[3,1]],'calculated':[[77,1],[75,5],[21,1],[50,1]],'discarded':[[61,1],[78,2]],'elimination':[[40,1]],'hand':[[77,1],[60,2]],'scrolling':[[78,4],[76,2],[80,2],[52,2],[79,3],[35,1]],'api':[[58,1]],'c008':[[50,2]],'sound':[[73,4],[19,1],[67,3],[12,1],[13,4],[74,17],[64,3],[5,1],[17,1],[59,2],[26,2],[23,1],[6,2],[34,3],[75,32],[10,4],[33,22],[11,12]],'playable':[[8,1],[9,1]],'each':[[50,3],[67,8],[61,2],[74,2],[77,8],[35,2],[59,7],[54,1],[60,1],[32,2],[40,3],[57,1],[55,4],[38,1],[30,2],[53,1],[20,1],[36,1],[78,7],[25,1],[70,2],[43,1],[72,1],[75,9],[33,1]],'alias':[[59,5]],'useability':[[10,1]],'scalar':[[7,1]],'cpx':[[77,3]],'rldutsba':[[70,1]],'ordering':[[70,1]],'subtraction':[[77,11]],'set':[[50,3],[61,10],[74,16],[16,1],[77,42],[35,1],[27,2],[59,11],[9,1],[23,2],[54,1],[71,2],[24,4],[60,2],[4,2],[80,1],[48,2],[32,1],[40,3],[7,1],[65,2],[46,4],[55,1],[38,1],[30,1],[28,1],[12,2],[52,2],[36,1],[17,1],[78,6],[21,1],[70,1],[43,1],[34,1],[72,1],[75,14],[33,1],[11,5],[58,3]],'apu':[[10,1]],'overwrite':[[17,1],[60,1]],'whenever':[[59,6],[53,1],[50,3],[77,2],[75,1],[36,1]],'aspiringsquire':[[25,1]],'keys':[[17,2],[59,4],[26,1],[70,4],[30,2],[60,2],[61,3],[12,1],[8,2],[11,2]],'finding':[[49,1],[54,2],[55,1],[67,5],[61,1],[40,1],[65,2]],'newline':[[70,1]],'106':[[78,1],[74,2]],'0400fh':[[74,1]],'pixels':[[59,5],[78,14],[62,1],[4,1],[20,1],[35,3]],'unrelated':[[75,1]],'listed':[[11,1],[50,1],[30,3],[72,1],[56,1],[64,1],[40,1]],'tbl2':[[60,3]],'currently':[[79,1],[38,1],[30,1],[31,1],[50,3],[53,1],[61,1],[67,1],[74,1],[64,1],[27,1],[59,7],[78,2],[23,2],[71,1],[72,1],[75,6],[32,2],[40,2],[11,2],[7,1]],'probability':[[61,1]],'4010h':[[74,1]],'access':[[59,2],[9,2],[23,2],[54,2],[78,15],[67,1],[77,1],[5,2]],'dynamically':[[5,1]],'improper':[[23,1]],'occuring':[[5,1]],'manpage':[[5,1]],'100%':[[24,2]],'necessary':[[59,2],[46,1],[55,1],[33,1]],'recordbackwards':[[5,1]],'strings':[[59,1],[48,1],[50,2],[60,2]],'quiche':[[77,1]],'helsinki':[[77,1]],'unsigned':[[59,2],[41,1],[50,1],[60,1],[77,3],[42,1],[40,2]],'bus':[[77,3],[75,2],[78,7],[50,2],[5,3]],'preventing':[[7,1]],'sweep':[[75,24]],'clicks':[[59,1]],'placed':[[59,1],[64,1],[67,1]],'2400':[[72,1]],'released':[[61,2],[12,1],[13,1],[8,1],[5,1],[78,1],[9,1],[14,1],[15,1],[21,2],[6,1],[4,1],[3,10],[10,1],[11,1],[7,2]],'regardless':[[59,2],[75,1],[78,6]],'7fffh':[[74,2]],'converting':[[10,1],[45,1]],'distinctions':[[67,1]],'leave':[[24,1]],'definitions':[[72,3],[48,1]],'print':[[59,1],[60,1],[77,1]],'unminimized':[[8,1]],'romfreezecolor':[[10,1]],'saves':[[27,1],[59,4],[28,1]],'reach':[[65,1]],'comparator':[[78,2]],'reaches':[[75,2]],'|30':[[75,1]],'snow':[[62,1]],'1800':[[67,2]],'simple':[[59,2],[78,2],[50,1],[67,1],[61,1],[48,1],[32,1],[3,1],[40,2],[74,1]],'type':[[53,1],[50,4],[56,1],[5,2],[59,8],[70,4],[43,1],[60,1],[4,1],[72,6],[48,1],[75,3],[10,1],[40,2],[18,1]],'invalidate':[[6,1]],'revolutionary':[[15,1]],'flawed':[[12,1]],'adapter':[[21,2],[30,1]],'easter':[[55,1]],'disabling':[[64,1],[7,1],[27,1]],'blue':[[59,7],[55,2],[43,1],[60,1],[32,1],[20,1],[11,1]],'object':[[67,4],[59,10],[78,52],[7,1],[60,2]],'sizes':[[12,1]],'redundancy':[[3,1]],'registerexec':[[59,1]],'away':[[59,1],[77,6],[78,1],[30,1]],'changing':[[78,1],[9,1],[50,1],[4,1],[77,4],[36,1],[11,1]],'2xx':[[74,1]],'presumably':[[78,3]],'reaction':[[17,1]],'noted':[[55,1],[40,1],[78,1]],'fixup':[[77,14]],'storage':[[21,1],[48,1]],'|video':[[78,1]],'p7f':[[59,1]],'counter|':[[78,1]],'well':[[55,1],[50,1],[28,1],[61,6],[74,2],[77,5],[64,1],[59,4],[51,1],[78,3],[66,1],[43,1],[6,1],[60,1],[48,4],[3,1],[40,1],[18,1]],'dos':[[3,3]],'256bytes':[[67,1]],'obj':[[78,1],[27,1]],'getsuperimpose':[[59,1]],'serve':[[3,1],[59,1]],'stated':[[3,1]],'comments':[[23,1],[70,2],[38,2],[60,1],[50,4],[5,1]],'50%':[[59,2],[61,1]],'locations':[[74,1]],'5ff5':[[74,2]],'clock':[[77,2],[75,28],[78,26]],'setup':[[78,1]],'#ff':[[50,1]],'objpixel':[[78,1]],'possibility':[[55,1]],'acceptable':[[59,1]],'avoided':[[78,1]],'basicbot':[[61,1],[15,1]],'initialized':[[77,1],[75,1],[5,1]],'under':[[57,1],[1,3],[61,2],[77,1],[56,2],[39,1],[27,1],[78,1],[15,1],[21,2],[23,2],[26,1],[43,1],[49,1],[48,1],[3,3],[40,2],[33,1],[7,2]],'selected':[[78,8],[21,1],[23,2],[41,1],[45,1],[77,1],[48,3],[40,5],[7,2],[5,1]],'1st':[[78,1],[74,1],[70,3],[43,2],[67,1]],'kind':[[77,2],[48,4],[78,1],[50,1]],'070h':[[74,2]],'syncronous':[[75,1]],'dcp':[[77,14]],'registerauto':[[59,1]],'themselves':[[62,3]],'05xx':[[67,1]],'initalized':[[74,1]],'76h':[[74,1]],'`c`':[[77,1]],'behavior':[[43,1]],'bxj':[[77,1]],'decides':[[78,1],[60,1]],'detail':[[75,2],[40,1],[64,1],[67,1]],'3f00':[[67,1]],'fcs':[[70,1],[71,1],[28,1],[72,3],[13,1],[69,1]],'attempt':[[59,1],[29,1],[50,1],[61,23],[74,1],[75,1],[3,1],[64,1]],'big':[[59,1],[48,2],[61,2],[11,2]],'briefly':[[40,1]],'conditionally':[[75,1]],'statistics':[[50,1],[67,1]],'seeing':[[77,1],[78,3],[23,1]],'writes':[[78,1],[53,1],[61,1],[74,2],[75,4],[77,2],[79,1],[7,1]],'accelerators':[[4,1]],'nestech':[[75,1]],'robust':[[59,1]],'evaluations':[[78,1]],'address':[[79,5],[53,2],[50,43],[67,6],[77,224],[52,1],[20,1],[74,28],[56,12],[5,4],[59,29],[51,2],[78,22],[80,1],[43,6],[60,5],[72,5],[40,17],[7,3],[11,1]],'japanese':[[48,16]],'item':[[9,2],[55,1],[38,7],[6,1],[4,1],[13,1],[48,2],[10,7],[40,1],[11,3],[8,1]],'automatically':[[19,3],[30,1],[50,4],[77,1],[13,1],[36,3],[56,1],[35,2],[27,2],[78,1],[15,1],[23,2],[29,1],[54,2],[43,1],[75,1],[40,5],[11,2]],'unclear':[[78,1]],'shame':[[78,1]],'frkfunctions':[[62,1]],'temp':[[78,2],[79,1]],'experience':[[63,1],[64,1],[49,1],[62,1],[35,1]],'mkv':[[38,1]],'droradc':[[77,2]],'selling':[[78,1],[48,1]],'tinker':[[53,1]],'2000|':[[67,1]],'drawbox':[[59,1]],'memblers':[[75,1]],'nestopia_yuv':[[25,1]],'unpaused':[[4,1]],'distinquished':[[77,1]],'fit':[[77,1],[35,1]],'somethingelseistrue':[[60,1]],'jukka':[[77,1]],'mЉkelЉ':[[77,1]],'followed':[[70,2]],'rowheightborder':[[10,1]],'hexforecolorg':[[20,1]],'imported':[[59,1],[9,2],[60,1]],'complements':[[55,1],[5,1]],'playfield':[[78,29]],'romchecksum':[[70,1]],'short':[[59,1],[54,1],[30,1],[60,1],[48,1],[75,2],[40,1]],'continued':[[3,1]],'final':[[22,1],[75,1]],'makecode':[[55,1]],'silver':[[27,1]],'minor':[[9,2],[1,1],[6,1],[12,1],[13,1],[10,1],[11,2],[64,1]],'disposal':[[48,1]],'4013h':[[74,1]],'signal':[[77,4],[75,4],[32,1],[78,12]],'while':[[50,4],[77,11],[74,4],[35,1],[27,3],[59,7],[15,1],[23,3],[29,2],[54,3],[24,1],[60,5],[4,2],[48,4],[65,1],[55,6],[38,1],[30,2],[53,3],[62,1],[36,1],[8,1],[5,1],[64,1],[78,2],[41,1],[6,1],[34,2],[75,3],[11,2],[58,1]],'fds':[[50,1],[28,2],[74,10],[16,1],[64,5],[8,2],[17,1],[9,1],[21,8],[70,6],[66,1],[24,2],[72,1],[18,5],[65,1]],'gameplay':[[66,2],[21,1]],'time':[[50,5],[67,3],[77,14],[74,1],[27,4],[59,11],[9,1],[54,5],[71,1],[2,1],[4,1],[48,2],[40,3],[65,1],[53,2],[30,2],[62,1],[52,2],[36,1],[8,1],[78,23],[75,7],[3,1],[33,1],[11,1],[58,1]],'height':[[4,1],[10,1],[11,2]],'passes':[[10,1]],'busses':[[78,1]],'hexfreezecolorb':[[20,1]],'stupid':[[10,1]],'duration':[[30,1]],'such':[[1,1],[50,5],[67,4],[61,3],[27,2],[59,6],[54,1],[23,1],[47,1],[66,2],[60,1],[48,1],[10,1],[57,1],[40,3],[65,3],[55,2],[38,1],[30,2],[28,2],[62,1],[8,3],[64,1],[63,1],[78,1],[43,1],[72,1],[75,2],[3,5],[11,2]],'converts':[[59,1]],'func':[[59,16]],'isb':[[77,16]],'listing':[[13,1]],'lack':[[59,3]],'indir':[[77,4]],'side':[[78,1],[21,9],[80,1],[24,1],[50,1],[72,1],[48,2],[75,1],[3,1],[40,1],[35,1],[77,1]],'9fff':[[55,1]],'designation':[[50,1]],'maxsegments':[[61,1]],'render':[[78,7],[35,1]],'eor':[[77,15]],'crossing':[[77,11]],'memo':[[70,1]],'registerrun':[[59,1]],'square2':[[59,1]],'|bits':[[75,2]],'written':[[1,1],[62,1],[67,2],[77,3],[42,1],[74,5],[59,3],[9,1],[21,1],[41,1],[51,1],[60,3],[78,1],[72,4],[48,2],[75,6],[3,2],[40,2],[57,1]],'babelfish':[[48,1]],'paste':[[48,2],[49,1],[53,3]],'moving':[[59,1],[51,1],[61,1]],'n@3':[[77,1]],'occurrence':[[77,1]],'permanent':[[56,1]],'007c':[[74,1]],'easier':[[59,1],[55,1],[66,1],[50,2],[62,2],[67,1],[77,2],[74,1],[57,1],[79,1],[65,1]],'confirm':[[59,2],[78,1]],'tech':[[75,1]],'barcode':[[30,2]],'creating':[[65,2],[59,2],[3,1],[44,2]],'artist':[[74,3]],'disabled':[[55,1],[19,5],[50,1],[12,1],[13,1],[20,1],[74,1],[27,1],[5,1],[4,2],[34,2],[75,7],[33,2],[11,2]],'reader':[[30,1]],'replace':[[59,1],[48,1],[75,1],[78,1],[30,2]],'demo':[[55,2]],'dakuten':[[48,5]],'far':[[77,1],[48,1],[75,1],[78,1]],'necessarily':[[77,1]],'secrets':[[55,1]],'getpixel':[[59,2],[7,1],[60,1]],'drawline':[[59,1]],'f12':[[59,1]],'properly':[[17,1],[5,1],[9,1],[46,1],[55,1],[40,1],[11,3],[27,1]],'scanlines':[[78,9],[52,1],[11,3],[50,3]],'340':[[78,1]],'restored':[[40,1],[9,2]],'opens':[[55,1],[38,5],[40,2],[5,1]],'back':[[38,1],[61,3],[74,2],[77,9],[27,1],[17,1],[59,1],[21,1],[23,6],[70,1],[78,2],[60,1],[65,1]],'rerecordcounting':[[59,1]],'upper':[[27,1],[77,6],[78,1],[67,1],[50,1]],'10h':[[74,1]],'box':[[30,2],[50,1],[56,8],[35,2],[5,1],[37,1],[8,1],[15,2],[23,2],[59,11],[43,1],[60,1],[48,1],[40,3],[18,1]],'section':[[50,1],[28,1],[67,1],[77,1],[74,1],[64,1],[78,3],[54,1],[70,5],[43,1],[72,15],[48,3],[75,3],[7,1]],'bat':[[16,1]],'radd':[[72,1]],'ability':[[5,1],[12,1],[75,4],[65,1]],'backed':[[28,1],[8,1],[11,1]],'only':[[19,3],[50,6],[61,3],[74,13],[77,22],[35,2],[59,28],[15,1],[14,1],[23,10],[54,5],[60,8],[71,1],[48,3],[32,2],[10,2],[40,2],[7,2],[18,2],[65,2],[55,5],[38,7],[30,1],[44,1],[53,1],[12,3],[13,2],[20,1],[36,4],[8,1],[5,3],[37,1],[78,14],[22,3],[6,2],[72,1],[75,19],[3,4],[11,1]],'alt':[[10,3],[59,1],[11,2]],'corrupted':[[48,1],[7,1],[5,1]],'oversights':[[14,1]],'states':[[59,4],[77,2],[47,1],[70,1],[28,1]],'gp2x':[[3,1]],'reduced':[[43,1]],'shops':[[48,1]],'solely':[[67,1]],'lsr':[[77,17]],'according':[[4,1],[59,1],[77,3],[78,1],[35,1],[58,1]],'requests':[[59,1]],'seemed':[[48,1]],'bypass':[[78,1]],'occasionally':[[66,1],[77,2]],'everytime':[[78,1]],'@```':[[77,5]],'bros':[[67,1]],'excluded':[[78,1]],'resumed':[[4,1]],'9000':[[74,2]],'depend':[[36,1],[70,1]],'mmc':[[78,3]],'quotes':[[74,1]],'txt':[[77,2],[74,2],[12,1],[75,6],[11,1]],'heavy':[[59,2],[7,1],[75,1]],'assistance':[[65,1]],'fffe':[[77,3],[50,1],[67,1]],'swap':[[56,1],[51,1]],'keeping':[[50,1]],'si_zapper':[[70,4]],'asymmetry':[[75,1]],'banking':[[59,1]],'library':[[60,1],[59,26],[9,2],[3,1],[6,1],[5,1]],'thanks':[[74,3],[12,1],[75,1],[8,1]],'vblank':[[59,1],[78,1],[11,2],[50,1]],'something':[[65,1],[59,2],[54,1],[60,6],[61,3],[12,1],[48,1],[74,2],[77,3],[79,1],[58,1]],'falling':[[78,2]],'c16':[[77,2]],'spot':[[78,1],[23,1],[53,1],[67,1]],'reading':[[78,2],[49,1],[55,1],[60,1],[77,1],[75,2],[10,2],[79,2],[27,1]],'compose':[[59,1]],'rdy':[[77,1]],'ddfd':[[77,2]],'rows':[[48,1],[67,3]],'fceux':[[0,2],[61,1],[35,7],[27,16],[15,4],[29,8],[2,3],[24,1],[32,1],[57,5],[38,2],[28,2],[44,2],[12,2],[13,9],[20,1],[36,5],[64,10],[5,3],[37,1],[69,2],[21,2],[22,2],[41,1],[43,1],[33,1],[11,4],[1,12],[19,57],[16,2],[39,1],[59,20],[9,1],[23,4],[49,1],[66,2],[60,2],[4,1],[10,2],[40,3],[18,5],[7,1],[65,2],[30,4],[62,5],[45,1],[42,1],[17,3],[26,1],[25,3],[70,3],[3,10],[58,9]],'gnobgfillcolor':[[27,1],[13,1],[20,1]],'translators':[[48,2]],'bit6':[[70,2]],'looks':[[51,1],[52,1],[40,1],[60,2]],'tasks':[[57,1],[61,1]],'thru':[[78,5],[74,2],[79,1]],'markedframe':[[59,1]],'numpad9':[[59,1]],'multiplied':[[74,1]],'undesired':[[62,2]],'com':[[78,1],[80,2],[44,1],[75,1],[68,1],[79,2]],'stumble':[[55,1]],'5000':[[74,1]],'ffffffff':[[74,2]],'|7f':[[75,1]],'m#l':[[77,1]],'hud':[[4,1],[5,2]],'r0j0':[[77,1]],'fwnes':[[21,1]],'jumps':[[77,4]],'probably':[[64,2],[59,2],[78,3],[62,1],[30,1],[77,4],[48,2],[18,1],[58,4]],'341':[[78,4]],'decode':[[49,1]],'dozens':[[78,1]],'oring':[[10,1]],'emulator':[[50,4],[77,1],[74,1],[35,2],[27,1],[59,17],[54,2],[23,2],[29,2],[66,1],[60,9],[2,3],[4,2],[48,4],[32,2],[57,1],[7,1],[65,4],[12,2],[20,1],[8,2],[5,2],[17,2],[78,1],[22,3],[26,1],[70,6],[72,6],[3,3],[58,3]],'hexforecolorr':[[20,1]],'drawrect':[[59,1]],'hbd7':[[77,2]],'smart':[[55,1]],'session':[[4,2],[55,1],[11,1],[27,1]],'toolset':[[5,1]],'across':[[59,2],[61,1],[77,1]],'component':[[49,1],[75,1]],'received':[[61,1]],'1ffh':[[74,2]],'windowed':[[35,1],[12,1],[29,1]],'warrior':[[28,1]],'memwatch':[[19,1],[7,1],[11,2]],'revert':[[10,1],[40,1],[35,1]],'framecount':[[59,6],[11,1]],'clipboard':[[53,1],[48,1]],'convenient':[[59,1],[50,3]],'bit2':[[70,2]],'yes':[[61,4]],'setrenderplanes':[[59,1]],'gdstr':[[59,3]],'`je':[[77,1]],'device':[[17,1],[78,3],[21,1],[70,3],[30,5],[67,1],[75,2]],'mind':[[59,1],[48,1],[74,1],[3,1],[78,1],[18,1]],'moved':[[4,1],[11,1]],'pass':[[59,1],[54,1],[74,1],[78,2],[60,1]],'running':[[55,1],[53,3],[50,3],[61,2],[77,3],[16,1],[8,1],[35,2],[59,5],[21,1],[29,1],[60,2],[58,2]],'proof':[[77,3],[23,2],[3,1],[65,1]],'nez':[[18,1]],'siren':[[6,1]],'convention':[[59,1],[70,7],[50,1]],'recompilable':[[55,1]],'numpad2':[[59,1]],'nnn':[[74,1]],'decreasing':[[75,2]],'0000000000011111':[[79,1]],'terms':[[59,1],[50,1],[65,1]],'addgamegenie':[[59,2],[7,1]],'broken':[[78,1],[9,1],[12,1],[55,1],[50,1],[67,2]],'corrected':[[7,1]],'bmf_final3':[[25,1]],'miserabley':[[48,1]],'passed':[[59,2],[78,4],[50,2],[60,1]],'unknown':[[78,1],[75,4]],'opacity':[[59,2]],'pulses':[[78,2],[75,1]],'intensify':[[6,1]],'bits':[[59,1],[78,14],[70,3],[71,1],[6,1],[80,2],[77,6],[74,4],[75,32],[79,6]],'self':[[77,1],[60,1]],'main':[[38,2],[30,1],[67,2],[61,3],[12,1],[13,1],[77,2],[64,1],[27,1],[59,3],[51,1],[29,1],[41,1],[78,2],[6,1],[60,3],[72,3],[10,1]],'tim':[[77,1]],'000e':[[74,1]],'sb#0':[[77,1]],'equivalent':[[57,1],[60,3]],'differs':[[70,1]],'modes':[[67,1],[60,1],[77,6],[75,1],[40,1],[35,2]],'transfer':[[77,1],[74,1]],'|50':[[75,1]],'clearinputchanges':[[59,1]],'yyy':[[70,2]],'master':[[33,4],[7,1],[78,1]],'assignable':[[15,1]],'inherited':[[77,2]],'colon':[[40,1],[60,1]],'coded':[[77,1],[11,1]],'accel':[[11,1]],'resizeable':[[13,1]],'warn':[[61,1]],'executes':[[59,2],[54,1]],'captures':[[49,1],[28,1]],'unpredictable':[[77,3],[78,1]],'constants':[[70,1]],'lua5':[[9,1]],'wasn':[[14,1]],'oneshot':[[59,1]],'street':[[11,1]],'text':[[1,1],[50,3],[74,5],[39,2],[59,4],[15,2],[23,1],[54,2],[60,2],[4,2],[48,40],[40,2],[65,1],[53,3],[62,2],[12,1],[13,1],[20,3],[8,1],[5,2],[70,11],[3,1],[11,3],[58,1]],'worry':[[59,1],[48,1],[78,1],[57,1],[60,2]],'ki7rbp':[[77,1]],'callback':[[59,29]],'restore':[[17,3],[55,1],[38,3],[50,2],[13,4],[33,1],[11,1],[37,1]],'customized':[[25,1]],'movie_finished':[[36,1]],'punchoutchallenge':[[62,1]],'|commands|rldutsba|rldutsba|rldutsba|rldutsba|port2|':[[70,1]],'form':[[59,1],[78,3],[23,1],[70,2],[53,1],[50,4],[60,1],[74,1]],'lsb':[[72,1],[75,3],[77,1],[78,2],[71,1]],'nutant':[[59,2]],'affiliated':[[75,1]],'controlling':[[50,2]],'registers':[[53,2],[50,4],[62,1],[67,3],[77,13],[52,2],[74,12],[59,10],[54,2],[78,11],[75,2],[79,1],[7,1]],'restriction':[[78,1]],'narrowed':[[67,1]],'cycles':[[59,1],[51,1],[78,9],[50,2],[77,12],[75,7],[5,2]],'latter':[[77,3]],'unnecessary':[[77,1]],'8500':[[77,1]],'slader':[[48,1]],'adv':[[13,2],[27,1]],'with':[[50,13],[61,5],[77,29],[56,1],[35,2],[27,1],[15,1],[29,1],[24,1],[48,6],[32,1],[57,1],[79,2],[46,2],[38,1],[12,1],[13,1],[36,1],[68,1],[64,5],[5,10],[69,2],[21,4],[11,3],[19,2],[67,7],[74,1],[59,18],[9,2],[23,5],[49,2],[51,1],[54,5],[60,10],[10,4],[40,10],[18,6],[7,7],[65,4],[55,11],[53,2],[30,2],[62,3],[8,7],[17,3],[78,30],[25,2],[70,7],[6,2],[75,17],[3,7],[58,2]],'illustrates':[[77,1]],'glory':[[48,1]],'behaving':[[36,1]],'838977920':[[70,1]],'between':[[55,1],[30,1],[67,1],[61,2],[12,1],[20,1],[74,1],[77,9],[27,1],[59,4],[9,1],[29,1],[49,1],[78,7],[24,1],[80,1],[75,5],[32,1],[79,1],[65,1]],'working':[[59,2],[54,1],[55,2],[24,2],[74,1],[3,1],[10,1],[5,1]],'readdown':[[59,1]],'breakpoint':[[4,1],[59,1],[54,2],[53,1],[50,12],[5,6]],'ane':[[77,5]],'assure':[[77,1]],'perfecting':[[23,1]],'forceful':[[59,1]],'abbreviations':[[77,1]],'dmc':[[72,3],[75,13],[10,1]],'dpcm':[[59,1],[9,1]],'a002':[[74,1]],'rates':[[78,1],[27,1]],'goroh':[[75,2]],'absolute':[[61,1],[77,16],[7,1]],'loss':[[11,1],[60,1]],'saving':[[9,1],[55,1],[43,1],[28,1],[4,3],[77,1],[48,2],[10,1],[57,1],[11,3]],'particular':[[78,3],[23,2],[50,1],[48,1],[32,1],[74,1],[75,1],[5,1]],'got':[[59,1],[75,1]],'maybe':[[61,1],[64,1]],'ubuntu':[[5,1]],'possible':[[55,2],[38,2],[50,2],[67,1],[61,3],[77,4],[56,2],[17,1],[59,1],[78,1],[23,1],[25,1],[72,1],[48,1],[7,1],[65,2]],'insert':[[59,1],[21,5],[70,2],[24,2],[58,1]],'omit':[[59,1]],'naming':[[4,1],[50,1],[36,1],[38,1],[11,1],[5,1]],'|04':[[75,1]],'0x200':[[59,2]],'anc':[[77,2]],'clang':[[5,1]],'like':[[50,4],[61,3],[74,2],[77,15],[27,1],[59,10],[51,2],[66,1],[60,7],[48,3],[40,4],[7,1],[57,2],[55,3],[30,2],[62,2],[52,1],[13,1],[42,1],[78,6],[41,1],[70,1],[75,1],[3,2],[58,1]],'0320':[[67,1]],'nes_basecycles':[[74,2]],'nops':[[77,1]],'transparent':[[59,4],[75,1],[78,6],[8,1]],'range':[[59,8],[78,18],[53,1],[50,3],[6,1],[67,2],[74,5],[75,3],[40,1],[8,1]],'of_':[[77,1]],'inverted':[[75,2]],'folders':[[28,1]],'occurs':[[77,10],[75,2],[78,3]],'screen':[[67,13],[61,1],[77,1],[35,10],[27,3],[59,20],[15,2],[23,1],[29,2],[51,1],[60,2],[4,2],[48,2],[10,1],[7,2],[46,1],[55,1],[30,1],[28,1],[52,1],[36,1],[78,17],[21,3],[25,1],[70,2],[6,1],[11,4]],'file':[[50,14],[61,2],[77,2],[56,1],[27,4],[15,7],[29,2],[48,11],[32,5],[46,1],[38,22],[28,4],[44,1],[12,2],[13,7],[20,5],[36,5],[64,1],[5,4],[69,4],[21,4],[22,11],[43,3],[11,7],[1,1],[19,6],[74,12],[16,3],[39,1],[59,12],[9,3],[23,17],[49,1],[54,3],[60,2],[71,4],[4,2],[10,8],[40,6],[18,7],[7,1],[65,2],[55,8],[53,6],[45,2],[8,3],[17,8],[25,1],[70,5],[6,1],[72,4],[58,4]],'yabause':[[41,1],[42,1]],'0000':[[53,1],[67,7],[6,1],[50,1],[72,2],[74,1],[40,1]],'wrapper':[[13,1]],'wanting':[[67,1]],'homebrew':[[13,1],[14,1]],'rotation':[[78,2]],'smb3':[[62,1]],'movies':[[19,1],[67,1],[28,1],[44,1],[12,1],[13,3],[36,3],[64,2],[39,1],[5,2],[59,4],[9,1],[15,4],[23,3],[70,2],[6,2],[7,7],[65,5]],'3f1f':[[67,1]],'net':[[80,2],[74,1],[66,1],[60,2],[79,2]],'publically':[[75,1]],'port':[[55,1],[30,7],[74,4],[8,2],[78,2],[9,1],[21,1],[70,3],[6,2],[75,1],[3,3],[10,1],[7,1]],'specific':[[50,1],[67,3],[61,2],[35,1],[39,1],[15,1],[49,1],[54,1],[66,1],[60,2],[71,1],[10,1],[40,1],[46,1],[55,1],[30,2],[62,1],[68,1],[69,1],[17,2],[43,1],[72,5],[75,2],[58,1]],'braces':[[60,1]],'099822938442230224609375':[[70,1]],'3d2n@8':[[77,1]],'transfers':[[78,1]],'unused':[[55,6],[67,1],[72,2],[75,6],[77,1],[7,1],[5,1]],'b@`':[[77,1]],'makes':[[17,1],[59,4],[51,1],[78,2],[55,1],[53,1],[50,1],[77,3],[40,1],[7,1]],'included':[[78,1],[21,1],[30,1],[62,2],[61,1],[74,1],[77,1],[7,2],[11,1]],'japan':[[21,1]],'reported':[[10,1],[77,1]],'television':[[21,1],[32,1],[25,1],[30,1]],'basic':[[65,4],[1,1],[55,1],[67,2],[0,1],[61,3],[74,1],[8,1],[17,1],[15,1],[26,1],[47,1],[60,1],[48,1],[75,1],[57,2],[58,2]],'interrupt':[[50,6],[77,39],[75,2],[67,1],[7,1]],'operators':[[50,1],[60,3]],'colorful':[[5,1]],'recommended':[[59,2],[5,1]],'fancy':[[60,1]],'3fff':[[78,1],[67,1]],'2eff':[[67,1]],'namco':[[74,4]],'harmless':[[77,1]],'buzzers':[[30,1]],'protection':[[13,1]],'finishing':[[77,1]],'1200':[[67,1]],'pi#x7':[[77,4]],'compromised':[[78,1]],'skinny':[[79,1]],'g8r':[[77,1]],'2003':[[72,2]],'00a5#mic':[[50,1]],'want':[[46,1],[55,2],[53,1],[50,1],[30,1],[61,3],[77,2],[56,2],[59,8],[54,2],[78,1],[43,1],[60,1],[10,1],[40,3],[58,2]],'jan':[[78,1]],'adequately':[[9,1]],'surrounding':[[78,1]],'movement':[[52,1]],'4011h':[[74,1]],'cause':[[78,1],[53,1],[62,1],[77,4],[13,1],[75,2],[40,1],[27,1]],'allocated':[[67,1]],'common':[[77,3],[74,1],[8,1],[5,1],[17,1],[63,1],[9,1],[29,1],[41,1],[78,1],[6,1],[60,2],[4,1],[10,1],[40,1],[7,1],[65,2]],'tenten':[[48,6]],'different':[[50,1],[67,1],[77,9],[74,1],[35,1],[27,2],[17,1],[59,3],[9,1],[15,2],[23,1],[5,2],[64,1],[71,1],[78,2],[80,1],[48,2],[75,3],[40,1],[7,2]],'voltage':[[78,2],[75,5]],'waves':[[78,2]],'x0p':[[77,1]],'chosenjo':[[30,1]],'fills':[[78,1]],'registerwrite':[[59,1]],'options':[[19,3],[50,1],[16,3],[35,5],[39,1],[59,1],[9,1],[14,1],[15,6],[23,2],[29,2],[51,1],[4,3],[54,2],[48,2],[40,1],[7,2],[38,1],[30,1],[13,2],[20,2],[36,2],[42,3],[8,1],[5,3],[64,1],[26,6],[25,2],[41,3],[43,2],[70,1],[11,3]],'force':[[60,1],[4,1],[75,1],[32,1],[33,1],[35,2],[5,1]],'smoother':[[35,2]],'mess':[[61,1],[78,1]],'commenting':[[60,1]],'furthermore':[[52,1],[55,2],[53,1]],'preserved':[[70,1],[65,2]],'letter':[[56,4]],'extract':[[77,1],[49,1]],'restarting':[[59,1]],'purpose':[[59,1],[75,1],[3,1],[62,3]],'slash':[[59,1],[27,1]],'margin':[[78,1]],'apr':[[79,1],[80,1]],'diagram':[[77,8],[75,1],[67,2]],'reconstruct':[[23,2]],'leaves':[[19,2],[5,1]],'wikipedia':[[67,1],[65,1]],'bilinear':[[64,1]],'inclined':[[66,1]],'miscellaneous':[[70,1]],'interpret':[[63,1]],'zero':[[78,1],[67,5],[24,1],[50,1],[72,2],[52,1],[75,4],[77,29],[40,1]],'manner':[[48,1],[60,1]],'wants':[[75,1]],'slave':[[78,1]],'9001':[[74,1]],'push':[[61,1],[77,7],[65,1]],'extended':[[3,2]],'shy':[[77,4]],'color':[[55,1],[30,1],[13,2],[20,6],[35,3],[5,1],[27,2],[59,23],[51,1],[64,2],[78,15],[60,4],[32,6],[10,1],[7,4]],'boulderdash_amoebaai':[[5,1]],'translated':[[48,1],[75,1]],'bank':[[59,2],[55,1],[50,12],[67,2],[74,10],[56,1],[40,1],[7,1]],'perfection':[[65,1]],'drop':[[30,2],[43,1],[10,1],[40,1],[7,1],[11,2]],'%1d':[[70,2]],'complain':[[61,1]],'port2':[[70,3]],'guide':[[63,2],[39,5],[70,1],[67,2],[16,5],[40,1],[65,1]],'notebook':[[48,1]],'8123':[[50,1]],'accessed':[[78,5],[54,2],[55,5],[53,1],[67,1],[72,1]],'createfromgdstr':[[59,1],[60,1]],'arr':[[77,6]],'fillcolor':[[59,4]],'preparations':[[77,3]],'gets':[[59,7],[77,1],[78,1],[7,2],[5,1]],'mid':[[8,1],[51,1]],'deemed':[[61,4]],'60hz':[[74,1]],'noicon':[[19,3]],'beta':[[3,1]],'planning':[[78,1]],'wins':[[78,1]],'samples':[[74,1]],'guard':[[59,1]],'comprised':[[48,1]],'120':[[75,2]],'rp2a03e':[[75,1]],'gtk2':[[3,1],[6,1]],'giorgio':[[3,1]],'installed':[[11,1]],'signed':[[59,3],[41,1],[60,1],[72,3],[42,1],[74,2],[77,2]],'matches':[[56,1]],'activity':[[77,1]],'break':[[67,1],[50,15],[61,1],[52,1],[77,2],[7,1]],'generator':[[78,1],[67,2],[75,16]],'placement':[[78,1]],'card':[[5,1]],'remain':[[77,1],[43,1],[78,1]],'previously':[[59,3]],'will':[[50,30],[61,13],[77,45],[56,9],[35,8],[27,22],[15,4],[29,6],[80,1],[24,2],[48,17],[32,4],[57,1],[79,1],[46,3],[38,2],[28,15],[12,1],[13,5],[36,11],[64,2],[37,1],[21,9],[22,1],[43,8],[33,4],[11,1],[19,7],[67,13],[74,9],[39,1],[59,42],[9,1],[23,23],[51,3],[54,4],[60,16],[71,1],[4,1],[40,21],[7,1],[18,4],[65,2],[55,3],[53,5],[30,8],[31,1],[45,2],[62,2],[52,5],[8,1],[17,3],[78,22],[70,3],[34,1],[72,1],[75,68],[58,10]],'consistently':[[8,1]],'sbx':[[77,14]],'accessible':[[60,1],[38,2],[11,1],[50,2]],'else':[[65,1],[59,3],[61,3],[40,1],[60,3],[62,1]],'`#j1@lj3b@29':[[77,1]],'cross':[[77,1],[2,1]],'state':[[19,1],[50,4],[77,4],[74,3],[27,1],[59,21],[54,2],[23,6],[71,2],[60,2],[4,1],[7,2],[55,1],[38,1],[53,1],[62,1],[12,2],[13,1],[36,2],[52,2],[5,1],[17,8],[78,1],[70,3],[72,5],[75,5]],'populated':[[7,1]],'framedisplay':[[19,3]],'troubleshooting':[[63,1],[64,2]],'0005':[[50,2],[74,1]],'lua':[[58,18],[65,1],[1,1],[19,5],[38,10],[28,3],[50,2],[61,15],[12,2],[13,5],[62,29],[8,8],[5,18],[59,30],[9,6],[14,2],[15,4],[6,4],[60,29],[4,2],[10,2],[57,12],[11,4],[7,6]],'checked':[[50,1],[28,1],[12,1],[36,6],[35,8],[59,3],[15,2],[22,1],[34,1],[48,1],[75,1],[10,1],[40,2],[33,2]],'thing':[[78,2],[48,5],[75,1],[40,2],[64,1],[65,1]],'yesno':[[59,3]],'slowdown':[[23,1],[5,1]],'highlighted':[[10,1]],'defeated':[[62,1]],'diagrams':[[78,1]],'00h':[[74,7]],'#256':[[78,1]],'circuit':[[78,1]],'huge':[[78,1]],'not':[[19,5],[50,6],[67,6],[61,7],[74,14],[77,55],[56,1],[35,1],[27,8],[59,32],[15,3],[23,5],[29,2],[51,1],[54,1],[60,14],[4,2],[48,16],[40,10],[18,1],[57,1],[65,4],[46,2],[55,4],[38,1],[53,1],[28,1],[62,3],[12,1],[13,4],[36,3],[52,2],[64,3],[5,4],[78,13],[21,1],[22,1],[70,6],[6,1],[43,1],[34,1],[72,2],[75,13],[11,5],[58,1]],'4040':[[74,1]],'anymore':[[5,2]],'0300':[[67,4]],'hertz':[[59,5],[74,1]],'log':[[54,10],[55,6],[70,12],[4,1],[77,2],[11,2],[5,9]],'|10':[[75,1]],'mirrored':[[78,1]],'frontend':[[3,1],[61,1],[58,1]],'maximum':[[59,1],[71,1],[60,1],[61,1],[74,1],[32,1],[75,2],[77,1]],'shrink':[[36,1]],'saved':[[38,3],[50,1],[28,5],[61,3],[13,1],[36,1],[27,1],[17,1],[59,2],[72,1],[48,5],[10,1],[40,1]],'taller':[[35,1]],'refer':[[59,2],[56,1],[60,1],[67,4]],'conversion':[[4,1],[59,1],[12,1],[75,2],[64,1]],'ever':[[78,3],[75,1]],'faintly':[[78,1]],'safely':[[59,1]],'nop':[[77,35]],'additions':[[77,2]],'polled':[[46,1],[27,1]],'moviefilenames':[[13,1]],'design':[[44,1],[75,1],[5,1]],'messagebox':[[60,1]],'unhide':[[29,1],[38,1],[27,1]],'relating':[[28,1],[1,1]],'becomes':[[48,1],[75,1],[55,2],[50,1],[5,1]],'raw':[[59,11],[49,1],[22,1],[18,1]],'integral':[[4,1],[35,1]],'refused':[[77,1]],'1400h':[[74,1]],'excess':[[48,1]],'met':[[50,1],[75,1]],'disrupt':[[74,1]],'registersave':[[59,1],[9,2]],'smb2':[[19,2]],'anded':[[77,1]],'pin':[[78,5],[75,4]],'basics':[[78,1],[57,1],[60,2],[58,1]],'explain':[[26,1],[48,1],[53,1],[62,1]],'notice':[[77,1]],'retrieves':[[78,2]],'beyond':[[53,1],[22,1]],'4020':[[67,1]],'relocated':[[74,2]],'determining':[[77,1],[78,1]],'existing':[[17,1],[40,2],[49,1]],'page':[[59,3],[25,1],[38,1],[50,1],[60,1],[67,7],[72,1],[77,40],[3,3],[40,1]],'w_pm`':[[77,1]],'debugging':[[9,1],[49,1],[66,2],[6,1],[50,9],[60,1],[12,1],[13,1],[3,3],[7,1],[5,2]],'nothrottle':[[19,2],[59,1],[60,1]],'aid':[[78,1],[48,1],[66,1],[62,1]],'rather':[[59,4],[15,2],[46,1],[78,2],[19,1],[43,1],[50,1],[60,1],[61,1],[11,1],[27,1]],'reliably':[[77,1]],'deleting':[[55,1],[57,1],[5,1]],'inital':[[74,2]],'scrolllock':[[59,1]],'mapinittab':[[8,1]],'behaves':[[77,1]],'joe':[[48,1]],'precise':[[77,1],[60,1],[78,1]],'onto':[[78,2],[67,5]],'line':[[19,4],[50,25],[53,1],[67,1],[77,4],[12,1],[16,2],[52,1],[35,4],[5,1],[8,1],[59,4],[15,1],[23,1],[54,1],[70,4],[60,4],[78,10],[75,1],[3,1],[40,2],[11,3],[79,1]],'west':[[77,1]],'sav':[[21,1],[55,1],[11,1],[28,1]],'kage':[[5,1]],'blob':[[70,1]],'around':[[59,2],[49,1],[74,2],[75,2],[77,1],[67,1]],'zapper':[[8,1],[59,8],[70,5],[30,8],[4,1],[11,3],[7,2]],'goes':[[59,1],[78,1],[67,1],[61,1],[13,1],[74,2],[75,2],[77,2]],'tearing':[[35,2],[5,1]],'capslock':[[59,1]],'send':[[40,1],[77,1]],'shouldn':[[40,1],[62,1]],'ejecting':[[21,1]],'c000':[[74,2],[55,1],[50,3],[67,1]],'0000|':[[67,1]],'plp':[[77,4]],'destination':[[55,2],[77,1],[22,1]],'|0e':[[75,1]],'065':[[75,1]],'0x10':[[50,1]],'draw':[[59,8],[13,1],[79,1],[60,1]],'statement':[[77,1],[50,2]],'rules':[[58,1]],'__________________________________________':[[67,1]],'popped':[[78,1]],'blur':[[35,1]],'extracts':[[77,1]],'shorthand':[[79,1]],'wrap':[[75,1]],'held':[[59,11],[75,1],[23,1],[30,3],[7,1]],'automate':[[57,1]],'called':[[58,1],[38,4],[50,1],[61,14],[77,4],[17,1],[59,10],[78,2],[60,3],[3,1],[11,1],[65,1]],'t2p9d`pyd`':[[77,1]],'automated':[[59,1],[65,1]],'setpixel':[[59,1]],'newly':[[54,2]],'pix':[[67,2]],'interrupting':[[59,1]],'incomplete':[[72,2]],'port0':[[70,7]],'arithmetic':[[77,8]],'garbage':[[78,3]],'lehti':[[77,2]],'testing':[[77,1]],'post':[[78,1],[9,1],[5,1]],'deck':[[21,1]],'flakes':[[5,1]],'004':[[75,1]],'software':[[3,1],[77,1]],'f14':[[59,1]],'downs':[[65,1]],'hide':[[18,1],[27,1],[78,1],[29,1],[38,1],[35,3],[5,1]],'themes':[[7,1],[29,1]],'driven':[[78,1]],'instructions':[[5,3],[59,1],[49,2],[54,4],[50,5],[77,45],[40,1],[58,2]],'similar':[[64,1],[59,2],[78,1],[67,2],[4,1],[77,2],[74,2],[36,1],[40,1],[7,2],[57,1]],'finally':[[77,3],[53,1],[50,1]],'06xx':[[67,1]],'subpixel':[[67,3]],'proves':[[77,6]],'a000':[[55,1],[74,1]],'internally':[[59,1],[78,2],[60,1]],'suspending':[[4,1]],'turns':[[38,2],[77,2],[19,6],[6,1],[11,1]],'serialize':[[78,1]],'parasyte':[[3,1]],'etc':[[55,1],[50,1],[28,1],[67,3],[61,1],[74,4],[16,1],[8,1],[35,1],[5,1],[59,1],[78,1],[75,2],[10,1],[7,1],[11,1]],'blargg':[[10,3]],'mulitple':[[67,1]],'ml`':[[77,1]],'distorted':[[78,1]],'metroid':[[74,2],[5,1]],'screens':[[78,1],[67,2]],'xxx1':[[74,1]],'peek':[[5,1]],'deleted':[[59,5]],'friends':[[59,1]],'standard':[[59,3],[21,1],[70,1],[38,1],[43,1],[60,1],[48,2],[74,2],[75,1]],'digit':[[77,1],[67,1]],'dd0e':[[77,8]],'240hz':[[75,3]],'programmable':[[75,11]],'bullet':[[3,1],[65,1],[23,2]],'win32':[[5,1],[11,1],[9,1],[6,1],[4,1],[12,12],[13,2],[10,1],[7,3],[8,2]],'decay':[[75,29]],'weekend':[[78,1]],'hash':[[70,1],[48,1]],'0x00fa':[[60,1]],'recovering':[[12,1]],'write':[[79,5],[55,1],[19,2],[38,3],[50,2],[53,3],[61,2],[67,1],[74,7],[36,1],[77,39],[59,13],[23,2],[60,4],[75,13],[10,2],[40,1],[7,1],[11,1]],'blank':[[48,1]],'magenta':[[59,1]],'intensive':[[60,1]],'hexeditor':[[60,1]],'means':[[46,1],[38,6],[50,1],[74,3],[56,1],[35,4],[59,9],[15,1],[78,5],[70,1],[48,1],[75,3],[57,1]],'2001':[[72,1]],'equal':[[61,1],[75,2],[77,1],[40,8],[50,2],[60,3]],'tiles':[[78,4],[48,5],[67,1]],'representations':[[59,1]],'sssff':[[74,1]],'|14':[[75,1]],'convertfcmtofm2':[[64,1]],'peripheral':[[21,1]],'persistent':[[59,6]],'scales':[[59,2]],'rp2a03':[[59,1]],'explaination':[[74,1]],'routine':[[77,11],[74,5],[49,2],[75,1],[67,3]],'hop':[[75,1]],'numpad8':[[59,1]],'action':[[9,1],[75,6],[40,2]],'games':[[67,7],[61,2],[74,2],[16,2],[35,2],[27,1],[59,2],[51,1],[14,1],[54,1],[66,3],[60,2],[48,4],[32,1],[40,4],[18,1],[65,1],[79,1],[46,2],[55,1],[53,1],[30,4],[28,2],[62,1],[13,1],[52,1],[8,2],[5,3],[17,2],[64,1],[21,5],[78,4],[72,2],[75,4],[11,2]],'drawn':[[78,3],[48,1],[52,1],[10,1],[55,1],[79,1]],'your':[[53,2],[50,3],[30,2],[62,1],[61,4],[67,4],[74,1],[77,9],[56,1],[64,2],[59,17],[78,4],[23,1],[43,1],[60,4],[48,19],[58,2]],'dadc':[[77,1]],'battletoads':[[67,1]],'``a':[[77,2]],'gracefully':[[7,1],[12,1]],'scans':[[55,1]],'calling':[[59,4]],'checkboxes':[[5,1]],'simultaneously':[[77,3],[46,1],[27,1]],'buffering':[[33,3]],'r6502':[[77,1]],'deviation':[[67,1]],'400c':[[75,4]],'processor':[[72,1],[75,1],[77,27],[3,1]],'unzipping':[[13,1]],'hashes':[[48,4]],'branching':[[77,1],[60,1]],'lastkeys':[[61,1]],'init':[[50,2],[74,12]],'examined':[[75,1]],'pause':[[19,2],[50,4],[36,2],[8,1],[27,2],[17,1],[59,3],[22,6],[23,4],[54,2],[60,3],[48,2],[10,1],[40,1],[11,2],[7,1]],'latest':[[13,1],[15,2],[11,1],[5,1]],'shift':[[17,1],[59,1],[78,13],[4,1],[45,1],[13,1],[75,11],[77,1],[11,1],[35,1]],'headerless':[[21,1]],'private':[[55,1]],'fall':[[61,1],[78,1]],'treated':[[77,1]],'512':[[78,1]],'f24':[[59,1]],'l&xj8':[[77,1]],'within':[[59,1],[78,1],[55,1],[50,1],[4,1],[72,1],[52,1],[35,2]],'square1':[[59,1]],'04fx':[[67,1]],'regards':[[78,1],[75,2]],'counterbreak':[[59,2]],'nicely':[[46,1]],'blip':[[3,1]],'128d':[[77,1]],'separate':[[59,3],[23,1],[55,1],[2,1],[50,1],[77,1],[48,1]],'begins':[[10,1],[71,1],[48,2]],'helpful':[[55,1],[48,1]],'reserved':[[77,1],[67,2]],'redo':[[17,2],[38,4],[11,2],[27,1]],'llvm':[[5,1]],'difference':[[77,1],[48,1],[75,1],[78,2]],'besides':[[60,1],[62,1]],'increases':[[75,2],[9,1],[8,1]],'vd`d2n0q':[[77,1]],'nothing':[[78,2],[55,1],[60,1],[67,1],[61,7],[48,1]],'gamepad0':[[8,1]],'window':[[50,21],[56,2],[35,9],[27,2],[59,1],[9,1],[15,2],[29,3],[49,1],[54,7],[60,3],[4,5],[48,14],[10,2],[40,11],[7,3],[53,1],[30,2],[28,1],[12,4],[13,2],[8,1],[5,4],[26,1],[41,1],[6,2],[11,7]],'supply':[[60,1]],'0afffh':[[74,1]],'affected':[[77,6],[46,1],[56,1]],'msmakela@kruuna':[[77,1]],'bit1':[[70,2],[77,1]],'hacked':[[18,1]],'patched':[[18,1]],'#100':[[50,1]],'stopping':[[59,2]],'word':[[48,8],[74,8],[70,2]],'initialrawdalatch':[[59,1]],'system':[[38,1],[28,1],[77,1],[16,2],[36,1],[17,2],[59,1],[15,1],[21,5],[70,1],[78,1],[24,2],[75,4],[3,2],[65,1]],'belongs':[[70,2]],'activates':[[7,1]],'player2':[[70,1],[14,2]],'weed':[[40,1]],'ikari':[[67,1]],'occurred':[[71,1],[77,1]],'grows':[[74,1]],'battle':[[48,2]],'252':[[5,1]],'development':[[3,1],[77,1],[65,1]],'imply':[[78,1]],'detecting':[[59,1]],'|0c':[[75,2]],'|28':[[75,1]],'fm2':[[19,12],[38,2],[28,1],[45,4],[62,1],[12,2],[13,3],[16,1],[36,3],[8,2],[39,1],[64,3],[69,1],[15,5],[22,2],[23,9],[70,3],[10,3],[11,4],[7,1]],'|frames':[[75,2]],'recorded':[[65,2],[59,1],[9,1],[23,1],[15,1],[70,3],[30,1],[61,1],[36,1],[27,2]],'machines':[[17,1],[74,1],[10,1],[33,1]],'arrives':[[78,1],[75,1]],'protections':[[77,1]],'fastest':[[61,1],[24,1],[77,1]],'obtained':[[75,1]],'conflicts':[[5,2]],'004e':[[74,1]],'capable':[[61,1],[21,1],[48,1],[78,1]],'strategies':[[23,1]],'2406':[[78,1]],'needing':[[48,1]],'addressing':[[77,26],[78,1],[40,1],[67,1]],'164':[[5,1]],'drastic':[[59,1]],'showing':[[36,1],[59,1]],'traditional':[[30,1]],'rockwell':[[77,1]],'170':[[78,3]],'ultra':[[1,1],[53,1],[0,1],[45,1],[15,1],[23,1],[70,1],[71,1],[2,3],[72,3],[3,18],[40,3]],'autohold':[[7,4]],'totally':[[77,1]],'implementation':[[57,1],[7,2],[78,1]],'bit4':[[70,2],[77,1]],'2048':[[77,1],[75,2],[40,1],[67,5]],'instant':[[78,1],[48,1]],'|02':[[75,1]],'however':[[31,1],[77,8],[74,1],[42,1],[35,1],[27,1],[59,5],[78,3],[23,1],[41,1],[48,1],[75,1],[3,1],[40,1],[79,1],[65,2]],'stop':[[38,6],[19,2],[50,1],[61,4],[77,3],[59,6],[22,3],[78,1],[48,1],[75,1],[3,1],[10,2],[7,1],[58,2]],'sends':[[15,2],[23,1]],'asm':[[56,1]],'creative':[[66,1]],'2b8':[[77,1]],'half':[[77,2],[75,2],[78,4],[60,1],[67,1]],'influence':[[77,1]],'quirk|':[[78,1]],'earlier':[[65,1],[59,1],[25,1],[6,1],[7,1]],'indicates':[[59,1],[75,1],[78,1],[70,4],[50,1]],'front':[[61,1],[60,2],[75,1]],'errors':[[59,1],[49,1],[60,2],[4,1],[61,1],[12,1],[7,1]],'ask':[[21,1],[29,3],[10,1]],'capturing':[[22,6],[16,2],[11,1]],'inserted':[[15,1],[21,1]],'warning':[[59,3],[48,1],[19,1]],'0080':[[74,2]],'discussed':[[78,1]],'flaws':[[25,1]],'determines':[[59,2],[75,1],[20,1],[78,2]],'slower':[[64,2],[34,1],[48,1],[35,1],[27,1]],'doing':[[59,4],[78,1],[53,2],[61,2],[12,1],[74,1],[77,1],[11,1]],'scanned':[[18,1]],'ret':[[53,1]],'strange':[[77,1]],'less':[[50,1],[77,3],[13,1],[74,1],[8,1],[59,2],[78,2],[72,1],[75,4],[48,2],[40,3],[7,1]],'040e':[[40,1]],'single':[[50,2],[77,1],[74,2],[5,1],[78,4],[49,1],[23,2],[29,1],[2,1],[75,1],[10,1],[7,1],[65,1]],'vsprintf':[[13,1]],'another':[[17,1],[59,1],[78,3],[55,2],[30,1],[60,1],[62,1],[67,3],[48,1],[77,1],[79,1],[11,1]],'throughout':[[48,1]],'inverting':[[75,1]],'comecon':[[77,1]],'operand':[[77,6]],'disk':[[17,1],[59,2],[9,1],[21,32],[70,5],[24,6],[28,1],[30,1],[72,1],[16,2],[18,1]],'30fps':[[46,1],[27,2]],'horrible':[[78,1]],'slot':[[17,4],[59,5],[10,2],[60,1],[67,5]],'triply':[[59,1]],'defaulting':[[9,1]],'homepage':[[3,3],[58,1]],'checkbox':[[30,1],[50,3],[48,3],[36,2],[40,1],[33,2],[8,1]],'pipelining':[[77,2]],'caused':[[11,7],[77,1],[9,1],[13,1],[7,1],[5,1]],'swap1p2p':[[5,1]],'follows':[[78,2],[70,1],[48,1],[74,1],[75,5],[40,1],[58,1]],'p17':[[72,1]],'colorburst':[[78,6]],'mutually':[[78,1],[75,1]],'emuversion':[[70,1]],'directions':[[67,1]],'terminate':[[77,1]],'pre':[[3,1],[64,1]],'m159':[[5,1]],'9003':[[74,1]],'tracknoise':[[5,1]],'rect':[[59,1]],'doings':[[78,1]],'infamous':[[78,1]],'01h':[[74,1]],'useless':[[54,1]],'10ff':[[67,1]],'suppose':[[59,1],[48,3]],'d011':[[77,2]],'above':[[7,1],[78,2],[80,1],[50,4],[30,2],[60,1],[77,3],[48,2],[74,4],[56,1],[35,1],[5,1]],'joystick':[[72,2],[71,3],[30,1]],'shifts':[[77,2]],'fix':[[77,13],[12,6],[13,3],[74,1],[35,3],[8,4],[5,1],[78,1],[9,1],[14,2],[25,1],[49,1],[6,2],[10,1],[7,6],[11,3]],'exists':[[59,1],[15,1],[78,1],[10,1]],'startup':[[15,1],[55,1],[19,1],[61,1],[12,1],[11,1],[27,1]],'genie':[[19,2],[50,2],[56,15],[64,5],[27,9],[59,2],[49,3],[78,1],[66,2],[6,1],[4,2],[3,1],[40,2]],'selects':[[78,3],[79,1]],'figure':[[78,1],[48,4]],'_____':[[67,2]],'associative':[[60,3]],'assigned':[[23,1],[41,1],[30,3],[11,1]],'presskeystart4':[[61,1]],'platform':[[3,1],[2,1],[60,1]],'aimlessly':[[15,1]],'nmi1':[[50,1]],'rerecording':[[65,1],[9,1],[15,2],[23,2],[25,2],[2,1],[41,1],[53,1],[42,1],[3,5],[8,1],[7,1]],'200000':[[65,1]],'extent':[[59,1]],'jeopardy':[[67,1]],'contained':[[72,1],[75,1]],'tie':[[61,5]],'1f0h':[[74,1]],'small':[[78,2],[67,1],[50,2],[61,1],[48,1],[74,2],[64,1],[65,3]],'period':[[59,1],[78,3],[23,1],[75,1],[40,1],[27,1]],'prepends':[[74,1]],'0xf':[[77,1]],'disassembler':[[55,5]],'simultaneous':[[77,1],[5,1]],'#8123':[[50,1]],'16777216':[[77,2]],'romname':[[19,3]],'fetched':[[77,9],[78,12]],'0&&4ka':[[77,1]],'dreams':[[78,1]],'|24':[[75,1]],'choose':[[5,1],[21,3],[54,1],[60,1],[32,1],[56,1],[58,2]],'controller':[[59,2],[51,1],[30,9],[67,1],[57,1],[7,2],[27,1]],'laws':[[7,1]],'anyways':[[61,1]],'exact':[[78,2]],'field':[[50,6],[12,1],[13,1],[74,2],[56,2],[5,2],[59,1],[15,1],[23,1],[70,6],[43,1],[4,1],[72,2],[48,1],[40,1],[65,1]],'resume':[[4,3],[23,1],[50,1],[27,1]],'says':[[59,1],[61,1]],'steps':[[78,2],[75,2]],'09000h':[[74,2]],'input':[[19,6],[67,3],[61,4],[16,1],[27,11],[39,2],[59,23],[9,2],[15,2],[23,3],[47,4],[60,7],[71,1],[4,2],[10,1],[7,8],[65,1],[46,1],[30,11],[28,4],[44,1],[62,2],[12,1],[13,3],[5,4],[17,1],[26,1],[70,17],[6,1],[75,3],[33,1],[11,1]],'6502_cpu':[[77,2]],'registermanual':[[59,1]],'handling':[[15,2],[55,1],[6,1],[5,1]],'european':[[77,1]],'wiki':[[65,1]],'getdown':[[59,1],[8,1]],'drag':[[8,1],[48,2],[10,1],[40,1],[11,2],[7,1]],'statically':[[3,1]],'backslash':[[59,1]],'deeper':[[60,1]],'panels':[[51,1]],'gates':[[78,1],[75,4]],'copying':[[77,1],[48,1]],'seems':[[77,4],[75,1],[78,3],[10,1]],'emblem':[[8,2]],'latched':[[78,1]],'forcefully':[[59,1]],'actual':[[59,3],[78,1],[55,1],[50,1],[72,1],[48,2],[32,3],[75,2],[65,1]],'#ce_2gpl':[[77,1]],'megaman':[[78,4]],'conditioned':[[78,1]],'srt':[[10,1],[38,1]],'playern':[[60,2]],'scripting':[[65,1],[15,2],[60,1],[28,1],[62,1],[61,4],[57,4],[58,1]],'verbose':[[4,1]],'improvements':[[3,1],[6,1]],'keyword':[[60,1]],'ctlr':[[72,2]],'4017':[[72,1],[75,16]],'recording':[[38,3],[28,1],[44,1],[12,2],[13,1],[16,2],[36,1],[64,1],[5,1],[27,3],[59,3],[9,2],[15,3],[22,1],[23,14],[6,1],[26,1],[4,1],[43,1],[70,1],[3,2],[7,2],[65,16]],'100':[[59,2],[61,1],[75,1],[77,7],[78,1]],'check':[[30,1],[50,1],[61,1],[77,1],[36,1],[64,2],[35,1],[59,2],[49,1],[4,1],[32,1],[11,1],[7,1]],'names':[[9,1],[50,3],[28,1],[4,1],[48,2],[5,2]],'videolog':[[12,1]],'asq_realitya':[[25,1]],'fcm':[[45,6],[12,1],[13,4],[64,2],[39,2],[69,2],[15,2],[23,2],[70,1],[71,6],[10,1],[7,2],[11,1]],'bunch':[[78,1],[48,1]],'events':[[61,2],[78,1]],'aforementioned':[[78,1],[75,1]],'mmmm':[[50,2]],'nybble':[[77,34]],'configuration':[[35,1],[26,2],[46,1],[33,2],[30,5],[5,2]],'cheating':[[40,2]],'bytes':[[55,4],[53,2],[50,4],[67,13],[77,4],[74,6],[64,1],[59,8],[54,1],[78,2],[70,5],[71,2],[72,10]],'subtract':[[77,2]],'reworked':[[78,1]],'4006':[[75,3]],'phases':[[78,4]],'invisible':[[78,1]],'font':[[48,4],[5,1]],'optimize':[[65,1]],'77h':[[74,1]],'judged':[[61,1]],'tests':[[4,1],[77,7],[75,1],[79,1]],'icons':[[27,1]],'mappers':[[5,2],[53,2],[4,2],[13,1],[3,5],[11,1],[8,3]],'8192':[[64,1],[67,1]],'sunsoft':[[74,4]],'kentaro':[[75,1]],'eight':[[70,1],[61,1]],'#l&':[[77,1]],'dmcaddress':[[59,1]],'0x863c':[[59,1]],'subsection':[[72,6]],'smooth':[[78,1]],'bandai':[[5,1]],'tabbing':[[54,1],[5,1]],'04x0':[[67,1]],'restoration':[[6,1]],'coordinate':[[59,4],[78,6],[60,2]],'eeprom':[[5,1]],'izumi':[[75,1]],'glitch':[[55,1],[53,1],[62,1]],'exclamationmark':[[60,1]],'dsbc':[[77,2]],'auxillary':[[59,1]],'ties':[[75,1]],'edu':[[77,1]],'johnson':[[78,2]],'emulating':[[59,1],[8,1]],'linear':[[59,1],[74,1],[75,24],[78,1]],'going':[[59,1],[48,4],[78,2]],'tax':[[77,2]],'requires':[[64,2],[78,1],[13,1],[29,1],[31,1],[35,1]],'hands':[[60,1]],'inputdisplay_for_selection':[[5,1]],'transparency':[[59,8],[78,2]],'upgrades':[[15,1]],'flag':[[8,1],[59,2],[9,1],[78,7],[19,16],[43,1],[50,3],[77,104],[74,2],[7,2],[27,1]],'wider':[[35,1]],'gzip':[[18,1]],'0011111100000000':[[79,1]],'rendering':[[59,1],[13,1],[78,16],[50,1],[5,1]],'recognize':[[11,1]],'algorithm':[[77,1],[18,2]],'japanophile':[[48,1]],'fba':[[41,1],[42,1]],'aborts':[[77,1]],'&z0':[[77,1]],'bypassed':[[33,1]],'processed':[[77,1],[60,1]],'profiling':[[50,1]],'snapped':[[56,1]],'tttttttt':[[74,1]],'169':[[78,1]],'2007':[[72,1],[78,3],[55,1],[79,1],[67,2]],'includes':[[73,1],[59,2],[51,1],[76,1],[38,1],[12,1],[13,1],[10,1],[11,3],[5,1]],'plugging':[[21,1]],'earth':[[77,1]],'competing':[[65,1]],'removes':[[40,1],[59,1]],'drastically':[[11,1]],'intuitive':[[53,1],[7,1]],'provided':[[59,3],[75,2],[3,1]],'punkrockguy318':[[3,1]],'grammar':[[50,1]],'specially':[[58,1]],'coder':[[78,1]],'multiply':[[74,1]],'during':[[5,1],[78,18],[21,2],[23,3],[55,1],[77,5],[13,2],[48,1],[75,3],[35,1],[7,2]],'altogether':[[62,1]],'player4':[[70,1]],'deactivating':[[77,1]],'accumulate':[[78,1]],'commontricks':[[65,1]],'aspects':[[68,1]],'simply':[[53,1],[50,2],[28,1],[45,1],[61,3],[67,1],[74,4],[17,1],[78,3],[15,1],[23,3],[70,1],[43,1],[65,1]],'04ff':[[67,1]],'yesnocancel':[[59,1]],'000a':[[74,1]],'kiji':[[8,1]],'collector':[[77,1]],'sta':[[77,42]],'undefined':[[77,3]],'6400%':[[24,2]],'tune':[[74,22],[55,1],[24,2]],'08ff':[[67,1]],'palflag':[[70,1],[13,1]],'calls':[[59,4],[54,1],[55,1],[38,1]],'repeat':[[40,1],[56,1]],'aborted':[[12,1]],'trying':[[5,1],[59,1],[55,1],[67,1],[4,1],[61,1],[13,1],[75,1],[77,2],[35,2],[7,1]],'filter':[[67,2],[42,2],[64,1],[37,1],[39,2],[9,1],[15,1],[41,2],[54,3],[43,1],[66,1],[32,1],[3,1],[65,1]],'rightbracket':[[59,1]],'m#nd':[[77,2]],'incrementing':[[74,1]],'unl':[[11,1],[5,1]],'evaluation':[[61,2],[78,5],[57,1]],'sdl':[[5,4],[11,13],[6,1],[4,1],[12,18],[13,22],[3,1],[10,2],[7,1],[8,3]],'compile':[[57,1],[61,1]],'anything':[[5,1],[59,4],[60,3],[77,2],[74,3],[7,1],[65,1]],'related':[[1,1],[38,1],[67,1],[77,1],[36,1],[15,1],[14,1],[25,1],[26,4],[6,2],[29,1],[49,1],[34,1],[32,1],[10,1],[79,1],[11,2]],'lags':[[43,2]],'product':[[50,3]],'taylor':[[78,1],[75,1]],'767':[[75,2]],'recieving':[[75,1]],'limitation':[[35,1]],'stack':[[7,1],[54,3],[50,5],[67,4],[72,1],[74,1],[77,27],[8,1],[5,2]],'ef43':[[70,1]],'neg':[[75,1]],'taught':[[61,1]],'picture':[[64,1],[35,1],[51,1]],'rip':[[55,1],[74,1]],'anonymous':[[59,3],[60,2]],'2012':[[50,1],[0,1],[61,1],[77,1],[56,1],[35,1],[27,1],[15,1],[29,1],[47,1],[80,1],[2,1],[24,1],[48,1],[32,1],[57,1],[79,1],[46,1],[38,1],[28,1],[44,1],[12,1],[13,1],[20,1],[36,1],[64,1],[5,2],[37,1],[63,1],[21,1],[22,1],[41,1],[68,1],[43,1],[69,1],[33,1],[11,1],[73,1],[1,1],[19,1],[67,1],[74,1],[16,1],[39,1],[59,1],[9,1],[14,1],[23,1],[49,1],[51,1],[54,1],[4,1],[60,1],[66,1],[71,1],[10,1],[40,1],[18,1],[7,1],[65,1],[55,1],[53,1],[30,1],[31,1],[45,1],[62,1],[42,1],[52,1],[8,1],[17,1],[78,1],[26,1],[25,1],[70,1],[6,1],[76,1],[34,1],[72,1],[75,1],[3,1],[58,1]],'encounters':[[60,1]],'parodius':[[66,1],[68,1]],'dragon':[[27,2],[78,1],[9,1],[46,1],[28,2],[74,1],[5,1]],'0x800':[[72,3]],'stopseeking':[[59,1]],'constitute':[[70,1]],'introduces':[[5,1]],'causing':[[7,2],[50,1],[62,1],[77,2],[35,1],[5,1]],'features':[[65,5],[1,1],[0,1],[77,2],[12,1],[13,2],[42,1],[5,1],[78,1],[9,1],[15,3],[23,1],[41,1],[66,2],[4,1],[48,5],[75,2],[3,5],[10,1],[11,4],[7,2]],'compiling':[[11,1]],'variant':[[59,1]],'play':[[55,5],[19,1],[31,3],[38,8],[50,2],[61,3],[74,6],[36,1],[27,3],[17,2],[5,1],[9,1],[21,1],[23,4],[26,1],[54,1],[59,2],[4,4],[66,1],[48,2],[78,1],[10,1],[11,1],[65,1]],'5ff6':[[74,1]],'frequencies':[[75,3]],'experimental':[[10,2],[44,1]],'incremented':[[77,4],[78,1],[80,1]],'bookmarks':[[4,1],[50,8],[40,1],[6,1],[5,1]],'error':[[61,2],[12,1],[13,2],[77,1],[8,1],[5,1],[59,13],[15,2],[6,1],[48,1],[10,1],[11,2],[7,2]],'vezj':[[77,1]],'demos':[[77,1],[49,1]],'rollback':[[61,3]],'fetches':[[77,7],[78,10]],'microprocessor':[[77,1]],'assumes':[[78,1]],'useable':[[57,1],[11,1],[31,1]],'pkzip':[[18,1]],'projects':[[5,1]],'configfile':[[13,2]],'translations':[[48,1]],'0111000000000000':[[79,1]],'periodic':[[40,1],[74,1],[27,1]],'shs':[[77,3]],'vbjin':[[41,1]],'management':[[57,1],[15,1],[77,1]],'suited':[[78,1]],'offsets':[[5,1],[78,1],[74,3],[50,3],[18,1]],'functions':[[7,2],[57,2],[58,4],[55,1],[38,2],[62,2],[61,14],[77,1],[8,1],[5,2],[59,12],[9,1],[15,1],[80,1],[6,1],[43,1],[4,1],[60,5],[3,1],[40,2],[11,1],[10,1]],'no8lim':[[19,2],[13,1]],'3000|':[[67,1]],'similarly':[[77,3]],'together':[[61,1],[75,2],[77,1],[35,1]],'compatible':[[38,1],[67,1],[77,1],[64,1],[5,1],[17,1],[69,1],[9,1],[15,1],[23,1],[72,1],[18,3],[11,1]],'increasing':[[75,1],[33,1],[11,1],[5,1]],'palette':[[67,1],[35,1],[64,4],[5,2],[59,8],[26,2],[51,2],[25,10],[78,22],[72,1],[32,21],[10,3],[7,2]],'separated':[[55,1],[2,1],[51,1]],'zd`2':[[77,1]],'newppu':[[9,1],[12,1],[10,2],[70,1],[8,1],[5,3]],'stopmovie':[[19,3]],'oops':[[77,1]],'getinput':[[59,1]],'for':[[50,19],[61,22],[77,38],[56,2],[35,9],[27,6],[15,6],[29,2],[47,1],[2,1],[24,1],[48,19],[32,5],[57,3],[79,4],[46,6],[38,4],[28,2],[12,13],[13,10],[64,2],[5,10],[21,3],[22,4],[41,1],[11,22],[73,1],[1,2],[19,2],[67,22],[74,17],[16,6],[39,4],[59,49],[9,4],[23,10],[49,8],[51,1],[54,14],[60,21],[66,4],[71,1],[10,8],[40,19],[18,4],[7,13],[65,7],[55,15],[53,3],[30,5],[62,7],[42,1],[52,3],[8,6],[17,2],[78,62],[25,1],[70,8],[6,2],[76,1],[72,3],[75,38],[3,9],[58,4]],'equipment':[[30,1]],'fun':[[48,1]],'1a00':[[67,1]],'op`b@`':[[77,1]],'booleans':[[70,1]],'occupied':[[21,1]],'appropriate':[[59,3],[75,4],[77,1],[78,7]],'registerexit':[[59,1]],'app':[[48,2]],'rerecordcount':[[70,1],[59,1],[11,1]],'executed':[[77,9],[54,7],[55,3]],'elseif':[[60,1]],'17d':[[75,1]],'undoes':[[65,1]],'generation|':[[78,1]],'users':[[59,1],[9,1],[11,1],[62,2]],'applying':[[50,1]],'dir':[[12,1]],'softreset':[[59,1],[11,1]],'native':[[3,1]],'hello':[[60,2]],'could':[[59,2],[78,7],[55,3],[53,1],[43,1],[77,4],[48,2],[74,1],[64,1],[65,1]],'lowest':[[61,1],[67,1],[77,1]],'1000':[[70,2],[24,2],[67,2]],'254':[[59,1]],'numpad0':[[59,1]],'1008307711':[[70,1]],'freely':[[62,1]],'ch8':[[74,2]],'dream':[[7,1],[8,1]],'filehandle':[[60,3]],'essentially':[[78,4],[55,1],[66,1],[48,1],[75,2],[57,1],[58,1]],'conducted':[[75,1]],'reformats':[[15,1]],'taps':[[75,1]],'resizing':[[4,1],[35,2]],'machrider':[[62,1]],'macros':[[65,1]],'root':[[64,2],[5,1]],'screenshot':[[59,4],[38,2],[11,1]],'days':[[60,1]],'bit1|bit0':[[77,1]],'apparently':[[3,1]],'d020':[[77,2]],'png':[[59,2],[28,6]],'sequential':[[78,4]],'rewrites':[[5,1]],'prefer':[[35,2],[54,1]],'replay':[[40,1],[59,1],[22,1],[23,2],[38,1],[12,2],[13,1],[10,1],[36,1],[7,3],[5,4]],'strmode':[[60,1]],'couple':[[4,1],[60,1]],'changelog':[[5,1],[11,1],[9,1],[14,1],[6,1],[4,1],[12,1],[13,1],[3,5],[10,1],[7,1],[8,1]],'lose':[[77,2],[5,1]],'crackling':[[33,1]],'nesdev@onelist':[[79,2],[80,2]],'ascii':[[70,2],[50,1],[5,1]],'hexforecolorb':[[20,1]],'quirk':[[78,1],[75,1]],'return':[[59,6],[23,1],[53,2],[50,2],[30,1],[60,3],[61,11],[75,2],[77,2],[11,2],[58,1]],'_ok':[[77,1]],'bfff':[[55,1],[67,1]],'came':[[25,1],[78,2]],'whole':[[77,1],[78,3],[35,1]],'compete':[[78,1]],'xxxx1':[[67,1]],'too':[[58,2],[59,4],[27,1],[78,1],[60,1],[77,4],[48,2],[8,1],[5,1]],'c006':[[50,1]],'ease':[[5,1]],'mechanism':[[59,1],[61,1]],'madara':[[74,1]],'ported':[[9,1],[42,2],[3,3],[41,2],[8,1]],'generate':[[59,1],[61,1],[74,1],[55,1],[75,7],[78,1]],'5015':[[74,1]],'call':[[59,4],[78,1],[60,2],[61,2],[74,5],[75,1],[79,1]],'motion':[[65,2]],'attempted':[[65,1]],'1ch':[[74,1]],'opcodes':[[77,5]],'1@i#zbe_':[[77,2]],'netplay':[[8,1],[64,1]],'town':[[48,1]],'kinds':[[77,2],[48,1],[60,1]],'rumored':[[78,1]],'unchanged':[[59,3]],'|0a':[[75,2]],'exnr':[[72,1]],'cumulative':[[5,1]],'preexisting':[[23,1]],'viewer':[[49,3],[51,4],[55,3],[53,1],[66,1],[4,1],[13,1],[52,4],[3,2],[8,1],[11,2]],'september':[[3,1]],'premise':[[48,1],[65,2]],'extensive':[[16,1]],'archives':[[13,1]],'usual':[[77,1],[74,1],[78,2]],'provide':[[40,1],[59,1],[78,1]],'logic':[[78,1],[80,1],[6,1],[44,1],[4,1],[77,7],[10,3],[79,1],[5,2]],'uint8':[[72,39]],'a%_':[[77,1]],'overview':[[43,1],[62,2],[74,1],[1,1],[2,1],[0,1]],'renamed':[[50,1]],'those':[[59,6],[54,1],[78,1],[55,1],[30,1],[61,1],[74,2],[20,1],[75,2],[40,1],[35,1],[5,1]],'handled':[[77,10],[7,1]],'scanline':[[78,55],[51,2],[19,2],[50,4],[48,3],[52,9],[79,1],[11,1],[35,1]],'m`0@9':[[77,5]],'logging':[[4,2],[9,1],[54,4],[55,5],[7,1]],'untouched':[[74,1]],'abortretryignore':[[59,1]],'patches':[[40,1]],'isattemptok':[[61,2]],'input3':[[13,1]],'terminates':[[70,1]],'zd#':[[77,1]],'using':[[50,1],[67,1],[61,1],[77,5],[56,3],[39,4],[59,13],[9,1],[23,1],[51,1],[54,1],[60,5],[66,1],[48,3],[57,2],[40,3],[7,1],[55,4],[53,3],[62,1],[28,1],[45,1],[52,2],[8,1],[5,1],[17,3],[64,2],[78,3],[43,2],[75,2],[33,2],[58,1]],'sporting':[[78,1]],'drawing':[[5,1],[59,9],[51,1],[78,2],[62,1],[4,1],[52,1],[79,1],[35,1],[11,1]],'although':[[77,3],[78,3],[66,1]],'turbo':[[59,2],[15,4],[19,5],[6,2],[24,3],[60,2],[12,1],[13,1],[33,2],[7,1],[11,8]],'engaged':[[59,1]],'doubly':[[59,1]],'ling':[[4,1]],'eaters':[[77,1]],'selector':[[78,1]],'chronicles':[[6,1]],'declaration':[[48,2]],'r0j0`fd%j':[[77,1]],'si_none':[[70,4]],'ampl':[[72,1]],'icon':[[59,5],[19,3],[27,1]],'switched':[[59,1],[40,1],[80,2],[5,1]],'imagine':[[78,1]],'criteria':[[43,2]],'v`a%_':[[77,1]],'&4la':[[77,1]],'231':[[59,1],[35,1]],'decision':[[78,1]],'optionally':[[59,3],[12,1],[50,1]],'kevin':[[74,1]],'getup':[[59,1],[8,1]],'relative':[[77,4],[7,1]],'items':[[26,3],[66,1],[38,3],[67,1],[48,1],[11,5],[27,1]],'specifics':[[60,1]],'gameinfo':[[32,1]],'khorton@iquest':[[74,1]],'technically':[[66,1]],'community':[[63,2],[66,1],[2,2]],'specialized':[[66,1]],'customize':[[10,1]],'|bit7':[[75,2]],'convience':[[78,1]],'coin':[[24,2]],'key3':[[61,1]],'mutlitrack2':[[62,1]],'smearing':[[35,1]],'exiting':[[60,1]],'5c00':[[74,3]],'256x224':[[59,1]],'brad':[[78,1],[75,1]],'bar':[[78,6],[15,1],[51,1],[67,1],[52,3],[3,1],[10,1]],'stay':[[75,3],[23,1],[35,1]],'based':[[65,1],[78,1],[15,1],[9,1],[70,1],[43,1],[50,1],[74,1],[75,1],[40,1],[11,1],[18,1]],'basically':[[61,1],[48,1],[78,3],[53,1]],'f16':[[59,1]],'indeed':[[62,1]],'tri':[[75,8]],'chapter':[[38,3],[77,2]],'curly':[[60,1]],'rewritten':[[44,1],[5,1]],'y#4j2x@to':[[77,1]],'%d2n@4':[[77,1]],'remained':[[3,2]],'644':[[77,6]],'middle':[[78,1],[53,1],[50,2],[56,1]],'until':[[50,3],[74,2],[56,1],[27,2],[59,2],[78,4],[75,2],[48,1],[3,1],[40,1],[7,1],[58,1]],'pauses':[[59,1],[60,1],[5,1]],'autopause':[[4,1]],'potentially':[[59,1]],'respectively':[[77,3],[74,1],[75,2]],'frames':[[46,2],[61,5],[13,1],[12,1],[27,4],[59,10],[15,1],[23,1],[70,1],[71,1],[43,1],[78,3],[48,1],[75,1],[11,1]],'obsoletes':[[53,1]],'refresh':[[75,5],[9,1],[11,4]],'expand':[[67,1]],'delay':[[4,1],[59,1],[75,4],[46,1],[78,1],[24,2]],'compatibility':[[17,1],[8,2],[9,2],[27,2],[59,5],[6,1],[18,1],[5,1]],'corners':[[35,1]],'rand':[[61,8]],'string':[[59,41],[70,4],[50,1],[60,3],[72,3],[48,1],[74,5],[10,1]],'presskeya1':[[61,1]],'must':[[38,2],[19,5],[30,1],[50,3],[61,2],[74,6],[77,3],[56,1],[64,3],[27,2],[59,3],[21,2],[78,2],[70,5],[43,1],[60,1],[72,1],[48,1],[75,1],[40,1],[58,1]],'turned':[[59,1],[70,1],[40,1],[27,1]],'4092':[[74,1]],'setreadonly':[[59,4],[11,1]],'|frame':[[78,1],[75,1]],'terminated':[[72,1],[74,3],[70,1]],'arrow':[[30,2],[43,1]],'closer':[[77,1]],'2013':[[4,1]],'f17':[[59,1]],'retrieved':[[78,1]],'dismisses':[[59,1]],'collapse':[[43,1]],'notable':[[4,1]],'flickering':[[35,2]],'irq':[[78,4],[50,3],[72,7],[75,18],[77,17],[10,1]],'the':[[50,189],[61,130],[77,555],[56,49],[35,27],[27,80],[15,20],[29,10],[80,8],[2,8],[24,22],[48,117],[32,15],[57,6],[79,15],[46,15],[38,51],[28,15],[44,4],[12,6],[13,12],[20,11],[36,16],[64,20],[5,19],[37,10],[63,3],[21,43],[22,13],[41,3],[68,2],[43,46],[69,3],[33,17],[11,27],[73,1],[1,4],[19,19],[67,67],[74,126],[39,6],[59,355],[9,9],[14,2],[23,89],[49,10],[51,12],[54,40],[4,18],[60,85],[66,7],[71,12],[10,40],[40,141],[18,10],[7,38],[65,37],[55,72],[53,46],[30,79],[31,2],[45,3],[62,10],[42,2],[52,27],[8,14],[17,21],[78,432],[26,6],[25,5],[70,111],[6,9],[76,3],[72,31],[75,367],[3,29],[58,25]],'popup':[[59,10],[9,2],[60,1]],'expensive':[[59,1],[60,1]],'off':[[40,3],[75,2],[46,8],[19,8],[30,1],[67,1],[61,1],[77,2],[27,5],[5,1],[59,2],[78,3],[23,1],[70,1],[6,1],[24,1],[34,1],[48,1],[72,2],[10,2],[33,1],[7,3],[11,6]],'song':[[74,18]],'better':[[59,1],[9,1],[15,1],[61,1],[48,2],[32,2],[35,1]],'05ff8h':[[74,3]],'luabot_backend':[[61,1]],'m09':[[77,1]],'sifc_none':[[70,1]],'default_nitsuja':[[25,1]],'bear':[[48,1]],'readbyte':[[59,2],[11,2],[60,2]],'player':[[59,12],[21,1],[30,1],[2,1],[60,2],[61,2],[13,1],[67,12],[7,3]],'achieves':[[65,1]],'modern':[[3,1]],'invalid':[[59,1],[4,1],[77,13],[12,1],[11,1],[5,1]],'minimal':[[15,1]],'allowed':[[59,1],[55,1],[60,1],[75,1],[10,1],[11,1],[5,1]],'maxattempts':[[61,1]],'mhz':[[77,3],[75,2],[78,12]],'located':[[59,1],[53,1],[67,1],[4,1],[77,2],[48,1],[40,1],[64,1]],'alive':[[59,1]],'generic':[[61,2],[72,4]],'%h21cp`ea@':[[77,1]],'disappear':[[77,1],[11,2],[13,1]],'images':[[78,2],[21,4],[18,2]],'mysterious':[[10,1],[5,1]],'navigate':[[50,1],[22,1],[23,1]],'english':[[48,4]],'fixedfontheight':[[10,1]],'0x0263':[[59,1]],'linux':[[3,4],[59,2]],'proceed':[[12,1],[21,1]],'everything':[[59,1],[54,2],[78,1],[55,1],[61,1],[77,1],[65,1]],'ripper':[[55,2],[74,1]],'2nd':[[78,1],[9,1],[74,1],[70,3],[67,1],[11,1]],'nor':[[77,1],[65,1]],'preset':[[59,1],[30,4],[77,1]],'tens':[[65,1]],'anew':[[3,1]],'lined':[[46,1]],'rendered':[[55,3],[78,8]],'turning':[[24,1],[78,1],[40,1],[11,1],[27,2]],'specifications':[[73,1],[76,1],[68,1]],'viewing':[[53,1],[48,2],[66,1]],'176':[[5,1]],'bind':[[12,2],[10,1],[36,1],[30,1]],'dancing':[[67,1]],'latch':[[72,4],[75,1],[77,2],[78,5]],'pressed':[[11,1],[59,2],[23,1],[46,1],[70,5],[60,1],[61,7],[40,2],[33,1],[7,1]],'making':[[55,1],[67,4],[44,1],[77,1],[36,1],[56,1],[27,1],[63,1],[59,1],[15,2],[23,3],[39,1],[66,2],[78,2],[48,1],[75,1],[40,2],[65,7]],'iql2':[[72,1]],'57%':[[75,1]],'demokratische':[[77,1]],'``````````````':[[77,1]],'lag':[[5,1],[59,11],[15,3],[46,1],[43,2],[12,2],[13,1],[11,2],[27,8]],'indexes':[[78,1]],'serializer':[[78,1]],'1100':[[67,1]],'mahjong':[[30,1]],'freq':[[59,5],[75,1]],'width':[[11,1]],'castlevania':[[74,1]],'note':[[46,1],[19,2],[30,2],[50,2],[67,1],[61,3],[52,1],[13,2],[74,4],[77,14],[27,4],[59,11],[15,1],[54,1],[78,2],[60,5],[72,1],[48,3],[32,1],[75,7],[33,1],[40,2],[79,2]],'release':[[30,1],[31,1],[44,1],[12,1],[13,1],[8,1],[5,1],[64,2],[78,5],[9,1],[14,2],[47,1],[6,2],[4,1],[75,1],[3,1],[10,2],[11,1],[7,2]],'automation':[[50,1]],'f11':[[55,1],[59,1]],'#rrggbbaa':[[59,1]],'reserve':[[67,1]],'overflows':[[77,3]],'function':[[38,2],[61,13],[13,1],[74,1],[8,1],[17,2],[59,71],[9,1],[49,1],[6,1],[60,11],[48,1],[7,1]],'playbeginning':[[59,1],[11,1]],'cover':[[78,1]],'pcl':[[77,15]],'32000':[[13,1],[8,1],[11,2]],'kremer':[[77,1]],'octave':[[75,3]],'behind':[[59,2],[78,2],[55,1],[2,1],[60,1]],'contents':[[53,1],[50,4],[67,1],[61,3],[74,1],[5,1],[63,1],[78,3],[49,3],[23,1],[51,1],[75,1],[40,1],[79,1]],'grey':[[59,1]],'447':[[75,1]],'rpg':[[61,1],[48,1]],'designed':[[23,1],[25,1],[1,1],[41,1],[43,1],[67,1],[72,1],[42,1],[39,1]],'explanation':[[56,1],[77,1],[39,1]],'newname':[[50,1]],'synchronize':[[75,1]],'vector':[[77,12],[50,8]],'ranging':[[77,1]],'given':[[17,1],[59,34],[78,1],[29,1],[50,4],[60,5],[61,1],[52,1],[75,1],[56,1],[65,1]],'jl`@h':[[77,1]],'|history|':[[78,1]],'initialize':[[77,1],[78,2]],'gaiden':[[8,3]],'luke':[[3,1]],'mail':[[74,1]],'4005':[[75,2]],'mask':[[55,2]],'hq2x':[[35,4]],'rest':[[59,1],[48,1],[72,1],[75,1],[77,3],[78,1]],'concept':[[61,1],[2,1],[44,1]],'feb':[[78,2]],'describe':[[75,3]],'along':[[3,1],[78,1]],'1536':[[78,1],[67,1]],'human':[[31,1],[65,2]],'who':[[61,1],[75,2],[60,1]],'playingbest':[[61,1]],'positive':[[59,1],[48,1],[75,1],[77,2],[43,1]],'specified':[[59,1],[21,1],[70,3],[19,10],[50,4],[28,1],[74,3],[75,1],[27,1]],'returns':[[60,4],[59,53],[61,11],[7,1],[11,2]],'provides':[[67,1],[66,1],[2,1],[65,2]],'cli':[[77,1],[75,2]],'existed':[[59,1]],'assigning':[[4,1]],'shortcuts':[[11,1]],'listbox':[[7,1]],'little':[[4,1],[59,1],[48,1],[61,1],[10,1],[77,1]],'improvement':[[5,1]],'determine':[[59,1],[54,1],[78,3],[61,3],[48,4],[74,3],[75,1]],'nonsense':[[62,1]],'choice':[[59,2],[78,1],[27,1]],'presettable':[[75,2]],'diables':[[10,1]],'lax':[[77,13]],'middleclick':[[59,1]],'ramwatch':[[6,2]],'ugly':[[48,1]],'p40':[[59,1]],'altering':[[77,1]],'triangle':[[59,1],[75,31],[33,1]],'shoddy':[[48,1]],'blacker':[[78,1]],'serializers':[[78,2]],'providing':[[78,1],[8,1]],'attention':[[78,1]],'difficult':[[77,1],[32,1]],'booting':[[5,2]],'gray':[[59,1]],'logged':[[54,2],[55,4],[53,1],[5,1]],'compress':[[8,1],[27,1]],'submitinsertframes':[[59,1]],'assisted':[[63,2],[65,13],[23,3],[2,1],[44,1],[67,1],[61,1],[3,1],[5,1]],'outlinecolor':[[59,4]],'fixes':[[5,2],[11,6],[9,3],[14,1],[15,1],[6,1],[4,2],[12,3],[13,4],[10,6],[7,3],[8,4]],'autoconverts':[[10,1]],'giving':[[62,1]],'wave':[[72,1],[75,32]],'ticks':[[74,2]],'older':[[59,3],[75,1],[3,1],[33,1],[47,1],[58,1]],'truncate':[[36,1],[7,1]],'inserts':[[24,1]],'definite':[[75,1]],'identically':[[59,1]],'effectively':[[77,3],[75,2],[78,1],[53,1],[30,1]],'kana':[[48,6]],'sept':[[78,2]],'ymouse':[[59,1]],'00111111':[[79,1]],'enabling':[[64,1],[7,1],[27,1],[34,1],[75,2],[11,1],[35,1]],'six':[[21,1]],'nil':[[59,16],[9,1],[61,1],[11,1],[60,6]],'rising':[[78,1]],'applied':[[60,2],[78,2],[40,1],[6,1],[27,2]],'9002':[[74,2]],'neat':[[78,1]],'june':[[77,1],[3,1],[6,1],[7,1]],'3f00|':[[67,1]],'sty':[[77,7]],'setting':[[46,2],[30,2],[77,2],[52,1],[16,1],[74,1],[39,1],[27,3],[78,2],[54,1],[23,1],[24,2],[4,1],[75,1],[10,1],[11,1]],'arbitrary':[[40,2]],'closed':[[13,1],[27,1]],'improved':[[11,1],[27,1],[10,1],[6,1],[5,4]],'getmarker':[[59,1]],'constantly':[[72,1],[75,1]],'242':[[5,1]],'foreground':[[78,4],[20,1]],'displaying':[[5,1],[59,2],[49,2],[78,1],[57,1],[27,1]],'getemuscreen':[[59,3]],'divider':[[75,4]],'static':[[61,1]],'01xx':[[67,1]],'programmer':[[78,2],[75,1],[57,1]],'scan':[[12,1],[35,2]],'lead':[[75,2]],'descriptions':[[77,1],[75,1]],'f800':[[74,2]],'list':[[11,1],[57,2],[75,1],[53,1],[30,2],[50,6],[77,1],[56,4],[8,1],[5,4],[37,2],[59,1],[15,1],[21,2],[60,2],[4,2],[72,3],[48,1],[32,2],[10,1],[40,8],[7,4],[18,1]],'pirated':[[48,1]],'powerful':[[15,1],[55,1],[53,1],[44,1],[61,2],[5,1]],'record':[[59,3],[9,1],[22,2],[23,9],[38,2],[70,10],[13,1],[36,1],[11,1],[27,2]],'xxx0':[[67,1]],'qbe':[[77,1]],'subtractions':[[77,2]],'equally':[[61,1]],'stream':[[71,1],[78,1]],'regarding':[[17,1],[63,3],[77,1],[1,1],[69,1]],'fps':[[5,1],[22,1],[27,2]],'resetting':[[40,1],[75,1],[5,1]],'getname':[[59,1],[11,1]],'mouse':[[53,1],[30,3],[50,1],[62,1],[52,1],[35,2],[5,1],[59,3],[51,1],[70,7],[4,1],[48,2],[11,2]],'cutting':[[66,1],[60,1],[65,1]],'pertain':[[75,1]],'jumping':[[77,4]],'motherboard':[[78,1]],'which':[[1,1],[50,9],[67,3],[61,5],[74,4],[77,17],[56,2],[27,1],[59,5],[49,1],[23,1],[54,6],[66,1],[24,1],[60,2],[4,1],[71,3],[48,1],[32,1],[79,1],[7,5],[55,12],[53,6],[30,1],[28,1],[12,1],[13,4],[52,3],[5,1],[78,28],[21,2],[70,13],[43,1],[75,15],[3,3],[11,1],[58,6]],'stores':[[77,3],[74,1],[70,1],[7,1]],'throws':[[59,6],[77,1]],'decimal':[[70,2],[67,1],[43,2],[60,1],[72,1],[77,28],[40,1]],'vrc':[[74,1]],'minus':[[59,1],[72,1],[74,2],[75,1],[78,2]],'comparison':[[77,1],[78,3],[56,1],[60,1]],'reflects':[[75,1]],'license':[[3,1]],'mistakes':[[65,1],[23,1]],'start':[[79,2],[55,2],[53,1],[30,3],[50,1],[61,7],[74,1],[77,3],[59,5],[15,1],[23,1],[29,1],[70,6],[43,2],[60,2],[78,4],[48,2],[75,4],[40,1],[7,1],[58,1]],'anothervalue':[[60,1]],'lines':[[78,3],[54,4],[70,1],[67,1],[50,6],[77,1],[48,1],[52,1],[74,1],[11,3]],'title':[[59,1],[21,2],[48,1],[61,1]],'saturation':[[78,1]],'05fffh':[[74,3]],'textcolor':[[59,3]],'luapack':[[58,1]],'require':[[78,2],[75,1],[79,1],[60,1],[27,1]],'dmcloop':[[59,1]],'040h':[[75,1]],'@xcfyl':[[77,1]],'entirely':[[59,1]],'july':[[10,1]],'press':[[55,2],[53,1],[30,5],[50,1],[61,3],[27,2],[17,3],[59,3],[37,2],[29,1],[24,1],[43,1],[48,6]],'trouble':[[18,1]],'work':[[46,1],[19,2],[62,2],[77,3],[12,1],[13,1],[27,1],[59,2],[9,1],[54,2],[78,2],[60,1],[72,2],[48,4],[75,2],[3,1],[10,1],[40,2]],'compression':[[8,1],[18,1]],'178':[[5,1]],'65xx':[[77,5]],'speedruns':[[63,2],[65,7],[23,2],[3,1],[67,1],[44,1]],'botting':[[61,1]],'050':[[75,1]],'wait':[[77,2],[11,1],[60,2]],'joyhat':[[8,1]],'unset':[[59,1]],'uint16':[[72,4]],'gamepad5':[[8,1]],'mos':[[77,1]],'bookmark':[[50,3],[5,2]],'therefore':[[78,1],[75,2],[27,1]],'hooked':[[48,4]],'you':[[50,31],[67,9],[61,29],[74,10],[77,28],[56,9],[35,8],[27,13],[59,61],[9,1],[15,1],[23,17],[29,3],[24,7],[49,3],[4,2],[54,18],[48,61],[32,2],[60,28],[40,8],[18,1],[57,1],[79,2],[80,4],[46,2],[55,21],[53,30],[30,15],[31,1],[45,2],[62,11],[52,2],[20,2],[36,3],[64,5],[37,3],[17,9],[78,16],[21,8],[22,3],[43,7],[75,6],[3,1],[33,3],[58,11]],'left':[[19,2],[30,4],[28,1],[50,8],[61,1],[74,1],[77,4],[35,3],[5,3],[27,1],[59,13],[15,1],[54,2],[70,3],[43,1],[60,2],[72,1],[10,1],[40,3],[11,2]],'happening':[[59,1],[13,1],[78,1]],'immediately':[[59,6],[78,2],[53,1],[67,1],[61,1],[75,4],[10,1],[56,1],[36,1],[7,1]],'pathname':[[19,1]],'limitations':[[48,1],[65,2]],'memory':[[50,21],[67,16],[77,7],[74,1],[56,1],[39,2],[59,30],[9,3],[15,8],[23,1],[49,1],[51,4],[60,5],[66,1],[10,4],[40,6],[7,1],[65,1],[53,9],[28,3],[13,2],[52,1],[78,33],[43,17],[75,2],[3,1],[11,7]],'used':[[19,1],[50,3],[67,5],[61,5],[74,11],[77,13],[27,1],[59,6],[15,2],[23,1],[49,2],[54,1],[60,4],[66,2],[71,2],[80,1],[48,10],[32,3],[10,2],[40,4],[7,1],[18,1],[65,3],[79,1],[55,6],[38,7],[30,2],[28,5],[53,1],[62,2],[12,1],[13,3],[8,1],[78,18],[21,3],[22,1],[25,1],[70,18],[34,2],[72,2],[75,12],[11,2],[58,1]],'restores':[[33,1],[38,6]],'calculation':[[50,1],[75,1]],'eggs':[[55,1]],'roms':[[15,1],[55,1],[19,2],[28,2],[4,3],[13,1],[48,1],[8,1],[5,1]],'dimensions':[[59,1]],'ohm':[[75,1]],'coming':[[75,1]],'1993':[[77,1]],'exwram':[[14,1]],'waiting':[[59,1]],'85xx':[[77,1]],'sight':[[77,1]],'savestatefile':[[19,1]],'253':[[9,1],[8,1],[5,1]],'segment':[[59,1],[61,27],[23,1],[65,4]],'programmed':[[61,1],[78,2],[62,1],[58,1]],'edited':[[23,1],[1,1],[40,1],[50,1]],'captured':[[27,1]],'enables':[[5,1],[19,1],[77,3],[40,1],[7,1],[27,1]],'room':[[59,1]],'writeable':[[59,2]],'dfff':[[55,1],[74,2]],'buffer':[[72,1],[13,1],[78,10],[11,1]],'p`ne':[[77,1]],'ratio':[[5,1],[75,1],[35,5],[11,1]],'throttling':[[34,3],[19,3],[11,2]],'health':[[61,1]],'totalsize':[[72,1]],'matt':[[75,1]],'|60':[[75,1]],'gdoverlay':[[59,3]],'documentation':[[1,1],[77,3],[12,1],[42,1],[36,1],[68,2],[69,1],[5,2],[59,1],[15,1],[23,1],[41,1],[78,1],[75,1],[11,3],[58,1]],'fires':[[46,1]],'onsegmentend':[[61,1]],'phenomenon':[[75,1]],'shifted':[[78,1],[75,1]],'mario':[[67,3]],'1998':[[3,1]],'negative':[[59,1],[75,3],[77,12],[80,1]],'why':[[78,5],[53,1],[60,1],[80,1],[77,5],[48,1],[75,2]],'column':[[70,2],[50,5],[67,3],[43,4],[40,3],[11,1]],'physical':[[50,1]],'2800|':[[67,1]],'tmnt':[[67,1]],'layer':[[78,1]],'oeka':[[30,1]],'nmi':[[77,19],[75,1],[78,2],[50,2],[67,1]],'144':[[61,1]],'1fc':[[75,1]],'bring':[[50,1]],'lastkey4':[[61,1]],'dated':[[77,1]],'number':[[50,8],[61,33],[74,4],[77,2],[27,1],[59,12],[54,1],[23,2],[71,1],[24,2],[60,2],[4,1],[48,2],[10,1],[40,4],[55,1],[13,1],[20,1],[36,1],[64,1],[5,2],[17,2],[78,4],[21,1],[70,3],[75,16],[11,2]],'corruption':[[67,1]],'rom':[[1,1],[19,8],[50,17],[67,4],[77,1],[74,1],[56,7],[27,11],[59,7],[15,2],[23,2],[29,2],[54,1],[2,1],[60,2],[4,5],[66,12],[48,3],[10,3],[40,2],[18,2],[7,1],[55,25],[38,4],[53,16],[28,4],[62,1],[12,1],[13,2],[8,3],[5,5],[17,1],[63,4],[21,4],[64,5],[70,1],[78,2],[72,1],[3,1],[11,9]],'sprite':[[78,14],[51,1],[67,7],[50,2],[72,1],[13,1],[8,1]],'decent':[[56,1],[35,1],[78,1]],'opposite':[[59,3],[61,1],[77,1]],'decoding':[[78,1]],'known':[[59,1],[21,1],[23,1],[51,1],[43,1],[60,1],[74,2],[75,3],[3,1],[40,2],[64,2]],'attached':[[70,5],[21,1]],'adjusting':[[10,1],[58,1]],'splitting':[[60,1]],'temporarily':[[77,1],[40,1],[30,1],[35,1]],'scale3x':[[35,2]],'but':[[50,1],[67,1],[61,5],[74,2],[77,15],[35,1],[59,12],[54,3],[80,1],[24,1],[60,4],[48,12],[10,2],[57,2],[40,2],[65,2],[18,2],[79,2],[46,2],[55,4],[38,1],[30,2],[64,1],[78,11],[21,1],[43,2],[75,4],[3,1],[58,1]],'4th':[[78,2],[75,1],[46,1],[70,1]],'pla':[[77,2]],'may':[[50,9],[77,24],[74,1],[35,3],[27,1],[59,7],[54,1],[29,2],[48,1],[32,1],[40,1],[7,1],[65,2],[46,1],[55,1],[38,1],[30,1],[53,2],[62,3],[64,2],[17,1],[78,2],[70,3],[33,2]],'vbuf':[[72,1]],'nes':[[73,2],[1,2],[19,21],[50,18],[67,10],[74,4],[56,3],[35,4],[27,3],[59,1],[51,1],[23,2],[54,1],[66,1],[2,1],[24,5],[4,1],[60,1],[48,2],[32,5],[10,1],[40,3],[18,5],[65,2],[79,3],[80,2],[55,6],[53,5],[30,3],[52,1],[68,2],[64,2],[17,1],[63,2],[21,4],[22,1],[76,6],[78,14],[75,10],[3,1],[58,1]],'favourite':[[77,1]],'clearing':[[75,1],[5,1]],'cleanup':[[5,2],[61,1],[13,2],[11,1],[6,1]],'stopframe':[[19,2]],'debug':[[49,3],[1,2],[50,3],[4,1],[13,1],[5,1]],'visually':[[55,1],[49,1]],'2k3':[[78,3],[75,1]],'observe':[[50,1]],'dumping':[[22,1],[5,1]],'0f000h':[[74,2]],'0xf0':[[77,1]],'approprite':[[78,1]],'07xx':[[67,1]],'vsbx':[[77,3]],'#0t':[[77,8]],'server':[[5,3],[64,2],[31,2]],'store':[[77,13],[48,1],[21,1],[54,1],[28,1]],'default':[[19,1],[61,3],[35,6],[27,8],[59,3],[9,1],[15,1],[23,5],[29,2],[24,1],[4,1],[32,2],[10,1],[40,2],[7,3],[46,2],[30,2],[28,5],[12,4],[13,5],[20,6],[8,1],[5,2],[17,3],[37,2],[21,1],[22,1],[25,2],[70,2],[43,3],[33,1],[11,5]],'slowing':[[23,1]],'breakpoints':[[13,2],[50,18],[5,7]],'average':[[27,1]],'normal':[[59,2],[46,1],[55,1],[6,1],[24,1],[60,2],[40,1],[33,1],[58,1]],'filters':[[59,1],[13,1],[54,1]],'modulate':[[59,1]],'tasvideos':[[42,1],[23,1],[41,1],[64,1],[65,4]],'seven':[[77,1]],'conditional':[[5,1],[50,4],[7,1]],'slows':[[24,1]],'binary':[[59,3],[77,10],[3,1],[55,1],[70,6]],'yelling':[[30,1]],'plain':[[70,2],[40,1]],'performing':[[59,1],[77,3]],'clip':[[62,1],[19,2],[11,1],[35,1]],'creates':[[61,1],[28,1]],'continuous':[[24,2]],'bcs':[[77,3]],'don’t':[[23,1]],'quicksave':[[9,1]],'enhancements|':[[78,1]],'high':[[34,1],[74,1],[77,52],[78,1]],'unix':[[3,2],[8,1]],'can':[[50,21],[61,13],[77,11],[56,2],[35,8],[27,15],[15,7],[47,1],[80,2],[24,3],[48,14],[32,2],[57,1],[79,2],[46,1],[28,1],[12,1],[13,1],[20,3],[68,1],[64,7],[5,3],[21,4],[22,2],[41,3],[43,2],[33,4],[11,4],[19,1],[67,8],[74,5],[59,34],[9,2],[23,22],[49,1],[51,1],[54,7],[60,13],[4,2],[71,1],[40,9],[7,2],[18,2],[55,15],[53,14],[30,6],[62,1],[42,1],[17,2],[78,9],[70,5],[34,1],[72,1],[75,8],[3,2],[58,2]],'feeding':[[59,1]],'base64':[[70,1]],'programs':[[77,3],[48,1],[78,1],[57,1]],'frameskip':[[13,1]],'getselection':[[59,1]],'a13':[[78,8]],'recompiled':[[1,1]],'important':[[61,1],[78,1],[65,1]],'pipeline':[[78,5]],'monitor':[[78,5],[43,2],[77,1],[10,1],[40,1],[64,1],[11,1]],'follow':[[4,2],[75,1],[50,1],[60,1]],'meaningful':[[59,1]],'indices':[[77,1]],'dualcore':[[11,1]],'reflex':[[65,2]],'serialized':[[78,1]],'luabot_front':[[61,1]],'classic':[[29,1]],'effective':[[77,80]],'leftclick':[[59,1]],'integers':[[59,3]],'wired':[[77,1]],'rainwarrior':[[1,1]],'rts':[[4,1],[77,4],[74,1],[50,2],[5,1]],'ips':[[13,1],[18,9]],'c0a8':[[50,1]],'presskeyx':[[61,3]],'puts':[[40,1],[59,1]],'blending':[[5,1]],'undone':[[65,1]],'framenumber':[[19,1]],'xxx2':[[74,1]],'enthusiast':[[75,1]],'m3y':[[77,1]],'exp':[[77,1]],'bi`':[[77,2]],'finishes':[[77,1],[78,2]],'details|':[[78,2]],'multiple':[[59,2],[78,4],[55,1],[50,1],[6,2],[45,1],[72,1],[7,1]],'this':[[50,20],[61,28],[77,75],[56,3],[35,18],[27,15],[15,2],[29,3],[47,1],[80,4],[24,2],[48,29],[32,2],[57,3],[79,2],[46,5],[38,24],[28,1],[12,1],[13,2],[20,2],[64,3],[5,1],[21,5],[22,1],[41,2],[43,2],[11,1],[19,3],[67,14],[74,37],[16,1],[59,62],[51,1],[14,1],[23,8],[54,7],[60,15],[66,1],[4,1],[71,2],[10,3],[40,14],[18,2],[7,3],[65,4],[55,7],[53,7],[30,11],[31,1],[62,2],[42,2],[52,3],[8,1],[17,3],[78,94],[25,5],[70,4],[72,5],[75,52],[3,6],[58,7]],'polling':[[27,1]],'han':[[48,1]],'more':[[19,1],[50,5],[67,2],[61,1],[74,1],[77,6],[35,3],[59,4],[15,4],[23,2],[54,3],[66,2],[60,3],[80,1],[4,1],[48,4],[10,1],[40,3],[7,2],[57,1],[18,1],[65,2],[79,1],[55,2],[12,2],[13,2],[42,1],[68,1],[8,1],[5,1],[64,1],[78,3],[41,1],[75,2],[3,1],[11,4]],'permit':[[12,1],[75,1]],'dead':[[59,1],[61,1],[78,2]],'amazing':[[77,1],[62,1]],'2fa9':[[70,1]],'frequency':[[59,10],[74,4],[75,19],[77,2],[78,1]],'translating':[[48,2]],'link':[[5,1]],'|0d':[[75,2]],'vic':[[77,4]],'impulse':[[78,1]],'261':[[78,1]],'ignored':[[70,2],[60,1],[24,1],[77,5],[48,1],[75,2]],'information':[[1,6],[50,3],[0,1],[67,1],[61,1],[74,3],[77,1],[27,1],[59,6],[49,3],[23,2],[66,1],[48,2],[40,1],[57,1],[79,1],[55,3],[13,1],[68,2],[64,1],[69,1],[17,2],[63,3],[78,8],[75,8],[3,1],[11,1],[58,1]],'conjunction':[[55,1],[19,1],[54,1]],'substitute':[[40,2]],'forces':[[59,2]],'lot':[[67,1],[48,2],[3,1],[6,1],[5,1]],'hexadecimal':[[77,1],[40,1],[50,6],[67,1]],'monitored':[[43,1]],'cur':[[75,2]],'&bh':[[77,2]],'distortion':[[78,1]],'inverter':[[78,1]],'report':[[77,1],[7,1]],'5fffh':[[74,1]],'t2p':[[77,1]],'intended':[[59,1],[77,1]],'affects':[[77,4],[36,1],[79,1],[11,1]],'rotated':[[77,1]],'resides':[[78,1]],'against':[[59,1],[31,1],[48,1]],'getfilename':[[59,1],[7,1]],'msb':[[78,1],[75,4]],'what':[[1,1],[0,1],[61,1],[74,1],[77,7],[56,1],[59,4],[9,2],[14,2],[15,2],[23,1],[49,1],[51,1],[4,2],[54,3],[48,13],[32,2],[10,2],[57,1],[7,2],[65,1],[66,1],[55,2],[53,2],[28,1],[12,3],[13,2],[52,1],[8,2],[5,2],[63,1],[64,1],[78,9],[6,2],[72,2],[75,3],[11,2]],'have':[[19,1],[50,4],[67,1],[61,9],[74,2],[77,13],[56,1],[27,1],[59,5],[15,1],[14,1],[54,1],[71,1],[60,6],[48,16],[10,1],[40,6],[7,3],[65,1],[46,3],[53,3],[30,4],[62,1],[45,2],[64,1],[5,1],[17,2],[78,10],[21,3],[70,6],[75,10],[11,1],[58,2]],'conforms':[[7,1]],'script':[[7,1],[55,1],[19,2],[38,4],[50,1],[61,7],[12,1],[13,3],[8,1],[59,26],[9,1],[60,8],[11,1],[58,10]],'deals':[[69,1]],'position':[[59,6],[15,2],[70,4],[60,1],[67,4],[48,1],[75,1],[40,1],[11,5]],'abilities':[[75,1]],'crash':[[55,1],[53,2],[12,2],[13,3],[8,1],[5,2],[59,2],[49,1],[14,1],[6,2],[4,3],[10,1],[11,3],[7,3]],'sweeps':[[75,2]],'efficient':[[77,1]],'created':[[5,1],[58,1],[78,1],[1,1],[55,1],[38,2],[60,1],[70,1],[3,2],[36,1],[11,1],[8,1]],'other':[[50,3],[67,2],[61,1],[74,3],[77,13],[27,1],[59,5],[9,1],[15,2],[23,2],[29,1],[60,3],[66,1],[48,5],[10,1],[7,1],[46,1],[55,1],[30,1],[62,1],[12,1],[8,1],[5,1],[78,7],[70,1],[75,3],[3,2]],'xh%&q':[[77,1]],'separately':[[9,1]],'quickly':[[67,1],[15,1],[23,1],[53,1],[30,1],[50,2]],'offers':[[19,1]],'proprietary':[[21,1],[5,1]],'pepper':[[3,1]],'declared':[[60,3]],'gone':[[75,1]],'append':[[48,1]],'representation':[[48,1],[75,1]],'defaults':[[59,4],[13,2],[33,1],[37,1]],'put':[[19,1],[67,1],[61,1],[36,1],[59,3],[15,1],[21,1],[54,2],[78,4],[43,3],[48,4],[32,1]],'request':[[78,1]],'snapshots':[[25,1]],'meta':[[23,1]],'alternatively':[[17,1],[55,1],[40,1],[50,1]],'17ff':[[67,2]],'past':[[7,1],[27,1]],'int':[[59,130]],'|the':[[78,1]],'usefully':[[62,1]],'newname4':[[50,1]],'asl':[[77,11]],'dashes':[[60,1]],'organized':[[67,1]],'battery':[[28,2],[21,1],[8,1],[11,1]],'capture':[[22,6],[15,1],[55,2],[6,1]],'0000000011111111':[[79,1]],'topmost':[[77,2]],'accompanying':[[40,1]],'ppu':[[50,5],[67,5],[27,9],[9,5],[49,6],[51,10],[66,2],[80,2],[4,2],[48,1],[10,5],[79,1],[7,3],[55,3],[53,3],[52,4],[8,1],[64,4],[78,95],[76,2],[70,1],[6,2],[72,9],[75,1],[3,1],[11,3]],'presses':[[11,1],[65,2]],'collisions':[[78,3]],'kid':[[67,1]],'ninja':[[67,1],[46,1]],'taken':[[77,3],[75,3],[3,1],[11,1]],'relocate':[[74,1]],'platforms':[[59,1]],'lowmost':[[77,3]],'sram':[[13,1],[40,1],[67,1],[28,1]],'sytem':[[21,1]],'rate':[[78,2],[74,2],[75,14],[33,2]],'sloppy':[[65,1]],'cheat':[[53,2],[67,3],[28,1],[42,2],[56,4],[8,1],[27,1],[39,2],[5,4],[9,1],[15,2],[41,2],[66,2],[40,27],[7,9],[65,1]],'sebastian':[[3,1]],'because':[[55,1],[38,1],[30,1],[53,1],[77,3],[52,1],[74,3],[64,1],[35,1],[59,7],[78,7],[23,3],[60,2],[75,3],[3,1],[18,1]],'example':[[46,1],[55,4],[50,8],[67,5],[77,5],[52,2],[74,1],[59,10],[78,1],[70,2],[43,2],[72,1],[48,3],[40,3],[7,1],[58,1]],'dmcseed':[[59,1]],'behave':[[77,1],[74,1],[50,1],[60,1]],'c128':[[77,1]],'boat':[[18,8]],'reset':[[55,3],[50,3],[67,1],[77,8],[12,2],[5,2],[59,2],[9,1],[15,2],[23,3],[70,4],[24,4],[43,2],[71,2],[78,2],[75,9],[40,5],[11,2],[7,1]],'pha':[[77,2]],'repeated':[[78,3]],'corresponding':[[55,1],[70,1],[43,1],[4,1],[77,1],[48,1],[75,1]],'data':[[50,5],[67,11],[77,15],[74,23],[59,9],[9,1],[23,5],[49,4],[51,1],[54,11],[60,1],[4,1],[66,3],[71,3],[80,2],[10,1],[40,2],[7,1],[18,1],[79,2],[55,40],[53,10],[13,1],[42,1],[52,1],[8,1],[5,5],[78,52],[21,2],[41,1],[70,3],[72,8],[75,1],[3,1],[11,3]],'drag&drop':[[5,2]],'appended':[[36,2],[50,1]],'reside':[[67,2]],'excitingbike':[[62,2]],'worth':[[78,2]],'bots':[[59,1]],'cia':[[77,8]],'pointer':[[78,1],[54,1],[50,1],[72,1],[77,28],[8,1],[5,1]],'translates':[[67,1]],'nesm':[[74,1]],'precisely':[[67,1]],'tables':[[78,2],[51,1],[80,1],[60,2],[77,2],[48,3],[52,2],[10,1]],'screenshots':[[13,1],[28,2]],'assembler':[[3,1],[50,4]],'contexts':[[7,1]],'explicitly':[[60,1]],'struct':[[8,1]],'knowledge':[[77,1],[48,2],[78,1],[56,1],[57,1],[67,1]],'198':[[4,1]],'rbibaseball':[[5,1]],'adr':[[60,4]],'encompasses':[[74,1]],'chain':[[77,1]],'oe_':[[77,2]],'due':[[59,1],[21,1],[78,1],[67,1],[77,1],[48,1],[75,3],[3,1],[11,2],[65,1]],'contain':[[55,1],[50,2],[28,1],[67,2],[13,1],[74,1],[23,3],[70,1],[71,1],[60,1],[72,2],[75,2],[32,1]],'hexrowheightborder':[[20,1]],'maintain':[[35,1],[5,1]],'unzipped':[[58,1]],'int16':[[72,1]],'07ffh':[[74,2]],'sounddisplay':[[5,1]],'applies':[[59,6],[52,1],[32,1],[72,2]],'developed':[[77,2]],'k0z':[[77,1]],'schematics':[[78,1]],'idle':[[50,1]],'applyinputchanges':[[59,1]],'amplitude':[[72,1],[75,1],[78,1]],'played':[[27,2],[70,1],[55,2],[19,1],[30,1],[74,2],[65,1]],'responsible':[[77,1],[75,2],[55,1],[60,1]],'returning':[[59,2]],'dd05':[[77,4]],'hex':[[7,3],[65,2],[55,3],[53,7],[50,3],[67,3],[42,1],[20,3],[56,2],[5,1],[59,2],[49,1],[41,1],[66,3],[6,1],[43,4],[4,1],[60,2],[48,1],[70,1],[3,1],[40,11],[11,3],[10,5]],'googlecode':[[3,1]],'enter':[[59,1],[78,1],[53,1],[50,2],[24,1],[4,1],[61,1],[10,1],[56,5],[35,3],[11,1]],'dwedit':[[8,1]],'icarus':[[67,1]],'6000':[[72,1],[74,5],[40,1],[6,1],[67,1]],'zbq':[[77,1]],'452de2c3':[[70,1]],'named':[[21,1],[50,1],[28,1],[77,1],[3,2],[40,2],[64,2],[27,2]],'explosion':[[11,1]],'pageup':[[59,1]],'composite':[[78,1]],'processing':[[51,1],[76,2],[34,1],[77,1],[32,1],[33,1],[11,1]],'configable':[[8,1]],'assign':[[19,1],[30,4],[37,3]],'lavelle':[[9,1]],'|06':[[75,2]],'specificness':[[72,1]],'ready':[[66,1],[48,2]],'regular':[[13,1],[65,1]],'guaranteed':[[72,1]],'analog':[[75,3]],'ctrl':[[17,2],[13,1],[53,3],[56,1],[5,1]],'ganbare':[[8,2]],'consume':[[54,1]],'numpad':[[59,5],[13,1]],'milliseconds':[[59,1]],'triggers':[[74,2]],'global':[[59,4],[61,1],[32,1],[60,1]],'comprehend':[[59,1],[77,1]],'loading':[[7,5],[65,2],[30,1],[13,2],[16,1],[36,1],[74,1],[8,1],[5,4],[27,1],[59,3],[9,1],[15,1],[23,6],[70,1],[6,1],[43,2],[4,2],[75,1],[10,1],[57,1],[11,2],[18,1]],'resize':[[7,1]],'problem':[[77,2],[12,1],[74,2],[78,1]],'columns':[[40,1],[67,2]],'dostuffhere':[[60,1]],'0x0200':[[59,2]],'out':[[50,1],[77,3],[74,1],[56,2],[35,3],[27,1],[8,2],[5,3],[49,1],[23,1],[59,2],[78,8],[60,1],[72,1],[48,7],[32,1],[10,1],[40,1],[7,1],[75,6]],'170th':[[78,1]],'predictable':[[78,1],[23,1]],'transparancy':[[59,1]],'042x':[[67,1]],'response':[[77,1]],'easilly':[[78,1]],'intend':[[22,1]],'toggles':[[11,1],[59,1],[19,2],[24,1],[36,2],[7,1],[27,5]],'flashing':[[6,1]],'subroutine':[[77,2],[54,1],[50,1],[5,1]],'think':[[59,1],[78,2],[80,2],[48,1],[74,1],[75,1],[79,1]],'resuming':[[23,1]],'fly':[[52,1]],'entire':[[78,2],[53,1],[67,1],[72,1],[48,1],[74,1]],'indicated':[[59,1],[78,2]],'dictate':[[50,1]],'bne':[[77,4]],'anding':[[77,2]],'beat':[[67,2]],'fceuxdsp':[[9,1],[15,2],[25,1],[2,2],[48,1],[3,9],[11,1]],'tbl4':[[60,3]],'abbreviated':[[65,1]],'caveat':[[78,2],[74,2]],'setnote':[[59,1]],'take':[[53,2],[30,1],[62,1],[67,1],[77,4],[74,1],[56,1],[27,1],[59,2],[78,2],[23,2],[75,2],[40,1]],'vsnprintf':[[13,1]],'attr':[[13,1]],'mixed':[[78,2],[75,1],[60,1]],'cases':[[59,2],[12,1],[13,3],[10,1],[77,1],[50,1]],'eats':[[59,1]],'competitionrecorder':[[62,1]],'produce':[[78,1],[54,2],[70,1],[75,4],[10,1],[33,1],[56,2]],'rla':[[77,13]],'general':[[58,1],[59,1],[15,1],[1,2],[78,1],[6,1],[2,1],[62,3],[72,1],[75,1],[16,3],[5,2]],'smbconfig':[[19,1]],'luau':[[57,1]],'randomly':[[78,1]],'straighten':[[5,1]],'corresponds':[[78,2],[70,1],[67,1]],'0x2000':[[72,3]],'resembles':[[48,1]],'consider':[[77,1],[75,1],[78,1]],'multi':[[65,2],[9,1],[70,1],[50,3],[7,1]],'values':[[50,2],[67,19],[77,6],[74,4],[35,1],[59,13],[49,1],[60,7],[48,1],[10,4],[40,11],[65,1],[53,1],[42,1],[20,3],[8,2],[37,1],[78,4],[41,1],[70,6],[43,6],[72,1],[75,4],[11,3]],'usable':[[12,1]],'inc':[[77,10]],'translator':[[48,3]],'cxi':[[77,2]],'systems':[[78,1],[18,1],[64,1]],'kids':[[30,1]],'prior':[[78,2],[54,1],[6,1],[75,4],[11,1],[5,1]],'edge':[[78,1],[75,1],[66,1],[67,1],[65,1]],'9810':[[72,1]],'priority':[[34,2],[77,1],[32,3],[78,18]],'topics':[[78,1]],'irqc':[[72,2]],'requiring':[[21,1]],'modulated':[[78,1]],'gauntlet':[[67,1]],'entertainment':[[3,1],[17,1],[21,1]],'reason':[[59,1],[48,1],[75,1],[55,1],[78,3]],'whatever':[[59,2],[52,1],[61,2],[55,1],[75,2]],'nospritelim':[[13,1]],'rule':[[77,1]],'printing':[[4,1]],'hexbackcolorr':[[20,1]],'concern':[[40,1]],'signficantly':[[6,1]],'particularly':[[59,1]],'65536':[[70,2],[77,2]],'accurately':[[78,1]],'irix':[[3,1]],'cool':[[48,2]],'evaluated':[[61,4],[78,2]],'0x5fff':[[5,1]],'md5':[[70,1]],'brief':[[77,2],[57,1],[43,1]],'handakuten':[[48,4]],'4800':[[74,3]],'|01':[[75,1]],'`rp`':[[77,1]],'blader':[[8,1]],'autofire':[[15,1],[46,12],[14,2]],'closest':[[78,1]],'forcing':[[59,1]],'tab':[[59,1],[15,1]],'188':[[77,1]],'rgp':[[77,2]],'potential':[[64,1],[7,1],[5,1]],'resolve':[[33,1]],'wrapping':[[80,2],[67,1],[5,1]],'visible':[[35,1],[50,2]],'040':[[75,1]],'entering':[[50,2],[78,1],[48,1],[24,1],[35,1]],'generating':[[59,1],[74,1],[75,1],[78,1]],'stepping':[[9,1],[65,1]],'accessing':[[77,1]],'assembled':[[50,2]],'accu':[[77,1]],'subs':[[48,2]],'submitdeleteframes':[[59,1]],'remainder':[[70,1]],'j@8n':[[77,1]],'timeline':[[5,1]],'deutsche':[[77,1]],'scaling':[[78,2],[13,1],[35,1],[11,1]],'lets':[[77,3],[52,1],[54,1],[53,2]],'attribute':[[72,2],[78,10]],'|miscellanious':[[78,1]],'wordpad':[[20,1]],'findings':[[75,2]],'program':[[59,2],[78,1],[47,1],[66,1],[62,5],[50,7],[60,1],[61,2],[72,1],[74,2],[75,1],[77,14]],'&a%_':[[77,2]],'table':[[53,2],[67,2],[61,7],[52,5],[77,2],[8,1],[59,27],[49,2],[78,33],[80,1],[60,18],[72,2],[48,20],[75,1],[3,1],[10,1]],'replacing':[[75,1],[65,1]],'hacking':[[63,3],[1,1],[66,11],[2,1]],'august':[[13,1],[14,1],[3,4],[15,1]],'retained':[[3,1],[75,1]],'multibyte':[[5,1]],'these':[[50,5],[67,6],[61,6],[74,3],[77,5],[35,4],[27,2],[59,3],[23,2],[24,1],[60,2],[48,2],[10,1],[40,1],[7,1],[18,1],[65,1],[46,1],[38,1],[30,3],[28,5],[62,8],[42,1],[20,1],[68,2],[64,1],[78,5],[26,1],[25,2],[41,1],[70,1],[75,10]],'ijc':[[77,8]],'d2n@3y':[[77,1]],'getlostplayback':[[59,1]],'xmouse':[[59,1]],'getregister':[[59,3],[9,1]],'finds':[[48,1]],'combined':[[61,2],[77,1],[1,1],[55,1],[78,1],[0,1]],'jajamaru':[[8,1]],'fractions':[[13,1],[65,1]],'player1':[[70,1]],'quietust':[[75,1]],'66hl2n@':[[77,1]],'some':[[50,1],[67,2],[61,5],[74,2],[77,9],[35,2],[27,1],[59,10],[9,1],[29,1],[80,1],[60,3],[4,1],[48,6],[10,2],[40,1],[7,1],[18,2],[55,2],[38,1],[62,1],[28,1],[12,2],[13,2],[20,1],[8,1],[5,2],[64,2],[78,9],[21,1],[25,1],[6,2],[75,2],[3,1],[33,1],[11,1]],'displaced':[[65,1]],'05ff9h':[[74,2]],'parameter':[[61,2],[77,10],[40,1]],'colors':[[64,1],[59,14],[78,1],[60,1],[32,1],[10,1],[7,3],[11,1]],'unique':[[70,1],[23,1]],'loved':[[77,1]],'chunks':[[72,5]],'analyzing':[[49,1]],'exactly':[[59,2],[74,1],[75,1],[78,1],[50,1],[58,1]],'complex':[[77,1],[78,1]],'skipped':[[77,2]],'modify':[[59,1],[77,8],[53,3],[56,1]],'trade':[[77,1]],'lesser':[[59,1]],'snels9x':[[41,1]],'achieved':[[56,2],[50,2],[72,1]],'fine':[[78,5],[24,2]],'reversing':[[78,1]],'freezing':[[40,2],[11,2],[60,1]],'1x1':[[35,4]],'identified':[[70,1]],'quicker':[[66,1],[50,1],[65,1]],'fill':[[56,1],[13,1],[35,1]],'debuggers':[[66,1]],'version':[[1,1],[30,2],[0,1],[44,1],[77,6],[42,1],[74,1],[64,2],[5,1],[78,1],[15,1],[41,1],[47,1],[2,1],[70,4],[72,6],[3,10],[57,1],[11,1]],'tod':[[77,5]],'lxa':[[77,3]],'website':[[48,3]],'decrement':[[77,6],[75,2]],'j1rb':[[72,1]],'slots':[[59,3],[13,2],[11,1],[67,1]],'las':[[77,1]],'except':[[59,4],[54,1],[70,2],[60,2],[61,2],[74,1],[75,3],[77,6],[40,2],[5,1]],'226':[[8,1]],'control':[[59,6],[78,1],[47,1],[30,1],[60,6],[77,1],[74,2],[75,5],[10,1],[57,1],[33,2],[11,3]],'bit7':[[70,2]],'xxx':[[70,2]],'acquired':[[75,1]],'xxff':[[77,1]],'exit':[[60,1],[59,7],[29,2],[50,1],[7,1]],'causes':[[78,2],[80,1],[50,2],[77,2],[75,1],[10,1],[35,1]],'batteries':[[21,1]],'characteristic':[[67,1]],'bit5':[[70,2],[77,1]],'symbolic':[[4,2],[54,1],[50,6],[5,2]],'resolved':[[31,1],[64,2]],'assume':[[59,1],[74,2],[77,1],[60,1]],'clouds':[[78,3]],'accessable':[[78,1]],'once':[[38,2],[30,1],[77,1],[74,4],[36,1],[56,1],[35,1],[27,2],[17,1],[59,7],[54,2],[23,1],[78,1],[66,1],[60,2],[4,1],[48,7],[75,1],[10,1],[40,1],[11,2]],'steady':[[34,1]],'org':[[58,1],[65,5],[64,1],[60,1]],'2kb':[[72,2]],'throw':[[77,6],[78,1]],'flip':[[78,1],[74,1]],'ldy':[[77,9]],'0900':[[67,1]],'areas':[[53,1],[35,3],[5,1]],'filenames':[[15,1],[8,1],[5,1]],'storing':[[70,1],[59,1],[18,1]],'increment':[[77,71],[74,1],[27,5]],'readup':[[59,1]],'holds':[[61,2],[75,1],[78,1],[30,2]],'pushing':[[77,2]],'made':[[30,1],[12,1],[8,2],[64,1],[17,1],[78,7],[9,1],[15,3],[23,5],[6,1],[48,3],[75,1],[3,2],[10,3],[7,7]],'discarding':[[54,1]],'republik':[[77,1]],'fceu98':[[13,1]],'bryan':[[77,2]],'inconvenience':[[75,1]],'chm':[[44,1],[5,2]],'loadscriptdata':[[59,1],[9,2]],'b002':[[74,1]],'xh8':[[77,1]],'262':[[78,3]],'highlighed':[[5,1]],'cell':[[21,1]],'inspect':[[50,1]],'auxiliary':[[62,1]],'400a':[[75,2]],'changed':[[50,1],[77,1],[12,1],[13,1],[8,2],[5,1],[78,1],[21,1],[43,1],[4,3],[10,2],[40,3],[11,1]],'minimized':[[10,1],[8,1]],'copyright':[[77,1],[74,3]],'scroll':[[78,8],[80,4],[67,1],[50,1],[52,5],[11,1],[5,1]],'hhhhllll':[[74,1]],'effect':[[78,1],[38,3],[50,1],[30,1],[77,1],[75,3],[56,3],[7,1],[27,1]],'fullscreen':[[4,1],[13,1],[29,2],[10,1],[5,1]],'distribute':[[55,1]],'life':[[40,1],[62,1],[66,1]],'ddr':[[77,1]],'subtracting':[[77,2],[75,1]],'web':[[44,1]],'semi':[[75,1]],'indexing':[[77,3]],'snap':[[56,1],[13,1],[48,3]],'poorly':[[31,1],[35,2]],'through':[[65,1],[55,3],[50,1],[67,1],[12,1],[20,2],[74,2],[5,2],[59,1],[54,1],[23,2],[78,5],[66,1],[60,1],[72,1],[48,1],[75,2],[40,2],[57,1],[58,1]],'woes':[[13,1]],'widely':[[18,1]],'subtitles':[[23,6],[70,2],[38,6],[62,1],[10,2],[36,4],[11,2]],'couldn':[[59,2],[12,1],[78,1]],'exceeds':[[5,2]],'reinstalled':[[11,1]],'glitchy':[[33,1]],'scale':[[75,3]],'accidental':[[5,1]],'titlebar':[[13,1]],'r65c00':[[77,2]],'laggy':[[46,1]],'lastkey':[[61,1]],'y2k':[[78,2]],'4018':[[50,1]],'checks':[[55,1],[8,1]],'greatly':[[33,1],[11,1]],'|scanline':[[78,1]],'deliver':[[47,1]],'5th':[[77,1]],'filename':[[11,4],[19,3],[38,1],[50,1],[12,1],[13,1],[36,1],[8,1],[5,1],[59,2],[22,1],[4,1],[7,1],[18,1]],'comparing':[[49,1]],'kh%61':[[77,1]],'dialogue':[[66,1]],'jammed':[[72,1],[77,1]],'valid':[[19,1],[77,1],[5,1],[59,2],[15,1],[78,4],[70,1],[71,1],[6,1],[40,1],[11,1],[18,2]],'tilde':[[59,1],[60,1]],'aratanaru':[[8,1]],'|08':[[75,2]],'resources':[[59,1],[66,1],[67,1],[65,1]],'bound':[[30,1],[60,1]],'iiiiiiiiiiiii':[[50,1]],'blitting':[[59,1]],'snowbro':[[75,1]],'rounder':[[35,1]],'regulate':[[75,1]],'history':[[4,1],[1,1],[3,2],[0,1]],'addr_hi':[[77,5]],'divided':[[78,1]],'408':[[78,1]],'results':[[59,1],[54,1],[78,1],[55,1],[62,2],[77,3],[75,9],[40,1]],'eyebrows':[[78,1]],'portion':[[40,1],[67,1],[75,1]],'cah4e3':[[3,2],[13,1]],'fixing':[[77,6],[49,1],[55,1],[6,2],[7,2]],'early':[[59,1]],'local':[[59,4],[60,9]],'freeware':[[3,1]],'240':[[78,1],[75,3],[80,1],[50,1]],'ddt':[[72,1]],'limits':[[78,2],[65,2]],'overhauls':[[15,1]],'flow':[[60,2]],'detect':[[78,1],[27,1]],'replaced':[[77,1],[48,1],[75,1],[78,1],[50,1],[11,1]],'approx':[[11,1]],'contra':[[67,1]],'minvalue':[[61,12]],'strobe':[[75,3]],'jams':[[77,2]],'socket':[[6,1]],'former':[[77,1]],'adjustments':[[32,1]],'sorta':[[74,1]],'pauseframe':[[10,1]],'existence':[[62,1],[75,1]],'outlet':[[66,1]],'inspecting':[[50,1]],'onattemptstart':[[61,2]],'deflate':[[18,1]],'over':[[46,1],[38,3],[31,1],[50,2],[62,1],[61,1],[52,1],[77,1],[27,1],[78,3],[15,1],[26,1],[51,2],[2,1],[60,2],[72,1],[48,2],[11,1],[65,2]],'0318':[[77,3]],'incorrectly':[[11,1]],'definition':[[48,1],[50,1]],'fact':[[77,1],[62,1]],'wiped':[[13,1]],'ejected':[[21,2]],'third':[[77,1],[50,2]],'reopen':[[59,2]],'editors':[[66,1]],'refills':[[40,1]],'binds':[[60,1]],'pcm':[[22,1],[55,4],[33,1]],'sit':[[74,1]],'animation':[[40,1],[67,1]],'initializing':[[61,1],[14,1]],'overrides':[[17,1],[64,1],[9,2],[21,2],[11,1],[28,2]],'non':[[11,1],[65,2],[50,4],[67,1],[61,1],[12,1],[13,2],[8,1],[5,1],[27,1],[59,3],[78,6],[66,1],[72,2],[75,4],[3,1],[40,1],[57,1],[10,1]],'depending':[[59,1],[78,1],[70,1],[55,1],[75,3],[40,1],[64,1],[65,1]],'fire':[[65,1],[59,2],[46,5],[8,3],[39,3]],'impose':[[5,1]],'hits':[[78,1],[54,1],[8,1],[5,1]],'minimizes':[[10,1]],'310':[[50,1]],'primitive':[[50,3]],'description':[[59,1],[43,1],[50,2],[72,10],[74,2],[75,3],[77,40],[57,1],[40,1]],'sense':[[59,1],[77,1]],'callbacks':[[59,8]],'bmf_final2':[[25,1]],'decoder':[[78,1],[49,1],[3,1],[56,7],[66,1],[27,1]],'numpad5':[[59,1]],'intellivision':[[74,1]],'operation|':[[75,2]],'misleading':[[61,1]],'ora':[[77,17]],'selecting':[[17,2],[78,2],[23,2],[53,2],[28,1],[48,1],[40,2],[7,1],[5,1]],'b@ll7aol':[[77,1]],'much':[[55,3],[50,1],[77,5],[35,1],[27,2],[59,3],[78,2],[60,1],[48,3],[75,1],[57,2],[7,1],[58,1]],'00698089599609375':[[70,1]],'pgen':[[72,1]],'dffe':[[50,1]],'performance':[[34,1],[6,1],[65,1]],'crc':[[4,1],[7,1]],'american':[[21,1]],'properties':[[59,1],[77,1]],'hurt':[[27,1]],'constant':[[77,2],[13,1],[78,1],[10,1]],'inline':[[3,1],[50,4]],'hidden':[[38,1],[29,1]],'unassigned':[[11,1]],'getplaybacktarget':[[59,1]],'|commands|port0|port1|port2|':[[70,1]],'please':[[77,2],[48,6],[79,1]],'oldversion':[[72,2]],'silenced':[[75,4]],'mc650x':[[77,1]],'vd`d2n0l':[[77,1]],'unconditionally':[[78,1]],'considering':[[78,1]],'critical':[[61,1],[23,1]],'versatile':[[78,1]],'been':[[61,4],[42,1],[74,1],[77,5],[59,1],[15,2],[54,2],[41,1],[78,7],[60,1],[75,6],[3,3],[10,1],[40,2],[65,1]],'00000111':[[79,2]],'onstart':[[61,5]],'tht':[[11,1],[48,3]],'dynamic':[[57,1]],'nesdev':[[79,1],[75,3],[68,1]],'tya':[[77,1]],'closing':[[4,2],[9,1],[29,1],[8,1]],'helps':[[48,1],[49,1]],'null':[[72,2],[13,1],[74,4],[60,1],[5,1]],'poll':[[59,2],[27,1]],'were':[[55,2],[53,2],[61,1],[13,2],[77,1],[59,1],[21,1],[23,1],[25,1],[54,1],[70,1],[78,2],[75,1],[3,2],[11,1]],'sides':[[21,6],[19,2],[24,1],[67,2],[48,1],[35,2],[11,1]],'doc':[[78,1],[74,3],[75,1]],'dd0c':[[77,10]],'c100':[[77,1]],'0008':[[74,1]],'tas':[[1,1],[62,1],[44,5],[67,3],[5,3],[63,3],[59,2],[15,5],[39,2],[47,1],[4,1],[7,1],[65,7]],'excuse':[[78,1]],'command':[[19,6],[77,4],[12,1],[16,3],[17,1],[15,1],[21,4],[23,1],[71,2],[3,1],[40,1],[7,1],[11,2]],'svgalib':[[3,3]],'stuck':[[12,1],[48,1]],'sockets':[[21,1]],'improves':[[10,1],[11,1]],'confuse':[[77,2]],'portability':[[3,1]],'0070h':[[74,3]],'pulling':[[77,1],[30,1]],'jmp':[[55,1],[77,9]],'18ff':[[67,1]],'occurring':[[50,1]],'nybbles':[[77,1]],'interrupts':[[77,20],[75,2]],'part2':[[50,1]],'1900':[[67,1]],'extra':[[19,1],[50,1],[30,1],[77,2],[74,2],[59,2],[54,1],[78,7],[70,1],[72,4],[75,1],[10,1],[7,1]],'love':[[79,1]],'find':[[55,2],[53,1],[67,4],[28,1],[77,2],[74,1],[56,1],[64,1],[5,1],[59,1],[49,2],[23,1],[54,1],[43,2],[60,2],[48,2],[75,1],[40,3],[58,2]],'moreover':[[75,1]],'search':[[53,2],[67,6],[28,1],[61,1],[42,4],[56,1],[27,1],[39,2],[5,3],[9,3],[15,2],[41,8],[54,1],[6,2],[66,2],[4,2],[48,1],[40,26],[7,4],[65,2]],'later':[[17,1],[59,1],[54,1],[78,2],[77,2],[48,1],[3,1],[40,1],[58,1]],'shot':[[59,2],[60,1]],'boost':[[34,1],[11,1],[5,1]],'limit':[[61,2],[13,1],[77,2]],'limited':[[33,1],[67,1]],'papers':[[78,1]],'flattering':[[78,1]],'0fff':[[67,2]],'scope':[[60,2],[58,1]],'f18':[[59,1]],'show':[[62,1],[77,2],[13,1],[52,1],[8,1],[5,1],[35,1],[59,2],[51,2],[54,1],[78,1],[43,1],[60,1],[4,1],[48,1],[75,1],[11,1]],'modifies':[[59,1]],'author':[[78,1],[15,2],[23,3],[70,3],[12,1],[13,1],[48,1],[65,1]],'mapping':[[63,2],[1,1],[67,3],[4,1],[13,1],[3,1],[11,2]],'shots':[[59,1]],'bible':[[66,1]],'paint':[[59,4],[48,1],[60,1]],'core':[[58,1],[73,1],[9,1],[68,1],[10,2],[27,1]],'wasok':[[61,2]],'w0dn':[[77,1]],'aaaa':[[50,4]],'cleaned':[[13,1],[5,1]],'unpause':[[59,1],[9,1],[22,1],[48,1],[40,1],[50,1]],'40000h':[[74,1]],'corner':[[59,5],[50,2],[27,2]],'si_gamepad':[[70,4]],'speedup':[[64,1],[5,1]],'engineer':[[55,1]],'semicolon':[[59,1]],'vertical':[[72,1],[78,6],[40,1],[67,2],[5,1]],'sweet':[[67,1]],'tone':[[74,3]],'complicated':[[77,3]],'hotkeys':[[30,2],[13,1],[8,1],[5,2],[17,1],[27,3],[9,1],[15,2],[21,2],[23,4],[24,1],[26,1],[4,1],[37,5],[41,2],[33,2],[7,1],[11,4]],'cleaner':[[55,1]],'indirectly':[[55,2],[75,1]],'048x':[[67,1]],'pal':[[19,7],[74,12],[35,4],[27,2],[5,1],[9,1],[25,9],[70,2],[2,1],[4,1],[32,5],[10,3],[7,1]],'scanning':[[12,1]],'anyone':[[57,1],[48,1]],'grain':[[75,1]],'revisions':[[75,3]],'capability':[[55,1],[13,2],[67,1]],'computer':[[21,2],[35,1]],'performs':[[59,2],[77,3]],'writable':[[74,4]],'inputtable':[[60,1]],'researching':[[77,1]],'li#':[[77,2]],'understanding':[[78,1],[79,1]],'oam':[[78,7]],'skipfirst':[[59,4]],'solaris':[[3,1]],'meaning':[[4,1],[62,1]],'tracer':[[54,1],[5,1]],'having':[[7,1],[30,1],[62,1],[61,1],[77,1],[59,2],[15,1],[78,2],[48,1],[75,1],[40,1],[11,1],[18,1]],'trigger':[[59,3],[77,1],[53,2],[30,3]],'shapedefs':[[62,1]],'dcfb':[[77,1]],'maximize':[[11,1]],'ultimately':[[78,1],[48,1]],'400b':[[75,6]],'implement':[[78,3]],'accomplished':[[66,1]],'transfered':[[78,1]],'occurence':[[78,1]],'generictips':[[65,1]],'absolutely':[[61,1]],'0400':[[67,1]],'getimmediate':[[59,1],[5,1]],'excite':[[48,1]],'0071h':[[74,1]],'technical':[[78,2],[1,2],[76,1],[77,1],[68,2],[69,1]],'produced':[[75,3],[56,1],[65,1]],'overhauling':[[6,1]],'unfreeze':[[10,1]],'gfceux':[[12,4]],'|18':[[75,1]],'debian':[[5,1]],'safe':[[4,1],[48,1],[40,1],[27,1]],'japenese':[[48,1]],'numbers':[[46,2],[62,1],[67,1],[60,2],[61,1],[50,1],[74,1],[77,2]],'241':[[78,1],[50,1]],'energy':[[78,6],[40,5],[67,4]],'recently':[[38,5]],'apply':[[59,1],[54,1],[72,1],[78,1],[50,3],[62,1]],'perl':[[57,1]],'anthony':[[3,1]],'stateful':[[59,1]],'communities':[[1,1]],'disable':[[19,2],[30,2],[50,1],[77,4],[20,1],[56,1],[8,1],[35,2],[64,1],[59,1],[29,2],[34,1],[75,13],[10,1],[40,1],[11,1],[7,2]],'create':[[55,3],[50,2],[62,1],[61,1],[56,2],[59,7],[15,1],[49,1],[78,1],[60,5],[40,1],[7,1],[58,1]],'float':[[59,3]],'sf_':[[77,1]],'uud':[[77,1]],'hides':[[27,1]],'miscellanious':[[78,1],[75,2]],'purple':[[59,1]],'mostly':[[61,1],[9,1],[48,1],[25,1],[54,1],[77,1]],'shinwa':[[30,1]],'give':[[77,3],[48,1],[51,1],[67,1]],'via':[[78,6],[21,1],[23,1],[51,1],[30,1],[75,3],[69,1],[27,1]],'320x239':[[59,1]],'operating':[[3,1],[18,1],[64,1]],'pro':[[40,1]],'5205':[[74,4]],'ch2':[[74,2]],'successful':[[77,1]],'planes':[[59,1]],'sp`0':[[77,1]],'legal':[[77,1]],'switches':[[19,3],[24,1],[27,1]],'referencing':[[50,1]],'automagically':[[77,1]],'concepts':[[63,1],[78,1],[1,1]],'pasting':[[61,1],[48,1]],'operates':[[77,1],[74,1],[75,1],[55,1]],'mmc3':[[78,4]],'january':[[3,1]],'does':[[55,1],[50,1],[67,2],[61,2],[12,2],[52,1],[74,1],[56,1],[35,1],[27,2],[77,19],[59,4],[51,1],[78,5],[70,1],[43,1],[60,2],[4,1],[72,1],[48,2],[75,2],[40,3],[11,2]],'ending':[[70,1]],'tricks':[[78,1]],'1000000ths':[[74,1]],'get':[[65,1],[55,1],[62,1],[61,3],[12,2],[13,1],[74,2],[77,1],[8,2],[5,1],[17,1],[59,9],[54,1],[29,1],[64,1],[78,2],[6,2],[60,3],[48,4],[75,2],[57,1],[11,3],[7,1]],'volumes':[[33,1]],'bool':[[70,5],[59,23]],'enabled':[[75,7],[79,2],[55,1],[19,4],[30,1],[38,6],[50,3],[61,1],[74,1],[35,1],[5,3],[27,9],[78,1],[29,8],[6,1],[4,2],[48,1],[32,1],[10,2],[33,1],[7,3],[11,1]],'horton':[[74,1]],'relivant':[[78,1]],'bcc':[[77,2]],'share':[[78,2],[67,1],[79,1]],'cannot':[[59,1],[15,1],[78,1],[55,1],[53,1],[70,1],[77,2]],'encountered':[[59,1],[77,1]],'knows':[[12,1]],'dummy':[[71,3],[78,4]],'registerafter':[[59,1]],'salt':[[75,1]],'sourceforge':[[3,2]],'conte':[[75,1]],'slider':[[11,1]],'searches':[[40,2]],'inputdisplay':[[19,3]],'parsed':[[70,2]],'dd09':[[77,4]],'gun':[[30,1],[62,1]],'logical':[[59,3],[77,2],[78,1],[57,2]],'fresh':[[14,1]],'broad':[[58,1]],'disassembled':[[50,1]],'rerecord':[[70,1],[59,3],[27,3]],'examples':[[60,1],[61,1],[77,1],[32,1],[50,1],[18,1]],'capabilities':[[59,1],[78,2],[67,1]],'taseditor':[[5,9],[59,25],[44,2]],'beginning':[[38,4],[50,2],[61,2],[77,1],[5,1],[59,1],[15,1],[23,3],[70,1],[78,3],[40,1],[65,2]],'placing':[[52,1]],'eliminates':[[57,1]],'recognized':[[7,1]],'dd0b':[[77,6]],'fortunately':[[40,1]],'integer':[[59,2],[77,2],[78,1],[70,5]],'decremented':[[78,1]],'bigbad':[[32,6]],'few':[[62,1],[67,1],[74,2],[59,1],[21,1],[14,1],[29,1],[78,3],[60,6],[48,2],[75,1],[3,1],[40,1],[79,1]],'row':[[78,1],[48,1],[20,1],[67,10]],'configure':[[17,1],[33,1],[30,2]],'elements':[[66,1],[2,1],[5,1]],'channel':[[75,84],[33,3],[5,1]],'combination':[[61,1],[77,2],[37,1]],'itself':[[59,4],[78,1],[53,4],[62,1],[50,1],[43,1],[77,1],[48,1],[75,2]],'ranges':[[78,3],[24,1],[50,1]],'idea':[[48,1],[74,2],[55,1]],'attempting':[[59,1],[13,1],[25,1],[11,1],[62,1]],'speed':[[7,1],[65,2],[19,2],[67,6],[13,1],[74,9],[35,1],[59,1],[22,3],[23,4],[6,1],[24,14],[4,5],[34,3],[60,1],[75,2],[11,3],[58,1]],'blocks':[[75,1],[67,4],[74,1]],'10#newname4#':[[50,1]],'caption':[[4,1],[10,1]],'4003':[[75,6]],'bullets':[[62,1]],'article':[[77,2]],'clv':[[77,3]],'tied':[[75,1]],'reduce':[[78,2],[33,1],[35,1]],'007a':[[74,1]],'sensitive':[[59,2],[61,1],[19,1],[60,1]],'blowing':[[30,1]],'termination':[[59,1]],'pipe':[[70,3]],'shows':[[11,2],[54,4],[43,1],[4,1],[77,3],[52,1],[75,3],[10,1],[7,2],[37,1]],'when':[[50,11],[61,12],[77,24],[35,6],[27,11],[15,4],[29,1],[80,1],[24,1],[48,4],[38,4],[28,3],[12,3],[13,9],[20,3],[36,5],[64,3],[5,13],[21,1],[22,1],[43,3],[33,3],[11,10],[19,1],[67,3],[74,1],[59,16],[9,2],[23,5],[51,1],[54,4],[60,12],[71,1],[4,18],[10,4],[40,6],[7,6],[65,1],[55,4],[53,2],[52,2],[8,2],[78,20],[70,4],[6,4],[34,1],[72,3],[75,20],[3,1]],'detailed':[[78,1],[15,1],[67,1],[50,1]],'backward':[[59,1]],'emulua':[[13,1],[60,1]],'createfrompng':[[59,1]],'redrawn':[[59,1]],'unpredictably':[[77,1]],'virtual':[[4,1]],'works':[[59,3],[78,3],[46,1],[55,1],[53,1],[50,1],[77,1],[13,1],[48,2],[74,1],[11,2]],'segmentation':[[6,1]],'launches':[[9,1]],'place':[[30,2],[77,4],[61,1],[13,1],[74,1],[59,1],[15,1],[78,3],[48,1],[75,2],[10,1],[18,1]],'never':[[77,2],[21,1],[78,4],[55,1],[58,1]],'setlagflag':[[59,1],[5,1]],'tile':[[78,12],[51,2],[49,1],[55,3],[66,1],[72,1],[48,2],[52,3],[79,2]],'filling':[[56,1]],'addhealthpoints':[[50,1]],'meant':[[3,1]],'figured':[[48,1]],'keyrecording1':[[61,1]],'deccmp':[[77,2]],'luascripts':[[61,1],[62,2]],'declaring':[[60,1]],'whatsoever':[[78,1]],'togglable':[[7,2],[8,1]],'situation':[[48,1],[46,2],[29,1],[38,1]],'decreased':[[40,2]],'block':[[78,1],[13,1],[48,1],[67,24]],'cccvvvv':[[74,1]],'049x':[[67,1]],'timestamp':[[71,4]],'newlines':[[70,2]],'halted':[[75,2]],'increased':[[78,1],[15,1],[3,1],[33,1],[11,1],[40,1]],'m016':[[5,1]],'operate':[[40,1],[75,1],[78,1]],'assembly':[[49,2],[50,4]],'sequence':[[77,4],[75,6],[78,1],[55,1]],'v%_0ah':[[77,2]],'shownotes':[[5,1]],'subtitle':[[70,5],[38,1],[11,2]],'enable':[[55,2],[19,2],[30,1],[50,2],[77,3],[13,3],[56,1],[64,2],[8,2],[27,1],[78,1],[29,1],[4,3],[75,14]],'ouch':[[40,1]],'teenagemutantninjaturtles':[[62,1]],'series':[[17,1],[77,6],[75,1],[50,1]],'hardwired':[[78,1]],'officially':[[48,1]],'differently':[[70,1],[77,5]],'operation':[[59,3],[75,6],[77,21],[78,5]],'seeking':[[4,1]],'task':[[10,1]],'0078':[[74,1]],'frames|':[[78,1]],'unlicensed':[[3,1]],'conf':[[5,2]],'spaces':[[7,1]],'faq':[[63,3],[1,1],[56,1]],'fffa':[[77,2],[50,1],[67,1]],'boolean':[[61,1],[50,1]],'arkanoid':[[70,1],[59,1],[30,3]],'remodel':[[4,1]],'predefined':[[59,6],[60,2]],'jetpack':[[62,1]],'found':[[78,5],[41,1],[30,1],[42,1],[68,1],[75,7],[56,1],[58,1]],'mar':[[72,1]],'50fps':[[34,1],[27,1]],'wouldn':[[48,1],[75,1]],'cpus':[[64,1]],'versions':[[69,1],[59,2],[9,1],[15,1],[23,2],[45,1],[75,1],[3,1],[64,1],[58,2]],'substraction':[[77,1]],'1984':[[77,1]],'1000|':[[67,1]],'tweaked':[[4,1],[25,1]],'4007':[[75,6]],'xxx000x1':[[77,1]],'dsiplay':[[10,1]],'turtle':[[67,1]],'replicate':[[25,1]],'acceleration':[[35,2],[64,3]],'revamp':[[5,1]],'001f':[[50,1]],'ok#00':[[50,1]],'retrieve':[[59,5]],'say':[[59,1],[78,1],[29,1],[43,1],[48,1],[74,1],[40,2]],'ffff':[[55,1],[53,4],[67,2],[50,1],[72,1],[74,6],[77,1],[56,2]],'6000h':[[74,1]],'measured':[[77,1],[75,2]],'source':[[77,1],[75,1],[3,3],[55,2]],'pay':[[78,1]],'died':[[61,2]],'prompted':[[48,1],[21,1],[23,2]],'closely':[[40,1],[13,1],[54,1]],'int8':[[72,1]],'greater':[[59,1],[23,1],[43,1],[77,3],[40,2],[27,1]],'silence':[[75,1]],'read':[[19,5],[50,3],[67,1],[61,1],[74,3],[77,59],[59,19],[15,1],[23,12],[51,1],[60,6],[10,3],[40,4],[7,4],[46,1],[55,6],[38,13],[53,2],[12,1],[13,2],[36,4],[8,2],[5,2],[78,12],[6,1],[72,4],[75,5],[3,1],[11,1]],'python':[[3,3],[57,1]],'doubles':[[77,1],[5,1]],'mirroring':[[72,1],[52,2],[67,3],[7,1]],'exponentially':[[61,1]],'knobs':[[32,1]],'guides':[[63,2],[49,1],[16,1],[1,2],[39,1]],'ans':[[3,1],[1,2]],'customizing':[[11,1],[20,2]],'mute':[[13,1],[12,1],[33,3],[11,3]],'substitution':[[40,3],[48,4]],'chip':[[77,2],[74,6],[78,1]],'generation':[[78,3],[75,4]],'took':[[78,1],[48,1]],'getting':[[17,2],[58,1],[59,1],[38,1],[61,1],[52,1],[16,1],[57,1],[11,2],[5,1]],'endian':[[11,1]],'direction':[[77,1],[75,1]],'bullethell':[[62,1]],'pull':[[77,6],[75,1],[33,1],[30,1],[37,1]],'x11x':[[77,1]],'stored':[[67,1],[28,3],[77,3],[74,1],[64,2],[27,1],[59,4],[70,3],[71,1],[72,4],[10,2],[40,3],[11,2]],'keeps':[[59,2],[48,1],[55,2]],'appears':[[59,1],[75,1],[77,1],[38,3]],'11111000':[[79,2]],'even':[[46,1],[53,2],[67,1],[61,1],[74,1],[77,9],[35,2],[17,1],[59,12],[78,4],[23,1],[60,2],[75,2],[3,1],[11,3]],'dictionary':[[48,6]],'network':[[26,1],[31,2],[8,1]],'hovering':[[50,1]],'xii':[[77,2]],'rgp9':[[77,2]],'missed':[[59,1]],'streams':[[78,1]],'crashed':[[53,1]],'max':[[11,1]],'consequence':[[70,1],[77,1]],'haven':[[78,1],[48,1],[75,1]],'asq_realityb':[[25,1]],'special':[[55,2],[50,4],[67,1],[77,4],[13,4],[74,2],[35,2],[27,1],[78,1],[51,1],[75,2],[7,1],[11,1]],'started':[[17,2],[59,5],[65,1],[38,1],[43,1],[61,7],[48,2],[16,1],[3,1],[57,2],[11,1],[58,1]],'rheiny':[[3,1]],'5ff8':[[74,1]],'cpy':[[77,3]],'advances':[[60,1],[65,1]],'eject':[[21,5],[24,1]],'29651n52':[[77,1]],'including':[[59,1],[15,1],[78,1],[72,1],[13,1],[52,1],[3,2],[10,1],[64,1],[75,1]],'than':[[57,1],[46,1],[19,2],[30,1],[50,2],[61,2],[12,1],[74,2],[77,15],[35,8],[27,3],[59,7],[15,3],[78,6],[70,1],[43,2],[4,1],[72,1],[48,2],[75,5],[40,5],[11,2],[18,1]],'006e':[[74,2]],'2008':[[12,1],[13,1],[3,5],[14,1],[15,1],[67,1]],'space':[[59,3],[70,1],[53,2],[30,1],[61,1],[72,1],[74,6],[56,2],[40,3]],'delta':[[5,1]],'sounding':[[75,3]],'represented':[[70,2]],'march':[[4,1],[3,1],[71,1],[11,1]],'hooker':[[48,18],[3,1],[11,1],[39,1]],'begin':[[59,1],[22,1],[23,4],[55,1],[70,1],[50,2],[77,9],[65,1]],'engineering':[[66,1],[75,3]],'10240':[[40,2]],'02ff':[[67,1]],'fcuex':[[19,1]],'nitsujrehtona':[[3,2]],'encompassing':[[2,1]],'background':[[27,2],[59,5],[78,8],[19,2],[20,3],[79,5],[35,1],[11,1]],'unchecked':[[36,3],[35,1],[28,1]],'4008':[[75,13]],'bankswitchable':[[74,1]],'went':[[75,1]],'mix':[[60,1]],'rolledback':[[61,1]],'efficiency':[[5,1]],'where':[[61,1],[74,4],[77,2],[27,2],[59,5],[15,1],[23,3],[54,1],[60,2],[48,2],[10,1],[46,4],[38,1],[53,4],[28,10],[12,5],[13,6],[64,3],[78,8],[6,1],[75,6],[33,1],[11,5],[58,2]],'smaller':[[59,1],[48,1],[77,9]],'situations':[[61,2],[46,1],[38,2],[11,1],[27,1]],'employs':[[61,1],[11,2]],'reminding':[[13,1]],'2c02':[[78,3],[76,1],[67,3]],'04ax':[[67,1]],'0x0123456789abcdef':[[70,1]],'editing':[[65,1],[59,1],[15,1],[23,1],[70,1],[53,3],[62,1],[66,3],[4,1],[20,1],[5,2]],'obscure':[[3,1]],'listening':[[55,1]],'calculate':[[77,5],[78,1]],'religion_mode_on':[[77,1]],'mem':[[78,4]],'won':[[59,6],[54,1],[53,1],[30,1],[80,1],[77,1],[13,1],[48,1],[40,1],[56,1],[5,1]],'saner':[[13,1]],'editor':[[50,3],[67,3],[56,2],[39,1],[59,4],[15,1],[23,1],[49,1],[66,3],[60,1],[4,2],[48,1],[10,5],[40,7],[7,3],[65,4],[55,3],[53,8],[44,4],[20,4],[5,4],[6,1],[43,2],[3,1],[11,3],[58,1]],'addition':[[30,1],[77,9],[64,2],[27,1],[59,1],[9,1],[15,1],[6,1],[4,1],[75,1],[3,1],[7,1]],'composition':[[78,1]],'reply':[[79,1],[80,1]],'quit':[[4,1],[60,1]],'116':[[5,1]],'launch':[[5,1]],'mmc5':[[78,2],[13,3],[14,1],[74,7],[67,1]],'sine':[[40,1],[78,1]],'8000':[[55,1],[53,4],[67,1],[72,2],[74,4],[56,2]],'isn':[[79,1],[56,1],[7,1],[30,1]],'qwerty':[[59,1]],'ruined':[[77,1]],'3w@`':[[77,1]],'explains':[[67,1],[26,1],[16,1],[80,1],[24,1],[27,1]],'gave':[[10,1]],'corrupt':[[55,1]],'double':[[46,1],[50,4],[28,1],[56,1],[5,2],[37,1],[27,2],[21,1],[15,2],[29,2],[78,1],[75,1],[40,5]],'tostring':[[59,1]],'quirks':[[60,1]],'machine':[[77,5],[50,1],[5,1]],'bug':[[11,13],[9,4],[15,1],[6,2],[4,1],[12,5],[13,9],[10,3],[7,5],[5,11]],'did':[[59,1],[74,2],[77,2],[78,1],[7,1],[62,1]],'moment':[[17,1],[59,1],[24,2]],'isrunend':[[61,1]],'amoung':[[75,1]],'now':[[61,3],[74,2],[77,2],[59,1],[9,6],[14,1],[15,5],[23,2],[60,4],[4,4],[48,1],[10,4],[40,2],[7,4],[65,1],[55,1],[44,1],[12,4],[13,10],[8,8],[5,11],[78,4],[70,1],[43,1],[72,1],[75,7],[11,14]],'arguments':[[19,1],[59,2]],'looping':[[75,4]],'commodore':[[77,5]],'needed':[[59,1],[15,1],[23,2],[78,1],[62,1],[77,1],[48,2],[58,2]],'microprocessors':[[77,2]],'exceptions':[[77,2]],'ishihara':[[75,1]],'dc0c':[[77,1]],'inflating':[[59,1]],'techniques':[[77,1]],'mygame':[[50,7]],'update':[[50,1],[52,2],[74,1],[59,1],[15,1],[54,2],[71,3],[4,3],[48,1],[75,3],[10,3],[40,3],[7,1],[65,1]],'appeared':[[3,1],[78,1],[80,1]],'truly':[[77,1]],'pressing':[[17,1],[59,2],[22,1],[23,3],[53,1],[50,1],[24,1],[30,2],[60,1],[62,1]],'rise':[[78,1]],'appearing':[[78,1],[75,1]],'behaviour':[[77,1],[75,2],[78,3],[5,1]],'bankswitched':[[50,1],[74,2]],'reads':[[59,1],[77,5],[7,1]],'breathe':[[66,1]],'mirror':[[72,2],[67,5]],'end':[[50,1],[61,6],[77,8],[59,6],[21,1],[78,2],[70,1],[60,11],[4,1],[48,2],[75,1],[3,1],[7,1],[58,3]],'chart':[[75,1]],'bmi':[[77,2]],'continuing':[[65,2]],'illustration':[[77,1]],'multiplexed':[[78,1]],'16384':[[67,2]],'exec_count':[[59,1]],'annoying':[[59,1],[78,1]],'paged':[[72,1]],'codec':[[22,1]],'mv#b@3':[[77,1]],'cias':[[77,2]],'impossible':[[48,1],[54,1]],'selection':[[78,2],[6,4],[77,2],[48,19],[7,1],[5,1]],'child':[[12,1]],'right':[[19,2],[50,5],[61,3],[77,6],[56,1],[35,1],[27,3],[59,6],[51,1],[23,1],[29,2],[54,1],[60,1],[48,3],[40,7],[53,4],[30,5],[64,2],[5,1],[17,2],[78,2],[70,3],[43,1],[75,3],[11,2]],'monitors':[[78,2],[43,2]],'desync':[[7,1]],'dumb':[[48,1]],'way':[[55,1],[50,1],[30,1],[44,1],[61,1],[62,1],[74,5],[77,5],[56,1],[59,1],[15,2],[23,2],[54,1],[78,3],[60,1],[48,1],[57,1],[79,1],[58,1]],'reg':[[78,1],[5,1]],'exhausts':[[61,1]],'filebase':[[28,1]],'there':[[50,5],[67,1],[61,3],[74,4],[77,5],[27,1],[59,8],[9,1],[23,2],[54,2],[80,1],[60,5],[48,4],[10,1],[40,6],[79,2],[46,1],[55,2],[38,2],[53,3],[62,1],[12,1],[20,1],[64,3],[78,4],[75,3],[3,1],[11,1]],'j2rb':[[72,1]],'settings':[[46,2],[30,1],[50,2],[61,1],[36,1],[35,2],[5,1],[17,1],[27,2],[26,3],[39,2],[49,1],[24,1],[34,1],[32,1],[33,1],[11,1]],'originally':[[59,1],[42,1],[75,1],[3,2],[41,1]],'further':[[3,1],[48,1]],'boxes':[[59,1],[15,2],[29,1],[43,1],[48,2],[40,1],[7,1],[56,1]],'okattempts':[[61,1]],'somevalue':[[60,1]],'his':[[77,2],[75,3],[25,1]],'tabbed':[[54,1]],'registerexecute':[[59,2]],'hexbackcolorb':[[20,1]],'increase':[[22,1],[9,1],[23,1],[75,4],[6,1]],'esper2':[[74,1]],'sequences':[[75,9],[5,1]],'forbid':[[13,1],[50,2]],'focus':[[27,3]],'gpa':[[77,2]],'pops':[[60,1],[58,1]],'stays':[[78,1]],'infinite':[[40,1],[59,2],[75,1]],'tapanim':[[77,1]],'loop':[[59,4],[75,1],[77,4],[60,3]],'doesn':[[46,1],[62,1],[77,1],[8,1],[5,1],[59,2],[78,1],[4,1],[72,1],[48,1],[32,1],[10,2],[75,1],[7,3]],'quite':[[59,1],[54,1],[77,3],[78,1],[67,1]],'blocking':[[59,1]],'wav':[[22,8]],'expandable':[[53,1]],'tale':[[77,1]],'amounts':[[35,1]],'isa':[[78,1]],'plugged':[[30,2]],'mentioned':[[59,1],[75,1],[78,1]],'1999':[[79,1],[74,4],[80,1]],'playmovie':[[19,12]],'ontop':[[78,1]],'subtitler':[[62,1]],'fme':[[74,2]],'dehacked':[[60,3]],'clocked':[[75,11]],'3rd':[[70,1],[78,3]],'consist':[[70,2],[23,1]],'monitoring':[[65,1],[61,1],[78,1],[40,1],[11,1],[43,5]],'sorry':[[10,1],[79,1],[8,1]],'amd':[[11,1]],'c000#newname1#comment1':[[50,1]],'prelim':[[74,1]],'modified':[[59,4],[21,2],[48,1],[3,2],[74,1],[77,1]],'surprise':[[48,1]],'higher':[[78,1],[54,1],[61,1],[72,1],[32,1],[75,1],[77,1]],'same':[[50,4],[67,4],[61,4],[74,2],[77,11],[59,10],[9,1],[23,1],[54,1],[71,2],[24,1],[60,5],[48,4],[32,1],[40,4],[18,1],[65,1],[7,1],[55,2],[38,16],[30,2],[62,1],[45,1],[52,1],[5,1],[78,8],[25,1],[70,1],[75,2],[58,1]],'champion':[[3,1]],'400f':[[75,4]],'percents':[[24,1]],'flipped':[[74,1]],'denotes':[[77,4],[74,1],[40,3],[60,1]],'chosen':[[50,1]],'2004':[[77,2],[78,1],[3,3],[10,1],[71,1]],'junk':[[59,1]],'additionally':[[59,1],[75,1],[78,1]],'was':[[67,1],[61,1],[74,1],[77,10],[56,1],[59,7],[9,1],[14,1],[15,1],[23,1],[47,1],[54,1],[60,1],[48,1],[10,2],[40,5],[7,2],[65,3],[55,11],[38,11],[44,1],[13,5],[42,1],[64,1],[5,2],[17,1],[78,17],[21,6],[41,1],[70,6],[6,1],[75,4],[3,22],[11,3]],'manage':[[61,1]],'ball':[[9,1],[75,1]],'bvc':[[77,3]],'yellow':[[55,2],[59,1]],'releases':[[13,1],[3,1],[7,1],[5,1]],'outputs':[[78,3],[49,1],[75,6]],'msg':[[59,1]],'setplayback':[[59,1]],'readbyterange':[[59,1],[13,1]],'revolutionizes':[[15,1]],'romfilename':[[70,1]],'edcba9876543210':[[75,1]],'2c00|':[[67,1]],'tested':[[78,1],[55,1],[77,1],[48,3],[75,1],[3,1],[10,1]],'has':[[50,4],[67,3],[61,5],[74,5],[77,17],[27,2],[59,7],[9,1],[15,6],[29,1],[54,2],[60,2],[40,6],[65,2],[55,2],[38,4],[30,1],[44,1],[53,1],[42,1],[52,1],[36,1],[8,2],[64,3],[78,7],[41,1],[6,1],[43,1],[75,12],[3,3],[11,1]],'picked':[[3,1]],'3w@':[[77,1]],'volume':[[59,5],[30,1],[74,2],[75,19],[10,1],[33,8]],'fast':[[65,2]],'sounddisplay2':[[5,1]],'rgb':[[59,1],[20,1],[10,1],[32,1],[7,1]],'hadn':[[54,1]],'simulate':[[32,1]],'maru':[[48,4]],'fully':[[59,2],[15,1],[74,1],[7,2]],'again':[[55,1],[67,1],[61,1],[77,4],[59,3],[9,1],[21,1],[54,1],[78,3],[60,1],[48,1],[3,2],[10,2]],'thinking':[[44,1]],'code':[[50,10],[67,2],[61,3],[74,3],[77,10],[56,24],[59,16],[9,1],[49,4],[54,5],[66,2],[4,2],[10,1],[40,3],[7,2],[55,35],[53,2],[12,1],[13,1],[64,2],[5,3],[70,4],[75,2],[3,6],[11,1]],'bankswitch':[[53,1],[74,1]],'xdsp':[[3,1]],'input1':[[13,1]],'unexpectingly':[[60,1]],'drivers':[[77,1],[5,1]],'fffd':[[67,1]],'sbc':[[77,26]],'cable':[[21,1]],'extends':[[3,1]],'devices':[[70,3]],'eliminate':[[67,1]],'psid':[[74,1]],'failed':[[61,1],[65,2]],'fixed':[[18,1],[77,1],[12,5],[13,12],[74,1],[8,4],[5,27],[78,3],[9,4],[14,1],[15,1],[70,1],[6,12],[4,17],[75,2],[10,9],[11,12],[7,4]],'10x1':[[77,1]],'developing':[[48,1]],'hear':[[75,1]],'ror':[[77,21]],'point':[[17,1],[78,1],[21,1],[23,3],[49,1],[38,1],[71,1],[4,1],[75,3],[40,2],[79,1],[65,2]],'respective':[[70,1]],'one':[[50,8],[67,4],[61,5],[74,4],[77,20],[59,19],[15,1],[49,1],[51,1],[60,8],[4,1],[48,3],[32,1],[10,2],[40,3],[18,1],[65,3],[7,1],[55,1],[30,6],[12,1],[64,1],[78,9],[22,1],[25,1],[43,3],[75,5],[3,1],[58,3]],'156':[[5,1]],'signals':[[77,1],[75,3],[78,1]],'variable':[[59,8],[61,7],[72,3],[70,2],[78,1],[60,1]],'positioning':[[4,1]],'predecrement':[[77,1]],'c64':[[77,3],[74,1]],'drawtext':[[59,1]],'5fff':[[67,1]],'pbin':[[72,1]],'archive':[[59,2],[15,2],[66,1],[12,2],[13,3],[48,1],[18,1]],'077h':[[74,1]],'32k':[[75,2]],'instead':[[46,1],[55,2],[53,2],[50,6],[61,1],[77,5],[27,1],[59,4],[9,2],[14,1],[78,3],[80,1],[60,1],[48,2],[75,2],[10,4],[33,1],[7,2]],'part3':[[50,1]],'backwards':[[59,3],[72,1],[10,1],[62,1]],'guid':[[70,3],[15,1]],'nsfs':[[32,1]],'alteration':[[46,1]],'represents':[[59,1],[55,1],[53,1],[75,1],[32,1],[40,2],[56,1]],'order':[[55,2],[50,1],[28,1],[45,1],[61,1],[62,1],[67,1],[59,1],[21,1],[23,2],[70,1],[78,7],[48,2],[32,2],[75,2],[65,2]],'c006#newname3#multilinecomment':[[50,1]],'lfsr':[[72,1]],'`&z0':[[77,1]],'timing':[[17,1],[78,8],[26,2],[70,1],[19,1],[34,2],[75,4],[77,3],[10,1],[11,1],[27,1]],'conflict':[[5,2]],'levels':[[77,1],[75,1],[55,1],[33,1],[66,2]],'problematic':[[40,1]],'switchy':[[59,1]],'tools':[[1,2],[55,1],[67,1],[13,1],[39,4],[5,2],[9,2],[15,4],[49,1],[66,6],[48,3],[3,4],[40,1],[7,1],[65,4]],'freebsd':[[3,1]],'biggest':[[48,1]],'exec_time':[[59,1]],'claim':[[77,1],[65,1]],'numbered':[[74,1]],'sits':[[74,1]],'sq2':[[75,10]],'enhancing':[[5,1]],'accuracy':[[10,1],[59,1],[27,1]],'shu':[[11,1]],'tweaking':[[48,1]],'open':[[55,1],[38,2],[50,6],[28,1],[45,1],[62,2],[13,4],[77,1],[36,2],[8,1],[27,3],[17,2],[15,3],[23,3],[29,2],[48,3],[40,1],[11,4],[18,1]],'shared':[[78,1],[75,1]],'pagedown':[[59,1]],'uuencoded':[[77,1]],'&b%_3bxi':[[77,1]],'progress':[[59,1]],'circuitry':[[78,2]],'button':[[55,1],[38,2],[30,11],[50,6],[53,1],[61,5],[62,1],[37,2],[5,2],[59,14],[9,1],[15,1],[21,2],[23,1],[24,3],[43,1],[4,1],[60,1],[48,11],[70,6],[71,1],[40,8],[11,5]],'yourself':[[62,1],[48,1],[60,1]],'complimentery':[[78,1]],'prevented':[[9,1],[5,1]],'ntsccolor':[[13,1]],'misrepresented':[[78,1]],'persist':[[59,1]],'loc':[[77,3]],'merge':[[3,1],[2,1]],'continuously':[[50,1]],'watching':[[67,1]],'dcfd':[[77,2]],'randomness':[[77,1]],'val':[[77,5],[75,2]],'decoded':[[59,2],[75,1]],'layout':[[63,1],[67,2],[5,1]],'wrong':[[15,1],[48,1],[10,1],[5,1]],'inserting':[[43,1],[21,1],[24,1]],'multiplier':[[35,1],[74,1]],'documented':[[48,1],[20,1]],'overridden':[[28,1]],'jones':[[6,1]],'resets':[[40,1],[50,1],[75,1]],'mega':[[40,5]],'kept':[[61,2],[50,1],[78,1]],'keep':[[55,1],[50,1],[30,1],[61,1],[74,1],[77,1],[59,3],[54,1],[78,2],[43,1],[34,1],[75,1],[18,1],[58,1]],'hikari':[[30,1]],'makedata':[[55,1]],'board':[[67,2]],'ppc':[[12,1]],'loads':[[59,4],[78,1],[23,1],[38,2],[19,2],[77,3],[12,1],[74,1],[75,1],[11,1],[27,1]],'www':[[60,1],[58,1]],'kirby':[[67,1]],'dual':[[74,3]],'obsolete':[[5,1]],'following':[[1,1],[50,3],[67,1],[77,10],[74,1],[69,1],[17,1],[59,5],[21,1],[78,3],[70,4],[60,2],[75,2]],'speedmode':[[60,1],[59,1],[11,1],[58,1]],'noconfig':[[11,1]],'chunk':[[4,1],[72,8],[18,1]],'grapical':[[35,1]],'programmers':[[77,2],[78,1],[60,1],[62,2]],'intact':[[78,1]],'adc':[[77,22]],'skill':[[65,3]],'cdlogger':[[4,1],[7,1]],'8_47':[[77,1]],'_29_':[[80,1]],'understand':[[77,1],[78,3],[56,1],[57,1]],'describes':[[78,2],[25,1],[38,1],[64,1]],'9010':[[74,1]],'ensure':[[59,2],[77,2],[64,1]],'loadstate':[[17,8],[27,1],[15,2],[23,1],[59,1],[19,3],[6,1],[38,6],[7,3],[11,1]],'dd0d':[[77,11]],'fairly':[[53,1]],'comment':[[77,2],[23,2],[70,5],[60,1],[50,9]],'truecolor':[[59,1]],'attain':[[75,1]],'just':[[55,1],[50,4],[62,2],[61,3],[13,1],[20,1],[42,1],[77,11],[35,1],[5,1],[27,1],[59,4],[49,1],[54,1],[41,1],[71,1],[43,1],[60,4],[78,6],[72,1],[48,3],[75,1],[40,1]],'inv':[[59,1]],'paying':[[78,1]],'loadstates':[[7,1]],'extracted':[[78,1]],'major':[[78,1],[15,1],[53,1],[12,1],[74,1],[10,1],[11,5],[5,1]],'posted':[[75,1]],'ongoing':[[59,1]],'uwa':[[77,1]],'option':[[38,16],[30,3],[50,4],[12,3],[13,4],[36,1],[42,1],[35,6],[5,14],[17,3],[27,3],[9,1],[15,4],[21,1],[41,1],[52,1],[54,4],[4,6],[59,2],[10,5],[11,5],[7,5]],'cpu':[[50,8],[67,6],[77,6],[5,1],[59,4],[15,1],[51,2],[76,2],[78,12],[72,3],[75,9],[10,3],[7,1]],'dialogs':[[9,1],[13,3],[10,1],[11,1]],'without':[[65,1],[11,2],[67,1],[61,1],[12,2],[13,1],[74,1],[77,1],[5,2],[59,10],[21,1],[78,4],[80,1],[48,3],[75,1],[7,2],[58,1]],'significant':[[59,1],[72,1]],'pretty':[[59,1],[74,1],[78,2]],'frameadvancing':[[60,1]],'zeros':[[55,1]],'canceling':[[11,1]],'rely':[[35,1],[60,1]],'hardware':[[35,5],[59,2],[78,6],[1,1],[4,1],[77,6],[74,1],[68,2],[75,23],[64,3],[18,1]],'funny':[[77,1],[74,1]],'designates':[[50,1]],'implemented':[[78,2],[9,1],[47,1],[3,3],[10,3],[7,2],[11,3]],'containers':[[38,1]],'navigation':[[3,1],[50,2]],'ideas':[[44,1]],'indirect':[[77,8],[50,1]],'tutorial':[[58,1]],'seek':[[50,2],[5,1]],'explained':[[78,1],[60,1]],'08000h':[[74,4]],'poweron':[[59,1],[11,1]],'triplets':[[32,1]],'tatakai':[[8,1]],'omitted':[[59,1]],'cmp':[[77,21]],'wealth':[[66,1],[65,1]],'activated':[[78,3]],'backups':[[8,1],[36,2],[11,1],[7,1]],'activate':[[40,1],[56,1]],'nogui':[[4,1]],'drive':[[21,1]],'pcsx':[[41,1],[42,1]],'utfconverter':[[10,1]],'sometime':[[38,1]],'uint32':[[72,11]],'overincreased':[[13,1]],'experienced':[[60,1]],'containing':[[77,1],[7,1],[5,1]],'lists':[[77,1]],'8x8':[[13,1]],'mwav':[[72,1]],'unified':[[3,1]],'sample':[[59,3],[75,1],[55,1],[33,1]],'know':[[53,1],[62,2],[67,1],[61,1],[74,2],[77,3],[56,1],[59,2],[78,2],[60,1],[48,9],[40,4],[79,2]],'trial':[[61,2],[48,1]],'progression':[[59,1]],'gotcha':[[7,1]],'leftbracket':[[59,1]],'bbitmaster':[[3,1]],'nmi3':[[50,1]],'basis':[[78,1],[32,1]],'reaching':[[36,2],[23,1]],'dff6':[[50,1]],'prevent':[[59,2],[78,1],[53,1],[50,1],[60,1],[61,1],[12,1],[13,1],[77,1],[7,1],[11,2]],'slight':[[35,1],[25,1],[6,1],[27,1]],'subsequent':[[70,1],[59,2]],'lame':[[78,1]],'brk':[[77,28],[67,1]],'galaxian':[[62,1]],'bpl':[[77,13]],'unless':[[50,1],[28,1],[77,1],[27,1],[59,5],[21,2],[23,1],[54,1],[70,3],[78,2],[48,1],[75,1]],'09fffh':[[74,2]],'add':[[53,1],[30,1],[50,10],[77,19],[13,3],[74,1],[56,3],[5,4],[78,2],[49,1],[4,1],[48,3],[32,1],[40,3],[7,1]],'issues':[[11,1],[25,1],[6,2],[12,2],[64,2],[5,1]],'iiii':[[50,1]],'sounds':[[74,1]],'combinations':[[61,1],[77,4],[78,1]],'aop':[[77,1]],'visit':[[23,1]],'described':[[78,4],[75,2],[56,1]],'blow':[[59,1]],'crackle':[[64,2]],'6502':[[51,1],[76,1],[67,2],[77,6],[74,6],[75,4],[40,3]],'savestates':[[38,2],[12,2],[13,3],[36,2],[8,2],[27,6],[17,1],[5,3],[15,3],[23,2],[59,3],[64,3],[60,3],[10,1],[57,1],[7,1],[11,1]],'allowing':[[5,1],[59,1],[36,1],[70,1],[35,1],[11,1]],'decrypt':[[56,1]],'discovered':[[77,1],[75,1]],'coincides':[[78,1]],'available':[[38,4],[67,1],[44,1],[77,4],[16,1],[59,1],[15,1],[29,1],[54,1],[4,1],[75,5],[32,1],[57,1],[18,1],[65,1]],'portions':[[61,1],[6,1],[78,1]],'refers':[[59,1],[50,1],[67,1]],'format':[[65,1],[73,2],[55,1],[45,1],[13,2],[74,5],[8,1],[5,1],[39,1],[59,3],[15,6],[23,2],[54,1],[69,4],[70,16],[71,5],[72,3],[32,1],[40,6],[33,1],[18,5]],'lastkey2':[[61,1]],'prehaps':[[78,3]],'matter':[[74,1],[62,1],[32,1]],'done':[[55,1],[53,1],[61,1],[74,4],[20,1],[77,1],[64,1],[27,1],[78,8],[15,1],[66,1],[60,3],[75,1],[3,1],[40,2],[65,2]],'persistently':[[49,1]],'optimal':[[59,1]],'120hz':[[75,1]],'coinciding':[[78,1]],'intention':[[57,1]],'index':[[59,2],[72,3],[77,15],[78,6],[60,1]],'several':[[50,1],[62,1],[77,1],[42,1],[74,1],[64,1],[25,1],[41,1],[70,1],[71,1],[75,1],[3,1],[40,2]],'length':[[59,3],[78,1],[70,5],[71,2],[60,1],[72,4],[13,1],[74,2],[10,1],[75,41],[11,1],[77,1]],'need':[[46,1],[55,2],[53,1],[50,1],[62,3],[45,1],[61,1],[74,2],[77,3],[17,1],[59,5],[21,1],[78,1],[71,1],[72,1],[48,10],[57,1],[7,1],[58,2]],'computers':[[34,1],[77,1],[35,1],[64,1]],'remappable':[[10,1]],'27th':[[78,1]],'words':[[59,1],[78,2],[70,1],[77,1],[48,6],[74,1]],'summon':[[56,1]],'don':[[55,1],[53,1],[50,2],[62,4],[61,3],[12,1],[77,1],[5,2],[59,3],[21,1],[78,2],[60,2],[48,3],[75,3],[10,1],[79,1]],'|__________________________________________|':[[67,9]],'terminator':[[74,1]],'00fh':[[74,1]],'readability':[[59,1]],'forums':[[3,1]],'dialog':[[50,1],[59,7],[9,4],[15,4],[23,4],[29,2],[4,5],[10,3],[40,1],[7,4],[18,1],[38,4],[53,1],[12,3],[13,6],[36,2],[42,4],[8,3],[5,5],[37,1],[64,2],[41,4],[43,5],[11,13],[58,2]],'rerecords':[[27,1],[5,1]],'0700':[[67,1]],'sure':[[59,2],[22,1],[55,1],[70,1],[61,1],[48,1],[74,1],[40,1]],'compared':[[9,1],[15,1],[3,2],[7,1]],'fc0':[[19,2]],'vint':[[78,9]],'|extra':[[78,1]],'mark':[[3,1],[48,3]],'arriving':[[75,1]],'4011':[[75,4]],'75%':[[59,2]],'rewinding':[[38,2],[9,1]],'waits':[[7,1]],'unit':[[77,1],[21,1],[51,1],[75,14],[78,1],[58,1]],'cancel':[[11,1],[58,1]],'bulletproof':[[7,1]],'rename':[[50,1],[13,1],[27,1]],'autosearch':[[41,1],[42,1]],'soft':[[59,1],[15,1],[55,2],[70,2],[24,1],[7,1],[5,1]],'1024':[[67,3]],'ntar':[[72,1]],'pair':[[70,1]],'confirmed':[[59,1],[75,2]],'sprites':[[27,1],[59,2],[78,2],[19,3],[67,1],[48,2],[79,2],[35,3],[11,1]],'updates':[[7,1],[5,1],[46,1],[77,1],[48,1],[3,1],[79,1],[8,2],[11,3]],'cyan':[[55,1],[59,1]],'bak':[[36,1]],'pspfceultra':[[3,1]],'stage':[[77,1],[75,1],[78,8]],'conditions':[[50,4],[75,5]],'symmetry':[[75,1]],'inits':[[74,1]],'sources':[[77,4],[75,1],[78,1]],'generated':[[72,1],[75,5],[77,1],[70,1],[78,4]],'loses':[[62,1]],'disassembly':[[54,3],[55,1],[50,18],[5,3]],'adventure':[[67,1]],'unusual':[[77,1]],'midikey':[[59,5]],'debugger':[[65,1],[1,1],[53,1],[50,15],[12,3],[13,4],[56,4],[8,2],[5,3],[9,2],[49,2],[54,3],[66,3],[6,1],[43,1],[3,4],[10,1],[11,3],[7,4]],'case':[[46,2],[55,1],[19,1],[50,1],[62,1],[61,5],[12,1],[77,3],[59,4],[78,1],[70,1],[60,2],[40,2]],'savescreenshotas':[[59,1],[6,1]],'locate':[[56,1]],'http':[[58,1],[65,5],[68,1],[64,1],[60,3]],'king':[[30,1]],'drawimage':[[59,1]],'overriding':[[59,1]],'0ffffh':[[74,3]],'bcd':[[77,16]],'always':[[19,1],[50,1],[67,2],[77,22],[52,1],[12,1],[13,2],[36,2],[5,1],[59,5],[9,1],[23,1],[70,3],[78,3],[60,2],[48,1],[75,4],[11,1],[7,1]],'preferred':[[59,1],[78,1],[40,1],[27,1]],'choppy':[[13,1]],'intervals':[[74,1]],'ejects':[[24,1]],'reporting':[[7,1]],'alternative':[[56,1]],'reorganize':[[14,1]],'minute':[[77,1]],'gnu':[[3,1]],'argus_':[[55,1]],'iql1':[[72,2]],'halt':[[50,2],[75,2]],'replaces':[[56,1]],'3f9':[[75,1]],'argument':[[59,7],[6,1],[60,1],[77,8],[13,1],[12,1]],'perfectly':[[78,1]],'desired':[[49,1],[74,4],[75,1],[56,3],[30,1]],'searchspace':[[61,1]],'someone':[[55,2]],'mailing':[[75,1]],'14915':[[75,1]],'pairs':[[70,3],[60,2],[74,1]],'7fff':[[72,1],[74,2],[40,1],[6,1],[67,1]],'setregister':[[59,2],[9,1]],'most':[[50,1],[67,1],[61,3],[77,9],[59,3],[23,1],[66,1],[4,1],[48,3],[40,1],[18,1],[65,1],[57,1],[79,1],[46,1],[55,1],[38,2],[30,2],[53,1],[52,1],[17,1],[78,2],[43,1],[75,2],[58,1]],'dropping':[[78,1],[7,1]],'239':[[59,1],[35,1],[50,1]],'since':[[77,4],[74,4],[5,2],[59,2],[54,1],[78,12],[71,1],[75,1],[48,6],[3,1],[40,6],[10,1],[11,1]],'pain':[[72,1]],'nonsensical':[[18,1]],'expect':[[77,1],[30,2]],'getrecordermode':[[59,1]],'zeroes':[[61,1]],'deselected':[[48,1]],'east':[[77,1]],'sec':[[77,1],[74,2]],'yos0ffa':[[77,1]],'0070':[[74,2]],'fullest':[[1,1]],'emulated':[[17,2],[59,5],[26,1],[30,8],[40,1],[64,1],[5,1]],'1994':[[77,4]],'partially':[[55,1],[7,1],[29,1]],'psg':[[59,1]],'shifting':[[10,1],[77,1],[78,1]],'bbb':[[71,1]],'view':[[49,1],[55,1],[38,2],[50,3],[53,2],[13,1],[48,1],[75,1],[56,1]],'assumed':[[74,1]],'bottom':[[27,1],[59,3],[60,2],[77,1],[50,1],[43,2]],'hooks':[[59,1]],'0@9':[[77,3]],'2j1t892n%':[[77,1]],'6th':[[77,1]],'redesigned':[[44,1]],'gfce':[[3,1]],'counter':[[46,1],[50,7],[67,1],[77,5],[12,2],[5,4],[27,14],[59,6],[15,2],[23,3],[78,15],[72,6],[75,97],[11,2]],'process':[[55,1],[50,1],[77,2],[12,1],[27,1],[59,1],[78,7],[23,1],[66,2],[48,2],[40,2],[65,2]],'unavailable':[[65,1]],'stuff':[[78,1],[51,1],[60,4],[61,2],[48,1],[74,1],[79,1]],'p2t0p9d`pid`':[[77,1]],'imbedded':[[36,1],[70,1]],'develop':[[78,1]],'might':[[59,3],[46,2],[23,1],[50,1],[67,1],[61,2],[48,1],[77,3],[35,1]],'removing':[[78,1],[55,1],[6,1],[5,1]],'strict':[[50,1]],'depth':[[59,1]],'040x':[[67,2]],'ours':[[77,1]],'faster':[[67,1],[22,1],[15,1],[7,1],[35,1]],'denoted':[[61,1],[60,1]],'notification':[[7,2]],'odds':[[61,1]],'khz':[[75,3]],'assisted_speedrun':[[65,1]],'0x0000':[[59,2]],'informed':[[75,1]],'output':[[59,1],[22,1],[54,2],[78,5],[6,1],[28,1],[67,2],[75,26],[33,1],[5,1]],'4015':[[75,9]],'65c02':[[77,1]],'registerbefore':[[59,4]],'o&_':[[77,1]],'tell':[[59,1],[48,1],[61,2],[70,1],[67,1],[58,2]],'files':[[50,8],[16,1],[39,1],[9,1],[15,4],[23,5],[54,1],[48,3],[32,1],[10,2],[40,3],[7,3],[18,5],[55,5],[38,2],[30,1],[28,13],[45,5],[53,2],[12,1],[13,3],[62,1],[69,1],[5,4],[22,4],[26,1],[25,1],[43,3],[11,4],[58,2]],'resolution':[[35,2],[75,2]],'272':[[78,1]],'browse':[[58,1],[23,1]],'parts':[[55,2],[53,1],[50,2],[70,1],[61,1],[48,1],[72,1]],'outline':[[59,1]],'investigate':[[62,1]],'trace':[[11,1],[9,1],[49,1],[54,6],[55,2],[66,2],[4,1],[3,1],[10,1],[8,2],[5,2]],'marks':[[48,4],[50,1]],'getreadonly':[[59,2],[11,1]],'edits':[[1,2]],'install':[[59,1]],'rpgs':[[48,1]],'soon':[[77,1],[48,2]],'save':[[50,3],[67,2],[61,1],[77,1],[56,1],[27,5],[59,11],[9,5],[15,4],[47,1],[71,1],[60,5],[4,3],[48,12],[10,6],[55,7],[38,6],[53,3],[28,2],[13,2],[8,1],[5,2],[17,7],[21,1],[43,2],[72,3],[11,7]],'dec':[[77,11]],'readable':[[54,1],[74,1]],'transferred':[[49,1],[75,1]],'correctly':[[77,1],[13,1],[12,1],[52,1],[5,1]],'modifying':[[77,1],[75,1],[20,1],[10,1],[53,1],[66,1]],'horizontally':[[78,2]],'squares':[[49,1]],'3f20|':[[67,1]],'super':[[78,2],[40,1],[43,1],[67,3]],'alphamul':[[59,7]],'extension':[[13,2],[32,1],[36,1],[48,2],[18,1],[53,1]],'extreme':[[61,1]],'tue':[[79,1],[80,1]],'8910':[[74,2]],'question':[[59,3],[64,1]],'also':[[50,12],[67,4],[61,4],[77,10],[56,1],[35,1],[27,6],[59,8],[15,1],[23,8],[29,1],[49,1],[54,1],[60,2],[71,1],[48,1],[10,2],[40,2],[7,1],[65,1],[55,3],[38,1],[30,3],[28,1],[44,1],[53,4],[12,1],[13,1],[42,1],[52,1],[8,1],[5,4],[17,1],[64,4],[78,7],[41,1],[70,1],[72,1],[75,3],[3,2],[33,1],[11,2],[58,1]],'lastkey1':[[61,1]],'1000000th':[[74,2]],'d`h#v1':[[77,1]],'fce':[[1,1],[53,1],[0,1],[45,1],[15,1],[23,1],[70,1],[71,1],[2,2],[72,3],[3,21],[40,3]],'labeled':[[7,2],[30,1]],'09ff':[[67,1]],'numpad7':[[59,1]],'0100':[[77,20],[50,2],[67,2]],'fetching':[[77,1],[78,2],[79,1],[50,1]],'heard':[[75,1]],'0677fc51543b':[[70,1]],'cut':[[40,1],[67,1]],'rectangle':[[59,2]],'04xx':[[67,1],[74,1]],'replayed':[[7,1]],'chance':[[59,2],[48,1],[61,1],[78,1]],'down':[[30,9],[50,1],[67,4],[61,1],[74,1],[77,1],[37,1],[5,1],[59,3],[15,1],[23,5],[70,3],[78,5],[24,2],[43,1],[60,1],[75,9],[32,1],[3,1],[33,2],[40,2]],'directory':[[19,1],[50,1],[28,6],[61,1],[12,2],[13,1],[64,4],[27,2],[17,1],[9,1],[15,1],[21,5],[26,1],[43,1],[32,2],[40,1],[11,3],[18,1]],'joysticks':[[71,1]],'inx':[[77,2]],'packaged':[[25,1],[64,1]],'objctr':[[59,3]],'resized':[[11,2],[50,1]],'401f':[[67,1]],'linked':[[3,1]],'brand':[[15,1],[5,1]],'iny':[[77,1]],'hitting':[[40,1]],'worlds':[[2,1]],'graphical':[[78,4],[3,1],[57,1]],'ripsubs':[[10,1]],'details':[[78,8],[54,1],[25,1],[38,1],[67,2],[60,1],[75,8],[11,10]],'maxframes':[[61,4]],'fm3':[[70,1],[5,1]],'wrote':[[3,1],[38,3],[78,1]],'possibilities':[[78,1],[15,3],[55,1],[40,7],[67,2]],'1fff':[[72,2],[67,2]],'decide':[[78,1],[67,1]],'interact':[[59,1],[58,1]],'buggy':[[49,1]],'|1e':[[75,1]],'navigating':[[17,1],[22,1],[23,3]],'utf':[[12,1]],'translation':[[48,6]],'criterion':[[65,2]],'gens':[[9,2],[42,1],[10,1],[41,1],[7,1],[8,1]],'simultaniously':[[78,1]],'categories':[[37,1]],'playing':[[65,6],[55,2],[67,1],[61,1],[74,1],[16,2],[8,1],[27,2],[17,1],[59,2],[9,1],[15,3],[22,1],[23,6],[26,2],[4,1],[40,1],[18,2],[11,1]],'added':[[53,1],[50,1],[77,3],[12,7],[13,9],[74,5],[8,4],[5,20],[27,1],[59,2],[9,5],[78,3],[25,2],[70,4],[6,5],[4,11],[48,1],[3,2],[10,8],[11,33],[7,13]],'framerate':[[34,1],[75,1],[70,1],[64,1]],'filenaming':[[5,1]],'crossed':[[77,4]],'remove':[[13,1],[48,1],[10,1],[50,1],[37,1]],'feature':[[55,1],[53,2],[30,8],[50,2],[12,1],[13,1],[8,1],[5,1],[27,2],[54,2],[47,1],[4,1],[48,1],[75,2],[3,1],[10,1],[7,1],[57,1]],'preview':[[41,1],[42,1]],'convert':[[69,1],[59,1],[15,1],[45,4],[13,2],[75,1],[7,1],[39,2]],'cht':[[4,1],[40,5],[28,2]],'parameters':[[40,2],[6,1],[59,1]],'commercially':[[3,1]],'april':[[8,1]],'hardly':[[78,1],[31,1]],'referenced':[[50,1]],'event':[[53,1],[71,1],[65,1]],'capacity':[[21,1]],'manipulate':[[60,1]],'luabot_framework':[[61,1]],'shape':[[62,1]],'expected':[[77,3],[78,1],[32,1],[65,1]],'misbelief':[[77,1]],'john@ucc':[[77,1]],'161':[[78,1]],'atx':[[10,1]],'waveform':[[72,2]],'parser':[[50,1]],'bugsbunnybirthdayblowout':[[62,1]],'edition':[[3,1]],'copies':[[77,1],[5,1]],'j2x@to':[[77,1]],'warped':[[78,1]],'shown':[[60,1],[51,1],[40,1],[50,4],[5,1]],'almost':[[3,1],[54,1],[67,1]],'connect':[[50,4]],'fade':[[75,1]],'characteristics':[[67,3],[75,1]],'teal':[[59,1]],'160':[[78,1]],'unintentional':[[11,1]],'largely':[[62,1]],'notepad':[[50,1]],'part':[[78,3],[76,2],[53,2],[62,1],[50,5],[71,1],[61,1],[48,2],[77,4],[56,1],[65,3]],'gives':[[59,1],[78,1],[29,1],[30,1],[67,4],[34,1],[10,1]],'snaps':[[5,1]],'supplied':[[21,2],[60,1]],'html':[[65,3],[59,2],[60,3],[64,1]],'warned':[[60,1]],'brute':[[59,1]],'maintenance':[[7,1],[14,1]],'zenity':[[13,1]],'bmf':[[25,3]],'maximus':[[3,2]],'reload':[[13,1],[10,1],[38,1],[50,2],[5,1]],'foundation':[[66,1]],'token':[[70,1]],'sax':[[77,10]],'halves':[[77,1]],'phase':[[77,1],[78,11]],'cia2':[[77,1]],'nestopia':[[25,1]],'songs':[[74,2]],'segments':[[61,6]],'z80':[[78,1]],'methods':[[59,2],[77,1]],'recovery':[[12,1],[13,1]],'combines':[[55,1]],'john':[[77,1]],'sweeping':[[75,4]],'direct':[[57,1],[77,1]],'timing|':[[78,1]],'suffice':[[40,1]],'boards':[[4,1]],'banked':[[74,1]],'updated':[[75,4],[78,3],[1,1],[71,1],[72,1],[48,3],[74,3],[10,2],[40,2],[11,1],[5,3]],'bankswitching':[[78,1],[74,5],[55,1],[50,1]],'licensed':[[3,1]],'objpri':[[78,1]],'unpauses':[[59,1],[8,1]],'rewinder':[[62,1]],'pattern':[[59,1],[51,2],[46,7],[14,1],[78,21],[67,2]],'020':[[75,1]],'spanned':[[21,1]],'readme':[[77,1]],'expansion':[[30,2],[67,1],[6,1],[13,1],[74,2],[18,1]],'finished':[[4,1],[59,1],[52,1],[72,1],[7,1]],'w0fvb':[[77,1]],'statistical':[[61,2]],'wii':[[4,1]],'f10':[[17,2],[55,1],[59,1]],'associated':[[59,1],[78,3],[40,1]],'str':[[59,8],[60,2]],'trans':[[59,3]],'replaying':[[36,1]],'hasn':[[10,1]],'executing':[[59,1],[77,4]],'chrr':[[72,2]],'0000h':[[74,3]],'assignment':[[37,2]],'21477270':[[74,1]],'cope':[[77,1]],'painting':[[59,1],[13,1],[60,2]],'cpuregistername':[[59,2]],'being':[[30,3],[61,1],[74,2],[77,7],[27,2],[59,3],[21,1],[54,2],[71,1],[43,1],[48,1],[75,6],[57,1],[79,1]],'ida':[[55,1]],'vrcvii':[[74,3]],'criticised':[[65,1]],'newer':[[3,1]],'nmos':[[77,16]],'unmodified':[[77,2]],'ports':[[51,1],[3,1],[30,2],[5,1]],'5x5':[[59,2]],'marginal':[[77,1]],'silly':[[18,1]],'blossom”':[[48,1]],'remind':[[70,1]],'comprehension':[[78,1]],'0600':[[79,1],[67,1],[80,1]],'006eh':[[74,1]],'start_address':[[74,1]],'keyboard':[[59,3],[21,2],[30,1],[24,1],[4,1],[12,1],[11,1]],'#xh':[[77,1]],'overhauled':[[15,1]],'gekimadden':[[8,1]],'latency':[[33,1]],'rewind':[[38,2],[62,1],[23,1]],'vectors':[[7,1]],'future':[[64,2],[77,1],[48,1],[74,1],[62,1],[31,1]],'timings':[[4,1],[34,1],[78,1]],'#byte':[[77,4]],'detrimental':[[55,1]],'mac':[[3,1],[64,1]],'young':[[6,1]],'poking':[[49,1]],'01ff':[[77,3],[50,2],[67,2]],'akel':[[77,3]],'tries':[[59,1]],'clockline':[[78,1]],'watch':[[7,1],[65,1],[55,1],[50,3],[28,3],[67,1],[13,1],[42,3],[39,2],[5,1],[59,1],[9,2],[15,8],[54,2],[6,1],[43,14],[3,1],[40,3],[11,6],[10,6]],'228':[[4,1]],'nvidia':[[5,1]],'remember':[[27,1],[78,2],[53,1],[60,1],[77,3],[48,2],[13,2],[74,1],[65,1]],'advanced':[[78,1],[66,1],[50,2],[65,1]],'rmw':[[77,2]],'scrolls':[[5,1]],'sq1':[[75,10]],'cherished':[[66,1]],'dcfc':[[77,3]],'commandline':[[10,2],[6,1]],'location':[[59,2],[22,1],[23,1],[50,2],[77,3],[75,2],[56,1],[33,1],[40,2]],'pointed':[[30,1]],'dd04':[[77,2]],'entry':[[27,1],[59,4],[78,4],[77,1],[48,1],[74,2],[40,1],[5,1]],'824':[[78,1]],'discovering':[[55,1]],'said':[[78,1],[75,1],[52,1],[62,1]],'offset':[[78,5],[46,3],[53,2],[60,1],[50,1],[72,1],[74,1],[77,1],[79,2],[39,1]],'looking':[[48,1],[49,1],[25,1],[54,2]],'quote':[[59,1]],'exotic':[[13,1]],'xmessage':[[59,1]],'flubba':[[75,1]],'warioland':[[11,1]],'043x':[[67,1]],'course':[[59,1],[75,1],[77,1],[78,2]],'tsx':[[77,2]],'shinydoofy':[[12,1]],'|ppu':[[78,3]],'115':[[4,1],[5,1]],'hacks':[[63,1]],'invert':[[59,6],[9,1]],'armed':[[74,1]],'players':[[61,1],[9,1],[46,1],[78,1],[67,1]],'announced':[[21,1]],'supported':[[59,3],[21,1],[55,1],[53,1],[60,2],[70,3],[71,1],[3,1],[18,4]],'base':[[59,1],[21,2],[78,4],[19,1],[28,2],[77,1],[12,1],[75,1],[3,1],[40,1],[27,1]],'internal':[[59,3],[75,7],[77,3],[70,4],[78,3]],'argment':[[11,1]],'gamepads':[[70,1],[30,1]],'alternate':[[46,3],[77,1],[39,1]],'_will_':[[61,1]],'consistency':[[9,1],[11,1]],'bginput':[[19,3]],'hitboxes':[[62,1]],'issue':[[64,2],[6,2],[31,1],[77,1],[12,3],[13,1],[10,3],[33,1],[11,1],[5,1]],'interactive':[[55,1]],'192':[[4,1],[75,3]],'int32':[[70,1],[72,3]],'sequentially':[[78,1],[74,1]],'05ff':[[67,1]],'shx':[[77,4]],'stick':[[67,1],[74,1]],'entirity':[[78,1]],'goal':[[61,1],[65,1]],'defines':[[72,1],[24,2],[50,3]],'hotkey':[[38,2],[30,5],[50,3],[12,3],[13,3],[5,3],[17,4],[27,5],[15,2],[22,1],[23,1],[26,1],[37,4],[54,1],[4,1],[59,1],[3,1],[10,1],[11,7]],'02xx':[[67,2]],'usability':[[9,1],[3,1],[8,1],[5,1]],'c022':[[50,1]],'draws':[[59,5],[78,1],[80,1]],'recommend':[[78,1]],'saver':[[10,1],[29,2]],'writing':[[53,2],[50,1],[61,1],[74,1],[77,2],[59,3],[21,1],[78,3],[80,1],[60,1],[75,4],[79,1],[11,1],[58,1]],'environments':[[18,1]],'resulting':[[55,1],[65,1],[32,1]],'learning':[[58,1]],'onsegmentstart':[[61,2]],'kh%&1':[[77,1]],'multiplexer':[[78,7]],'messages':[[11,1],[7,1],[54,1],[59,1],[6,1],[13,1],[8,1],[5,4]],'profit':[[78,1]],'differrences':[[75,1]],'vastly':[[5,1]],'reverse':[[75,3],[55,1],[66,1],[67,1]],'legend':[[77,1]],'113':[[78,1]],'outputted':[[75,1]],'joypad':[[12,1],[8,3],[5,1],[59,15],[9,1],[21,2],[26,1],[70,2],[24,1],[60,3],[7,1],[11,3]],'buttoncount':[[5,1]],'idc':[[55,1]],'drawings':[[5,1]],'psin':[[72,1]],'implied':[[77,5]],'two':[[50,1],[67,1],[61,2],[74,1],[77,12],[35,2],[27,1],[59,4],[21,2],[54,1],[70,3],[43,2],[60,2],[48,1],[75,1],[3,1]],'acts':[[77,1],[78,1]],'powersave':[[10,1]],'regression':[[10,1]],'automatic':[[4,1],[50,1],[75,1],[11,1],[18,2]],'cycle':[[59,1],[78,24],[24,1],[60,2],[72,2],[13,1],[75,14],[77,20],[40,1]],'playfields':[[78,3]],'pseudo':[[61,1],[75,5],[77,1]],'2000':[[78,8],[67,3],[72,2],[74,3],[3,1],[79,2]],'74ls373':[[78,1]],'customization':[[5,1]],'brackets':[[40,1],[50,1]],'fatal':[[77,1]],'compresses':[[27,1]],'0fe':[[75,1]],'needs':[[59,1],[48,2],[50,2],[60,1]],'specify':[[59,1],[54,1],[74,1],[43,1]],'expertise':[[75,1]],'appliciable':[[78,1]],'encoder':[[66,1],[49,1],[3,1],[56,7],[50,1],[27,1]],'info':[[78,1],[15,3],[23,2],[67,3],[61,1],[74,3],[79,1],[11,1],[65,2]],'understandable':[[50,1]],'receive':[[59,1],[48,1],[27,1]],'patterns':[[78,1],[75,2],[46,1]],'tbl1':[[60,3]],'posting':[[75,1]],'abandoned':[[3,1]],'belonging':[[50,1]],'ungzipping':[[13,1]],'home':[[59,1]],'became':[[65,1]],'alot':[[78,1]],'dma':[[77,2],[67,1],[78,1]],'avi':[[15,3],[22,9],[6,1],[28,2],[12,1],[13,1],[16,2],[36,2],[11,2],[5,1]],'lower':[[78,6],[71,1],[67,1],[50,1],[61,1],[75,1],[77,9],[33,1],[27,1]],'classics':[[78,1]],'counts':[[59,1]],'wram':[[72,2],[13,1]],'ones':[[78,1],[49,1],[51,1],[10,1]],'unofficial':[[3,1],[10,1],[66,1]],'every':[[46,3],[55,4],[38,2],[50,1],[61,2],[12,2],[74,1],[77,5],[27,5],[59,4],[54,4],[78,13],[70,2],[72,1],[48,2],[75,4],[11,1]],'0000001111100000':[[79,1]],'backtrack':[[61,1]],'envelope':[[75,30]],'flicker':[[78,2]],'fceultra':[[3,1]],'bare':[[60,1]],'smallest':[[59,1],[75,2],[78,1]],'rgba':[[59,2]],'tool':[[53,2],[50,1],[28,1],[44,2],[61,2],[42,1],[67,1],[64,1],[39,6],[5,2],[63,2],[9,1],[15,3],[23,4],[41,1],[2,1],[43,1],[49,4],[48,4],[3,2],[11,1],[65,15]],'dex':[[77,3]],'industry':[[78,1]],'smb0':[[19,14]],'loaded':[[19,1],[50,1],[67,5],[61,2],[74,8],[77,7],[35,3],[27,1],[59,21],[15,1],[23,4],[29,2],[49,1],[54,1],[4,1],[32,3],[10,2],[40,2],[7,2],[38,10],[53,1],[28,4],[62,1],[13,2],[36,4],[8,2],[5,1],[78,6],[21,2],[43,2],[75,4],[11,4]],'click':[[53,3],[50,13],[45,2],[56,4],[37,1],[17,1],[5,3],[27,1],[29,4],[59,1],[48,3],[40,5],[11,3],[58,2]],'compare':[[41,1],[50,3],[42,1],[56,4],[40,5],[5,2]],'extensively':[[65,1]],'introduction':[[1,2],[55,1],[53,1],[50,1],[0,3],[52,1],[22,1],[23,1],[51,1],[54,1],[60,1],[75,1],[40,1]],'affect':[[59,1],[77,3],[40,2],[11,1]],'dc0d':[[77,4]],'edit':[[15,5],[53,11],[50,1],[43,1]],'rips':[[74,2]],'letting':[[59,2]],'laptop':[[11,1]],'f20':[[59,1]],'configurations':[[15,1],[68,1]],'effects':[[78,2],[50,1],[80,1]],'emrwxf':[[50,2]],'enters':[[59,2]],'xing':[[4,1]],'clear':[[37,2],[59,4],[78,1],[55,2],[70,1],[50,2],[30,3],[77,10],[48,1],[74,4],[79,1],[5,1]],'include':[[15,2],[23,1],[70,1],[18,1]],'consists':[[59,1],[78,4],[70,4],[53,1],[71,1],[40,1]],'truth':[[77,1]],'simulation':[[59,1]],'punchouttraining':[[62,1]],'textual':[[66,1]],'2002':[[77,1],[78,5],[3,2],[79,1]],'triggered':[[59,1],[75,1]],'65500':[[72,1]],'002':[[75,1]],'tracing':[[54,1]],'4#p`e@`h#vq':[[77,1]],'languages':[[57,2],[5,1]],'recieve':[[75,1]],'characters':[[15,1],[70,1],[53,1],[67,1],[50,1],[13,1],[74,1],[5,1]],'engine':[[64,1],[5,1]],'045x':[[67,1]],'thrown':[[59,1],[78,1]],'ldx':[[77,15]],'menu':[[1,6],[27,16],[39,1],[59,2],[9,2],[14,1],[15,7],[23,8],[24,4],[29,4],[4,1],[49,2],[48,2],[10,6],[40,5],[7,4],[38,20],[30,1],[28,1],[53,2],[12,1],[13,2],[8,3],[5,4],[17,3],[37,1],[21,2],[22,4],[26,6],[64,1],[6,1],[43,3],[33,2],[11,18]],'approximate':[[70,1],[59,1]],'cld':[[77,1],[67,1]],'playmoviefrombeginning':[[7,1]],'buffing':[[33,1]],'blanking':[[40,1]],'turtles':[[67,1],[46,1]],'forced':[[78,1],[75,1]],'successive':[[77,1]],'bandwith':[[78,1]],'needle':[[75,1]],'speedrun':[[61,1],[2,1],[65,2]],'evaluates':[[61,4],[50,1],[78,1]],'6fff':[[74,1]],'suggest':[[36,1],[59,1],[5,1]],'accordingly':[[27,1]],'sections':[[72,1],[48,1],[78,2]],'creation':[[61,1],[12,1],[15,1],[60,1]],'emu':[[58,3],[59,45],[9,1],[7,3],[60,7],[8,1],[5,2]],'own':[[50,2],[44,1],[30,1],[62,1],[77,2],[56,1],[59,1],[15,1],[78,3],[75,1],[40,1],[7,1]],'010':[[75,1]],'invertselection':[[5,1]],'044x':[[67,1]],'bookmarked':[[7,2]],'prefixes':[[43,1]],'backgrounds':[[27,2],[78,1],[20,1]],'000':[[67,1]],'rotate':[[77,2]],'d8t`2i':[[77,1]],'empty':[[15,1],[70,1],[50,3],[60,3],[77,1],[35,2],[5,1]],'help':[[1,2],[55,2],[38,6],[44,1],[77,1],[74,1],[35,2],[59,1],[15,1],[60,1],[34,1],[75,1],[11,2],[58,1]],'frame':[[19,4],[50,6],[61,6],[27,11],[59,32],[15,1],[23,18],[47,1],[51,1],[24,5],[54,2],[4,1],[60,6],[66,1],[71,2],[10,3],[40,1],[7,5],[65,5],[79,1],[46,4],[38,2],[45,1],[12,2],[13,2],[36,4],[5,3],[78,8],[22,1],[70,5],[43,1],[75,22],[33,2],[11,7],[58,1]],'instance':[[46,1],[50,1],[67,3],[61,3],[74,1],[77,2],[27,1],[17,1],[78,1],[29,1],[60,2],[40,1],[7,1]],'converter':[[13,1],[23,1],[75,4],[11,1],[64,1]],'composed':[[72,1]],'vints':[[78,2]],'resistors':[[75,1]],'correction':[[75,1],[11,1],[35,1]],'next':[[30,1],[50,4],[67,2],[61,5],[77,16],[56,1],[8,1],[27,1],[59,5],[78,15],[60,3],[4,1],[72,2],[48,2],[75,4],[40,4],[7,1]],'kilobytes':[[21,1]],'newtext':[[59,1]],'bit0':[[70,2],[77,1]],'pushed':[[77,4]],'separator':[[70,1]],'mpby':[[72,1]],'04000':[[74,1]],'credit':[[75,1]],'processors':[[77,7],[11,1]],'thread':[[34,1]],'connection':[[77,1]],'c002##comment2':[[50,1]],'xoff':[[72,1]],'date':[[79,1],[60,1],[80,1]],'bandwidth':[[78,1]],'adjust':[[78,1]],'dcfa':[[77,3]],'detection':[[30,1]],'dragged':[[8,1]],'job':[[35,1]],'chibi':[[75,1]],'dincsbc':[[77,4]],'invoked':[[8,1]],'triplet':[[32,1]],'kbfe_j':[[77,1]],'hence':[[59,4],[60,1],[74,1]],'religion_mode_off':[[77,1]],'instantly':[[78,1]],'sev':[[77,2]],'folder':[[27,2],[58,1],[59,2],[43,3],[28,2],[45,1],[62,2],[40,1],[64,1],[5,1]],'rar':[[18,1]],'scoring':[[61,1]],'loopcounter':[[61,1]],'aspiring':[[48,1]],'readbytesigned':[[59,2],[11,1],[60,1]],'interpreted':[[70,1],[78,1]],'hexi':[[43,1]],'cartridge':[[78,2],[21,2],[40,1],[30,1],[67,1]],'vtog':[[72,1]],'irritating':[[59,1]],'beebee':[[61,4]],'automagical':[[77,1]],'snapshot':[[17,1],[23,1]],'console':[[35,1],[59,1],[21,1],[23,1],[65,1],[53,1],[30,1],[4,1],[8,2],[5,2]],'logs':[[55,1],[8,1],[54,3]],'had':[[59,1],[78,3],[25,1],[2,1],[77,1],[12,1],[74,1],[75,1],[64,1]],'fields':[[74,2],[70,1],[56,2],[43,1]],'radikus':[[5,1]],'nmi2':[[50,1]],'de0d':[[77,1]],'registerload':[[59,1],[9,2]],'defined':[[48,2],[58,1]],'luabitop':[[59,1]],'willing':[[74,1]],'123':[[77,4]],'verify':[[77,1],[79,1]],'vsync':[[64,1]],'acknowledged':[[75,1]],'prepend':[[13,1]],'highlighting':[[40,1]],'maskable':[[75,2],[50,4],[67,1]],'0800':[[67,2]],'already':[[59,3],[54,1],[21,1],[78,4],[62,1],[67,1],[48,1],[56,1],[65,1]],'dot':[[77,2]],'modal':[[59,2]],'onfinish':[[61,1]],'pins':[[78,3]],'exist':[[59,1],[78,2],[62,1],[52,1],[32,1],[75,2]],'nice':[[54,2]],'disassemble':[[55,1]],'collision':[[78,1]],'frozen':[[43,2],[20,1],[7,2],[11,3]],'metal':[[48,1]],'atop':[[78,1]],'freeze':[[17,2],[59,2],[53,2],[60,1],[77,2],[10,1]],'their':[[50,1],[62,1],[67,1],[77,2],[37,1],[59,1],[15,1],[49,1],[70,1],[78,1],[48,3],[75,2],[33,1],[11,1]],'promptly':[[62,1]],'mirr':[[72,1]],'key4':[[61,1]],'|05':[[75,2]],'emulate':[[21,1],[74,2],[30,1],[27,1]],'thinks':[[78,1]],'specifies':[[19,5],[59,4]],'appendix':[[59,1]],'rgb32':[[59,1]],'8bit':[[59,2]],'confirmation':[[6,1],[29,1]],'bypasses':[[11,1]],'tablet':[[30,1]],'libraries':[[59,1],[60,1]],'decrease':[[75,4]],'that':[[50,20],[61,19],[77,44],[56,1],[27,4],[15,3],[47,1],[80,1],[2,2],[48,19],[32,2],[57,3],[79,3],[46,1],[38,8],[28,1],[44,1],[13,2],[20,2],[64,2],[5,1],[21,1],[41,1],[43,1],[11,9],[19,1],[67,12],[74,8],[39,1],[59,51],[9,3],[14,1],[23,9],[49,2],[51,2],[54,7],[60,12],[10,5],[40,24],[18,1],[7,7],[65,9],[55,12],[53,10],[30,3],[62,7],[42,1],[52,3],[8,1],[17,3],[78,40],[25,1],[70,7],[6,2],[72,2],[75,29],[3,5],[58,2]],'okay':[[48,1]],'hq3x':[[35,2]],'wraps':[[77,1],[80,3]],'convertible':[[12,1]],'area':[[59,1],[78,5],[46,1],[67,1],[50,1],[48,1],[74,3],[35,2]],'enemy':[[67,21]],'19th':[[78,1],[75,1]],'suggested':[[59,1]],'disallow':[[8,1],[5,1]],'setmarker':[[59,1]],'first':[[50,2],[67,3],[61,2],[74,2],[77,13],[56,2],[35,2],[27,1],[59,6],[9,1],[29,1],[54,4],[71,2],[60,4],[48,3],[32,1],[10,1],[79,3],[7,2],[55,1],[45,1],[78,16],[21,1],[70,3],[72,4],[75,3],[3,1]],'maxvalue':[[61,12]],'411ah':[[74,1]],'luminance':[[78,4]],'care':[[59,1],[75,1],[77,1]],'points':[[59,1],[61,1],[77,3],[78,1],[5,1]],'demonstrate':[[78,1]],'0000010000011111':[[79,2]],'antony':[[9,1]],'top':[[59,4],[26,1],[78,1],[50,3],[6,1],[60,1],[40,1],[27,1]],'correct':[[59,6],[13,1],[77,1],[10,4],[7,1],[35,2]],'stats':[[67,4]],'family':[[77,2],[21,2],[30,2]],'coding':[[49,1],[60,1]],'below':[[50,5],[60,1],[72,1],[75,2],[77,7],[40,1]],'account':[[59,1],[61,1],[11,1],[50,1]],'kh%r1':[[77,1]],'step':[[77,1],[75,8],[10,1],[50,4]],'actually':[[59,6],[78,5],[55,1],[62,1],[67,1],[61,1],[75,3],[77,1]],'allowudlr':[[19,3]],'stands':[[3,2],[78,1]],'prefix':[[43,3],[50,2]],'filled':[[56,2]],'often':[[58,1],[77,1],[48,3],[67,3],[65,2]],'230':[[59,1]],'constructed':[[58,1]],'plus':[[59,1],[74,1],[78,3],[53,1]],'formula':[[59,1],[74,1],[75,1],[78,1],[43,2]],'fired':[[78,1]],'really':[[59,1],[78,1],[55,1],[61,1],[48,4],[75,1],[77,3],[79,1]],'edwin':[[77,1]],'tay':[[77,1]],'8184':[[67,1]],'tutorials':[[48,1],[60,1]],'cycling':[[78,2]],'zeropage':[[77,9],[50,1]],'audible':[[75,4]],'wasted':[[78,1]],'mangling':[[48,1]],'onscreen':[[59,1],[5,1]],'playstation':[[3,1]],'putting':[[59,1],[51,1]],'bit':[[55,2],[50,3],[77,38],[74,14],[35,1],[59,2],[78,30],[70,9],[71,1],[60,2],[80,3],[4,2],[72,7],[48,1],[32,2],[75,73],[57,1],[33,2],[40,2]],'audio':[[22,7],[74,2],[55,2],[33,1],[75,1]],'slow':[[65,3],[23,2],[60,1],[24,1],[77,2],[48,1],[40,1],[35,1],[64,4]],'pages':[[77,1],[67,2]],'patchlevel':[[77,1]],'recent':[[8,1],[7,2],[9,1],[15,1],[38,2],[43,2],[10,2],[11,1],[5,2]],'world':[[30,1],[60,3]],'xodnizel':[[3,2],[77,1]],'sets':[[19,23],[38,2],[28,3],[77,3],[35,4],[59,4],[26,5],[78,1],[24,2],[34,1],[75,1],[40,1],[33,4],[11,1]],'total':[[59,1],[21,1],[23,1],[78,1],[72,1],[74,1],[75,1],[77,1],[40,1],[5,2]],'presets':[[65,1],[15,1],[30,3],[28,3]],'substitutions':[[48,1]],'alpha':[[59,9],[5,1]],'vram':[[80,1],[72,1],[53,1],[67,1],[79,4]],'11ff':[[67,1]],'subpix':[[67,2]],'segfault':[[13,1],[5,3]],'killed':[[78,1],[67,1]],'usually':[[66,2],[67,3],[53,1],[77,3],[74,1],[75,2],[56,1],[65,3]],'fcexp':[[70,1]],'rotations':[[77,2]],'believed':[[77,1]],'attrib':[[80,1]],'channels':[[59,1],[74,1],[75,17],[33,2],[11,1]],'neccessary':[[78,1]],'dostuff':[[60,1]],'yet':[[59,1],[78,1],[60,1],[67,2],[77,1],[10,1],[40,2]],'030x':[[67,1]],'prepared':[[59,1]],'teenage':[[67,1],[46,1]],'avoid':[[59,3],[65,1]],'isattemptend':[[61,3]],'into':[[50,3],[67,5],[61,4],[74,13],[16,1],[77,4],[56,3],[59,4],[15,2],[29,1],[66,1],[2,2],[60,1],[48,7],[57,1],[40,1],[7,2],[55,2],[53,1],[30,3],[28,1],[45,1],[13,1],[36,4],[78,16],[21,1],[22,2],[43,2],[75,5],[3,1],[11,1],[58,2]],'carrier':[[72,1]],'ch1':[[74,2]],'damaging':[[78,1]],'parsecolor':[[4,1],[59,2],[8,1]],'sum':[[50,3]],'lasereyes':[[62,1]],'enhance':[[78,2]],'timer':[[77,8],[75,11],[67,1]],'`28':[[77,1]],'supports':[[23,1],[3,2],[18,3],[5,1]],'varying':[[72,1]],'runtime':[[55,1],[50,2]],'calculates':[[75,1]],'isolate':[[49,1]],'windows':[[40,2],[44,1],[12,1],[13,1],[35,2],[5,3],[8,2],[59,2],[9,2],[29,2],[64,1],[4,1],[3,3],[10,1],[11,1],[7,1]],'jamm':[[72,1]],'either':[[59,4],[54,2],[78,2],[70,2],[80,1],[50,1],[67,1],[77,6],[48,1],[74,2],[75,2]],'interprets':[[59,1],[78,1]],'fail':[[77,1],[13,1],[48,1],[55,1]],'corruptor':[[55,2]],'myimage':[[59,1]],'gettie1':[[61,1]],'passage':[[65,1]],'big_time_software@hotmail':[[78,1],[75,1]],'branch':[[77,9],[3,4],[2,1]],'win98':[[48,1]],'irrelevant':[[55,1],[70,2]],'getscore':[[61,1]],'successfully':[[77,2]],'“cherry':[[48,1]],'correspond':[[67,1],[74,1]],'gamecube':[[3,1]],'user':[[30,1],[12,2],[13,1],[8,1],[5,1],[27,3],[59,18],[21,1],[78,1],[60,2],[4,1],[3,1],[10,2],[11,3]],'rainbowriding':[[62,1]],'hexbackcolorg':[[20,1]],'counting':[[59,1],[74,2],[75,5],[78,1],[50,1]],'copy':[[59,1],[49,1],[29,1],[53,3],[77,5],[48,6],[36,1],[7,1]],'definetely':[[78,1]],'how':[[1,2],[55,1],[62,2],[28,1],[67,2],[61,4],[74,1],[68,1],[77,9],[56,2],[64,2],[63,1],[59,1],[54,1],[78,7],[80,1],[43,2],[72,1],[48,6],[75,4],[40,1],[57,3]],'tracks':[[62,1]],'tbl3':[[60,2]],'serves':[[61,1],[78,1]],'failattempts':[[61,1]],'external':[[59,1],[78,5],[47,4],[55,4],[61,1],[75,1],[32,1],[39,2]],'condition':[[78,1],[12,1],[32,1],[75,3],[50,1],[5,1]],'cnrom':[[13,1],[5,1]],'websites':[[48,2]],'certain':[[46,1],[55,1],[30,1],[50,1],[62,1],[61,4],[64,1],[59,1],[49,1],[54,1],[78,1],[75,4],[57,1]],'die':[[67,1]],'pack':[[61,1],[58,1]],'haystack':[[75,1]],'168':[[77,1],[78,1]],'threshold':[[77,1]],'inspired':[[78,1]],'fdsr':[[72,1]],'isolated':[[78,1]],'numpad3':[[59,1]],'stx':[[77,11]],'effected':[[78,1]],'dropped':[[10,1],[8,1]],'4000':[[67,1],[75,6]],'irqa':[[72,2]],'60th':[[23,1]],'plot':[[60,2]],'gtk':[[8,2],[5,2]],'00000011':[[79,1]],'rippers':[[55,1]],'gamepad':[[7,1]],'pulled':[[78,1]],'vrc7':[[74,1]],'047x':[[67,1]],'experiment':[[78,1]],'deselect':[[7,1],[48,1]],'black':[[59,1],[78,5],[20,3],[35,1]],'name':[[19,2],[50,10],[61,1],[74,3],[77,1],[59,8],[15,1],[23,2],[49,2],[80,2],[48,6],[32,2],[10,1],[40,3],[18,1],[28,1],[13,1],[52,7],[36,1],[8,3],[5,1],[37,1],[78,16],[70,1],[6,1],[43,1],[72,10],[3,3],[11,1],[58,1]],'micro':[[10,1]],'sent':[[78,1],[48,1],[75,4],[40,1],[58,1]],'commands':[[1,4],[19,1],[77,4],[12,1],[37,1],[27,3],[9,1],[15,2],[41,1],[70,3],[24,2],[71,1],[57,1],[7,1]],'regions':[[4,1],[13,1]],'248':[[5,1]],'decryption':[[77,1]],'match':[[4,1],[59,1],[13,1],[40,2],[8,1],[35,1]],'endless':[[59,2],[60,1],[78,1]],'attained':[[75,1]],'nitsuja':[[3,1],[25,3]],'nsf':[[73,2],[9,3],[49,1],[55,10],[50,6],[74,4],[32,1],[18,3]],'rti':[[77,11],[75,1]],'familiar':[[74,1],[75,1],[60,1],[58,1]],'227':[[5,1]],'path':[[58,1],[59,2],[21,1],[29,1],[19,4],[4,1],[7,3],[5,2]],'generates':[[38,1],[75,3],[78,1]],'alongside':[[50,1]],'identical':[[59,1],[75,1],[78,1]],'weren':[[75,1]],'accident':[[17,1]],'8502':[[77,6]],'theory':[[77,2]],'cracle':[[64,1]],'adds':[[5,1],[11,1],[9,1],[59,1],[28,1],[4,1],[77,2],[3,2],[10,1],[8,2],[7,2]],'`@yoo0a':[[77,1]],'here':[[38,1],[30,1],[50,2],[53,2],[61,1],[42,1],[20,1],[74,3],[77,3],[5,1],[59,4],[78,12],[41,1],[24,2],[60,4],[48,4],[32,1],[75,5],[40,1],[79,1],[58,1]],'sync':[[5,1],[64,1],[35,4],[11,1]],'scheme':[[78,1],[20,1],[10,1],[71,1]],'directories':[[26,1],[28,1]],'truthvalue':[[59,1]],'hackers':[[66,1]],'reached':[[61,2],[52,2],[78,1],[50,1]],'accumulator':[[72,1],[74,2],[77,27]],'current':[[50,6],[67,1],[61,9],[74,1],[77,4],[35,2],[27,1],[59,20],[49,2],[23,2],[51,1],[54,1],[24,2],[66,1],[4,1],[32,1],[40,6],[7,1],[65,2],[79,1],[55,1],[30,3],[12,1],[52,2],[36,1],[5,2],[78,3],[21,1],[70,2],[72,1],[75,12],[3,1],[33,1],[11,3]],'mapper':[[7,1],[5,1],[9,2],[53,1],[50,2],[4,2],[13,1],[8,1],[11,1]],'internet':[[15,1],[26,1],[66,1],[31,1],[58,2]],'likelihood':[[21,1]],'disks':[[21,3],[30,1]],'decided':[[74,1],[48,2],[65,1]],'prerender':[[50,1]],'autostart':[[77,1]],'border':[[35,1]],'pch':[[77,16]],'deducted':[[61,1]],'choosing':[[5,1]],'emulation':[[1,1],[19,3],[50,1],[35,3],[27,2],[59,5],[23,5],[24,13],[60,2],[4,3],[32,2],[40,1],[7,1],[65,1],[38,2],[13,2],[36,1],[64,1],[5,3],[17,2],[21,1],[22,3],[26,1],[76,1],[34,1],[75,1],[33,1]],'scale2x':[[35,4]],'character':[[59,1],[48,3],[70,1],[53,1],[50,2],[67,3]],'processes':[[65,1]],'sed':[[77,1],[67,1]],'claimed':[[77,1]],'fceu':[[53,1],[31,2],[28,5],[61,1],[13,1],[68,1],[64,4],[5,2],[17,1],[59,4],[9,2],[15,6],[21,1],[22,1],[2,5],[25,6],[26,1],[29,1],[43,1],[47,1],[3,12],[60,1],[11,8],[69,1]],'tbl':[[53,1],[48,1]],'latching':[[75,2]],'nesting':[[54,1],[5,1]],'whereas':[[77,2],[78,1]],'nametable':[[78,1],[67,5],[4,2],[13,1],[10,1],[79,3],[11,1]],'result':[[59,4],[78,5],[53,1],[77,22],[74,1],[32,1],[75,4],[65,1]],'perform':[[59,2],[55,5],[61,1],[74,1],[77,4],[40,1]],'dmcsize':[[59,1]],'measurements':[[77,1]],'twice':[[75,2]],'mappable':[[11,4],[23,1]],'green':[[59,8],[32,1],[55,2],[60,1]],'codes':[[27,2],[49,2],[66,1],[50,1],[77,2],[56,4],[64,1],[40,1]],'medium':[[59,2]],'receives':[[59,1],[60,1]],'entries':[[78,3]],'binding':[[12,1]],'handy':[[67,1],[48,1],[60,1]],'clocks':[[78,3],[75,2]],'07f':[[75,1]],'xor':[[59,2],[75,2],[60,1]],'l8i':[[77,1]],'impl':[[77,2]],'adjustment':[[25,1],[75,1]],'dump':[[38,1],[11,2],[54,1]],'significantly':[[40,1],[7,1],[67,1]],'incorporating':[[44,1]],'crashes':[[4,1],[59,1],[13,3],[60,1],[11,2],[5,1]],'true':[[59,26],[9,1],[78,1],[70,6],[60,3],[50,1],[61,7],[77,1],[35,1],[58,1]],'execution':[[77,2],[50,13],[65,1]],'0xffff':[[59,2]],'required':[[78,5],[9,1],[55,1],[19,1],[70,7],[28,1],[4,1],[75,1],[40,1]],'previous':[[11,1],[38,9],[67,1],[45,1],[61,5],[8,1],[5,1],[17,1],[59,1],[15,2],[23,1],[69,1],[70,1],[43,1],[75,1],[57,1],[7,1],[40,4]],'full':[[11,2],[59,1],[15,1],[21,1],[55,2],[75,3],[10,1],[36,1],[35,8],[7,1]],'scenario':[[75,1]],'reverted':[[10,1]],'submenus':[[27,1]],'level':[[78,3],[70,2],[52,3],[75,3],[33,1],[40,4],[57,1]],'131072':[[77,1]],'d019':[[77,5]],'accesses':[[55,1],[78,2]],'007b':[[74,1]],'hexfreezecolorr':[[20,1]],'restricting':[[59,2]],'sided':[[21,1]],'movie':[[19,14],[67,3],[61,1],[16,3],[27,10],[39,1],[59,67],[9,5],[15,8],[23,60],[66,1],[71,1],[4,3],[10,12],[7,23],[65,14],[46,1],[38,29],[30,2],[28,1],[44,1],[45,2],[12,4],[13,6],[36,24],[8,4],[5,6],[69,5],[22,6],[26,2],[70,23],[6,2],[43,2],[3,2],[11,20]],'dll':[[9,1],[58,2]],'feed':[[78,2]],'caveats':[[59,1],[74,5]],'taking':[[77,2],[75,1],[78,2],[57,1]],'gyp#8':[[77,1]],'somethingistrue':[[60,4]],'compute':[[59,1]],'opponent':[[31,1]],'opcode':[[77,61],[10,2],[50,2]],'exception':[[77,1],[67,1]],'detected':[[18,1],[30,1]],'seem':[[77,3],[78,2]],'quick':[[17,1],[59,2],[50,1],[60,1]],'guess':[[77,1],[78,1]],'official':[[77,2],[74,1],[58,1]],'relate':[[78,1]],'savestate':[[65,3],[19,1],[38,23],[28,1],[12,4],[13,2],[36,6],[8,2],[5,1],[17,12],[27,5],[9,6],[15,7],[23,15],[59,28],[60,10],[69,4],[70,7],[72,1],[10,1],[7,10],[11,3]],'horizontal':[[72,1],[52,1],[78,10],[80,1],[67,1]],'dungeon':[[78,1]],'fashion':[[78,2]],'extraneous':[[21,1]],'simulated':[[59,1]],'logger':[[55,15],[53,1],[8,2],[5,2],[9,2],[49,2],[54,9],[66,4],[4,2],[3,2],[10,1],[11,1]],'architecture':[[78,1],[51,1],[75,1],[3,1],[5,1]],'appear':[[38,2],[50,5],[28,1],[56,2],[8,1],[5,1],[17,1],[59,2],[21,3],[54,1],[78,2],[75,1],[11,2]],'gdimage':[[59,1]],'temporary':[[59,1],[72,1],[77,1],[3,1],[78,8]],'active':[[50,1],[28,1],[77,1],[56,1],[8,2],[59,1],[9,1],[78,1],[4,1],[75,1],[32,1],[40,7],[11,2],[7,1]],'relatively':[[40,1]],'vars':[[61,1]],'1kb':[[72,1]],'shadow':[[4,1],[30,1]],'handle':[[61,1],[12,1],[13,1],[77,2],[60,2]],'f13':[[59,1]],'nametables':[[67,1]],'size':[[55,1],[50,5],[67,2],[13,1],[42,1],[74,2],[64,1],[5,1],[35,6],[59,10],[21,1],[41,1],[70,5],[72,5],[11,3]],'allow':[[11,1],[7,1],[59,1],[78,2],[70,1],[19,3],[30,3],[50,2],[61,1],[35,2],[5,2]],'unlike':[[59,1],[77,2]],'useful':[[55,5],[50,2],[67,4],[77,1],[12,1],[27,1],[59,2],[49,1],[51,1],[54,3],[78,4],[43,1],[48,1],[57,1],[18,1],[58,1]],'cart':[[4,1],[78,5],[50,2],[67,2]],'noticeable':[[59,1]],'arise':[[64,1]],'#34053d':[[60,1]],'vista':[[64,1]],'clarify':[[77,1]],'messageboards':[[75,1]],'project':[[3,2],[4,1]],'nestopia_rgb':[[25,1]],'doliner':[[3,1]],'connecting':[[50,1]],'bpp':[[12,1]],'produces':[[61,1],[75,3],[78,1],[11,2]],'predecessor':[[61,1]],'#bxi':[[77,1]],'dependent':[[77,1]],'assigns':[[26,1]],'programming':[[62,2],[67,1],[57,1],[60,1],[58,1]],'|graphical':[[78,1]],'adders':[[78,1]],'loopy':[[79,2],[80,2]],'manual':[[59,2],[60,1],[44,1]],'dc9d':[[77,4]],'farcry':[[60,1]],'fceud':[[3,4],[25,1]],'executable':[[77,2],[3,1],[67,2]],'ines':[[5,1],[72,1],[50,4],[18,4]],'weird':[[59,1],[77,2]],'programmatically':[[55,3]],'figuring':[[32,1]],'come':[[67,1]],'isfromsavestate':[[59,2],[7,1]],'bios':[[64,2],[21,2],[74,1],[8,1],[28,1]],'swapping':[[9,1],[50,1]],'new':[[50,1],[61,8],[74,1],[77,7],[56,1],[27,6],[39,1],[59,2],[9,8],[14,2],[15,10],[23,1],[54,1],[60,2],[4,7],[66,2],[48,2],[10,6],[40,1],[7,8],[55,3],[44,2],[45,1],[12,3],[13,7],[8,4],[5,10],[64,1],[78,5],[21,2],[25,1],[70,2],[6,4],[43,2],[75,11],[3,3],[11,8]],'opaque':[[59,4]],'dosomething':[[60,1]],'modded':[[59,1]],'jump':[[77,7],[78,2]],'dragging':[[35,2]],'fourth':[[77,1]],'prg':[[55,2],[53,2],[56,5],[67,2]],'drawpixel':[[59,1]],'tasing':[[65,1]],'upward':[[75,1]],'400e':[[75,3]],'register':[[59,29],[78,5],[60,1],[50,4],[72,7],[74,8],[75,28],[77,41],[79,1],[8,1]],'bother':[[53,1],[75,1]],'pushes':[[77,1]],'stderr':[[4,1]],'issegmentend':[[61,3]],'quality':[[33,3],[11,1]],'very':[[55,2],[53,1],[31,1],[50,1],[62,1],[67,1],[74,3],[77,8],[64,1],[78,5],[49,1],[54,1],[60,1],[72,2],[48,2],[40,1],[65,1]],'shell':[[59,1]],'0xff':[[77,1]],'wch':[[5,2]],'afterwards':[[77,1]],'xnor':[[75,4]],'square':[[78,1],[75,31],[10,2],[33,2],[60,1]],'accounts':[[8,1]],'evaluate':[[50,1],[60,2]],'somethingglobal':[[60,1]],'playback':[[19,2],[61,2],[12,1],[13,1],[36,2],[74,3],[59,5],[15,1],[22,1],[23,6],[4,2],[75,4],[10,4],[7,2],[11,1]],'noise':[[59,1],[72,1],[75,34],[10,3],[33,1],[5,1]],'unif':[[4,1],[18,4],[5,1]],'low':[[78,3],[77,44],[13,1],[75,1],[33,1],[57,1]],'image':[[59,9],[21,5],[23,1],[78,5],[66,1],[60,2],[77,2],[48,1],[52,1],[35,6],[64,1]],'examiners':[[77,1]],'analyse':[[78,1]],'though':[[78,1],[51,1],[55,1],[53,1],[60,2],[77,2],[75,1],[40,1]],'opening':[[59,2],[6,1],[4,1],[61,1],[13,1],[40,1],[5,1]],'visual':[[67,1],[7,1],[29,2]],'dots':[[77,2]],'functional':[[9,1],[15,1],[3,1],[8,1]],'difficulty':[[65,1],[58,1]],'deb':[[9,1],[50,3],[5,1]],'bitmap':[[78,13]],'long':[[65,1],[78,2],[15,1],[54,1],[30,1],[77,1],[48,1],[75,6],[3,1],[64,1],[5,1]],'longer':[[8,2],[58,1],[9,1],[15,2],[70,1],[13,2],[48,1],[10,4],[75,2],[11,2],[7,1]],'fetch':[[72,1],[77,109],[78,15]],'lastkey3':[[61,1]],'places':[[74,1]],'registered':[[59,10]],'optimizing':[[65,1]],'divide':[[78,1],[75,2]],'1976':[[77,1]],'cleared':[[61,2],[75,2],[77,9],[7,1]],'positions':[[78,1],[13,1],[67,3],[8,2]],'parameterstack':[[60,1]],'configured':[[11,1]],'pet':[[77,2]],'consecutive':[[77,1],[60,1]],'player3':[[70,1]],'moves':[[4,1],[8,1]],'serial':[[78,1]],'screwed':[[78,1]],'people':[[63,1],[59,1],[78,1],[55,1],[48,1],[75,1],[40,1]],'second':[[50,2],[61,1],[13,1],[12,1],[74,3],[77,2],[59,4],[54,1],[23,1],[29,1],[78,3],[72,1],[79,3],[7,1],[65,1]],'commonly':[[48,1],[38,1],[11,1],[65,1]],'scaler':[[7,1],[35,2]],'snapping':[[54,1]],'suitable':[[55,1]],'and':[[50,24],[0,1],[61,31],[77,175],[56,14],[35,14],[27,11],[15,10],[29,2],[47,1],[80,3],[2,3],[24,2],[48,41],[32,4],[57,6],[79,5],[46,7],[38,7],[28,1],[44,1],[12,6],[13,7],[20,1],[36,2],[64,7],[5,21],[63,4],[68,2],[21,5],[22,5],[41,2],[69,1],[43,2],[33,3],[11,17],[1,5],[19,2],[67,17],[74,57],[16,1],[39,3],[59,74],[9,9],[23,15],[49,10],[51,2],[54,4],[60,25],[4,4],[66,7],[10,9],[40,28],[18,9],[7,23],[65,11],[55,30],[53,13],[30,15],[31,1],[62,3],[42,2],[52,1],[8,10],[17,7],[78,61],[26,1],[25,3],[70,15],[6,5],[76,1],[72,9],[75,57],[3,31],[58,6]],'messes':[[13,1]],'resurrected':[[3,1]],'still':[[77,1],[74,2],[36,1],[27,1],[59,4],[22,1],[80,1],[60,1],[75,3],[48,2],[10,2],[40,2],[11,1]],'individual':[[59,2],[75,2],[78,2],[33,3],[11,1]],'selectively':[[55,1]],'subdirectory':[[40,1]],'pbl':[[72,1]],'stops':[[59,4],[75,1],[7,1],[60,1]],'pipelines':[[78,2]],'before':[[55,3],[38,1],[50,3],[61,5],[74,1],[77,10],[36,1],[8,1],[17,1],[59,11],[21,1],[29,1],[54,2],[78,5],[6,1],[60,2],[48,2],[75,5],[3,1],[40,1],[65,2]],'256':[[59,1],[78,7],[70,2],[67,9],[61,2],[72,1],[77,2],[11,1],[27,1]],'ignore':[[59,1],[61,1],[10,1],[7,1],[62,1]],'unisystem':[[32,2],[8,1],[30,1]],'implies':[[2,1],[30,1]],'lock':[[13,1]],'various':[[1,1],[38,1],[28,1],[61,1],[36,1],[35,1],[27,1],[37,2],[5,2],[15,1],[26,1],[29,1],[59,1],[6,1],[63,1],[66,1],[75,2],[3,3]],'lacking':[[41,1],[42,1]],'patcher':[[50,1]],'corrupts':[[55,1]],'registering':[[59,6]],'informing':[[60,1]],'030':[[75,1]],'starts':[[78,4],[23,2],[29,1],[70,1],[60,1],[24,1],[61,3],[74,1],[77,1],[7,1]],'|09':[[75,1]],'adding':[[23,1],[53,1],[60,1],[4,1],[77,1],[48,1],[3,2],[56,1],[7,1]],'menus':[[9,1],[26,1],[29,1],[30,1],[48,3],[10,1],[5,2]],'lagcounter':[[13,1]],'brightness':[[25,1],[78,1],[32,1]],'400d':[[75,1]],'rra':[[77,14]],'x64':[[77,2]],'controls':[[50,1],[60,1],[30,4],[74,4],[16,1],[10,2],[75,6],[11,1]],'differences':[[77,1],[75,1],[27,1]],'bases':[[78,1]],'hit':[[54,1],[50,3],[67,1],[4,1],[61,1],[40,1],[8,1],[5,1]],'north':[[21,1]],'highest':[[78,1],[32,1]],'stationary':[[78,1]],'myself':[[60,1]],'switch':[[5,2],[21,6],[29,2],[19,2],[24,1],[48,1],[32,1],[36,1],[40,1],[27,1]],'sha':[[77,9]],'key2':[[61,1]],'163&164':[[13,1]],'icou':[[72,1]],'10000':[[19,1]],'greenzone':[[4,2],[6,1]],'xparent':[[78,2]],'denote':[[61,1],[74,1]],'n#bm#l':[[77,1]],'0fffh':[[74,3]],'0x5000':[[5,1]],'references':[[77,1],[50,1],[78,1]],'stopped':[[59,2],[15,1],[75,1],[77,2]],'initialization':[[55,1],[11,1]],'subject':[[70,3],[79,1]],'compliment':[[75,2]],'anyway':[[75,1],[51,1],[62,1]],'03ff':[[67,1]],'vrcvi':[[74,3]],'kj0':[[77,1]],'yield':[[78,2]],'dd0a':[[77,9]],'inversion':[[78,4]],'formatted':[[48,1]],'delgamegenie':[[59,2],[7,1]],'cartridges':[[30,1]],'pram':[[72,1]],'immed':[[77,2]],'0000110000000000':[[79,1]],'mexr':[[72,1]],'its':[[1,3],[50,3],[0,1],[61,2],[74,2],[77,9],[56,1],[35,1],[59,5],[15,2],[24,1],[60,1],[32,1],[57,1],[40,2],[65,1],[7,1],[53,1],[30,1],[44,1],[36,3],[5,1],[63,1],[43,1],[3,1],[11,3]],'regs':[[59,5],[13,1]],'77ac':[[70,1]],'online':[[60,1],[67,1]],'2011':[[6,1]],'grayed':[[10,2],[11,1]],'deal':[[60,1],[68,1]],'approved':[[61,1]],'adequate':[[48,1]],'tetris':[[62,1]],'reasons':[[77,1]],'eval':[[61,3]],'interrupted':[[77,1]],'006fh':[[74,2]],'present':[[78,4],[52,1],[74,1],[55,1],[70,1]],'sophisticated':[[78,1]],'txa':[[77,2]],'pixel':[[59,9],[78,38],[60,4],[50,1],[11,1],[7,3]],'00a2':[[40,1]],'cursor':[[4,3],[51,2],[52,1],[40,1],[35,2],[5,1]],'8kb':[[72,3],[14,1]],'poke':[[40,3],[7,1]],'1986':[[21,1]],'records':[[55,1],[70,2],[65,1]],'cbl':[[72,1]],'sort':[[77,2],[78,1],[40,1],[60,1]],'04015h':[[74,1]],'eraser':[[48,1]],'numpad6':[[59,1]],'sometimes':[[59,1],[48,1],[75,1],[77,3],[78,2]],'problems':[[11,1],[63,1],[64,1],[77,1],[35,1],[7,1]],'style':[[59,1],[21,1],[24,1],[30,1],[3,1],[40,1],[10,1]],'04cx':[[67,1]],'didn':[[59,1],[13,1],[48,1],[78,1],[40,2],[5,1]],'happens':[[59,1],[48,2],[74,1],[77,3],[78,1],[60,1]],'hooking':[[39,1]],'~60':[[9,1]],'info|':[[78,1]],'advantage':[[57,1],[75,1],[23,1]],'breaking':[[50,2]],'prompt':[[60,1],[9,1],[6,1],[7,1]],'context':[[7,2],[5,2],[57,1],[23,1],[29,3],[38,4],[10,2],[40,2],[11,5],[27,2]],'|0b':[[75,1]],'close':[[38,2],[30,1],[53,1],[77,1],[13,1],[36,2],[27,1],[59,4],[15,1],[78,3],[25,1],[4,1],[48,1],[11,2]],'6510':[[77,13]],'terminal':[[75,7]],'savestateas':[[6,1]],'make':[[50,4],[61,1],[74,2],[77,1],[56,1],[35,3],[27,2],[59,7],[49,2],[23,2],[29,1],[66,1],[60,3],[48,5],[32,1],[10,1],[55,4],[38,1],[53,2],[62,1],[17,2],[78,4],[22,1],[70,1],[75,1]],'dey':[[77,1]],'megamanii':[[62,1]],'nreg':[[72,1]],'truncating':[[6,1]],'f19':[[59,1]],'portable':[[3,1]],'8160':[[67,1]],'initalizing':[[74,1]],'nesten':[[3,1]],'proper':[[5,1],[74,5],[27,1]],'bigger':[[61,7],[48,1],[77,3],[35,4]],'addresses':[[50,11],[67,5],[52,1],[74,1],[56,1],[5,1],[59,2],[49,1],[78,1],[43,3],[6,2],[75,1],[10,2],[40,12],[11,4]],'universally':[[64,1]],'windows98':[[29,1]],'both':[[18,1],[79,1],[46,1],[55,2],[30,3],[50,2],[77,9],[74,3],[5,1],[78,4],[9,1],[15,2],[21,1],[23,2],[54,2],[48,1],[75,6],[40,1],[7,1],[11,1]],'respect':[[78,1]],'any':[[50,6],[67,2],[61,3],[74,1],[77,18],[35,2],[27,3],[59,11],[15,2],[14,1],[23,6],[54,1],[60,4],[48,2],[40,4],[7,2],[46,1],[55,1],[53,2],[30,1],[62,3],[52,1],[20,1],[8,1],[5,2],[17,1],[78,12],[21,1],[22,1],[70,4],[75,10],[3,3],[58,1]],'typing':[[40,1],[53,2]],'synchronized':[[50,1]],'0a00':[[67,1]],'008':[[75,2]],'structure':[[58,1]],'transfering':[[77,1]],'declare':[[58,1]],'controllers':[[26,1],[30,4],[27,1]],'hl2n@':[[77,1]],'parentheses':[[50,1]],'evolution':[[2,1]],'whereby':[[53,1]],'collapsible':[[11,1]],'dictates':[[59,1]],'overlap':[[77,1]],'february':[[75,1]],'about':[[1,2],[38,2],[50,1],[0,1],[67,1],[77,2],[74,1],[68,1],[63,1],[59,4],[78,3],[60,2],[48,4],[75,1],[10,1],[57,1],[11,1]],'artifacts':[[35,2]],'fequency':[[75,1]],'manually':[[59,1],[78,1],[23,1],[80,1],[30,1],[50,1],[48,1]],'value':[[50,4],[61,6],[74,2],[77,34],[56,10],[27,2],[59,23],[15,4],[80,2],[60,5],[48,1],[32,1],[10,3],[40,39],[7,2],[53,5],[20,2],[5,1],[78,12],[70,18],[43,12],[72,3],[75,38],[11,4]],'calculating':[[77,1]],'whose':[[77,1]],'breaks':[[77,1],[78,1],[8,1],[50,1]],'bero':[[3,1]],'interesting':[[55,1]],'operations':[[59,2],[77,10],[53,1],[50,1]],'f15':[[59,1]],'abbr':[[78,1]],'deletes':[[7,1]],'score':[[61,3],[10,1],[30,2]],'formats':[[15,1],[1,1],[18,5],[69,2]],'takes':[[59,2],[78,3],[50,1],[60,1],[44,1],[61,1],[13,1],[74,1],[75,1],[77,4],[35,1]],'disables':[[19,2],[40,1],[75,1]],'key1':[[61,3]],'controlled':[[78,1],[75,1],[74,1],[50,2]],'fffb':[[77,1],[67,1]],'decays':[[75,1]],'mistake':[[53,1],[60,2]],'bd2ox':[[77,1]],'bounds':[[8,2],[5,1]],'move':[[59,1],[61,1],[55,4],[67,1]],'spec':[[74,3]],'headers':[[72,1],[7,1]],'outputting':[[22,1],[32,1]],'none':[[59,1]],'t%_87':[[77,2]],'extensions':[[18,2]],'showfps':[[5,1]],'hard':[[15,1],[23,1],[55,2],[70,2],[24,1],[48,1],[11,1]],'clicked':[[59,1]],'experiments':[[75,1]],'typical':[[78,1],[67,1]],'cmos':[[77,10]],'enhancements':[[78,1],[9,1],[15,4],[12,1],[13,1],[3,1],[10,3],[8,1],[11,2]],'uninstall':[[12,1]],'upon':[[17,1],[59,1],[78,1],[29,1],[55,1],[75,5],[65,1]],'2010':[[7,2],[8,1]],'runs':[[59,10],[54,1],[50,5],[31,1],[60,1],[61,1],[3,1],[11,2],[65,1]],'exits':[[59,1],[61,1]],'sakura':[[48,2]],'whyandhow':[[65,1]],'optimized':[[15,1]],'fulscreen':[[5,1]],'searching':[[58,1],[15,1],[54,1]],'oninputend':[[61,1]],'determined':[[77,1],[74,3],[78,1],[70,1]],'nulled':[[72,1]],'gradius':[[62,1]],'assemblers':[[66,1]],'sachen':[[5,1]],'duh':[[48,1]],'intelligent':[[55,1]],'metadata':[[15,1],[23,5],[38,4],[11,1]],'represent':[[75,5],[70,3],[53,1]],'use':[[50,8],[61,5],[77,15],[56,1],[35,1],[27,1],[29,1],[47,2],[48,13],[32,2],[57,3],[46,1],[28,1],[12,1],[13,1],[64,3],[5,3],[22,1],[43,3],[33,1],[11,1],[1,2],[19,1],[67,5],[74,6],[39,2],[59,14],[9,1],[49,1],[54,4],[66,1],[60,2],[10,1],[40,5],[7,2],[65,4],[55,2],[53,2],[30,7],[31,1],[45,2],[62,5],[8,1],[78,7],[72,1],[75,1],[3,2],[58,2]],'involving':[[7,2]],'esc':[[29,1],[27,1]],'contributed':[[75,1]],'katakana':[[48,1]],'customlagindicator_rvt':[[5,1]],'globally':[[59,1]],'writepixel':[[59,1]],'onattemptend':[[61,1]],'ram':[[1,1],[50,10],[67,26],[61,1],[74,11],[39,2],[59,6],[9,4],[15,1],[49,4],[54,1],[60,1],[66,1],[4,3],[10,1],[40,9],[7,3],[65,4],[55,2],[53,6],[42,4],[5,5],[63,3],[78,10],[21,1],[41,4],[6,4],[43,4],[72,9],[3,1],[11,4]],'sconsruct':[[13,1]],'inputcfg':[[8,1],[12,1]],'identifier':[[70,2]],'header':[[59,3],[21,2],[70,4],[72,7],[74,4],[8,1],[18,1]],'0319':[[77,1]],'backcolor':[[59,3]],'2005':[[72,1],[79,3],[80,2]],'studying':[[75,1]],'contains':[[50,2],[62,1],[77,4],[5,1],[78,1],[23,1],[70,1],[60,1],[72,2],[48,1],[75,4],[3,2],[40,1]],'|0f':[[75,1]],'auto':[[65,2],[46,3],[38,11],[30,9],[50,1],[12,1],[13,1],[36,1],[74,2],[8,1],[5,1],[27,6],[39,3],[23,1],[4,5],[7,2],[11,5]],'tasedit':[[11,1],[6,1],[8,2]],'botloop':[[61,3]],'1100000000000000':[[79,1]],'advance':[[11,1],[65,4],[50,2],[61,1],[27,3],[59,5],[54,1],[23,9],[47,1],[66,1],[24,5],[4,1],[40,2],[33,2],[58,1]],'part1':[[50,1]],'applicable':[[78,2]],'years':[[3,1],[78,1]],'real':[[27,1],[78,1],[79,1],[53,2],[60,1],[77,6],[74,1],[75,2],[10,1],[40,1],[35,2],[5,1]],'construct':[[57,1]],'graphic':[[78,1],[49,1],[8,1],[5,1]],'asr':[[77,1]],'128':[[77,7],[78,2],[11,2],[50,2]],'25%':[[59,2]],'p3f':[[59,1]],'element':[[59,1],[78,5]],'rests':[[78,1]],'symbols':[[50,1]],'functionality':[[13,2],[7,2],[8,1]],'sconscripts':[[10,1]],'dac':[[75,8]],'clean':[[48,1]],'6500':[[77,5]],'hokeys':[[27,1]],'returned':[[59,1],[78,2],[61,6],[72,2],[75,1],[77,1]],'memw':[[43,1]],'~50':[[9,1]],'wanted':[[77,1],[78,1]],'began':[[3,2]],'somthing':[[78,2]],'4bits':[[74,1]],'clc':[[77,1]],'map':[[53,1],[30,1],[67,15],[61,1],[37,3],[17,1],[27,4],[9,1],[15,1],[21,2],[23,4],[24,1],[26,1],[49,1],[75,1],[33,1]],'they':[[50,1],[67,2],[61,1],[74,2],[77,9],[59,2],[54,2],[66,1],[60,1],[48,1],[10,1],[18,1],[65,1],[55,4],[62,3],[28,1],[13,1],[52,2],[8,1],[5,1],[78,7],[25,1],[41,1],[72,1],[75,1]],'md5_asciistr':[[10,1]],'language':[[49,1],[60,2],[61,1],[48,3],[77,1],[57,1],[58,1]],'then':[[50,4],[61,9],[74,11],[77,7],[56,7],[27,2],[59,14],[15,1],[23,4],[29,1],[51,1],[54,3],[60,13],[48,2],[32,2],[40,2],[7,2],[55,6],[53,2],[45,2],[36,1],[37,1],[78,5],[70,3],[43,3],[75,7],[3,1],[58,1]],'resulted':[[11,1]],'copied':[[45,1],[77,5],[48,1],[78,1]],'coloring':[[55,1]],'php':[[77,4]],'requested':[[78,2]],'mention':[[78,1]],'backup':[[11,1],[64,1],[36,4],[38,3],[8,1],[27,1]],'toggle':[[79,1],[19,11],[38,3],[12,4],[13,1],[5,1],[27,2],[78,1],[15,2],[14,1],[23,1],[29,1],[72,1],[10,1],[40,5],[11,3],[7,2]],'pad':[[3,1],[30,6]],'beginnign':[[7,1]],'numerous':[[19,1],[15,2]],'saying':[[48,2],[50,1]],'ways':[[78,1],[54,1],[55,1],[70,1],[60,1],[62,1],[32,1]],'postings':[[75,1]],'capacitance':[[75,1]],'splicing':[[70,1],[65,1]],'builds':[[55,1],[13,1]],'paiting':[[60,1]],'attach':[[30,1]],'matthew':[[75,1]],'power':[[59,1],[23,2],[70,4],[71,1],[30,4],[24,4],[67,1],[61,1],[13,1],[12,2],[40,1],[5,2]],'essence':[[65,1]],'4004':[[75,6]],'ing':[[49,1]],'mainly':[[75,1]],'savescreenshot':[[59,1]],'pictures':[[27,1]],'identify':[[78,1]],'mustrollback':[[61,1]],'p00':[[59,1]],'spike':[[75,3]],'adjusted':[[77,1]],'sign':[[59,1],[48,3],[77,2]],'repeating':[[78,1]],'manipulating':[[61,1],[50,1]],'additional':[[78,1],[9,1],[1,1],[38,1],[50,2],[77,2],[75,1],[3,1],[57,1],[64,1]],'overflow':[[77,13],[13,1]],'65c816':[[77,1]],'upgrade':[[13,1]],'translate':[[48,3]],'broke':[[10,1]],'normally':[[54,2],[50,2],[77,2],[48,1],[75,2],[27,1]],'earliest':[[78,1]],'`j@xn':[[77,1]],'subroutines':[[55,1]],'fourscore':[[70,6],[13,1]],'would':[[46,1],[55,5],[50,1],[67,6],[77,4],[12,2],[13,3],[74,1],[27,1],[59,2],[78,19],[48,3],[32,1],[10,1],[40,1],[18,1],[75,2]],'mis':[[5,1]],'overhaul':[[44,1],[78,1],[15,1],[7,1],[11,1]],'uncheck':[[48,1],[32,1],[35,2],[30,1]],'li#v7':[[77,2]],'z`_d2n@09':[[77,1]],'times':[[59,1],[78,7],[67,1],[43,1],[61,1],[74,2],[75,1],[77,1],[35,4],[65,2]],'target':[[59,1],[78,1],[65,1]],'chr':[[78,2],[55,3],[72,2],[52,1],[13,3],[5,2]],'association':[[77,1]],'authors':[[3,1]],'manners':[[60,1]],'borders':[[35,1]],'compensates':[[59,3]],'framework':[[61,2]],'irql':[[72,1]],'original':[[47,1],[50,2],[2,1],[75,1],[3,2],[40,2],[11,1],[56,1]],'four':[[53,1],[30,3],[67,1],[77,3],[35,2],[21,1],[71,1],[4,1],[72,3],[48,1],[10,1],[7,1]],'lagframe':[[59,1]],'chips':[[78,1],[74,1]],'borrow':[[77,1]],'maintained':[[8,1]],'mnemonics':[[70,1]],'ntsc':[[27,1],[35,4],[59,1],[23,1],[70,1],[78,8],[2,1],[74,12],[32,5],[7,1],[5,1]],'revision':[[77,11]],'engineers':[[77,1],[78,1]],'0500':[[67,1]],'rb`xh8':[[77,1]],'activation':[[75,1]],'switching':[[12,1],[21,2],[55,1],[56,1],[80,1]],'grayscale':[[32,2],[78,1],[5,1]],'bitwise':[[59,1],[60,3]],'trim':[[48,1]],'highlight':[[45,1],[48,1]],'periods':[[78,1]],'aspect':[[4,1],[35,6],[75,1],[11,1],[5,1]],'custom':[[59,1],[51,1],[78,1],[55,1],[24,2],[4,2],[32,4],[11,1]],'admittedly':[[48,1]],'counters':[[78,3],[50,3],[75,9],[10,1],[11,1],[5,1]],'looped':[[59,1],[75,1]],'highly':[[61,2]],'typically':[[78,1],[75,2],[38,2],[67,1]],'pbrate':[[74,2]],'u%_':[[77,1]],'cycles|':[[78,1]],'0007':[[74,1]],'padding':[[4,1]],'par':[[40,1]],'holder':[[74,1]],'large':[[59,1],[13,1],[61,1],[78,1],[50,1]],'x00fd':[[43,1]],'j0`zgx':[[77,1]],'porst':[[3,1]],'ghz':[[35,1]],'objects':[[78,15],[57,1],[60,1],[27,1]],'06ff':[[67,1]],'ale':[[78,2]],'sufficient':[[79,1]],'airman':[[78,1]],'informative':[[7,1]],'skipping':[[27,1],[11,1],[12,1]],'count':[[59,5],[78,3],[70,1],[19,1],[43,3],[77,1],[75,33],[7,2],[8,1]],'lagcount':[[59,1],[11,1]],'rst':[[50,2]],'gdscreenshot':[[59,1],[60,1]],'applications':[[77,2],[60,1]],'damage':[[40,1]],'see':[[19,7],[50,2],[67,5],[61,3],[74,5],[77,15],[27,3],[59,8],[15,1],[23,3],[51,1],[54,2],[24,2],[60,3],[80,1],[48,2],[32,1],[40,1],[79,1],[65,1],[46,1],[55,5],[38,1],[53,2],[44,2],[12,2],[36,1],[64,2],[5,2],[17,1],[37,1],[78,5],[25,1],[70,1],[43,1],[72,1],[75,11],[3,4],[11,8]],'inclusive':[[61,1],[60,1]],'slowest':[[24,1]],'frequencys':[[75,4]],'illegal':[[77,1]],'reduces':[[67,1]],'stripped':[[55,9],[5,1]],'connected':[[77,1],[21,1],[75,2],[78,3]],'fails':[[27,1]],'uint64':[[70,1]],'%xh`':[[77,1]],'600':[[77,3]],'0x100':[[72,1]],'allows':[[38,1],[30,3],[31,1],[50,2],[53,4],[61,1],[20,1],[37,2],[27,2],[59,1],[9,1],[15,1],[22,1],[29,1],[24,1],[43,1],[49,5],[60,1],[48,1],[32,1],[40,2],[57,2],[65,1]],'esper':[[8,1]],'indiana':[[6,1]],'000c':[[74,1]],'clears':[[77,3]],'lae':[[77,1]],'fd%j':[[77,1]],'bot':[[59,2],[15,2],[61,22],[47,2],[57,2],[65,1]],'warcraft':[[60,1]],'emulators':[[7,1],[59,1],[9,2],[23,1],[36,1],[8,1],[5,1]],'ended':[[61,2]],'031x':[[67,1]],'ideal':[[75,1],[65,1]],'altered':[[23,1]],'crossings':[[77,3]],'many':[[67,1],[61,1],[74,1],[77,5],[54,1],[9,1],[15,2],[29,1],[60,1],[2,1],[4,1],[48,1],[32,1],[40,1],[7,1],[55,2],[53,1],[62,1],[42,1],[52,1],[8,1],[5,3],[78,1],[21,2],[41,1],[6,2],[43,2],[72,1],[3,2],[11,3]],'toggled':[[15,1],[36,1],[6,1],[27,4]],'raised':[[61,2],[78,2]],'alter':[[66,1],[51,1]],'19ff':[[67,1]],'dffa':[[50,1]],'7000':[[74,1]],'0a000h':[[74,1]],'qfox':[[3,1],[60,1]],'act':[[65,1]],'happen':[[77,1],[75,1],[80,1]],'improbably':[[61,1]],'desire':[[54,1],[75,1]],'_f_':[[77,1]],'uses':[[79,1],[1,1],[55,1],[38,1],[67,1],[45,1],[61,2],[74,13],[16,1],[77,3],[64,1],[59,4],[15,3],[78,2],[25,1],[70,4],[43,1],[60,2],[48,1],[75,2],[3,1],[40,2],[7,1],[11,1]],'microphone':[[7,3],[30,4]],'routines':[[77,1],[49,1],[54,1],[55,1]],'agree':[[79,1]],'inspection':[[50,1]],'nnnn':[[55,1],[50,3]],'floppy':[[21,2]],'anytime':[[4,1],[23,1]],'knew':[[48,1]],'mirrors':[[67,1]],'flop':[[78,1]],'vbl':[[50,1]],'patent':[[78,1]],'seen':[[67,1],[15,1],[65,1]],'primary':[[78,9]],'cheats':[[7,1],[5,2],[49,1],[59,4],[43,2],[28,2],[4,3],[60,1],[40,19],[8,4],[11,5]],'combine':[[55,6],[77,1],[50,1]],'variables':[[54,1],[60,3],[61,6],[72,1],[74,2],[10,1],[58,2]],'installation':[[48,1]],'embedded':[[59,1]],'asymmetery':[[75,1]],'bitmaps':[[78,3]],'readbyteunsigned':[[59,2]],'inside':[[59,4],[12,1],[78,3],[50,1]],'25th':[[78,2]],'watched':[[43,1]],'last':[[79,1],[55,1],[19,1],[38,11],[50,2],[67,2],[77,6],[36,3],[35,2],[27,4],[5,1],[59,4],[15,4],[23,1],[78,2],[71,1],[43,1],[72,3],[48,2],[75,2],[3,4],[40,5],[10,2],[11,1]],'oninputstart':[[61,3]],'polls':[[59,1]],'rol':[[77,11]],'x_functions':[[62,1]],'4bit':[[74,4]],'discrete':[[78,1]],'starting':[[55,1],[50,5],[77,1],[74,7],[17,1],[59,4],[78,2],[29,1],[70,1],[75,2],[10,1],[7,1],[65,2]],'spra':[[72,1]],'prevention':[[11,1]],'red':[[4,1],[59,7],[32,1],[10,1],[60,1],[27,1]],'zd`92r%_':[[77,1]],'04bx':[[67,1]],'8th':[[77,2],[78,1]],'carrying':[[78,1]],'document':[[72,2],[75,4],[77,2],[78,6],[38,3]],'kanji':[[48,5]],'minimize':[[11,1],[15,1]],'deterministic':[[23,1]],'prints':[[77,2],[13,1],[8,1]],'001c':[[43,2]],'conclusion':[[75,1]],'brothers':[[67,2]],'somewhat':[[78,3],[71,1],[60,1],[72,2],[74,2],[75,1],[40,1],[35,1]],'lsb_first':[[12,1]],'try':[[59,6],[54,1],[55,1],[60,1],[61,1],[48,2],[52,1],[77,2],[56,1],[64,1],[58,1]],'0310':[[67,2]],'easily':[[59,2],[78,3],[41,1],[53,2],[50,2],[61,2],[77,1]],'blobs':[[70,1]],'referred':[[72,1],[23,1],[3,1],[71,1]],'disksys':[[21,2],[64,2],[28,2]],'latches':[[77,2],[78,1]],'support':[[7,2],[53,1],[12,1],[13,4],[74,2],[8,1],[5,3],[59,1],[15,2],[6,1],[48,2],[75,1],[3,2],[40,1],[11,2],[10,2]],'seconds':[[38,2],[77,2]],'opposed':[[78,4],[48,1],[40,1]],'selections':[[48,4]],'hold':[[65,1],[78,1],[15,2],[79,1],[35,1],[30,9]],'00xx':[[67,1]],'possibly':[[61,1],[48,1],[55,1],[53,1],[7,1],[60,1]],'select':[[53,1],[30,5],[45,3],[61,1],[77,1],[27,1],[17,4],[59,2],[21,1],[22,6],[23,9],[70,5],[43,3],[60,2],[78,8],[48,5],[40,1],[33,1],[7,1]],'loops':[[59,1],[60,2]],'faults':[[6,1]],'coordinates':[[59,2],[67,5],[78,1]],'prioritized':[[78,4]],'hell':[[78,1]],'displayed':[[19,2],[50,4],[52,2],[36,1],[56,1],[27,1],[59,1],[49,1],[23,1],[70,4],[78,1],[43,1],[4,1],[40,2],[11,1],[7,1]],'vrom':[[72,1],[5,1]],'frameadvance':[[60,5],[59,2],[61,1],[24,2],[58,2]],'orange':[[59,3]],'quiz':[[30,1]],'smb':[[51,1],[19,16],[11,1],[62,7]],'easy':[[78,1],[74,1],[55,1],[53,1],[60,1],[70,1]],'lagged':[[59,1],[11,1]],'accurate':[[77,1],[75,1]],'b000':[[74,1]],'pfpixel':[[78,1]],'completing':[[65,1]],'speeds':[[13,1],[24,1]],'041x':[[67,1]],'kicked':[[59,2]],'distinguish':[[59,1],[77,1],[55,2],[7,1]],'good':[[61,1],[78,4],[40,1]],'007bh':[[74,1]],'october':[[77,1]],'carry':[[59,1],[75,3],[77,17]],'watches':[[6,1]],'outside':[[78,1],[74,1],[7,1],[67,1]],'03xx':[[67,1]],'9030':[[74,1]],'among':[[41,1],[42,1]],'bi&':[[77,4]],'indicate':[[78,1],[58,1]],'underlaps':[[78,1]],'257':[[59,1]],'price':[[78,1]],'dance':[[11,1]],'thus':[[59,2],[77,1],[78,1],[36,1],[55,1],[60,1]],'ignores':[[12,1]],'|07':[[75,2]],'look':[[62,1],[28,1],[61,1],[12,2],[13,1],[74,1],[77,1],[35,1],[64,1],[59,2],[78,5],[71,1],[60,1],[48,3],[3,1],[7,1],[58,1]],'1000000':[[74,1]],'old':[[5,1],[59,1],[54,1],[78,1],[66,2],[4,2],[77,2],[13,1],[75,4],[10,1],[64,3],[27,5]],'5206':[[74,4]],'f22':[[59,1]],'fairy':[[77,1]],'04ex':[[67,1]],'light':[[55,2]],'9th':[[77,1]],'104':[[78,1]],'colored':[[53,1],[35,1],[78,1]],'60fps':[[34,1],[64,1],[27,1]],'squeeze':[[48,1]],'certainly':[[57,1]],'ought':[[77,1]],'firing':[[59,4],[78,1]],'marko':[[77,4]],'zip':[[32,1],[19,2],[7,1],[18,4]],'built':[[62,2],[3,1],[56,2],[6,1],[58,1]],'readonly':[[19,7],[59,4]],'emulates':[[21,1],[68,1],[30,2],[24,3]],'comes':[[78,1],[25,1],[61,1],[48,1],[32,1],[77,3],[40,1],[64,1],[27,1]],'override':[[7,1],[30,1],[28,1],[12,1],[64,1],[27,1],[59,2],[15,1],[26,1],[43,1],[40,1],[11,3],[33,1]],'fceuxd':[[64,1],[3,8],[25,1],[2,1],[53,1]],'ends':[[61,2],[77,2],[70,1],[7,1],[50,1]],'icoa':[[72,1]],'7f2':[[75,1]],'07ff':[[50,1],[67,8],[6,1]],'exe':[[27,1],[64,2],[58,1]],'vba':[[42,1],[36,1],[41,1],[7,1]],'pads':[[30,2]],'pane':[[59,1],[5,1]],'numpad4':[[59,1]],'toggling':[[27,1],[78,2],[15,2],[23,1],[6,1],[30,2],[3,1],[10,1],[11,2],[8,1]],'parantheses':[[60,1]],'imposed':[[65,1]],'2a03':[[67,4],[75,13]],'4002':[[75,5]],'comparisons':[[77,2]],'kh#f1':[[77,1]],'damn':[[78,1]],'c150':[[77,1]],'paddle':[[70,1],[59,1],[30,3]],'fffc':[[50,1],[67,1]],'interpreter':[[60,1]],'immaterial':[[78,1]],'execute':[[77,1],[54,1],[75,1],[50,5],[58,1]],'perhaps':[[59,1],[48,1],[77,1]],'gate':[[75,2]],'removed':[[35,1],[78,2],[9,1],[15,2],[55,1],[67,1],[4,1],[3,1],[11,1],[5,1]],'technique':[[65,2]],'choices':[[15,1],[32,1],[18,1],[7,1]],'missing':[[8,1],[12,1]],'method':[[59,3],[78,2],[77,2],[75,1],[40,2],[35,2],[27,1]],'8ch':[[74,1]],'radiobuttons':[[5,1]],'pen':[[48,1]],'calculations':[[59,1]],'erroneous':[[7,1],[11,1]],'indexed':[[77,13],[78,1]],'game':[[19,3],[50,5],[67,9],[61,1],[74,1],[16,1],[56,16],[35,2],[27,21],[59,12],[9,2],[15,1],[23,9],[29,4],[24,1],[49,9],[4,3],[51,1],[48,10],[32,5],[54,3],[40,9],[18,2],[60,1],[65,5],[66,8],[55,12],[38,7],[30,3],[53,9],[62,3],[13,2],[52,3],[8,3],[5,2],[17,3],[64,8],[21,3],[78,7],[70,1],[43,4],[6,1],[72,1],[3,1],[11,3]],'initial':[[77,2]],'tons':[[74,1]],'lacked':[[75,1]],'clipping':[[19,1]],'arcade':[[24,1],[74,1]],'xx00':[[77,2]],'clipsides':[[19,2]],'specifically':[[59,1],[23,1],[62,1],[67,2],[61,1],[13,1],[57,1]],'acknowledge':[[77,8]],'boundary':[[59,1],[77,20]],'restart':[[17,1],[59,1],[61,1],[29,1]],'booklet':[[77,1]],'2009':[[10,1],[9,1],[11,1]],'misplaced':[[59,1]],'getnote':[[59,1]],'split':[[78,1],[67,1]],'changes':[[78,1],[9,1],[15,1],[53,1],[60,2],[77,2],[48,2],[75,1],[3,1],[11,1],[5,2]],'knowing':[[62,1]],'fans':[[66,1]],'goemon':[[8,2]],'numbering':[[59,2],[7,1],[11,2]],'test':[[17,1],[78,1],[23,1],[50,3],[77,10],[48,2],[10,3]],'desyncs':[[64,1],[23,1]],'addressed':[[56,1]],'desmume':[[41,1],[7,1],[42,1]],'plays':[[23,1],[55,1],[19,2],[67,1],[38,2],[74,1],[7,1]],'rightclicks':[[5,1]],'hue':[[78,1],[32,1]],'eof':[[78,1],[74,1],[75,1],[70,1]],'255':[[59,7],[78,1],[72,1],[77,4],[32,1],[20,9],[40,1],[8,1]],'completely':[[59,4],[78,1],[23,1],[6,1],[44,1],[61,1],[77,2],[11,1],[5,1]],'trainer':[[30,1]],'writebyte':[[59,1],[60,1]],'snd':[[72,2]],'dd9d':[[77,1]],'zxcvzxcv@netzero':[[79,2],[80,2]],'blurred':[[35,1],[64,1]],'wide':[[53,1]],'wish':[[58,1],[22,1],[54,1],[53,1],[50,3],[62,1],[45,1],[56,1],[37,1]],'pcejin':[[41,1],[42,1]],'slightly':[[59,1],[74,1],[75,1],[80,1]],'individuals':[[75,2]],'track':[[59,1],[9,1],[55,3],[43,1],[67,1]],'lost':[[13,2],[23,1],[15,1],[48,1],[53,1]],'are':[[50,15],[61,9],[77,38],[35,2],[27,2],[15,2],[80,1],[48,17],[32,1],[57,1],[79,5],[46,2],[38,3],[28,6],[13,2],[20,3],[36,1],[64,2],[5,2],[21,1],[41,2],[43,1],[33,1],[11,9],[19,1],[67,7],[74,10],[59,20],[9,1],[23,2],[54,1],[66,3],[60,16],[4,1],[10,1],[40,8],[7,2],[18,3],[65,3],[55,8],[53,3],[62,4],[42,2],[8,2],[17,1],[78,39],[70,13],[72,5],[75,27],[58,4]],'syncronization':[[78,2],[75,1]],'others':[[77,1],[75,2],[46,1],[55,1],[66,1],[5,1]],'music':[[74,12],[48,1],[75,1],[67,3]],'multiples':[[35,1],[75,1]],'2006':[[72,1],[78,2],[3,4],[79,4],[80,1]],'notes':[[59,6],[55,1],[70,1],[67,1],[80,1],[4,1],[77,10],[75,2]],'cancelled':[[65,1]],'reloading':[[10,1],[75,2]],'claims':[[77,1]],'vic20':[[77,2]],'getcurrentbranch':[[59,1]],'naturally':[[78,2],[75,1]],'modulus':[[41,1],[42,1]],'q_s8':[[77,1]],'agrees':[[79,1]],'112':[[59,4]],'holding':[[4,1],[23,1],[57,1],[24,2]],'throught':[[55,1]],'|03':[[75,1]],'tadd':[[72,1]],'load':[[19,4],[50,3],[61,1],[74,13],[77,5],[27,5],[59,6],[15,3],[23,1],[29,3],[47,1],[60,11],[4,1],[48,4],[32,2],[10,1],[40,3],[7,2],[18,2],[55,1],[38,3],[53,1],[28,1],[62,3],[12,2],[36,3],[8,4],[64,1],[17,4],[21,1],[25,1],[43,4],[75,10],[11,1]],'setselection':[[59,1]],'unf':[[18,1]],'skip':[[59,1],[15,1],[46,1],[62,1],[13,2],[11,2],[27,2]],'collected':[[1,1]],'obtain':[[55,1]],'reflect':[[10,1]],'paused':[[59,3],[50,2],[5,2]],'listings':[[37,1]],'villigust':[[74,1]],'weapon':[[67,2],[46,1]],'enough':[[78,2],[48,1],[67,1],[62,1]],'skips':[[60,1]],'chapters':[[68,1],[26,1],[1,1]],'prevents':[[15,1],[23,1]],'260':[[78,1],[50,1]],'11111111':[[79,1]],'aki':[[77,1]],'01ah':[[74,1]],'sei':[[77,2]],'build':[[48,1],[12,3],[13,2],[3,1],[10,1],[11,2],[5,2]],'enlist':[[5,1]],'backspace':[[59,1]],'run':[[65,2],[46,1],[50,7],[62,3],[61,4],[77,9],[35,2],[27,1],[64,1],[59,6],[49,1],[60,2],[3,2],[79,1],[11,2],[58,7]],'interface':[[78,1],[29,1],[3,2],[40,1],[8,2]],'inputs':[[17,1],[59,2],[78,1],[30,1],[61,2],[13,3],[57,1],[65,1]],'indicating':[[59,1],[78,1]],'happily':[[77,1]],'tar':[[18,1]],'groups':[[10,1],[27,1]],'f21':[[59,1]],'densetsu':[[5,1]],'three':[[78,1],[53,1],[50,4],[60,1],[30,1],[61,2],[48,2],[72,1],[77,3],[35,2]],'random':[[61,13],[48,1],[75,14],[77,2],[67,1]],'rarely':[[77,1],[54,1],[67,1]],'127':[[59,5],[77,1]],'2400|':[[67,1]],'relevant':[[55,1],[72,1]],'okcancel':[[59,1]],'aware':[[60,1]],'distributed':[[66,1]],'redesign':[[4,1]],'processtable':[[60,2]],'getscreenpixel':[[59,3],[7,1]],'forward':[[72,1]],'strobed':[[78,1],[75,1]],'oddities':[[77,1]],'&6':[[77,1]],'129':[[78,1]],'5ff7':[[74,2]],'hypershot':[[30,1]],'clearmarker':[[59,1]],'0x60':[[77,1]],'immediate':[[77,9],[7,1],[50,1]],'shakes':[[10,1]],'patching':[[13,1],[49,1],[40,1],[18,3],[50,1]],'numpad1':[[59,1]],'fceu_setrenderplanes':[[11,1]],'designated':[[75,1]],'j3c0b%a@':[[77,1]],'nintendo':[[17,1],[78,6],[21,2],[3,2],[67,2]],'compressed':[[15,1],[18,2]],'lda':[[55,1],[77,46]],'goto':[[40,3],[7,2]],'advancing':[[15,1],[5,1]],'hexified':[[70,1]],'#228844':[[59,1]],'numlock':[[59,1]],'patient':[[74,1]],'exram':[[78,1],[74,3]],'newname1':[[50,2]],'anywhere':[[77,2],[75,1]],'abbreviation':[[77,1]],'reverses':[[59,1]],'notation':[[60,3]],'tracking':[[65,1]],'somewhere':[[48,2],[50,1]],'solutions':[[61,1]],'lagging':[[27,2]],'false':[[59,28],[9,1],[78,1],[70,1],[60,2],[61,5],[11,1]],'things':[[59,1],[78,1],[29,1],[55,3],[53,1],[60,1],[62,1],[74,1],[75,2]],'dffc':[[50,1]],'overcome':[[65,2]],'tells':[[55,1],[59,1],[58,1]],'waveforms':[[75,1]],'txs':[[77,4]],'transition':[[27,1]],'002e':[[74,1]],'obviously':[[77,1],[80,1]],'ideally':[[78,1]],'hereon':[[78,1],[75,1]],'organization':[[11,1]],'tint':[[78,1],[32,1]],'mamiya':[[74,3]],'optional':[[59,3],[70,9],[50,2],[60,2],[12,1],[74,1],[10,2],[40,1],[8,1]],'man':[[40,5]],'escape':[[59,1],[11,1]],'hexfreezecolorg':[[20,1]],'makers':[[65,1]],'0200':[[50,1],[67,2]],'cfg':[[27,2],[14,1],[19,4],[12,1],[13,3],[10,2],[20,2],[7,1],[11,2]],'mode':[[19,1],[38,1],[67,1],[77,34],[12,1],[13,1],[36,3],[74,3],[35,6],[27,1],[59,8],[78,1],[23,8],[29,3],[6,1],[24,2],[60,1],[75,20],[10,1],[33,1],[11,2],[7,6]],'duty':[[59,2],[75,11]],'producing':[[75,2]],'0be':[[75,1]],'zelda':[[55,1],[78,1],[30,1]],'welcome':[[1,1]],'gui':[[58,1],[61,2],[8,7],[5,3],[17,1],[59,45],[9,1],[15,1],[26,1],[29,2],[6,4],[60,9],[4,2],[3,1],[10,2],[11,2],[7,5]],'per':[[19,2],[74,2],[35,1],[27,2],[59,6],[21,1],[78,8],[60,1],[48,1],[32,1],[75,1],[11,2]],'uncompressed':[[15,1]],'whitespace':[[48,1]],'n#l':[[77,1]],'after':[[55,1],[19,2],[50,2],[61,4],[13,1],[74,4],[36,3],[77,19],[35,1],[59,4],[21,1],[22,1],[70,3],[71,2],[60,4],[78,14],[4,1],[72,1],[48,1],[75,5],[40,1]],'clicking':[[17,1],[59,1],[9,1],[15,2],[23,2],[51,1],[30,2],[50,6],[53,2],[40,5],[35,1],[56,1]],'mismatch':[[12,1]],'palettes':[[78,1],[51,2],[32,4],[25,4],[64,1]],'requirement':[[57,1],[62,1]],'desyncing':[[61,1]],'speedometeronly':[[62,1]],'expose':[[78,1]],'should':[[46,1],[55,1],[53,2],[30,1],[50,2],[62,1],[61,6],[12,2],[74,11],[77,6],[35,4],[59,4],[78,7],[70,3],[80,1],[60,1],[72,1],[48,7],[32,1],[3,1],[75,2],[7,1],[58,1]],'updating':[[11,1],[5,1]],'usage':[[59,7],[55,1],[43,1],[13,1],[48,1],[3,1],[74,1]],'brings':[[67,1],[59,1],[38,1],[6,1],[40,1]],'white':[[59,4],[20,1]],'e000':[[55,1],[74,4]],'noisey':[[75,1]],'00ff':[[40,1],[50,1],[67,2]],'preferably':[[59,2]],'famicom':[[30,10],[28,1],[13,1],[16,2],[68,1],[17,1],[21,7],[70,1],[2,1],[6,1],[24,2],[75,1],[3,1],[40,2]],'bugs':[[5,2],[11,1],[9,1],[15,1],[6,2],[4,2],[13,1],[10,1],[7,3],[8,1]],'generally':[[59,1],[78,2],[66,2],[67,3],[77,2],[75,2]],'nrom':[[11,2]],'continue':[[65,1],[61,1],[75,1],[32,1],[78,1],[27,3]],'patch':[[12,1],[49,1],[40,2],[50,6]],'smb2u':[[62,1]],'#ce_2gpl`ki7rbp':[[77,1]],'converted':[[45,1],[75,1],[23,1],[64,1]],'define':[[4,1],[59,1],[48,1],[72,1],[24,1]],'alu':[[77,2]],'components':[[59,3],[75,1],[40,1],[50,1]],'2746924':[[10,1]],'timed':[[65,1]],'discard':[[67,1]],'4001':[[75,2]],'sai`':[[77,2]],'wavelength':[[75,28]],'%02x':[[59,1]],'operational':[[77,6]],'030f':[[67,1]],'acknowledgement':[[78,1]],'actions':[[23,1]],'branches':[[15,2],[3,1],[53,1],[2,1],[64,1]],'turn':[[59,1],[29,1],[23,1],[30,1],[77,1],[33,1],[27,2]],'occur':[[77,5],[75,1],[78,3],[43,1],[27,1]],'decodes':[[77,1]],'raster':[[77,4],[50,1]],'odd':[[78,4],[46,1],[80,1],[77,6],[74,1],[75,1],[10,1]],'thingy':[[48,6]],'parse':[[5,1]],'indeterminate':[[77,1]],'bad':[[61,1],[48,2],[74,1],[50,2],[64,1]],'16k':[[50,3]],'pick':[[22,1],[7,1],[13,1]],'graphics':[[78,5],[26,1],[55,3],[66,1],[20,2],[35,1],[27,2]],'33554432':[[77,1]],'depends':[[59,1],[77,2],[70,1]],'tunes':[[74,7]],'mutant':[[67,1],[46,1]],'undo':[[17,6],[65,2],[23,1],[41,1],[38,8],[50,1],[53,2],[77,1],[42,1],[56,1],[11,2],[27,1]],'likely':[[48,1],[54,1],[75,1],[62,1]],'equivelant':[[78,1]],'sre':[[77,13]],'theme':[[29,1]],'syntax':[[57,1],[60,2],[58,1]],'mean':[[40,1],[48,1]],'exclusive':[[61,1],[75,2],[77,2],[78,2]],'whether':[[59,3],[54,5],[23,1],[55,8],[19,4],[67,1],[61,7],[48,2],[36,2],[5,1]],'sub':[[28,1],[26,2],[24,1],[27,3]],'differing':[[74,1]],'acknowledges':[[77,2]],'november':[[9,1],[12,1],[3,3],[5,1]],'werefolf':[[6,1]],'visualization':[[54,1],[5,1]],'|_____|_____|':[[67,2]],'able':[[59,1],[15,1],[78,1],[30,1],[48,2],[75,1],[7,1]],'arred':[[77,1]],'cpuc':[[72,2]],'jsr':[[77,2],[50,3]],'@xcey':[[77,1]],'0x8000':[[72,2]],'amount':[[78,3],[15,1],[54,2],[67,1],[77,2],[75,2],[33,1],[35,2],[56,1]],'all':[[19,1],[50,5],[67,12],[61,3],[74,5],[16,1],[77,12],[56,1],[59,8],[9,2],[15,2],[23,2],[2,2],[24,1],[60,4],[48,7],[10,2],[40,9],[18,2],[7,1],[79,2],[46,1],[38,1],[30,1],[28,1],[45,1],[53,1],[13,1],[20,1],[62,2],[5,2],[17,1],[37,2],[78,16],[70,2],[6,1],[72,2],[75,10],[3,1],[11,5]],'displays':[[59,3],[9,1],[23,1],[49,1],[43,2],[50,2],[13,1],[52,1],[5,1]],'stripping':[[55,1]],'joined':[[3,1],[71,1]],'lazy':[[78,1],[11,1]],'chirps':[[11,1]],'delete':[[40,2],[50,1],[59,1]],'adelikat':[[1,2],[3,2],[70,1],[67,1]],'beq':[[77,2]],'near':[[40,1],[75,1]],'assignments':[[26,2],[75,4],[30,2],[37,1]],'depths':[[59,1]],'pipelined':[[78,1]],'minimum':[[32,1],[7,1],[11,1]],'coolest':[[53,1]],'them':[[55,1],[50,3],[62,5],[61,5],[12,1],[74,2],[77,5],[56,1],[8,1],[35,1],[63,1],[59,2],[49,1],[78,4],[25,1],[48,5],[75,1],[40,4],[18,1],[79,1]],'hellraiser':[[78,1]],'08fffh':[[74,2]],'instruction':[[77,62],[54,4],[55,2],[50,10],[67,1]],'%03d':[[70,2]],'retain':[[54,1]],'dlljjbbb':[[71,1]],'readimmediate':[[59,1]],'piano':[[4,1]],'variety':[[6,1],[11,1]],'lives&hpdisplay':[[62,1]],'0077h':[[74,3]],'lasts':[[77,1]],'musical':[[75,1]],'least':[[59,2],[78,1],[38,1],[60,2],[71,1],[72,1],[48,1],[32,1],[74,1],[77,3],[35,1]],'redirecting':[[77,1]],'purposes':[[77,1],[75,1],[78,1],[67,1]],'bit3':[[70,2],[75,2]],'factors':[[4,1],[35,1]],'directly':[[78,1],[15,3],[20,1],[75,3],[53,5],[50,2]],'enableoppositedirectional':[[5,1]],'change':[[67,1],[77,5],[74,3],[56,3],[35,2],[27,3],[59,4],[23,1],[71,1],[48,1],[32,1],[10,1],[7,1],[38,4],[30,2],[53,2],[13,2],[20,1],[52,1],[8,1],[37,1],[78,1],[21,1],[43,6],[75,5],[11,2]],'scripts':[[58,1],[59,2],[9,1],[14,2],[15,1],[62,12],[28,2],[61,1],[12,1],[8,2],[5,1]],'renders':[[78,3],[75,1]],'fortunate':[[77,1]],'followings':[[18,1]],'9_s8':[[77,1]],'status':[[38,4],[19,5],[50,2],[67,1],[77,3],[52,3],[36,1],[27,1],[59,4],[51,1],[23,4],[78,3],[72,2],[75,17],[7,1]],'complete':[[59,1],[22,1],[55,1],[77,1],[74,2],[79,1],[65,2]],'fatratknight':[[62,1],[9,1],[1,1]],'attempts':[[61,10],[55,1],[35,1]],'iterate':[[60,1]],'intruction':[[77,1]],'array':[[59,2],[50,2]],'russian':[[77,1]],'flags':[[78,1],[50,4],[77,25],[74,3],[10,1],[7,1],[11,1]],'rolling':[[61,1],[75,1]],'jopi':[[77,7]],'remains':[[77,3],[78,2]],'inservice':[[78,1]],'remembers':[[11,4],[15,2]],'banks':[[72,2],[74,4],[56,1],[50,1],[5,1]],'resource':[[57,1],[15,1]],'luabot':[[61,11]],'our':[[77,1],[62,1]],'best':[[61,5],[54,2],[78,1],[2,1],[35,1]],'punchoutstats':[[62,1]],'traditionally':[[77,1],[65,1]],'multitude':[[10,1],[11,1]],'mapped':[[17,1],[21,2],[23,2],[55,1],[53,1],[50,1],[24,1],[67,1],[75,1],[27,4]],'bvs':[[77,2]],'kernal':[[77,2]],'everywhere':[[78,1]],'preceding':[[77,1],[50,1]],'0006':[[74,1]],'handler':[[77,5],[75,1],[67,3]],'video':[[19,2],[61,1],[13,1],[77,2],[35,2],[64,2],[17,1],[5,2],[22,5],[26,2],[51,2],[66,2],[78,11],[4,1],[11,2]],'backlash':[[23,1]],'dd08':[[77,2]],'integrated':[[78,1],[75,1],[65,1]],'snes9x':[[59,1],[42,1],[36,1],[7,1],[60,4]],'opened':[[15,2],[50,2],[28,1],[13,1],[20,1],[8,1],[18,1]],'routed':[[78,1],[30,1]],'checking':[[8,1],[59,1],[55,1],[30,1],[61,1],[11,1],[35,4]],'046x':[[67,1]],'equals':[[78,3],[75,1],[48,3],[60,1]],'stretched':[[35,3]],'solid':[[59,2]],'preserves':[[77,1]],'jsrs':[[54,1]],'considered':[[59,1],[78,3],[70,2],[60,1]],'remaining':[[72,1],[78,1],[70,3],[67,3]],'schemes':[[78,1]],'pausing':[[7,1]],'message':[[5,3],[59,14],[15,1],[21,3],[70,1],[4,1],[77,2],[13,1],[11,3],[8,1]],'types':[[17,1],[59,1],[21,2],[46,1],[70,3],[61,1],[72,1],[75,2],[77,2],[7,1],[18,4]],'undocumented':[[77,7],[75,1]],'prompts':[[5,1]],'display':[[46,1],[19,2],[50,5],[62,1],[77,2],[12,1],[13,2],[20,1],[36,1],[35,1],[5,5],[27,15],[52,9],[51,2],[14,1],[23,4],[59,1],[6,2],[43,4],[4,1],[78,1],[48,1],[7,6],[11,1]],'arrays':[[60,3]],'c004#newname2#':[[50,1]]}; \ No newline at end of file +var aTl=[['Intro.html','Introduction'],['Introduction.html','Introduction'],['Overview.html','Overview'],['FCEUltraVersionHistory.html','FCE%20Ultra%20Version%20History'],['WhatsNew221.html','What%27s%20New%3F%202%2E2%2E1%20%28changelog%29'],['WhatsNew220.html','What%27s%20New%3F%202%2E2%2E0%20%28changelog%29'],['WhatsNew215.html','What%27s%20New%3F%202%2E1%2E5%20%28changelog%29'],['WhatsNew214.html','What%27s%20New%3F%202%2E1%2E4%20%28changelog%29'],['WhatsNew213.html','What%27s%20New%3F%202%2E1%2E3%20%28changelog%29'],['WhatsNew212.html','What%27s%20New%3F%202%2E1%2E2%20%28changelog%29'],['WhatsNew211.html','What%27s%20New%3F%202%2E1%2E1%20%28changelog%29'],['WhatsNew210.html','What%27s%20New%3F%202%2E1%20%28changelog%29'],['WhatsNew203.html','What%27s%20New%3F%202%2E0%2E3%20%28changelog%29'],['WhatsNew202.html','What%27s%20New%3F%202%2E0%2E2%20%28changelog%29'],['WhatsNew201.html','What%27s%20New%3F%202%2E0%2E1%20%28changelog%29'],['WhatsNew200.html','What%27s%20New%3F%202%2E0%2E0'],['General.html','General'],['Gettingstarted.html','Getting%20Started'],['Gamefilecompatibility.html','Game%20file%20compatibility'],['CommandLineOptions.html','Command%20Line%20Options'],['CustomizingthroughtheConfigFil.html','Customizing%20through%20the%20Config%20File'],['FamicomDiskSytem.html','Famicom%20Disk%20Sytem'],['AVICapturing.html','AVI%20Capturing'],['MovieRecording.html','Movie%20Recording'],['NES.html','NES%20Menu'],['PaletteOptions.html','Palette%20Options'],['Config.html','Config'],['ToggleSwitchesHideMenuetc.html','Menu%20Items%20%26amp%3B%20Submenus'],['Directories.html','Directories'],['GUI.html','GUI'],['Input.html','Input'],['NetworkPlay.html','Network%20Play'],['Palette.html','Palette'],['SoundOptions.html','Sound'],['Timing.html','Timing'],['Video.html','Video'],['MovieOptions.html','Movie%20Options'],['MapHotkeys.html','Map%20Hotkeys'],['ContextMenuItems.html','Context%20Menu%20Items'],['Tools2.html','Tools'],['CheatSearch.html','Cheat%20Search'],['RAMSearch.html','RAM%20Search'],['RAMWatch.html','RAM%20Watch'],['MemoryWatch.html','Memory%20Watch'],['TASEditor.html','TAS%20Editor'],['Covertfcm.html','Convert%20fcm'],['AutoFireConfigurations.html','Auto%20Fire%20Settings'],['ExternalInput.html','External%20Input'],['TextHooker.html','Text%20Hooker'],['Debug.html','Debug'],['Debugger.html','Debugger'],['PPUViewer.html','PPU%20Viewer'],['NameTableViewer.html','Name%20Table%20Viewer'],['HexEditor.html','Hex%20Editor'],['TraceLogger.html','Trace%20Logger'],['CodeDataLogger.html','Code/Data%20Logger'],['GameGenieEncoderDecoder.html','Game%20Genie%20Encoder/Decoder'],['LuaScripting.html','Lua%20Scripting'],['LuaGettingStarted.html','Getting%20Started'],['LuaFunctionsList.html','Lua%20Functions%20List'],['Commands.html','Using%20Lua'],['LuaBot.html','Lua%20Bot'],['LuaPerks.html','LuaPerks'],['OverviewofIncludedScripts.html','Overview%20of%20Included%20Scripts'],['FAQGuides.html','FAQ%20/%20Guides'],['Troubleshooting.html','Troubleshooting'],['ToolAssistedSpeedruns.html','Tool%20Assisted%20Speedruns'],['ROMHacking.html','ROM%20Hacking'],['NESRAMMappingFindingValues.html','NES%20RAM%20%28Mapping/Finding%20Values%29'],['Technicalinformation.html','Technical%20Information'],['Movieformats.html','Movie%20%26amp%3B%20Savestate%20formats'],['fm2.html','%2Efm2'],['fcm.html','%2Efcm'],['fcs.html','Savestate%20%28%2Efcs%29'],['Sound.html','Sound'],['NSFFormat.html','NSF%20Format'],['NESSound.html','NES%20Sound'],['NESProcessor.html','NES%20Processing'],['6502CPU.html','CPU%20%2D%206502'],['PPU.html','PPU%20%2D%202C02'],['NESScrolling1.html','NES%20Scrolling%201'],['NESScrolling2.html','NES%20Scrolling%202']];var oWl= {'redrawing':[[4,3]],'relation':[[40,3],[48,3]],'otherwise':[[59,18],[54,3],[29,3],[76,6],[78,18],[60,3],[61,3],[79,6]],'rightclick':[[59,3],[5,3]],'comma':[[59,3],[27,3]],'content':[[60,3]],'areascrambler':[[63,3]],'become':[[61,6],[79,6],[7,3]],'matching':[[45,3],[40,3]],'chrominance':[[79,18]],'dff8':[[50,3]],'rare':[[78,3],[68,6]],'multilinecomment':[[50,6]],'especially':[[73,3]],'irqs':[[73,3]],'0x16':[[59,3]],'f23':[[59,3]],'roll':[[4,3]],'speedrunning':[[66,3],[5,3]],'buttons':[[46,3],[30,9],[50,9],[61,6],[59,12],[9,3],[23,3],[26,3],[71,9],[60,3],[72,3],[40,6],[11,6],[7,9]],'precision':[[23,6],[66,3],[79,3]],'takeshi':[[30,3]],'increments':[[81,3],[59,3],[78,3]],'application':[[59,3],[61,3],[60,3]],'smtp':[[62,3]],'dark':[[55,3]],'redundant':[[71,3],[9,3]],'let':[[63,3],[78,9],[55,3],[80,3],[43,3],[60,6],[48,3],[75,3],[40,3]],'submitinputchange':[[59,3]],'ispoweron':[[59,6],[7,3]],'key':[[46,3],[53,6],[12,3],[27,27],[37,3],[5,3],[15,3],[22,3],[23,30],[29,3],[24,6],[54,3],[59,3],[60,3],[66,6],[71,33],[76,9]],'realize':[[48,3]],'practical':[[78,6]],'feeds':[[79,3]],'reverts':[[4,3],[38,12]],'byte':[[73,30],[55,36],[50,3],[56,6],[59,24],[54,3],[78,180],[76,3],[71,27],[43,6],[60,6],[48,9],[75,33],[40,3],[79,36]],'config':[[65,15],[1,6],[19,21],[30,3],[28,3],[12,9],[13,12],[20,12],[8,6],[5,18],[27,9],[9,9],[22,3],[23,3],[25,3],[26,9],[4,18],[10,12],[11,9],[7,6]],'dong':[[4,3]],'reference':[[62,3],[48,9],[60,18],[50,3]],'#rrggbb':[[59,3]],'from':[[50,18],[61,6],[56,6],[35,3],[27,6],[15,24],[80,6],[2,3],[24,9],[48,18],[32,6],[79,51],[38,21],[28,3],[44,3],[81,27],[12,6],[13,15],[68,6],[5,27],[21,6],[22,3],[11,18],[73,12],[16,3],[59,72],[9,15],[14,3],[23,36],[51,3],[54,9],[60,15],[4,9],[66,12],[71,12],[10,15],[40,15],[18,9],[7,12],[65,3],[55,9],[53,15],[30,9],[62,3],[8,3],[17,3],[78,225],[70,3],[76,51],[72,3],[75,15],[3,12],[58,6]],'port1':[[71,21]],'dpad':[[8,3]],'gpl':[[3,3]],'cdl':[[4,12],[55,15]],'incorrect':[[78,3]],'specification':[[75,3],[58,3]],'cleans':[[59,3]],'compact':[[4,3]],'4009':[[76,3]],'64kb':[[13,3],[14,3]],'crashing':[[63,3],[13,3],[12,6],[8,3]],'dumps':[[38,3]],'module':[[59,3],[62,3]],'approximately':[[78,3]],'04dx':[[68,3]],'slo':[[78,39]],'fed':[[76,15],[79,9]],'modulator':[[73,3]],'zeromus':[[3,3]],'calculated':[[78,3],[21,3],[76,15],[50,3]],'discarded':[[61,3],[79,6]],'elimination':[[40,3]],'hand':[[78,3],[60,6]],'scrolling':[[80,9],[81,6],[77,6],[52,6],[79,12],[35,3]],'api':[[62,3],[58,3]],'c008':[[50,6]],'sound':[[19,3],[12,3],[13,12],[68,9],[74,12],[5,3],[17,3],[59,6],[26,6],[23,3],[76,96],[6,6],[34,9],[75,51],[10,12],[33,66],[11,36],[65,9]],'playable':[[8,3],[9,3]],'each':[[73,3],[50,9],[61,6],[35,6],[59,21],[54,3],[71,6],[60,3],[32,6],[40,9],[57,3],[79,21],[55,12],[38,3],[30,6],[53,3],[20,3],[36,3],[68,24],[78,24],[25,3],[76,27],[43,3],[75,6],[33,3]],'alias':[[59,15]],'useability':[[10,3]],'scalar':[[7,3]],'cpx':[[78,9]],'rldutsba':[[71,3]],'ordering':[[71,3]],'subtraction':[[78,33]],'set':[[73,3],[50,9],[61,30],[16,3],[35,3],[27,6],[59,33],[9,3],[23,6],[54,3],[66,6],[24,12],[60,6],[4,6],[71,3],[48,6],[32,3],[40,9],[7,3],[79,18],[46,12],[55,3],[38,3],[30,3],[28,3],[62,3],[81,3],[12,6],[52,6],[36,3],[17,3],[78,126],[21,3],[76,42],[43,3],[34,3],[72,6],[75,48],[33,3],[11,15],[58,9]],'apu':[[10,3]],'overwrite':[[17,3],[60,3]],'whenever':[[59,18],[78,6],[76,3],[53,3],[50,9],[36,3]],'aspiringsquire':[[25,3]],'keys':[[17,6],[59,12],[26,3],[71,12],[30,6],[60,6],[61,9],[12,3],[8,6],[11,6]],'finding':[[49,3],[54,6],[55,3],[66,6],[62,3],[61,3],[68,15],[40,3]],'newline':[[71,3]],'106':[[79,3],[75,6]],'0400fh':[[75,3]],'pixels':[[63,3],[59,15],[4,3],[20,3],[79,42],[35,9]],'unrelated':[[76,3]],'listed':[[11,3],[73,3],[50,3],[30,9],[56,3],[40,3],[65,3]],'tbl2':[[60,9]],'currently':[[65,3],[73,3],[79,6],[38,3],[30,3],[31,3],[50,9],[53,3],[61,3],[68,3],[27,3],[59,21],[23,6],[76,18],[80,3],[72,3],[75,3],[32,6],[40,6],[11,6],[7,3]],'probability':[[61,3]],'4010h':[[75,3]],'access':[[59,6],[9,6],[23,6],[54,6],[78,3],[62,3],[68,3],[79,45],[5,6]],'dynamically':[[5,3]],'improper':[[23,3]],'occuring':[[5,3]],'manpage':[[5,3]],'100%':[[24,6]],'necessary':[[59,6],[46,3],[55,3],[33,3]],'recordbackwards':[[5,3]],'strings':[[59,3],[48,3],[50,6],[60,6]],'quiche':[[78,3]],'helsinki':[[78,3]],'unsigned':[[59,6],[78,9],[41,3],[50,3],[60,3],[42,3],[40,6]],'bus':[[78,9],[76,6],[79,21],[50,6],[5,9]],'preventing':[[7,3]],'sweep':[[76,72]],'clicks':[[59,3]],'placed':[[59,3],[68,3],[65,3]],'2400':[[73,3]],'released':[[79,3],[61,6],[12,3],[13,3],[8,3],[5,3],[9,3],[14,3],[15,3],[21,6],[6,3],[4,3],[3,30],[10,3],[11,3],[7,6]],'regardless':[[59,6],[76,3],[79,18]],'7fffh':[[75,6]],'converting':[[10,3],[45,3]],'distinctions':[[68,3]],'leave':[[24,3]],'definitions':[[73,9],[48,3]],'print':[[59,3],[78,3],[60,3]],'unminimized':[[8,3]],'romfreezecolor':[[10,3]],'saves':[[27,3],[59,12],[28,3]],'reach':[[66,3]],'comparator':[[79,6]],'reaches':[[76,6]],'|30':[[76,3]],'snow':[[63,3]],'1800':[[68,6]],'simple':[[79,6],[59,6],[50,3],[62,3],[61,3],[48,3],[32,3],[3,3],[40,6],[68,3],[75,3]],'type':[[73,18],[53,3],[50,12],[56,3],[5,6],[59,24],[76,9],[71,12],[43,3],[60,3],[4,3],[48,3],[10,3],[40,6],[18,3]],'invalidate':[[6,3]],'revolutionary':[[15,3]],'flawed':[[12,3]],'adapter':[[21,6],[30,3]],'easter':[[55,3]],'disabling':[[27,3],[7,3],[65,3]],'blue':[[59,21],[55,6],[43,3],[60,3],[32,3],[20,3],[11,3]],'object':[[59,30],[68,12],[79,156],[7,3],[60,6]],'sizes':[[12,3]],'redundancy':[[3,3]],'registerexec':[[59,3]],'away':[[59,3],[78,18],[79,3],[30,3]],'changing':[[78,12],[9,3],[50,3],[4,3],[36,3],[79,3],[11,3]],'2xx':[[75,3]],'presumably':[[79,9]],'reaction':[[17,3]],'noted':[[55,3],[40,3],[79,3]],'fixup':[[78,42]],'storage':[[21,3],[48,3],[62,3]],'|video':[[79,3]],'p7f':[[59,3]],'counter|':[[79,3]],'well':[[79,9],[55,3],[50,3],[28,3],[67,3],[61,18],[59,12],[51,3],[78,15],[43,3],[6,3],[60,3],[48,12],[75,6],[3,3],[40,3],[18,3],[65,3]],'dos':[[3,9]],'256bytes':[[68,3]],'obj':[[79,3],[27,3]],'getsuperimpose':[[59,3]],'serve':[[3,3],[59,3]],'stated':[[3,3]],'comments':[[23,3],[71,6],[60,3],[38,6],[50,12],[5,3]],'50%':[[59,6],[61,3]],'locations':[[75,3]],'5ff5':[[75,6]],'clock':[[78,6],[76,84],[79,78]],'setup':[[79,3]],'#ff':[[50,3]],'objpixel':[[79,3]],'possibility':[[55,3]],'acceptable':[[59,3]],'avoided':[[79,3]],'basicbot':[[61,3],[15,3]],'initialized':[[78,3],[76,3],[5,3]],'under':[[57,3],[79,3],[1,9],[61,6],[56,6],[39,3],[27,3],[78,3],[15,3],[21,6],[23,6],[26,3],[43,3],[49,3],[48,3],[3,9],[40,6],[33,3],[7,6]],'selected':[[79,24],[78,3],[21,3],[23,6],[41,3],[45,3],[48,9],[40,15],[7,6],[5,3]],'1st':[[75,3],[68,3],[71,9],[43,6],[79,3]],'kind':[[78,6],[48,12],[79,3],[50,3]],'070h':[[75,6]],'syncronous':[[76,3]],'dcp':[[78,42]],'registerauto':[[59,3]],'themselves':[[63,9]],'05xx':[[68,3]],'initalized':[[75,3]],'76h':[[75,3]],'`c`':[[78,3]],'behavior':[[43,3]],'bxj':[[78,3]],'decides':[[79,3],[60,3]],'detail':[[68,3],[76,6],[40,3],[65,3]],'3f00':[[68,3]],'fcs':[[73,9],[70,3],[71,3],[28,3],[72,3],[13,3]],'attempt':[[59,3],[29,3],[76,3],[50,3],[61,69],[75,3],[3,3],[65,3]],'big':[[59,3],[48,6],[61,6],[11,6]],'briefly':[[40,3]],'conditionally':[[76,3]],'statistics':[[50,3],[68,3]],'seeing':[[78,3],[23,3],[79,9]],'writes':[[78,6],[76,12],[53,3],[80,3],[61,3],[75,6],[79,3],[7,3]],'accelerators':[[4,3]],'nestech':[[76,3]],'robust':[[59,3]],'evaluations':[[79,3]],'address':[[73,15],[79,66],[53,6],[50,129],[81,3],[52,3],[20,3],[68,18],[56,36],[5,12],[59,87],[51,6],[78,672],[80,15],[43,18],[60,15],[75,84],[40,51],[7,9],[11,3]],'japanese':[[48,48]],'item':[[9,6],[55,3],[38,21],[6,3],[4,3],[13,3],[48,6],[10,21],[40,3],[11,9],[8,3]],'automatically':[[19,9],[30,3],[50,12],[13,3],[36,9],[56,3],[35,6],[27,6],[78,3],[15,3],[23,6],[29,3],[54,6],[43,3],[76,3],[40,15],[11,6],[79,3]],'unclear':[[79,3]],'shame':[[79,3]],'frkfunctions':[[63,3]],'temp':[[79,6],[80,3]],'experience':[[63,3],[65,3],[49,3],[35,3],[64,3]],'mkv':[[38,3]],'droradc':[[78,6]],'selling':[[79,3],[48,3]],'tinker':[[53,3]],'2000|':[[68,3]],'drawbox':[[59,3]],'memblers':[[76,3]],'nestopia_yuv':[[25,3]],'unpaused':[[4,3]],'distinquished':[[78,3]],'fit':[[78,3],[35,3]],'somethingelseistrue':[[60,3]],'jukka':[[78,3]],'mЉkelЉ':[[78,3]],'followed':[[71,6]],'rowheightborder':[[10,3]],'hexforecolorg':[[20,3]],'imported':[[59,3],[9,6],[60,3]],'complements':[[55,3],[5,3]],'playfield':[[79,87]],'romchecksum':[[71,3]],'short':[[59,3],[54,3],[76,6],[30,3],[60,3],[48,3],[40,3]],'continued':[[3,3]],'final':[[76,3],[22,3]],'makecode':[[55,3]],'silver':[[27,3]],'minor':[[9,6],[1,3],[6,3],[12,3],[13,3],[10,3],[11,6],[65,3]],'disposal':[[48,3]],'4013h':[[75,3]],'signal':[[78,12],[32,3],[76,12],[79,36]],'while':[[50,12],[35,3],[27,9],[59,21],[15,3],[23,9],[29,6],[54,9],[24,3],[60,15],[4,6],[66,3],[48,12],[79,6],[65,3],[55,18],[38,3],[30,6],[53,9],[36,3],[8,3],[5,3],[63,3],[78,33],[41,3],[76,9],[6,3],[34,6],[75,12],[11,6],[58,3]],'fds':[[73,3],[50,3],[28,6],[67,3],[16,3],[8,6],[17,3],[9,3],[21,24],[66,3],[24,6],[71,18],[75,30],[18,15],[65,15]],'gameplay':[[21,3],[67,6]],'time':[[50,15],[27,12],[59,33],[9,3],[54,15],[66,3],[2,3],[4,3],[48,6],[40,9],[79,69],[53,6],[30,6],[52,6],[68,9],[36,3],[8,3],[63,3],[78,42],[76,21],[72,3],[75,3],[3,3],[33,3],[11,3],[58,3]],'height':[[4,3],[10,3],[11,6]],'passes':[[10,3]],'busses':[[79,3]],'hexfreezecolorb':[[20,3]],'stupid':[[10,3]],'duration':[[30,3]],'such':[[73,3],[1,3],[50,15],[67,6],[61,9],[27,6],[59,18],[54,3],[23,3],[47,3],[66,9],[60,3],[48,3],[10,3],[57,3],[40,9],[65,3],[79,3],[55,6],[38,3],[30,6],[28,6],[62,3],[68,12],[8,9],[64,3],[63,3],[76,6],[43,3],[3,15],[11,6]],'converts':[[59,3]],'func':[[59,48]],'isb':[[78,48]],'listing':[[13,3]],'lack':[[59,3]],'indir':[[78,12]],'side':[[73,3],[50,3],[81,3],[35,3],[78,3],[21,27],[76,3],[24,3],[48,6],[3,3],[40,3],[79,3]],'9fff':[[55,3]],'designation':[[50,3]],'maxsegments':[[61,3]],'render':[[79,21],[35,3]],'eor':[[78,45]],'crossing':[[78,33]],'memo':[[71,3]],'registerrun':[[59,3]],'square2':[[59,3]],'|bits':[[76,6]],'written':[[73,12],[1,3],[42,3],[68,6],[63,3],[59,9],[9,3],[21,3],[41,3],[51,3],[60,9],[76,18],[78,9],[48,6],[75,15],[3,6],[40,6],[57,3],[79,3]],'babelfish':[[48,3]],'paste':[[48,6],[49,3],[53,9]],'moving':[[59,3],[51,3],[61,3]],'n@3':[[78,3]],'occurrence':[[78,3]],'permanent':[[56,3]],'007c':[[75,3]],'easier':[[63,6],[59,3],[78,6],[55,3],[66,3],[50,6],[67,3],[80,3],[75,3],[68,3],[57,3]],'confirm':[[59,6],[79,3]],'unicode':[[62,3]],'tech':[[76,3]],'barcode':[[30,6]],'creating':[[59,6],[3,3],[66,6],[62,3],[44,6]],'artist':[[75,9]],'disabled':[[55,3],[19,15],[50,3],[12,3],[13,3],[20,3],[27,3],[5,3],[76,21],[4,6],[34,6],[75,3],[33,6],[11,6]],'reader':[[30,3]],'replace':[[59,3],[48,3],[76,3],[79,3],[30,6]],'demo':[[55,6]],'dakuten':[[48,15]],'far':[[78,3],[48,3],[76,3],[79,3]],'necessarily':[[78,3]],'secrets':[[55,3]],'getpixel':[[59,6],[7,3],[60,3]],'drawline':[[59,3]],'f12':[[59,3]],'properly':[[17,3],[5,3],[9,3],[46,3],[55,3],[40,3],[11,9],[27,3]],'scanlines':[[52,3],[79,27],[11,9],[50,9]],'340':[[79,3]],'restored':[[40,3],[9,6]],'opens':[[55,3],[38,15],[40,6],[5,3]],'back':[[38,3],[61,9],[27,3],[17,3],[59,3],[21,3],[23,18],[78,27],[66,3],[60,3],[71,3],[75,6],[79,6]],'rerecordcounting':[[59,3]],'upper':[[78,18],[68,3],[79,3],[50,3],[27,3]],'10h':[[75,3]],'box':[[30,6],[50,3],[56,24],[35,6],[5,3],[37,3],[8,3],[15,6],[23,6],[59,33],[43,3],[60,3],[48,3],[40,9],[18,3]],'section':[[73,45],[50,3],[28,3],[68,3],[78,3],[54,3],[76,9],[71,15],[43,3],[48,9],[75,3],[79,9],[7,3],[65,3]],'bat':[[16,3]],'radd':[[73,3]],'ability':[[12,3],[76,12],[66,3],[5,3]],'backed':[[11,3],[8,3],[28,3]],'only':[[73,3],[19,9],[50,18],[61,9],[35,6],[59,84],[15,3],[14,3],[23,30],[54,15],[60,24],[66,6],[48,9],[32,6],[10,6],[40,6],[7,6],[18,6],[79,42],[55,15],[38,21],[30,3],[44,3],[53,3],[12,9],[13,6],[20,3],[36,12],[8,3],[5,9],[37,3],[78,66],[22,9],[76,57],[6,6],[72,3],[75,39],[3,12],[11,3]],'alt':[[59,3],[10,9],[11,6]],'corrupted':[[48,3],[7,3],[5,3]],'oversights':[[14,3]],'states':[[59,12],[78,6],[47,3],[71,3],[28,3]],'gp2x':[[3,3]],'reduced':[[43,3]],'shops':[[48,3]],'set_encoding':[[62,3]],'solely':[[68,3]],'according':[[59,3],[78,9],[4,3],[79,3],[35,3],[58,3]],'requests':[[59,3]],'seemed':[[48,3]],'lsr':[[78,51]],'bypass':[[79,3]],'occasionally':[[78,6],[67,3]],'everytime':[[79,3]],'@```':[[78,15]],'bros':[[68,3]],'excluded':[[79,3]],'resumed':[[4,3]],'9000':[[75,6]],'depend':[[36,3],[71,3]],'mmc':[[79,9]],'quotes':[[75,3]],'txt':[[78,6],[75,6],[12,3],[76,18],[11,3]],'heavy':[[59,6],[76,3],[7,3]],'assistance':[[66,3]],'fffe':[[78,9],[68,3],[50,3]],'swap':[[56,3],[51,3]],'keeping':[[50,3]],'si_zapper':[[71,12]],'asymmetry':[[76,3]],'banking':[[59,3]],'library':[[59,78],[9,6],[60,3],[6,3],[62,30],[3,3],[5,3]],'thanks':[[75,9],[12,3],[76,3],[8,3]],'vblank':[[59,3],[79,3],[11,6],[50,3]],'something':[[59,6],[54,3],[78,9],[66,3],[60,18],[80,3],[61,9],[12,3],[48,3],[75,6],[58,3]],'falling':[[79,6]],'c16':[[78,6]],'spot':[[68,3],[23,3],[53,3],[79,3]],'reading':[[78,3],[49,3],[76,6],[55,3],[60,3],[80,6],[10,6],[79,6],[27,3]],'compose':[[59,3]],'rdy':[[78,3]],'ddfd':[[78,6]],'rows':[[48,3],[68,9]],'fceux':[[0,6],[61,3],[35,21],[27,48],[15,12],[29,24],[2,9],[24,3],[32,3],[57,18],[38,6],[28,6],[44,6],[12,6],[13,27],[20,3],[36,15],[5,9],[37,3],[63,15],[21,6],[22,6],[41,3],[43,3],[33,3],[11,12],[1,36],[19,171],[67,6],[16,6],[39,3],[59,63],[9,3],[23,12],[49,3],[66,6],[60,6],[71,9],[4,3],[10,6],[40,9],[18,15],[7,3],[65,30],[30,12],[62,6],[45,3],[42,3],[17,9],[26,3],[25,9],[70,6],[3,30],[58,27]],'gnobgfillcolor':[[13,3],[20,3],[27,3]],'translators':[[48,6]],'bit6':[[71,6]],'looks':[[51,3],[52,3],[40,3],[60,6]],'tasks':[[57,3],[61,3]],'thru':[[75,6],[79,15],[80,3]],'markedframe':[[59,3]],'numpad9':[[59,3]],'multiplied':[[75,3]],'undesired':[[63,6]],'com':[[76,3],[80,6],[62,3],[44,3],[81,6],[79,3],[69,3]],'stumble':[[55,3]],'5000':[[75,3]],'ffffffff':[[75,6]],'|7f':[[76,3]],'m#l':[[78,3]],'hud':[[4,3],[5,6]],'r0j0':[[78,3]],'fwnes':[[21,3]],'jumps':[[78,12]],'probably':[[63,3],[59,6],[65,6],[78,12],[30,3],[48,6],[79,9],[18,3],[58,12]],'puc':[[62,9]],'decode':[[49,3]],'341':[[79,12]],'dozens':[[79,3]],'oring':[[10,3]],'emulator':[[73,18],[50,12],[67,3],[35,6],[27,3],[59,51],[54,6],[23,6],[29,6],[66,12],[60,27],[2,9],[4,6],[71,18],[48,12],[32,6],[57,3],[7,3],[79,3],[62,3],[12,6],[20,3],[8,6],[5,6],[17,6],[78,3],[22,9],[26,3],[75,3],[3,9],[58,9]],'hexforecolorr':[[20,3]],'drawrect':[[59,3]],'hbd7':[[78,6]],'smart':[[55,3]],'session':[[4,6],[55,3],[11,3],[27,3]],'toolset':[[5,3]],'across':[[59,6],[61,3],[78,3]],'component':[[76,3],[49,3]],'received':[[61,3]],'1ffh':[[75,6]],'windowed':[[12,3],[29,3],[35,3]],'warrior':[[28,3]],'memwatch':[[19,3],[7,3],[11,6]],'revert':[[10,3],[40,3],[35,3]],'framecount':[[59,18],[11,3]],'clipboard':[[48,3],[53,3],[62,3]],'convenient':[[59,3],[50,9]],'bit2':[[71,6]],'yes':[[61,12]],'setrenderplanes':[[59,3]],'gdstr':[[59,9]],'`je':[[78,3]],'device':[[17,3],[21,3],[76,6],[71,9],[30,15],[68,3],[79,9]],'mind':[[59,3],[48,3],[75,3],[3,3],[79,3],[18,3]],'moved':[[4,3],[11,3]],'pass':[[59,3],[54,3],[75,3],[79,6],[60,3]],'running':[[55,3],[53,9],[50,9],[61,6],[16,3],[8,3],[35,6],[59,15],[21,3],[29,3],[78,9],[60,6],[58,6]],'proof':[[78,9],[23,6],[3,3],[66,3]],'nez':[[18,3]],'siren':[[6,3]],'convention':[[59,3],[71,21],[50,3]],'recompilable':[[55,3]],'numpad2':[[59,3]],'nnn':[[75,3]],'decreasing':[[76,6]],'0000000000011111':[[80,3]],'terms':[[59,3],[66,3],[50,3]],'addgamegenie':[[59,6],[7,3]],'broken':[[9,3],[55,3],[50,3],[12,3],[68,6],[79,3]],'corrected':[[7,3]],'bmf_final3':[[25,3]],'miserabley':[[48,3]],'passed':[[59,6],[79,12],[50,6],[60,3]],'unknown':[[76,12],[79,3]],'opacity':[[59,6]],'pulses':[[76,3],[79,6]],'intensify':[[6,3]],'bits':[[59,3],[78,18],[76,96],[71,9],[6,3],[80,18],[81,6],[72,3],[75,12],[79,42]],'self':[[78,3],[60,3]],'main':[[73,9],[38,6],[30,3],[62,3],[61,9],[12,3],[13,3],[68,6],[27,3],[59,9],[51,3],[29,3],[41,3],[78,6],[6,3],[60,9],[10,3],[79,6],[65,3]],'tim':[[78,3]],'000e':[[75,3]],'sb#0':[[78,3]],'equivalent':[[57,3],[60,9]],'differs':[[71,3]],'modes':[[78,18],[76,3],[60,3],[68,3],[40,3],[35,6]],'transfer':[[78,3],[75,3]],'|50':[[76,3]],'clearinputchanges':[[59,3]],'yyy':[[71,6]],'master':[[33,12],[7,3],[79,3]],'assignable':[[15,3]],'inherited':[[78,6]],'colon':[[40,3],[60,3]],'coded':[[78,3],[11,3]],'accel':[[11,3]],'resizeable':[[13,3]],'warn':[[61,3]],'executes':[[59,6],[54,3]],'captures':[[49,3],[28,3]],'unpredictable':[[78,9],[79,3]],'gif':[[62,3]],'constants':[[71,3]],'lua5':[[9,3]],'wasn':[[14,3]],'oneshot':[[59,3]],'street':[[11,3]],'text':[[1,3],[50,9],[39,6],[59,12],[15,6],[23,3],[54,6],[66,3],[60,6],[71,33],[4,6],[48,120],[40,6],[53,9],[12,3],[13,3],[20,9],[8,3],[5,6],[63,6],[75,15],[3,3],[11,9],[58,3]],'worry':[[59,3],[48,3],[57,3],[60,6],[79,3]],'ki7rbp':[[78,3]],'callback':[[59,87]],'restore':[[17,9],[55,3],[38,9],[50,6],[13,12],[33,3],[11,3],[37,3]],'customized':[[25,3]],'movie_finished':[[36,3]],'punchoutchallenge':[[63,3]],'|commands|rldutsba|rldutsba|rldutsba|rldutsba|port2|':[[71,3]],'form':[[59,3],[23,3],[71,6],[53,3],[50,12],[60,3],[75,3],[79,9]],'lsb':[[73,3],[72,3],[78,3],[76,9],[79,6]],'nutant':[[59,6]],'affiliated':[[76,3]],'controlling':[[50,6]],'registers':[[53,6],[50,12],[52,6],[68,9],[63,3],[59,30],[54,6],[78,39],[76,6],[80,3],[75,36],[79,33],[7,3]],'restriction':[[79,3]],'narrowed':[[68,3]],'cycles':[[59,3],[51,3],[78,36],[76,21],[50,6],[79,27],[5,6]],'latter':[[78,9]],'unnecessary':[[78,3]],'8500':[[78,3]],'slader':[[48,3]],'adv':[[13,6],[27,3]],'with':[[50,39],[61,15],[56,3],[35,6],[27,3],[15,3],[29,3],[80,6],[24,3],[48,18],[32,3],[57,3],[79,90],[46,6],[38,3],[12,3],[13,3],[36,3],[68,21],[69,3],[5,30],[63,9],[21,12],[11,9],[19,6],[59,54],[9,6],[23,15],[49,6],[51,3],[54,15],[60,30],[66,12],[71,21],[10,12],[40,30],[18,18],[7,21],[65,15],[55,33],[53,6],[30,6],[62,12],[8,21],[17,9],[78,87],[25,6],[70,6],[6,6],[76,51],[75,3],[3,21],[58,6]],'illustrates':[[78,3]],'glory':[[48,3]],'behaving':[[36,3]],'838977920':[[71,3]],'between':[[55,3],[30,3],[81,3],[61,6],[12,3],[20,3],[68,3],[27,3],[59,12],[9,3],[29,3],[49,3],[66,3],[24,3],[76,15],[78,27],[80,3],[75,3],[32,3],[79,21]],'working':[[59,6],[54,3],[55,6],[24,6],[62,3],[75,3],[3,3],[10,3],[5,3]],'readdown':[[59,3]],'breakpoint':[[59,3],[54,6],[53,3],[50,36],[4,3],[5,18]],'github':[[62,3]],'ane':[[78,15]],'perfecting':[[23,3]],'forceful':[[59,3]],'abbreviations':[[78,3]],'assure':[[78,3]],'dmc':[[73,9],[10,3],[76,39]],'dpcm':[[59,3],[9,3]],'a002':[[75,3]],'rates':[[79,3],[27,3]],'goroh':[[76,6]],'absolute':[[61,3],[78,48],[7,3]],'loss':[[11,3],[60,3]],'saving':[[78,3],[9,3],[55,3],[43,3],[28,3],[4,9],[48,6],[10,3],[57,3],[11,9]],'particular':[[23,6],[76,3],[50,3],[48,3],[32,3],[75,3],[79,9],[5,3]],'got':[[76,3],[59,3]],'maybe':[[61,3],[65,3]],'ubuntu':[[5,3]],'possible':[[73,3],[55,6],[38,6],[50,6],[61,9],[68,3],[56,6],[17,3],[59,3],[78,12],[23,3],[25,3],[66,6],[48,3],[79,3],[7,3]],'insert':[[59,3],[21,15],[71,6],[24,6],[58,3]],'omit':[[59,3]],'naming':[[38,3],[50,3],[4,3],[36,3],[11,3],[5,3]],'|04':[[76,3]],'0x200':[[59,6]],'anc':[[78,6]],'clang':[[5,3]],'like':[[50,12],[67,3],[61,9],[27,3],[59,30],[51,6],[71,3],[60,21],[48,9],[40,12],[7,3],[57,6],[79,18],[55,9],[30,6],[52,3],[13,3],[42,3],[63,6],[78,45],[41,3],[76,3],[75,6],[3,6],[58,3]],'0320':[[68,3]],'nes_basecycles':[[75,6]],'nops':[[78,3]],'transparent':[[59,12],[76,3],[79,18],[8,3]],'range':[[59,24],[76,9],[53,3],[50,9],[6,3],[75,15],[68,6],[40,3],[8,3],[79,54]],'of_':[[78,3]],'inverted':[[76,6]],'folders':[[28,3]],'occurs':[[78,30],[76,6],[79,9]],'screen':[[61,3],[35,30],[27,9],[59,60],[15,6],[23,3],[29,6],[51,3],[60,6],[71,6],[4,6],[48,6],[10,3],[79,51],[7,6],[46,3],[55,3],[30,3],[28,3],[52,3],[68,39],[36,3],[78,3],[21,9],[25,3],[6,3],[11,12]],'file':[[50,42],[61,6],[56,3],[27,12],[15,21],[29,6],[48,33],[32,15],[46,3],[38,66],[28,12],[44,3],[12,6],[13,21],[20,15],[36,15],[5,12],[21,12],[22,33],[43,9],[11,21],[73,12],[1,3],[19,18],[16,9],[39,3],[59,36],[9,9],[23,51],[49,3],[54,9],[60,6],[66,6],[4,6],[71,15],[10,24],[40,18],[18,21],[7,3],[65,3],[55,24],[53,18],[62,3],[45,6],[8,9],[17,24],[78,6],[25,3],[70,12],[6,3],[72,12],[75,36],[58,12]],'yabause':[[41,3],[42,3]],'0000':[[73,6],[53,3],[6,3],[50,3],[75,3],[68,21],[40,3]],'wrapper':[[13,3]],'wanting':[[68,3]],'homebrew':[[13,3],[14,3]],'rotation':[[79,6]],'smb3':[[63,3]],'movies':[[19,3],[28,3],[44,3],[12,3],[13,9],[36,9],[68,3],[39,3],[5,6],[59,12],[9,3],[15,12],[23,9],[66,15],[6,6],[71,6],[7,21],[65,6]],'3f1f':[[68,3]],'net':[[81,6],[75,3],[80,6],[60,6],[67,3]],'publically':[[76,3]],'port':[[55,3],[30,21],[8,6],[9,3],[21,3],[76,3],[71,9],[6,6],[75,12],[3,9],[10,3],[7,3],[79,6]],'specific':[[73,15],[50,3],[67,3],[61,6],[35,3],[39,3],[15,3],[49,3],[54,3],[60,6],[10,3],[40,3],[46,3],[55,3],[30,6],[68,9],[69,3],[17,6],[63,3],[70,3],[76,6],[43,3],[72,3],[58,3]],'braces':[[60,3]],'099822938442230224609375':[[71,3]],'3d2n@8':[[78,3]],'transfers':[[79,3]],'transmission':[[62,3]],'unused':[[73,6],[78,3],[55,18],[76,18],[68,3],[7,3],[5,3]],'b@`':[[78,3]],'makes':[[17,3],[59,12],[51,3],[78,9],[55,3],[53,3],[50,3],[40,3],[7,3],[79,6]],'included':[[63,6],[78,3],[21,3],[30,3],[62,6],[61,3],[75,3],[79,3],[7,6],[11,3]],'japan':[[21,3]],'reported':[[10,3],[78,3]],'television':[[21,3],[32,3],[25,3],[30,3]],'basic':[[1,3],[55,3],[62,3],[0,3],[61,9],[68,6],[8,3],[17,3],[15,3],[26,3],[47,3],[66,12],[60,3],[76,3],[48,3],[75,3],[57,6],[58,6]],'interrupt':[[78,117],[68,3],[76,6],[7,3],[50,18]],'operators':[[50,3],[60,9]],'colorful':[[5,3]],'recommended':[[59,6],[5,3]],'fancy':[[60,3]],'3fff':[[79,3],[68,3]],'2eff':[[68,3]],'namco':[[75,12]],'harmless':[[78,3]],'buzzers':[[30,3]],'protection':[[13,3]],'finishing':[[78,3]],'1200':[[68,3]],'pi#x7':[[78,12]],'compromised':[[79,3]],'skinny':[[80,3]],'g8r':[[78,3]],'2003':[[73,6]],'00a5#mic':[[50,3]],'want':[[46,3],[55,6],[53,3],[50,3],[30,3],[61,9],[56,6],[59,24],[54,6],[78,6],[43,3],[60,3],[10,3],[40,9],[79,3],[58,6]],'jan':[[79,3]],'adequately':[[9,3]],'surrounding':[[79,3]],'movement':[[52,3]],'4011h':[[75,3]],'cause':[[63,3],[78,12],[76,6],[53,3],[13,3],[40,3],[79,3],[27,3]],'allocated':[[68,3]],'common':[[62,3],[8,3],[5,3],[17,3],[64,3],[9,3],[29,3],[41,3],[66,6],[6,3],[60,6],[4,3],[78,9],[75,3],[10,3],[40,3],[7,3],[79,3]],'tenten':[[48,18]],'different':[[79,6],[50,3],[81,3],[68,3],[35,3],[27,6],[17,3],[59,9],[9,3],[15,6],[23,3],[5,6],[76,9],[78,27],[72,3],[48,6],[75,3],[40,3],[7,6],[65,3]],'voltage':[[76,15],[79,6]],'waves':[[79,6]],'x0p':[[78,3]],'chosenjo':[[30,3]],'fills':[[79,3]],'registerwrite':[[59,3]],'options':[[19,9],[50,3],[16,9],[35,15],[39,3],[59,3],[9,3],[14,3],[15,18],[23,6],[29,6],[51,3],[4,9],[54,6],[48,6],[71,3],[40,3],[7,6],[65,3],[38,3],[30,3],[13,6],[20,6],[36,6],[42,9],[8,3],[5,9],[26,18],[25,6],[41,9],[43,6],[11,9]],'force':[[76,3],[60,3],[4,3],[32,3],[33,3],[35,6],[5,3]],'smoother':[[35,6]],'mess':[[61,3],[79,3]],'commenting':[[60,3]],'furthermore':[[52,3],[55,6],[53,3]],'preserved':[[66,6],[71,3]],'letter':[[56,12]],'extract':[[78,3],[49,3]],'restarting':[[59,3]],'purpose':[[63,9],[59,3],[3,3],[76,3]],'slash':[[59,3],[27,3]],'xlib':[[62,3]],'margin':[[79,3]],'apr':[[81,3],[80,3]],'diagram':[[78,24],[68,6],[76,3]],'reconstruct':[[23,6]],'leaves':[[19,6],[5,3]],'wikipedia':[[66,3],[68,3]],'bilinear':[[65,3]],'inclined':[[67,3]],'miscellaneous':[[71,3]],'interpret':[[64,3]],'zero':[[73,6],[78,87],[76,12],[24,3],[50,3],[52,3],[68,15],[40,3],[79,3]],'manner':[[48,3],[60,3]],'wants':[[76,3]],'slave':[[79,3]],'9001':[[75,3]],'push':[[61,3],[78,21],[66,3]],'extended':[[3,6]],'shy':[[78,12]],'color':[[55,3],[30,3],[13,6],[20,18],[35,9],[5,3],[27,6],[59,69],[51,3],[60,12],[32,18],[10,3],[79,45],[7,12],[65,6]],'boulderdash_amoebaai':[[5,3]],'translated':[[76,3],[48,3]],'bank':[[59,6],[55,3],[50,36],[75,30],[68,6],[56,3],[40,3],[7,3]],'perfection':[[66,3]],'drop':[[30,6],[43,3],[10,3],[40,3],[7,3],[11,6]],'%1d':[[71,6]],'complain':[[61,3]],'port2':[[71,9]],'guide':[[66,3],[71,3],[16,15],[68,6],[40,3],[64,6],[39,15]],'notebook':[[48,3]],'8123':[[50,3]],'accessed':[[73,3],[54,6],[55,15],[53,3],[68,3],[79,15]],'createfromgdstr':[[59,3],[60,3]],'arr':[[78,18]],'fillcolor':[[59,12]],'preparations':[[78,9]],'gets':[[59,21],[78,3],[79,3],[7,6],[5,3]],'mid':[[8,3],[51,3]],'deemed':[[61,12]],'60hz':[[75,3]],'noicon':[[19,9]],'beta':[[3,3]],'ftp':[[62,3]],'planning':[[79,3]],'wins':[[79,3]],'samples':[[75,3]],'guard':[[59,3]],'comprised':[[48,3]],'120':[[76,6]],'rp2a03e':[[76,3]],'gtk2':[[3,3],[6,3]],'giorgio':[[3,3]],'installed':[[11,3]],'signed':[[73,9],[59,9],[78,6],[41,3],[60,3],[42,3],[75,6]],'matches':[[56,3]],'activity':[[78,3]],'break':[[78,6],[50,45],[61,3],[52,3],[68,3],[7,3]],'generator':[[68,6],[76,48],[79,3]],'placement':[[79,3]],'card':[[5,3]],'remain':[[78,3],[79,3],[43,3]],'previously':[[59,9]],'will':[[50,90],[61,39],[56,27],[35,24],[27,66],[15,12],[29,18],[80,3],[24,6],[48,51],[32,12],[57,3],[79,66],[46,9],[38,6],[28,45],[81,3],[12,3],[13,15],[36,33],[68,39],[37,3],[63,6],[21,27],[22,3],[43,24],[33,12],[11,3],[73,3],[19,21],[39,3],[59,126],[9,3],[23,69],[51,9],[54,12],[60,48],[66,6],[4,3],[71,9],[40,63],[7,3],[18,12],[65,6],[55,9],[53,15],[30,24],[31,3],[45,6],[52,15],[8,3],[17,9],[78,135],[76,204],[34,3],[72,3],[75,27],[58,30]],'consistently':[[8,3]],'sbx':[[78,42]],'accessible':[[60,3],[38,6],[11,3],[50,6]],'else':[[63,3],[59,9],[66,3],[60,9],[61,9],[40,3]],'`#j1@lj3b@29':[[78,3]],'cross':[[78,3],[2,3]],'state':[[73,15],[19,3],[50,12],[27,3],[59,63],[54,6],[23,18],[71,9],[60,6],[4,3],[79,3],[7,6],[55,3],[38,3],[53,3],[12,6],[13,3],[36,6],[52,6],[5,3],[17,24],[63,3],[78,12],[76,15],[72,6],[75,9]],'populated':[[7,3]],'framedisplay':[[19,9]],'troubleshooting':[[64,3],[65,6]],'0005':[[50,6],[75,3]],'lua':[[1,3],[19,15],[50,6],[61,45],[59,84],[9,18],[14,6],[15,12],[66,3],[60,87],[4,6],[10,6],[57,36],[7,18],[38,30],[62,9],[28,9],[12,6],[13,15],[8,24],[5,54],[63,87],[6,12],[11,12],[58,54]],'checked':[[50,3],[28,3],[12,3],[36,18],[35,24],[59,9],[15,6],[22,3],[76,3],[34,3],[48,3],[10,3],[40,6],[33,6]],'thing':[[76,3],[66,3],[48,15],[79,6],[40,6],[65,3]],'yesno':[[59,9]],'slowdown':[[23,3],[5,3]],'highlighted':[[10,3]],'defeated':[[63,3]],'diagrams':[[79,3]],'00h':[[75,21]],'#256':[[79,3]],'circuit':[[79,3]],'huge':[[79,3]],'not':[[73,6],[19,15],[50,18],[61,21],[56,3],[35,3],[27,24],[59,96],[15,9],[23,15],[29,6],[51,3],[54,3],[60,42],[4,6],[66,12],[48,48],[71,18],[40,30],[18,3],[57,3],[65,9],[79,39],[46,6],[55,12],[38,3],[53,3],[28,3],[62,3],[12,3],[13,12],[36,9],[52,6],[68,18],[5,12],[63,9],[78,165],[21,3],[22,3],[76,39],[6,3],[43,3],[34,3],[75,42],[11,15],[58,3]],'4040':[[75,3]],'anymore':[[5,6]],'0300':[[68,12]],'hertz':[[59,15],[75,3]],'log':[[78,6],[54,30],[55,18],[71,36],[4,3],[11,6],[5,27]],'|10':[[76,3]],'mirrored':[[79,3]],'frontend':[[61,3],[3,3],[58,3]],'maximum':[[59,3],[78,3],[76,6],[60,3],[61,3],[72,3],[32,3],[75,3]],'shrink':[[36,3]],'saved':[[73,3],[38,9],[50,3],[28,15],[61,9],[13,3],[36,3],[27,3],[17,3],[59,6],[48,15],[10,3],[40,3]],'taller':[[35,3]],'refer':[[59,6],[68,12],[56,3],[60,3]],'conversion':[[4,3],[59,3],[12,3],[76,6],[65,3]],'ever':[[76,3],[79,9]],'faintly':[[79,3]],'safely':[[59,3]],'nop':[[78,105]],'additions':[[78,6]],'polled':[[46,3],[27,3]],'moviefilenames':[[13,3]],'design':[[5,3],[76,3],[44,3]],'messagebox':[[60,3]],'unhide':[[29,3],[38,3],[27,3]],'relating':[[28,3],[1,3]],'becomes':[[48,3],[55,6],[76,3],[50,3],[5,3]],'raw':[[59,33],[49,3],[22,3],[18,3]],'integral':[[4,3],[35,3]],'refused':[[78,3]],'1400h':[[75,3]],'excess':[[48,3]],'met':[[76,3],[50,3]],'disrupt':[[75,3]],'registersave':[[59,3],[9,6]],'smb2':[[19,6]],'anded':[[78,3]],'pin':[[76,12],[79,15]],'basics':[[79,3],[57,3],[60,6],[58,3]],'explain':[[63,3],[26,3],[48,3],[53,3]],'notice':[[78,3]],'retrieves':[[79,6]],'beyond':[[53,3],[22,3]],'4020':[[68,3]],'relocated':[[75,6]],'determining':[[78,3],[79,3]],'existing':[[17,3],[49,3],[40,6]],'page':[[73,3],[59,9],[78,120],[25,3],[38,3],[50,3],[60,3],[62,3],[68,21],[3,9],[40,3]],'w_pm`':[[78,3]],'debugging':[[9,3],[49,3],[6,3],[50,27],[60,3],[67,6],[12,3],[13,3],[3,9],[7,3],[5,6]],'nothrottle':[[59,3],[19,6],[60,3]],'aid':[[63,3],[48,3],[79,3],[67,3]],'microsoft':[[62,3]],'rather':[[59,12],[15,6],[46,3],[19,3],[43,3],[50,3],[60,3],[61,3],[79,6],[11,3],[27,3]],'reliably':[[78,3]],'deleting':[[55,3],[57,3],[5,3]],'inital':[[75,6]],'scrolllock':[[59,3]],'mapinittab':[[8,3]],'behaves':[[78,3]],'joe':[[48,3]],'precise':[[78,3],[79,3],[60,3]],'onto':[[79,6],[68,15]],'line':[[19,12],[50,75],[53,3],[12,3],[16,6],[52,3],[68,3],[35,12],[5,3],[8,3],[59,12],[15,3],[23,3],[54,3],[71,12],[60,12],[76,3],[78,12],[80,3],[3,3],[40,6],[11,9],[79,30]],'west':[[78,3]],'sav':[[21,3],[55,3],[11,3],[28,3]],'kage':[[5,3]],'blob':[[71,3]],'around':[[59,6],[49,3],[78,3],[76,6],[75,6],[68,3]],'zapper':[[8,3],[59,24],[71,15],[30,24],[4,3],[11,9],[7,6]],'goes':[[59,3],[78,6],[76,6],[61,3],[13,3],[68,3],[75,6],[79,3]],'tearing':[[35,6],[5,3]],'capslock':[[59,3]],'send':[[40,3],[78,3]],'shouldn':[[63,3],[40,3]],'ejecting':[[21,3]],'c000':[[75,6],[68,3],[55,3],[50,9]],'0000|':[[68,3]],'plp':[[78,12]],'destination':[[78,3],[22,3],[55,6]],'|0e':[[76,3]],'065':[[76,3]],'0x10':[[50,3]],'draw':[[59,24],[13,3],[80,3],[60,3],[62,3]],'statement':[[78,3],[50,6]],'rules':[[58,3]],'__________________________________________':[[68,3]],'popped':[[79,3]],'blur':[[35,3]],'extracts':[[78,3]],'shorthand':[[80,3]],'wrap':[[76,3]],'held':[[59,33],[23,3],[76,3],[30,9],[7,3]],'automate':[[57,3]],'called':[[38,12],[50,3],[62,9],[61,42],[17,3],[59,30],[78,12],[66,3],[60,9],[3,3],[79,6],[11,3],[58,3]],'t2p9d`pyd`':[[78,3]],'automated':[[59,3],[66,3]],'setpixel':[[59,3]],'newly':[[54,6]],'pix':[[68,6]],'interrupting':[[59,3]],'incomplete':[[73,6]],'port0':[[71,21]],'arithmetic':[[78,24]],'garbage':[[79,9]],'lehti':[[78,6]],'testing':[[78,3]],'post':[[9,3],[79,3],[5,3]],'deck':[[21,3]],'flakes':[[5,3]],'004':[[76,3]],'software':[[78,3],[3,3],[62,3]],'f14':[[59,3]],'downs':[[66,3]],'hide':[[18,3],[27,3],[29,3],[38,3],[79,3],[35,9],[5,3]],'themes':[[7,3],[29,3]],'driven':[[79,3]],'instructions':[[5,9],[59,3],[49,6],[54,12],[78,135],[50,15],[40,3],[58,6]],'similar':[[65,3],[59,6],[78,6],[79,3],[4,3],[75,6],[68,6],[36,3],[40,3],[7,6],[57,3]],'finally':[[78,9],[53,3],[50,3]],'06xx':[[68,3]],'subpixel':[[68,9]],'proves':[[78,18]],'a000':[[55,3],[75,3]],'internally':[[59,6],[79,6],[60,3]],'suspending':[[4,3]],'turns':[[38,6],[78,6],[19,18],[6,3],[11,3]],'serialize':[[79,3]],'parasyte':[[3,3]],'etc':[[55,3],[50,3],[28,3],[61,3],[16,3],[68,9],[8,3],[35,3],[5,3],[59,3],[76,6],[75,12],[10,3],[79,3],[7,3],[11,3]],'blargg':[[10,9]],'mulitple':[[68,3]],'ml`':[[78,3]],'distorted':[[79,3]],'metroid':[[75,6],[5,3]],'screens':[[79,3],[68,6]],'xxx1':[[75,3]],'peek':[[5,3]],'deleted':[[59,15]],'friends':[[59,3]],'standard':[[59,9],[21,3],[76,3],[38,3],[43,3],[60,3],[62,3],[71,3],[48,6],[75,6]],'digit':[[78,3],[68,3]],'dd0e':[[78,24]],'240hz':[[76,9]],'programmable':[[76,33]],'bullet':[[23,6],[3,3],[66,3]],'win32':[[5,3],[11,3],[9,3],[6,3],[4,3],[12,36],[13,6],[10,3],[7,9],[8,6]],'decay':[[76,87]],'weekend':[[79,3]],'hash':[[71,3],[48,3]],'0x00fa':[[60,3]],'recovering':[[12,3]],'write':[[55,3],[19,6],[38,9],[50,6],[53,9],[61,6],[68,3],[36,3],[59,39],[78,117],[23,6],[76,39],[80,15],[60,12],[75,21],[10,6],[40,3],[7,3],[11,3]],'blank':[[48,3]],'magenta':[[59,3]],'intensive':[[60,3]],'hexeditor':[[60,3]],'means':[[46,3],[38,18],[50,3],[62,3],[56,3],[35,12],[59,27],[15,3],[76,9],[71,3],[48,3],[75,9],[57,3],[79,15]],'luasocket':[[62,9]],'2001':[[73,3]],'equal':[[78,3],[76,6],[50,6],[60,9],[61,3],[40,24]],'tiles':[[48,15],[68,3],[79,12]],'representations':[[59,3]],'sssff':[[75,3]],'|14':[[76,3]],'convertfcmtofm2':[[65,3]],'peripheral':[[21,3]],'persistent':[[59,18]],'scales':[[59,6]],'rp2a03':[[59,3]],'explaination':[[75,3]],'routine':[[78,33],[75,15],[49,6],[68,9],[76,3]],'hop':[[76,3]],'numpad8':[[59,3]],'action':[[9,3],[76,18],[40,6]],'games':[[73,6],[67,9],[61,6],[16,6],[35,6],[27,3],[59,6],[51,3],[14,3],[54,3],[66,3],[60,6],[80,3],[48,12],[32,3],[40,12],[18,3],[65,3],[79,12],[46,6],[55,3],[53,3],[30,12],[28,6],[13,3],[52,3],[68,21],[8,6],[5,9],[17,6],[63,3],[21,15],[76,12],[75,6],[11,6]],'drawn':[[55,3],[80,3],[48,3],[52,3],[10,3],[79,9]],'your':[[65,6],[53,6],[50,9],[30,6],[61,12],[68,12],[56,3],[63,3],[59,51],[78,27],[23,3],[43,3],[60,12],[48,57],[75,3],[79,12],[58,6]],'dadc':[[78,3]],'battletoads':[[68,3]],'``a':[[78,6]],'gracefully':[[7,3],[12,3]],'scans':[[55,3]],'calling':[[59,12]],'checkboxes':[[5,3]],'simultaneously':[[78,9],[46,3],[27,3]],'buffering':[[33,9]],'canvas':[[62,3]],'r6502':[[78,3]],'deviation':[[68,3]],'400c':[[76,12]],'processor':[[73,3],[78,81],[3,3],[76,3]],'unzipping':[[13,3]],'hashes':[[48,12]],'branching':[[78,3],[60,3]],'lastkeys':[[61,3]],'init':[[50,6],[75,36]],'examined':[[76,3]],'pause':[[19,6],[50,12],[36,6],[8,3],[27,6],[17,3],[59,9],[22,18],[23,12],[54,6],[60,9],[48,6],[10,3],[40,3],[11,6],[7,3]],'latest':[[13,3],[15,6],[11,3],[5,3]],'shift':[[17,3],[59,3],[78,3],[76,33],[4,3],[45,3],[13,3],[79,39],[11,3],[35,3]],'headerless':[[21,3]],'private':[[55,3]],'fall':[[61,3],[79,3]],'treated':[[78,3]],'512':[[79,3]],'f24':[[59,3]],'l&xj8':[[78,3]],'within':[[73,3],[59,3],[55,3],[50,3],[4,3],[52,3],[79,3],[35,6]],'square1':[[59,3]],'04fx':[[68,3]],'regards':[[76,6],[79,3]],'counterbreak':[[59,6]],'nicely':[[46,3]],'blip':[[3,3]],'128d':[[78,3]],'separate':[[59,9],[78,3],[23,3],[55,3],[2,3],[50,3],[48,3]],'begins':[[72,3],[48,6],[10,3]],'helpful':[[55,3],[48,3]],'reserved':[[78,3],[68,6]],'redo':[[17,6],[38,12],[11,6],[27,3]],'llvm':[[5,3]],'difference':[[78,3],[48,3],[76,3],[79,6]],'besides':[[63,3],[60,3]],'increases':[[9,3],[76,6],[8,3]],'vd`d2n0q':[[78,3]],'nothing':[[55,3],[60,3],[61,21],[48,3],[68,3],[79,6]],'gamepad0':[[8,3]],'window':[[50,63],[56,6],[35,27],[27,6],[59,3],[9,3],[15,6],[29,9],[49,3],[54,21],[60,9],[4,15],[48,42],[10,6],[40,33],[7,9],[53,3],[30,6],[28,3],[62,6],[12,12],[13,6],[8,3],[5,12],[26,3],[41,3],[6,6],[11,21]],'supply':[[60,3]],'0afffh':[[75,3]],'affected':[[78,18],[46,3],[56,3]],'msmakela@kruuna':[[78,3]],'bit1':[[71,6],[78,3]],'hacked':[[18,3]],'patched':[[18,3]],'#100':[[50,3]],'stopping':[[59,6]],'word':[[48,24],[75,24],[71,6]],'initialrawdalatch':[[59,3]],'system':[[38,3],[62,3],[28,3],[16,6],[36,3],[17,6],[59,3],[15,3],[21,15],[76,12],[66,3],[24,6],[71,3],[78,3],[3,6],[79,3]],'belongs':[[71,6]],'activates':[[7,3]],'player2':[[71,3],[14,6]],'weed':[[40,3]],'ikari':[[68,3]],'occurred':[[72,3],[78,3]],'grows':[[75,3]],'battle':[[48,6]],'252':[[5,3]],'development':[[78,3],[3,3],[66,3]],'imply':[[79,3]],'detecting':[[59,3]],'|0c':[[76,6]],'|28':[[76,3]],'fm2':[[65,9],[19,36],[38,6],[28,3],[45,12],[12,6],[13,9],[16,3],[36,9],[8,6],[39,3],[63,3],[15,15],[22,6],[23,27],[70,3],[71,9],[10,9],[11,12],[7,3]],'|frames':[[76,6]],'recorded':[[59,3],[9,3],[23,3],[15,3],[66,6],[30,3],[71,9],[61,3],[36,3],[27,6]],'machines':[[17,3],[75,3],[10,3],[33,3]],'arrives':[[76,3],[79,3]],'protections':[[78,3]],'fastest':[[61,3],[78,3],[24,3]],'obtained':[[76,3]],'conflicts':[[5,6]],'004e':[[75,3]],'capable':[[61,3],[21,3],[48,3],[79,3]],'strategies':[[23,3]],'2406':[[79,3]],'needing':[[48,3]],'addressing':[[78,78],[68,3],[40,3],[79,3]],'164':[[5,3]],'drastic':[[59,3]],'showing':[[36,3],[59,3]],'traditional':[[30,3]],'rockwell':[[78,3]],'170':[[79,9]],'ultra':[[73,9],[1,3],[53,3],[0,3],[45,3],[15,3],[23,3],[71,3],[2,9],[72,3],[3,54],[40,9]],'autohold':[[7,12]],'totally':[[78,3]],'implementation':[[57,3],[7,6],[79,3]],'bit4':[[71,6],[78,3]],'2048':[[78,3],[68,15],[76,6],[40,3]],'instant':[[79,3],[48,3]],'|02':[[76,3]],'however':[[31,3],[42,3],[35,3],[27,3],[59,15],[78,24],[23,3],[41,3],[66,6],[76,3],[80,3],[75,3],[48,3],[3,3],[40,3],[79,9]],'stop':[[79,3],[38,18],[19,6],[50,3],[61,12],[59,18],[22,9],[78,9],[76,3],[48,3],[3,3],[10,6],[7,3],[58,6]],'sends':[[15,6],[23,3]],'asm':[[56,3]],'creative':[[67,3]],'2b8':[[78,3]],'half':[[78,6],[68,3],[76,6],[79,12],[60,3]],'influence':[[78,3]],'quirk|':[[79,3]],'earlier':[[59,3],[25,3],[66,3],[6,3],[7,3]],'indicates':[[59,3],[76,3],[71,12],[50,3],[79,3]],'front':[[61,3],[76,3],[60,6]],'errors':[[59,3],[49,3],[60,6],[4,3],[61,3],[12,3],[7,3]],'ask':[[21,3],[29,9],[10,3]],'capturing':[[22,18],[16,6],[11,3]],'inserted':[[15,3],[21,3]],'warning':[[59,9],[48,3],[19,3]],'0080':[[75,6]],'discussed':[[79,3]],'flaws':[[25,3]],'determines':[[59,6],[20,3],[76,3],[79,6]],'slower':[[65,6],[34,3],[48,3],[35,3],[27,3]],'doing':[[59,12],[78,3],[53,6],[61,6],[12,3],[75,3],[79,3],[11,3]],'scanned':[[18,3]],'ret':[[53,3]],'strange':[[78,3]],'less':[[73,3],[50,3],[13,3],[8,3],[59,6],[78,9],[76,12],[48,6],[75,3],[79,6],[40,9],[7,3]],'040e':[[40,3]],'single':[[50,6],[5,3],[78,3],[49,3],[23,6],[29,3],[66,3],[2,3],[76,3],[75,6],[10,3],[79,12],[7,3]],'vsprintf':[[13,3]],'another':[[55,6],[30,3],[68,9],[17,3],[59,3],[63,3],[78,3],[80,3],[60,3],[48,3],[79,9],[11,3]],'throughout':[[48,3]],'inverting':[[76,3]],'comecon':[[78,3]],'operand':[[78,18]],'disk':[[17,3],[59,6],[9,3],[21,96],[73,3],[71,15],[24,18],[28,3],[30,3],[16,6],[18,3]],'30fps':[[46,3],[27,6]],'horrible':[[79,3]],'slot':[[17,12],[59,15],[68,15],[10,6],[60,3]],'triply':[[59,3]],'defaulting':[[9,3]],'homepage':[[3,9],[58,3]],'checkbox':[[30,3],[50,9],[48,9],[36,6],[40,3],[33,6],[8,3]],'pipelining':[[78,6]],'caused':[[5,3],[78,3],[9,3],[13,3],[11,21],[7,3]],'swap1p2p':[[5,3]],'follows':[[76,15],[71,3],[48,3],[75,3],[40,3],[79,6],[58,3]],'p17':[[73,3]],'colorburst':[[79,18]],'mutually':[[76,3],[79,3]],'emuversion':[[71,3]],'directions':[[68,3]],'terminate':[[78,3]],'pre':[[3,3],[65,3]],'m159':[[5,3]],'9003':[[75,3]],'tracknoise':[[5,3]],'rect':[[59,3]],'doings':[[79,3]],'infamous':[[79,3]],'01h':[[75,3]],'useless':[[54,3]],'10ff':[[68,3]],'suppose':[[59,3],[48,9]],'d011':[[78,6]],'above':[[50,12],[30,6],[81,3],[56,3],[35,3],[5,3],[78,9],[60,3],[48,6],[75,12],[79,6],[7,3]],'joystick':[[73,6],[72,9],[30,3]],'shifts':[[78,6]],'fix':[[12,18],[13,9],[35,9],[8,12],[5,3],[78,39],[9,3],[14,6],[25,3],[49,3],[6,6],[75,3],[10,3],[79,3],[7,18],[11,9]],'exists':[[59,3],[15,3],[10,3],[79,3]],'startup':[[15,3],[55,3],[19,3],[61,3],[12,3],[11,3],[27,3]],'genie':[[19,6],[50,6],[67,6],[56,45],[27,27],[59,6],[49,9],[6,3],[4,6],[3,3],[40,6],[79,3],[65,15]],'selects':[[79,9],[80,3]],'figure':[[79,3],[48,12]],'_____':[[68,6]],'associative':[[60,9]],'assigned':[[23,3],[41,3],[30,9],[11,3]],'presskeystart4':[[61,3]],'platform':[[62,6],[3,3],[2,3],[60,3]],'aimlessly':[[15,3]],'nmi1':[[50,3]],'rerecording':[[53,3],[42,3],[8,3],[9,3],[15,6],[23,6],[25,6],[2,3],[41,3],[66,3],[3,15],[7,3]],'200000':[[66,3]],'extent':[[59,3]],'jeopardy':[[68,3]],'contained':[[73,3],[76,3]],'tie':[[61,15]],'1f0h':[[75,3]],'small':[[66,9],[50,6],[61,3],[48,3],[68,3],[75,6],[79,6],[65,3]],'period':[[59,3],[23,3],[76,3],[40,3],[79,9],[27,3]],'prepends':[[75,3]],'0xf':[[78,3]],'disassembler':[[55,15]],'simultaneous':[[78,3],[5,3]],'#8123':[[50,3]],'16777216':[[78,6]],'romname':[[19,9]],'fetched':[[78,27],[79,36]],'0&&4ka':[[78,3]],'dreams':[[79,3]],'|24':[[76,3]],'choose':[[5,3],[21,9],[54,3],[60,3],[32,3],[56,3],[58,6]],'controller':[[59,6],[51,3],[30,27],[68,3],[57,3],[7,6],[27,3]],'laws':[[7,3]],'anyways':[[61,3]],'exact':[[79,6]],'field':[[73,6],[50,18],[12,3],[13,3],[56,6],[5,6],[59,3],[15,3],[23,3],[66,3],[43,3],[71,18],[4,3],[48,3],[75,6],[40,3]],'resume':[[4,9],[23,3],[50,3],[27,3]],'says':[[59,3],[61,3]],'steps':[[76,6],[79,6]],'09000h':[[75,6]],'input':[[19,18],[61,12],[16,3],[27,33],[39,6],[59,69],[9,6],[15,6],[23,9],[47,12],[60,21],[66,3],[4,6],[71,51],[10,3],[7,24],[46,3],[30,33],[28,12],[44,3],[12,3],[13,9],[68,9],[5,12],[17,3],[63,6],[26,3],[76,9],[6,3],[72,3],[33,3],[11,3]],'6502_cpu':[[78,6]],'registermanual':[[59,3]],'handling':[[15,6],[55,3],[6,3],[5,3]],'abstract':[[62,3]],'european':[[78,3]],'wiki':[[66,3]],'getdown':[[59,3],[8,3]],'drag':[[8,3],[48,6],[10,3],[40,3],[11,6],[7,3]],'statically':[[3,3]],'backslash':[[59,3]],'deeper':[[60,3]],'panels':[[51,3]],'gates':[[76,12],[79,3]],'copying':[[78,3],[48,3]],'seems':[[78,12],[10,3],[76,3],[79,9]],'emblem':[[8,6]],'latched':[[79,3]],'forcefully':[[59,3]],'actual':[[73,3],[59,9],[55,3],[66,3],[50,3],[76,6],[48,6],[32,9],[79,3]],'#ce_2gpl':[[78,3]],'megaman':[[79,12]],'conditioned':[[79,3]],'srt':[[10,3],[38,3]],'playern':[[60,6]],'scripting':[[63,3],[15,6],[66,3],[60,3],[28,3],[61,12],[57,12],[58,3]],'verbose':[[4,3]],'improvements':[[3,3],[6,3]],'keyword':[[60,3]],'ctlr':[[73,6]],'4017':[[73,3],[76,48]],'recording':[[38,9],[28,3],[44,3],[12,6],[13,3],[16,6],[36,3],[5,3],[27,9],[59,9],[9,6],[15,9],[22,3],[23,42],[6,3],[26,3],[4,3],[43,3],[66,48],[71,3],[3,6],[7,6],[65,3]],'100':[[59,6],[61,3],[78,21],[76,3],[79,3]],'check':[[7,3],[30,3],[50,3],[61,3],[36,3],[35,3],[59,6],[49,3],[78,3],[4,3],[32,3],[11,3],[65,6]],'names':[[9,3],[50,9],[28,3],[4,3],[48,6],[5,6]],'videolog':[[12,3]],'asq_realitya':[[25,3]],'fcm':[[11,3],[45,18],[12,3],[13,12],[39,6],[15,6],[23,6],[70,6],[71,3],[72,18],[10,3],[7,6],[65,6]],'bunch':[[79,3],[48,3]],'events':[[61,6],[79,3]],'aforementioned':[[76,3],[79,3]],'mmmm':[[50,6]],'nybble':[[78,102]],'configuration':[[26,6],[46,3],[30,15],[33,6],[35,3],[5,6]],'cheating':[[40,6]],'bytes':[[73,30],[55,12],[53,6],[50,12],[68,39],[59,24],[54,3],[78,12],[71,15],[72,6],[75,18],[79,6],[65,3]],'subtract':[[78,6]],'reworked':[[79,3]],'4006':[[76,9]],'phases':[[79,12]],'invisible':[[79,3]],'font':[[48,12],[5,3]],'optimize':[[66,3]],'77h':[[75,3]],'judged':[[61,3]],'tests':[[4,3],[78,21],[76,3],[80,3]],'icons':[[27,3]],'mappers':[[5,6],[53,6],[4,6],[13,3],[3,15],[11,3],[8,9]],'8192':[[68,3],[65,3]],'sunsoft':[[75,12]],'kentaro':[[76,3]],'eight':[[61,3],[71,3]],'#l&':[[78,3]],'dmcaddress':[[59,3]],'0x863c':[[59,3]],'subsection':[[73,18]],'smooth':[[79,3]],'bandai':[[5,3]],'tabbing':[[54,3],[5,3]],'04x0':[[68,3]],'restoration':[[6,3]],'coordinate':[[59,12],[79,18],[60,6]],'eeprom':[[5,3]],'izumi':[[76,3]],'glitch':[[63,3],[55,3],[53,3]],'exclamationmark':[[60,3]],'dsbc':[[78,6]],'auxillary':[[59,3]],'ties':[[76,3]],'edu':[[78,3]],'johnson':[[79,6]],'emulating':[[59,3],[8,3]],'linear':[[59,3],[75,3],[76,72],[79,3]],'going':[[59,3],[48,12],[79,6]],'tax':[[78,6]],'requires':[[29,3],[31,3],[13,3],[79,3],[35,3],[65,6]],'hands':[[60,3]],'inputdisplay_for_selection':[[5,3]],'transparency':[[59,24],[79,6]],'upgrades':[[15,3]],'flag':[[8,3],[59,6],[9,3],[78,312],[19,48],[43,3],[50,9],[75,6],[79,21],[7,6],[27,3]],'wider':[[35,3]],'gzip':[[18,3]],'0011111100000000':[[80,3]],'rendering':[[59,3],[13,3],[79,48],[50,3],[5,3]],'recognize':[[11,3]],'algorithm':[[78,3],[18,6]],'japanophile':[[48,3]],'fba':[[41,3],[42,3]],'aborts':[[78,3]],'&z0':[[78,3]],'bypassed':[[33,3]],'processed':[[78,3],[60,3]],'profiling':[[50,3]],'snapped':[[56,3]],'tttttttt':[[75,3]],'169':[[79,3]],'2007':[[73,3],[68,6],[55,3],[79,9],[80,3]],'includes':[[59,6],[51,3],[38,3],[62,3],[77,3],[12,3],[13,3],[10,3],[74,3],[11,9],[5,3]],'plugging':[[21,3]],'earth':[[78,3]],'competing':[[66,3]],'removes':[[40,3],[59,3]],'drastically':[[11,3]],'intuitive':[[53,3],[7,3]],'provided':[[59,9],[3,3],[76,6]],'punkrockguy318':[[3,3]],'grammar':[[50,3]],'specially':[[58,3]],'coder':[[79,3]],'multiply':[[75,3]],'during':[[55,3],[62,3],[13,6],[35,3],[5,3],[78,15],[21,6],[23,9],[76,9],[48,3],[79,54],[7,6]],'altogether':[[63,3]],'player4':[[71,3]],'deactivating':[[78,3]],'accumulate':[[79,3]],'commontricks':[[66,3]],'aspects':[[69,3]],'simply':[[53,3],[50,6],[28,3],[45,3],[61,9],[68,3],[17,3],[15,3],[23,9],[66,3],[43,3],[71,3],[75,12],[79,9]],'04ff':[[68,3]],'yesnocancel':[[59,3]],'000a':[[75,3]],'kiji':[[8,3]],'collector':[[78,3]],'sta':[[78,126]],'undefined':[[78,9]],'6400%':[[24,6]],'tune':[[75,66],[55,3],[24,6]],'08ff':[[68,3]],'palflag':[[71,3],[13,3]],'calls':[[59,12],[54,3],[55,3],[38,3]],'repeat':[[40,3],[56,3]],'aborted':[[12,3]],'trying':[[5,3],[59,3],[78,6],[55,3],[76,3],[4,3],[61,3],[13,3],[68,3],[35,6],[7,3]],'filter':[[67,3],[42,6],[68,6],[37,3],[39,6],[9,3],[15,3],[41,6],[54,9],[43,3],[66,3],[32,3],[3,3],[65,3]],'rightbracket':[[59,3]],'m#nd':[[78,6]],'incrementing':[[75,3]],'unl':[[11,3],[5,3]],'evaluation':[[61,6],[57,3],[79,15]],'sdl':[[5,12],[11,39],[6,3],[4,3],[12,54],[13,66],[3,3],[10,6],[7,3],[8,9]],'compile':[[57,3],[61,3]],'anything':[[59,12],[78,6],[66,3],[60,9],[75,9],[7,3],[5,3]],'related':[[1,3],[38,3],[68,3],[36,3],[78,3],[15,3],[14,3],[25,3],[26,12],[6,6],[29,3],[49,3],[34,3],[80,3],[32,3],[10,3],[11,6]],'lags':[[43,6]],'product':[[50,9]],'taylor':[[76,3],[79,3]],'767':[[76,6]],'recieving':[[76,3]],'limitation':[[35,3]],'stack':[[7,3],[73,3],[54,9],[78,81],[50,15],[75,3],[68,12],[8,3],[5,6]],'ef43':[[71,3]],'neg':[[76,3]],'taught':[[61,3]],'picture':[[51,3],[35,3],[65,3]],'rip':[[55,3],[75,3]],'anonymous':[[59,9],[60,6]],'2012':[[50,3],[0,3],[61,3],[77,3],[56,3],[35,3],[27,3],[15,3],[29,3],[47,3],[80,3],[2,3],[24,3],[48,3],[32,3],[57,3],[79,3],[46,3],[38,3],[28,3],[44,3],[81,3],[12,3],[13,3],[20,3],[36,3],[64,3],[5,6],[37,3],[63,3],[21,3],[22,3],[41,3],[68,3],[43,3],[69,3],[33,3],[11,3],[73,3],[1,3],[19,3],[67,3],[74,3],[16,3],[39,3],[59,3],[9,3],[14,3],[23,3],[49,3],[51,3],[54,3],[4,3],[60,3],[66,3],[71,3],[10,3],[40,3],[18,3],[7,3],[65,3],[55,3],[53,3],[30,3],[31,3],[45,3],[62,3],[42,3],[52,3],[8,3],[17,3],[78,3],[26,3],[25,3],[70,3],[6,3],[76,3],[34,3],[72,3],[75,3],[3,3],[58,3]],'encounters':[[60,3]],'parodius':[[67,3],[69,3]],'dragon':[[27,6],[9,3],[46,3],[28,6],[75,3],[79,3],[5,3]],'0x800':[[73,9]],'stopseeking':[[59,3]],'constitute':[[71,3]],'introduces':[[5,3]],'causing':[[63,3],[78,6],[7,6],[50,3],[35,3],[5,3]],'features':[[79,3],[1,3],[67,6],[0,3],[12,3],[13,6],[42,3],[5,3],[78,6],[9,3],[15,9],[23,3],[41,3],[66,15],[76,6],[4,3],[48,15],[3,15],[10,3],[11,12],[7,6]],'compiling':[[11,3]],'variant':[[59,3]],'play':[[19,3],[50,6],[67,3],[61,9],[27,9],[59,6],[9,3],[23,12],[54,3],[66,3],[4,12],[48,6],[10,3],[79,3],[55,15],[38,24],[31,9],[36,3],[5,3],[17,6],[21,3],[26,3],[75,18],[11,3]],'5ff6':[[75,3]],'frequencies':[[76,9]],'experimental':[[10,6],[44,3]],'incremented':[[81,3],[78,12],[79,3]],'bookmarks':[[4,3],[50,24],[40,3],[6,3],[5,3]],'error':[[61,6],[12,3],[13,6],[8,3],[5,3],[59,39],[15,6],[78,3],[6,3],[48,3],[10,3],[11,6],[7,6]],'vezj':[[78,3]],'demos':[[78,3],[49,3]],'rollback':[[61,9]],'fetches':[[78,21],[79,30]],'microprocessor':[[78,3]],'assumes':[[79,3]],'useable':[[57,3],[11,3],[31,3]],'pkzip':[[18,3]],'projects':[[5,3]],'configfile':[[13,6]],'translations':[[48,3]],'0111000000000000':[[80,3]],'periodic':[[75,3],[40,3],[27,3]],'shs':[[78,9]],'vbjin':[[41,3]],'management':[[78,3],[15,3],[57,3]],'suited':[[79,3]],'offsets':[[5,3],[75,9],[79,3],[50,9],[18,3]],'functions':[[7,6],[57,6],[58,12],[55,3],[38,6],[62,6],[81,3],[61,42],[8,3],[5,6],[63,6],[59,36],[9,3],[15,3],[78,3],[6,3],[43,3],[4,3],[60,15],[3,3],[40,6],[11,3],[10,3]],'no8lim':[[19,6],[13,3]],'3000|':[[68,3]],'similarly':[[78,9]],'together':[[61,3],[78,3],[76,6],[35,3]],'compatible':[[73,3],[11,3],[38,3],[68,3],[5,3],[17,3],[78,3],[9,3],[15,3],[23,3],[70,3],[18,9],[65,3]],'increasing':[[76,3],[33,3],[11,3],[5,3]],'palette':[[73,3],[68,3],[35,3],[5,6],[59,24],[26,6],[51,6],[25,30],[32,63],[10,9],[79,66],[7,6],[65,12]],'separated':[[51,3],[55,3],[2,3]],'zd`2':[[78,3]],'newppu':[[9,3],[71,3],[12,3],[10,6],[8,3],[5,9]],'stopmovie':[[19,9]],'oops':[[78,3]],'getinput':[[59,3]],'for':[[50,57],[61,66],[77,3],[56,6],[35,27],[27,18],[15,18],[29,6],[47,3],[80,12],[2,3],[24,3],[48,57],[32,15],[57,9],[79,186],[46,18],[38,12],[28,6],[12,39],[13,30],[68,66],[5,30],[63,21],[21,9],[22,12],[41,3],[11,66],[73,9],[1,6],[19,6],[67,12],[74,3],[16,18],[39,12],[59,138],[9,12],[23,30],[49,24],[51,3],[54,42],[60,63],[66,21],[71,24],[10,24],[40,57],[18,12],[7,39],[65,6],[55,45],[53,9],[30,15],[62,18],[42,3],[52,9],[8,18],[17,6],[78,114],[25,3],[76,114],[6,6],[72,3],[75,51],[3,27],[58,12]],'equipment':[[30,3]],'fun':[[48,3]],'transport':[[62,3]],'1a00':[[68,3]],'op`b@`':[[78,3]],'booleans':[[71,3]],'occupied':[[21,3]],'appropriate':[[59,9],[78,3],[76,12],[79,21]],'registerexit':[[59,3]],'app':[[48,6]],'rerecordcount':[[59,3],[71,3],[11,3]],'executed':[[78,27],[54,21],[55,9]],'elseif':[[60,3]],'17d':[[76,3]],'undoes':[[66,3]],'generation|':[[79,3]],'users':[[63,6],[59,3],[9,3],[11,3]],'applying':[[50,3]],'dir':[[12,3]],'softreset':[[59,3],[11,3]],'native':[[3,3],[62,3]],'hello':[[60,6]],'could':[[59,6],[78,12],[55,9],[53,3],[43,3],[66,3],[48,6],[75,3],[79,21],[65,3]],'lowest':[[61,3],[78,3],[68,3]],'1000':[[68,6],[71,6],[24,6]],'254':[[59,3]],'numpad0':[[59,3]],'1008307711':[[71,3]],'freely':[[63,3]],'ch8':[[75,6]],'dream':[[7,3],[8,3]],'filehandle':[[60,9]],'essentially':[[76,6],[55,3],[67,3],[48,3],[57,3],[79,12],[58,3]],'conducted':[[76,3]],'reformats':[[15,3]],'taps':[[76,3]],'resizing':[[4,3],[35,6]],'machrider':[[63,3]],'macros':[[66,3]],'root':[[65,6],[5,3]],'screenshot':[[59,12],[38,6],[11,3]],'days':[[60,3]],'bit1|bit0':[[78,3]],'apparently':[[3,3]],'d020':[[78,6]],'png':[[59,6],[62,3],[28,18]],'sequential':[[79,12]],'rewrites':[[5,3]],'prefer':[[35,6],[54,3]],'replay':[[40,3],[59,3],[22,3],[23,6],[38,3],[12,6],[13,3],[10,3],[36,3],[7,9],[5,12]],'strmode':[[60,3]],'couple':[[4,3],[60,3]],'changelog':[[12,3],[13,3],[8,3],[5,3],[9,3],[14,3],[6,3],[4,3],[3,15],[10,3],[11,3],[7,3]],'lose':[[78,6],[5,3]],'crackling':[[33,3]],'nesdev@onelist':[[81,6],[80,6]],'ascii':[[71,6],[50,3],[5,3]],'hexforecolorb':[[20,3]],'quirk':[[76,3],[79,3]],'return':[[59,18],[78,6],[23,3],[76,6],[53,6],[50,6],[30,3],[60,9],[61,33],[11,6],[58,3]],'_ok':[[78,3]],'bfff':[[55,3],[68,3]],'came':[[25,3],[79,6]],'whole':[[78,3],[79,9],[35,3]],'compete':[[79,3]],'xxxx1':[[68,3]],'too':[[58,6],[59,12],[27,3],[78,12],[60,3],[48,6],[79,3],[8,3],[5,3]],'c006':[[50,3]],'ease':[[5,3]],'mechanism':[[59,3],[61,3]],'madara':[[75,3]],'ported':[[9,3],[42,6],[3,9],[41,6],[8,3]],'generate':[[59,3],[55,3],[76,21],[61,3],[75,3],[79,3]],'5015':[[75,3]],'call':[[59,12],[76,3],[80,3],[60,6],[61,6],[75,15],[79,3]],'motion':[[66,6]],'attempted':[[66,3]],'1ch':[[75,3]],'opcodes':[[78,15]],'1@i#zbe_':[[78,6]],'netplay':[[62,3],[8,3],[65,3]],'town':[[48,3]],'kinds':[[78,6],[48,3],[60,3]],'rumored':[[79,3]],'unchanged':[[59,9]],'|0a':[[76,6]],'exnr':[[73,3]],'cumulative':[[5,3]],'preexisting':[[23,3]],'viewer':[[49,9],[51,12],[55,9],[53,3],[67,3],[4,3],[13,3],[52,12],[3,6],[8,3],[11,6]],'september':[[3,3]],'premise':[[66,6],[48,3]],'extensive':[[16,3]],'archives':[[13,3]],'usual':[[78,3],[75,3],[79,6]],'provide':[[59,3],[40,3],[62,3],[79,3]],'logic':[[78,21],[80,3],[6,3],[44,3],[4,3],[81,3],[10,9],[79,3],[5,6]],'uint8':[[73,117]],'a%_':[[78,3]],'overview':[[63,6],[1,3],[43,3],[2,3],[0,3],[75,3]],'renamed':[[50,3]],'those':[[55,3],[30,3],[61,3],[20,3],[35,3],[5,3],[59,18],[54,3],[76,6],[75,6],[79,3],[40,3]],'handled':[[78,30],[7,3]],'scanline':[[51,6],[19,6],[50,12],[80,3],[48,9],[52,27],[79,165],[11,3],[35,3]],'m`0@9':[[78,15]],'logging':[[4,6],[9,3],[54,12],[55,15],[7,3]],'untouched':[[75,3]],'abortretryignore':[[59,3]],'patches':[[40,3]],'isattemptok':[[61,6]],'input3':[[13,3]],'terminates':[[71,3]],'zd#':[[78,3]],'using':[[50,3],[67,3],[61,3],[56,9],[39,12],[59,39],[9,3],[23,3],[51,3],[54,3],[60,15],[48,9],[57,6],[40,9],[7,3],[65,6],[79,9],[55,12],[53,9],[62,6],[28,3],[45,3],[52,6],[68,3],[8,3],[5,3],[17,9],[63,3],[78,15],[76,6],[43,6],[33,6],[58,3]],'sporting':[[79,3]],'drawing':[[5,3],[59,27],[51,3],[63,3],[80,3],[62,3],[4,3],[52,3],[79,6],[35,3],[11,3]],'although':[[78,9],[79,9],[67,3]],'turbo':[[59,6],[15,12],[19,15],[6,6],[24,9],[60,6],[12,3],[13,3],[33,6],[7,3],[11,24]],'engaged':[[59,3]],'doubly':[[59,3]],'ling':[[4,3]],'eaters':[[78,3]],'selector':[[79,3]],'chronicles':[[6,3]],'declaration':[[48,6]],'r0j0`fd%j':[[78,3]],'si_none':[[71,12]],'ampl':[[73,3]],'icon':[[59,15],[19,9],[27,3]],'switched':[[81,6],[59,3],[40,3],[5,3]],'imagine':[[79,3]],'criteria':[[43,6]],'v`a%_':[[78,3]],'&4la':[[78,3]],'231':[[59,3],[35,3]],'decision':[[79,3]],'optionally':[[59,9],[12,3],[50,3]],'kevin':[[75,3]],'getup':[[59,3],[8,3]],'relative':[[78,12],[7,3]],'items':[[26,9],[38,9],[67,3],[48,3],[68,3],[11,15],[27,3]],'specifics':[[60,3]],'gameinfo':[[32,3]],'scientific':[[62,6]],'khorton@iquest':[[75,3]],'technically':[[67,3]],'community':[[64,6],[67,3],[2,6]],'specialized':[[67,3]],'customize':[[10,3]],'|bit7':[[76,6]],'convience':[[79,3]],'coin':[[24,6]],'key3':[[61,3]],'mutlitrack2':[[63,3]],'smearing':[[35,3]],'exiting':[[60,3]],'5c00':[[75,9]],'256x224':[[59,3]],'brad':[[76,3],[79,3]],'bar':[[15,3],[51,3],[52,9],[68,3],[3,3],[10,3],[79,18]],'stay':[[23,3],[76,9],[35,3]],'popular':[[62,3]],'based':[[79,3],[50,3],[62,3],[15,3],[9,3],[76,3],[66,3],[43,3],[71,3],[75,3],[40,3],[11,3],[18,3]],'basically':[[61,3],[48,3],[53,3],[79,9]],'f16':[[59,3]],'indeed':[[63,3]],'tri':[[76,24]],'chapter':[[38,9],[78,6]],'curly':[[60,3]],'rewritten':[[44,3],[5,3]],'y#4j2x@to':[[78,3]],'%d2n@4':[[78,3]],'remained':[[3,6]],'644':[[78,18]],'middle':[[79,3],[53,3],[50,6],[56,3]],'until':[[7,3],[50,9],[56,3],[27,6],[59,6],[76,6],[48,3],[75,6],[3,3],[79,12],[40,3],[58,3]],'pauses':[[59,3],[60,3],[5,3]],'autopause':[[4,3]],'potentially':[[59,3]],'respectively':[[78,9],[75,3],[76,6]],'frames':[[46,6],[61,15],[13,3],[12,3],[27,12],[59,30],[15,3],[23,3],[76,3],[71,3],[43,3],[72,3],[48,3],[79,9],[11,3]],'obsoletes':[[53,3]],'refresh':[[9,3],[76,15],[11,12]],'expand':[[68,3]],'delay':[[59,3],[46,3],[76,12],[24,6],[4,3],[79,3]],'compatibility':[[17,3],[8,6],[9,6],[27,6],[59,12],[6,3],[18,3],[5,3]],'corners':[[35,3]],'rand':[[61,24]],'string':[[73,9],[59,123],[71,12],[62,3],[50,3],[60,9],[48,3],[75,15],[10,3]],'presskeya1':[[61,3]],'must':[[65,9],[73,3],[38,6],[19,15],[30,3],[50,9],[61,6],[56,3],[27,6],[59,9],[21,6],[78,9],[76,3],[71,15],[43,3],[60,3],[48,3],[75,18],[40,3],[79,6],[58,3]],'turned':[[59,3],[40,3],[71,3],[27,3]],'4092':[[75,3]],'setreadonly':[[59,12],[11,3]],'|frame':[[76,3],[79,3]],'terminated':[[73,3],[75,9],[71,3]],'arrow':[[30,6],[43,3]],'closer':[[78,3]],'2013':[[4,3]],'f17':[[59,3]],'retrieved':[[79,3]],'dismisses':[[59,3]],'collapse':[[43,3]],'notable':[[4,3]],'flickering':[[35,6]],'irq':[[73,21],[78,51],[76,54],[50,9],[10,3],[79,12]],'the':[[50,567],[61,390],[77,9],[56,147],[35,81],[27,240],[15,60],[29,30],[80,45],[2,24],[24,66],[48,351],[32,45],[57,18],[79,1296],[46,45],[38,153],[28,45],[44,12],[81,24],[12,18],[13,36],[20,33],[36,48],[64,9],[5,57],[37,30],[63,30],[21,129],[22,39],[41,9],[68,201],[43,138],[69,6],[33,51],[11,81],[73,93],[1,12],[19,57],[67,21],[74,3],[39,18],[59,1065],[9,27],[14,6],[23,267],[49,30],[51,36],[54,120],[4,54],[60,255],[66,111],[71,333],[10,120],[40,423],[18,30],[7,114],[65,60],[55,216],[53,138],[30,237],[31,6],[45,9],[62,39],[42,6],[52,81],[8,42],[17,63],[78,1665],[26,18],[25,15],[70,9],[6,27],[76,1101],[72,36],[75,378],[3,87],[58,75]],'popup':[[59,30],[9,6],[60,3]],'expensive':[[59,3],[60,3]],'off':[[40,9],[73,6],[79,9],[46,24],[19,24],[30,3],[61,3],[68,3],[27,15],[5,3],[59,6],[78,6],[23,3],[76,6],[71,3],[6,3],[24,3],[34,3],[48,3],[10,6],[33,3],[7,9],[11,18]],'song':[[75,54]],'better':[[59,3],[9,3],[15,3],[61,3],[48,6],[32,6],[35,3]],'05ff8h':[[75,9]],'luabot_backend':[[61,3]],'m09':[[78,3]],'sifc_none':[[71,3]],'default_nitsuja':[[25,3]],'bear':[[48,3]],'readbyte':[[59,6],[11,6],[60,6]],'player':[[59,36],[21,3],[30,3],[2,3],[60,6],[61,6],[13,3],[68,36],[7,9]],'achieves':[[66,3]],'modern':[[3,3]],'invalid':[[59,3],[78,39],[4,3],[12,3],[11,3],[5,3]],'minimal':[[15,3]],'allowed':[[59,3],[55,3],[76,3],[60,3],[10,3],[11,3],[5,3]],'maxattempts':[[61,3]],'mhz':[[78,9],[76,6],[79,36]],'located':[[59,3],[78,6],[53,3],[4,3],[48,3],[68,3],[40,3],[65,3]],'alive':[[59,3]],'generic':[[73,12],[61,6]],'%h21cp`ea@':[[78,3]],'disappear':[[78,3],[13,3],[11,6]],'images':[[21,12],[79,6],[62,3],[18,6]],'mysterious':[[10,3],[5,3]],'navigate':[[22,3],[23,3],[50,3]],'english':[[48,12]],'fixedfontheight':[[10,3]],'0x0263':[[59,3]],'linux':[[3,12],[59,6]],'proceed':[[12,3],[21,3]],'everything':[[59,3],[54,6],[78,3],[55,3],[66,3],[61,3],[79,3]],'ripper':[[55,6],[75,3]],'2nd':[[9,3],[71,9],[75,3],[68,3],[79,3],[11,3]],'nor':[[66,3],[78,3]],'preset':[[59,3],[78,3],[30,12]],'tens':[[66,3]],'anew':[[3,3]],'lined':[[46,3]],'rendered':[[55,9],[79,24]],'turning':[[24,3],[79,3],[40,3],[11,3],[27,6]],'specifications':[[77,3],[74,3],[69,3]],'viewing':[[48,6],[53,3],[67,3]],'176':[[5,3]],'bind':[[12,6],[10,3],[36,3],[30,3]],'dancing':[[68,3]],'latch':[[73,12],[78,6],[76,3],[79,15]],'pressed':[[11,3],[59,6],[23,3],[46,3],[71,15],[60,3],[61,21],[40,6],[33,3],[7,3]],'making':[[55,3],[62,3],[44,3],[67,6],[68,12],[36,3],[56,3],[64,3],[27,3],[39,3],[59,3],[15,6],[23,9],[76,3],[66,21],[78,3],[48,3],[40,6],[79,6]],'iql2':[[73,3]],'57%':[[76,3]],'demokratische':[[78,3]],'``````````````':[[78,3]],'lag':[[5,3],[59,33],[15,9],[46,3],[43,6],[12,6],[13,3],[11,6],[27,24]],'indexes':[[79,3]],'serializer':[[79,3]],'1100':[[68,3]],'mahjong':[[30,3]],'freq':[[76,3],[59,15]],'width':[[11,3]],'castlevania':[[75,3]],'note':[[73,3],[46,3],[19,6],[30,6],[50,6],[61,9],[52,3],[13,6],[68,3],[27,12],[59,33],[15,3],[54,3],[76,21],[78,42],[60,15],[80,6],[48,9],[32,3],[75,12],[33,3],[40,6],[79,6]],'release':[[65,6],[79,15],[30,3],[31,3],[44,3],[12,3],[13,3],[8,3],[5,3],[9,3],[14,6],[47,3],[76,3],[6,6],[4,3],[3,3],[10,6],[11,3],[7,6]],'automation':[[50,3]],'f11':[[55,3],[59,3]],'#rrggbbaa':[[59,3]],'reserve':[[68,3]],'overflows':[[78,9]],'function':[[38,6],[61,39],[13,3],[8,3],[17,6],[59,204],[9,3],[49,3],[6,3],[60,33],[48,3],[75,3],[7,3]],'playbeginning':[[59,3],[11,3]],'cover':[[79,3]],'pcl':[[78,45]],'32000':[[13,3],[8,3],[11,6]],'kremer':[[78,3]],'octave':[[76,9]],'behind':[[59,6],[55,3],[79,6],[2,3],[60,3]],'contents':[[53,3],[50,12],[61,9],[68,3],[64,3],[5,3],[49,9],[23,3],[51,3],[76,3],[80,3],[75,3],[40,3],[79,9]],'grey':[[59,3]],'447':[[76,3]],'rpg':[[61,3],[48,3]],'designed':[[73,3],[23,3],[25,3],[1,3],[41,3],[43,3],[42,3],[68,3],[39,3]],'explanation':[[78,3],[56,3],[39,3]],'newname':[[50,3]],'synchronize':[[76,3]],'vector':[[78,36],[50,24],[62,3]],'ranging':[[78,3]],'given':[[17,3],[59,102],[29,3],[76,3],[66,3],[50,12],[60,15],[61,3],[52,3],[56,3],[79,3]],'surface':[[62,6]],'jl`@h':[[78,3]],'|history|':[[79,3]],'initialize':[[78,3],[79,6]],'gaiden':[[8,9]],'luke':[[3,3]],'mail':[[75,3]],'4005':[[76,6]],'mask':[[55,6]],'hq2x':[[35,12]],'rest':[[73,3],[59,3],[78,9],[76,3],[48,3],[79,3]],'concept':[[61,3],[2,3],[44,3]],'feb':[[79,6]],'describe':[[76,9]],'along':[[3,3],[79,3]],'1536':[[79,3],[68,3]],'human':[[66,6],[31,3]],'who':[[61,3],[76,6],[60,3]],'playingbest':[[61,3]],'positive':[[59,3],[48,3],[78,6],[76,3],[43,3]],'specified':[[59,3],[21,3],[76,3],[19,30],[50,12],[28,3],[71,9],[75,9],[27,3]],'returns':[[60,12],[59,159],[61,33],[7,3],[11,6]],'provides':[[67,3],[68,3],[66,6],[2,3],[62,6]],'cli':[[76,6],[78,3]],'existed':[[59,3]],'assigning':[[4,3]],'shortcuts':[[11,3]],'listbox':[[7,3]],'little':[[59,3],[78,3],[4,3],[61,3],[48,3],[10,3]],'improvement':[[5,3]],'determine':[[59,3],[54,3],[76,3],[61,9],[48,12],[75,9],[79,9]],'udp':[[62,3]],'choice':[[59,6],[79,3],[27,3]],'building':[[62,3]],'diables':[[10,3]],'nonsense':[[63,3]],'middleclick':[[59,3]],'ramwatch':[[6,6]],'ugly':[[48,3]],'p40':[[59,3]],'presettable':[[76,6]],'triangle':[[59,3],[76,93],[33,3]],'shoddy':[[48,3]],'lax':[[78,39]],'altering':[[78,3]],'providing':[[79,3],[8,3]],'blacker':[[79,3]],'difficult':[[78,3],[32,3]],'serializers':[[79,6]],'attention':[[79,3]],'booting':[[5,6]],'gray':[[59,3]],'logged':[[54,6],[55,12],[53,3],[5,3]],'compress':[[8,3],[27,3]],'submitinsertframes':[[59,3]],'assisted':[[23,9],[66,39],[2,3],[44,3],[61,3],[68,3],[3,3],[64,6],[5,3]],'outlinecolor':[[59,12]],'fixes':[[12,9],[13,12],[8,12],[5,6],[9,9],[14,3],[15,3],[6,3],[4,6],[10,18],[11,18],[7,9]],'autoconverts':[[10,3]],'giving':[[63,3]],'wave':[[73,3],[76,96]],'ticks':[[75,6]],'older':[[59,9],[76,3],[47,3],[3,3],[33,3],[58,3]],'truncate':[[36,3],[7,3]],'inserts':[[24,3]],'definite':[[76,3]],'identically':[[59,3]],'effectively':[[78,9],[76,6],[53,3],[30,3],[79,3]],'kana':[[48,18]],'sept':[[79,6]],'ymouse':[[59,3]],'00111111':[[80,3]],'enabling':[[65,3],[7,3],[27,3],[76,6],[34,3],[11,3],[35,3]],'six':[[21,3]],'nil':[[59,48],[9,3],[61,3],[11,3],[60,18]],'rising':[[79,3]],'applied':[[60,6],[79,6],[40,3],[6,3],[27,6]],'9002':[[75,6]],'neat':[[79,3]],'june':[[78,3],[3,3],[6,3],[7,3]],'3f00|':[[68,3]],'find_window':[[62,6]],'setting':[[46,6],[30,6],[52,3],[16,3],[39,3],[27,9],[78,6],[54,3],[23,3],[76,3],[24,6],[4,3],[75,3],[10,3],[79,6],[11,3]],'arbitrary':[[40,6]],'sty':[[78,21]],'closed':[[13,3],[27,3]],'improved':[[11,3],[27,3],[10,3],[6,3],[5,12]],'getmarker':[[59,3]],'constantly':[[73,3],[76,3]],'242':[[5,3]],'foreground':[[79,12],[20,3]],'displaying':[[27,3],[59,6],[49,6],[57,3],[79,3],[5,3]],'getemuscreen':[[59,9]],'divider':[[76,12]],'static':[[61,3]],'01xx':[[68,3]],'programmer':[[76,3],[57,3],[79,6]],'scan':[[12,3],[35,6]],'lead':[[76,6]],'descriptions':[[76,3],[78,3]],'f800':[[75,6]],'list':[[11,3],[57,6],[73,9],[53,3],[30,6],[50,18],[56,12],[8,3],[5,12],[37,6],[59,3],[15,3],[21,6],[76,3],[78,3],[60,6],[4,6],[48,3],[32,6],[10,3],[40,24],[7,12],[18,3]],'pirated':[[48,3]],'powerful':[[15,3],[55,3],[53,3],[62,3],[44,3],[61,6],[5,3]],'record':[[59,9],[9,3],[22,6],[23,27],[38,6],[71,30],[13,3],[36,3],[11,3],[27,6]],'xxx0':[[68,3]],'qbe':[[78,3]],'subtractions':[[78,6]],'equally':[[61,3]],'stream':[[72,3],[79,3]],'regarding':[[17,3],[78,3],[1,3],[70,3],[64,9]],'fps':[[5,3],[22,3],[27,6]],'resetting':[[76,3],[40,3],[5,3]],'getname':[[59,3],[11,3]],'mouse':[[53,3],[30,9],[50,3],[52,3],[35,6],[5,3],[63,3],[59,9],[51,3],[71,21],[4,3],[48,6],[11,6]],'cutting':[[66,3],[60,3],[67,3]],'jumping':[[78,12],[62,3]],'pertain':[[76,3]],'motherboard':[[79,3]],'which':[[1,3],[50,27],[67,3],[61,15],[56,6],[27,3],[59,15],[49,3],[23,3],[54,18],[71,39],[24,3],[60,6],[4,3],[80,3],[48,3],[32,3],[79,84],[7,15],[55,36],[53,18],[30,3],[28,3],[12,3],[13,12],[52,9],[68,9],[5,3],[78,51],[21,6],[76,45],[43,3],[72,9],[75,12],[3,9],[11,3],[58,18]],'stores':[[78,9],[75,3],[71,3],[7,3]],'throws':[[59,18],[78,3]],'decimal':[[73,3],[78,84],[71,6],[43,6],[60,3],[68,3],[40,3]],'vrc':[[75,3]],'minus':[[73,3],[59,3],[75,6],[76,3],[79,6]],'comparison':[[78,3],[56,3],[60,3],[79,9]],'reflects':[[76,3]],'license':[[3,3]],'mistakes':[[66,3],[23,3]],'start':[[79,12],[55,6],[53,3],[30,9],[50,3],[61,21],[59,15],[15,3],[23,3],[29,3],[71,18],[43,6],[60,6],[76,12],[78,9],[48,6],[75,3],[80,6],[40,3],[7,3],[58,3]],'anothervalue':[[60,3]],'lines':[[78,3],[54,12],[71,3],[50,18],[48,3],[52,3],[68,3],[75,3],[11,9],[79,9]],'title':[[59,3],[21,6],[48,3],[61,3]],'saturation':[[79,3]],'05fffh':[[75,9]],'textcolor':[[59,9]],'luapack':[[58,3]],'require':[[76,3],[80,3],[62,3],[60,3],[79,6],[27,3]],'dmcloop':[[59,3]],'040h':[[76,3]],'@xcfyl':[[78,3]],'entirely':[[59,3]],'july':[[10,3]],'press':[[55,6],[53,3],[30,15],[50,3],[61,9],[27,6],[17,9],[59,9],[37,6],[29,3],[24,3],[43,3],[48,18]],'trouble':[[18,3]],'work':[[73,6],[46,3],[19,6],[12,3],[13,3],[27,3],[63,6],[59,6],[9,3],[54,6],[76,6],[78,9],[60,3],[48,12],[3,3],[10,3],[40,6],[79,6]],'compression':[[8,3],[18,3]],'178':[[5,3]],'65xx':[[78,15]],'metafile':[[62,3]],'speedruns':[[23,6],[66,21],[44,3],[68,3],[3,3],[64,6]],'botting':[[61,3]],'050':[[76,3]],'wait':[[78,6],[11,3],[60,6]],'joyhat':[[8,3]],'unset':[[59,3]],'uint16':[[73,12]],'gamepad5':[[8,3]],'mos':[[78,3]],'bookmark':[[50,9],[5,6]],'therefore':[[76,6],[79,3],[27,3]],'hooked':[[48,12]],'maps':[[62,6]],'you':[[50,93],[61,87],[56,27],[35,24],[27,39],[59,183],[9,3],[15,3],[23,51],[29,9],[24,21],[49,9],[4,6],[54,54],[48,183],[32,6],[60,84],[40,24],[18,3],[57,3],[65,15],[79,48],[80,6],[46,6],[55,63],[53,90],[30,45],[31,3],[45,6],[62,3],[52,6],[20,6],[36,9],[68,27],[81,12],[37,9],[17,27],[63,33],[21,24],[22,9],[76,18],[78,84],[43,21],[75,30],[3,3],[33,9],[58,33]],'left':[[73,3],[19,6],[30,12],[28,3],[50,24],[61,3],[35,9],[5,9],[27,3],[59,36],[15,3],[54,6],[78,12],[71,9],[43,3],[60,6],[75,3],[10,3],[40,9],[11,6]],'happening':[[59,3],[13,3],[79,3]],'immediately':[[79,6],[59,18],[76,12],[53,3],[61,3],[68,3],[10,3],[56,3],[36,3],[7,3]],'pathname':[[19,3]],'limitations':[[66,6],[48,3]],'memory':[[50,63],[67,3],[56,3],[39,6],[59,90],[9,9],[15,24],[23,3],[49,3],[51,12],[60,15],[66,3],[10,12],[40,18],[7,3],[79,99],[53,27],[28,9],[13,6],[52,3],[68,48],[78,21],[76,6],[43,51],[75,3],[3,3],[11,21]],'used':[[73,6],[19,3],[50,9],[67,6],[61,15],[27,3],[59,18],[15,6],[23,3],[49,6],[54,3],[60,12],[66,9],[71,54],[80,3],[48,30],[32,9],[10,6],[40,12],[7,3],[18,3],[79,54],[55,18],[38,21],[30,6],[28,15],[53,3],[81,3],[12,3],[13,9],[68,15],[8,3],[63,6],[78,39],[21,9],[22,3],[25,3],[76,36],[34,6],[72,6],[75,33],[11,6],[58,3]],'restores':[[33,3],[38,18]],'calculation':[[76,3],[50,3]],'eggs':[[55,3]],'roms':[[15,3],[55,3],[19,6],[28,6],[4,9],[13,3],[48,3],[8,3],[5,3]],'dimensions':[[59,3]],'ohm':[[76,3]],'coming':[[76,3]],'1993':[[78,3]],'exwram':[[14,3]],'waiting':[[59,3]],'85xx':[[78,3]],'sight':[[78,3]],'savestatefile':[[19,3]],'253':[[9,3],[8,3],[5,3]],'segment':[[59,3],[61,81],[23,3],[66,12]],'programmed':[[63,3],[61,3],[79,6],[58,3]],'edited':[[23,3],[1,3],[40,3],[50,3]],'captured':[[27,3]],'enables':[[5,3],[78,9],[19,3],[40,3],[7,3],[27,3]],'room':[[59,3]],'writeable':[[59,6]],'dfff':[[55,3],[75,6]],'buffer':[[73,3],[13,3],[79,30],[11,3]],'p`ne':[[78,3]],'ratio':[[5,3],[76,3],[35,15],[11,3]],'throttling':[[34,9],[19,9],[11,6]],'health':[[61,3]],'totalsize':[[73,3]],'matt':[[76,3]],'|60':[[76,3]],'gdoverlay':[[59,9]],'documentation':[[1,3],[12,3],[42,3],[36,3],[69,6],[5,6],[59,3],[15,3],[23,3],[41,3],[70,3],[76,3],[78,9],[79,3],[11,9],[58,3]],'fires':[[46,3]],'onsegmentend':[[61,3]],'phenomenon':[[76,3]],'shifted':[[76,3],[79,3]],'mario':[[68,9]],'1998':[[3,3]],'negative':[[81,3],[59,3],[78,36],[76,9]],'why':[[78,15],[76,6],[53,3],[60,3],[81,3],[48,3],[79,15]],'column':[[71,6],[50,15],[43,12],[68,9],[40,9],[11,3]],'physical':[[50,3]],'2800|':[[68,3]],'tmnt':[[68,3]],'layer':[[79,3]],'oeka':[[30,3]],'nmi':[[78,57],[68,3],[76,3],[79,6],[50,6]],'144':[[61,3]],'1fc':[[76,3]],'bring':[[50,3]],'lastkey4':[[61,3]],'dated':[[78,3]],'number':[[50,24],[61,99],[27,3],[59,36],[54,3],[23,6],[71,9],[24,6],[60,6],[4,3],[48,6],[10,3],[40,12],[79,12],[65,3],[55,3],[13,3],[20,3],[36,3],[5,6],[17,6],[78,6],[21,3],[76,48],[72,3],[75,12],[11,6]],'corruption':[[68,3]],'rom':[[73,3],[1,3],[19,24],[50,51],[67,36],[56,21],[27,33],[59,21],[15,6],[23,6],[29,6],[54,3],[2,3],[60,6],[4,15],[71,3],[48,9],[10,9],[40,6],[18,6],[7,3],[65,15],[79,6],[55,75],[38,12],[53,48],[28,12],[12,3],[13,6],[68,12],[8,9],[5,15],[17,3],[63,3],[21,12],[64,12],[78,3],[75,3],[3,3],[11,27]],'sprite':[[73,3],[51,3],[50,6],[13,3],[68,21],[79,42],[8,3]],'decent':[[56,3],[35,3],[79,3]],'opposite':[[59,9],[61,3],[78,3]],'decoding':[[79,3]],'known':[[59,3],[21,3],[23,3],[51,3],[76,9],[43,3],[60,3],[75,6],[3,3],[40,6],[65,6]],'attached':[[71,15],[21,3]],'adjusting':[[10,3],[58,3]],'splitting':[[60,3]],'temporarily':[[78,3],[40,3],[30,3],[35,3]],'scale3x':[[35,6]],'but':[[50,3],[61,15],[35,3],[59,39],[54,9],[66,6],[24,3],[60,12],[80,6],[48,36],[10,6],[57,6],[40,6],[65,3],[18,6],[79,33],[46,6],[55,12],[38,3],[30,6],[62,6],[81,3],[68,3],[78,45],[21,3],[76,12],[43,6],[75,6],[3,3],[58,3]],'4th':[[46,3],[76,3],[71,3],[79,6]],'pla':[[78,6]],'may':[[50,27],[35,9],[27,3],[59,21],[54,3],[29,6],[66,6],[71,9],[48,3],[32,3],[79,6],[40,3],[65,6],[7,3],[46,3],[55,3],[38,3],[30,3],[53,6],[17,3],[63,9],[78,72],[75,3],[33,6]],'vbuf':[[73,3]],'nes':[[1,6],[19,63],[50,54],[67,3],[77,18],[74,6],[56,9],[35,12],[27,9],[59,3],[51,3],[23,6],[54,3],[66,6],[2,3],[24,15],[4,3],[60,3],[48,6],[32,15],[10,3],[40,9],[18,15],[65,6],[79,42],[80,9],[55,18],[53,15],[30,9],[81,6],[52,3],[68,30],[64,6],[69,6],[17,3],[21,12],[22,3],[76,30],[75,12],[3,3],[58,3]],'favourite':[[78,3]],'clearing':[[76,3],[5,3]],'cleanup':[[5,6],[61,3],[13,6],[11,3],[6,3]],'stopframe':[[19,6]],'debug':[[49,9],[1,6],[50,9],[4,3],[13,3],[5,3]],'visually':[[55,3],[49,3]],'2k3':[[76,3],[79,9]],'observe':[[50,3]],'dumping':[[22,3],[62,3],[5,3]],'0f000h':[[75,6]],'0xf0':[[78,3]],'approprite':[[79,3]],'protocols':[[62,3]],'07xx':[[68,3]],'vsbx':[[78,9]],'#0t':[[78,24]],'server':[[5,9],[31,6],[65,6]],'store':[[78,39],[48,3],[21,3],[54,3],[28,3]],'default':[[19,3],[61,9],[35,18],[27,24],[59,9],[9,3],[15,3],[23,15],[29,6],[24,3],[71,6],[4,3],[32,6],[10,3],[40,6],[7,9],[46,6],[30,6],[28,15],[12,12],[13,15],[20,18],[8,3],[5,6],[17,9],[37,6],[21,3],[22,3],[25,6],[43,9],[33,3],[11,15]],'slowing':[[23,3]],'breakpoints':[[13,6],[50,54],[5,21]],'average':[[27,3]],'normal':[[59,6],[46,3],[55,3],[6,3],[24,3],[60,6],[40,3],[33,3],[58,3]],'filters':[[59,3],[13,3],[54,3]],'modulate':[[59,3]],'tasvideos':[[42,3],[23,3],[41,3],[66,12],[65,3]],'seven':[[78,3]],'conditional':[[5,3],[50,12],[7,3]],'slows':[[24,3]],'binary':[[59,9],[78,30],[3,3],[55,3],[71,18]],'yelling':[[30,3]],'plain':[[40,3],[62,3],[71,6]],'performing':[[59,3],[78,9]],'clip':[[63,3],[19,6],[11,3],[35,3]],'creates':[[61,3],[28,3]],'continuous':[[24,6]],'bcs':[[78,9]],'don’t':[[23,3]],'quicksave':[[9,3]],'enhancements|':[[79,3]],'high':[[34,3],[75,3],[78,156],[79,3]],'unix':[[3,6],[8,3]],'can':[[50,63],[61,39],[56,6],[35,24],[27,45],[15,21],[47,3],[80,6],[24,9],[48,42],[32,6],[57,3],[79,27],[46,3],[28,3],[81,6],[12,3],[13,3],[20,9],[68,24],[69,3],[5,9],[63,3],[21,12],[22,6],[41,9],[43,6],[33,12],[11,12],[73,3],[19,3],[59,102],[9,6],[23,66],[49,3],[51,3],[54,21],[60,39],[4,6],[71,15],[40,27],[7,6],[18,6],[65,21],[55,45],[53,42],[30,18],[62,12],[42,3],[17,6],[78,33],[76,24],[34,3],[72,3],[75,15],[3,6],[58,6]],'feeding':[[59,3]],'base64':[[71,3]],'programs':[[78,9],[48,3],[57,3],[79,3]],'frameskip':[[13,3]],'getselection':[[59,3]],'a13':[[79,24]],'recompiled':[[1,3]],'important':[[61,3],[66,3],[79,3]],'pipeline':[[79,15]],'monitor':[[79,15],[78,3],[43,6],[10,3],[40,3],[11,3],[65,3]],'follow':[[4,6],[76,3],[50,3],[60,3]],'meaningful':[[59,3]],'indices':[[78,3]],'dualcore':[[11,3]],'reflex':[[66,6]],'serialized':[[79,3]],'luabot_front':[[61,3]],'classic':[[29,3]],'effective':[[78,240]],'leftclick':[[59,3]],'integers':[[59,9]],'wired':[[78,3]],'rainwarrior':[[1,3]],'rts':[[4,3],[78,12],[75,3],[50,6],[5,3]],'ips':[[13,3],[18,27]],'c0a8':[[50,3]],'presskeyx':[[61,9]],'puts':[[40,3],[59,3]],'blending':[[5,3]],'undone':[[66,3]],'framenumber':[[19,3]],'xxx2':[[75,3]],'enthusiast':[[76,3]],'m3y':[[78,3]],'exp':[[78,3]],'bi`':[[78,6]],'finishes':[[78,3],[79,6]],'details|':[[79,6]],'multiple':[[73,3],[59,6],[55,3],[50,3],[6,6],[45,3],[79,12],[7,3]],'this':[[50,60],[61,84],[56,9],[35,54],[27,45],[15,6],[29,9],[47,3],[80,6],[24,6],[48,87],[32,6],[57,9],[79,282],[46,15],[38,72],[28,3],[81,12],[12,3],[13,6],[20,6],[68,42],[5,3],[63,6],[21,15],[22,3],[41,6],[43,6],[11,3],[73,15],[19,9],[67,3],[16,3],[59,177],[51,3],[14,3],[23,24],[54,21],[60,45],[66,12],[4,3],[71,12],[10,9],[40,42],[18,6],[7,9],[65,9],[55,21],[53,21],[30,33],[31,3],[62,6],[42,6],[52,9],[8,3],[17,9],[78,225],[25,15],[76,156],[72,6],[75,111],[3,18],[58,21]],'polling':[[27,3]],'han':[[48,3]],'more':[[19,3],[50,15],[67,6],[61,3],[35,9],[59,12],[15,12],[23,6],[54,9],[66,6],[60,9],[80,3],[4,3],[48,12],[10,3],[40,9],[7,6],[57,3],[18,3],[65,3],[79,9],[55,6],[62,6],[81,3],[12,6],[13,6],[42,3],[68,6],[8,3],[5,3],[69,3],[78,18],[41,3],[76,6],[75,3],[3,3],[11,12]],'permit':[[76,3],[12,3]],'dead':[[59,3],[61,3],[79,6]],'amazing':[[63,3],[78,3]],'2fa9':[[71,3]],'frequency':[[59,30],[75,12],[78,6],[76,57],[79,3]],'translating':[[48,6]],'link':[[5,3]],'|0d':[[76,6]],'vic':[[78,12]],'impulse':[[79,3]],'261':[[79,3]],'ignored':[[78,15],[76,6],[71,6],[60,3],[24,3],[48,3]],'information':[[1,18],[50,9],[0,3],[67,3],[61,3],[27,3],[59,18],[49,9],[23,6],[80,3],[48,6],[40,3],[57,3],[65,3],[79,24],[55,9],[13,3],[68,3],[64,9],[69,6],[17,6],[78,3],[70,3],[76,24],[75,9],[3,3],[11,3],[58,3]],'conjunction':[[54,3],[55,3],[19,3]],'substitute':[[40,6]],'forces':[[59,6]],'lot':[[48,6],[68,3],[3,3],[6,3],[5,3]],'hexadecimal':[[78,3],[68,3],[40,3],[50,18]],'monitored':[[43,3]],'cur':[[76,6]],'&bh':[[78,6]],'distortion':[[79,3]],'inverter':[[79,3]],'report':[[78,3],[7,3]],'5fffh':[[75,3]],'t2p':[[78,3]],'intended':[[59,3],[78,3]],'affects':[[78,12],[36,3],[80,3],[11,3]],'rotated':[[78,3]],'resides':[[79,3]],'against':[[59,3],[48,3],[31,3]],'getfilename':[[59,3],[7,3]],'msb':[[76,12],[79,3]],'what':[[73,6],[1,3],[67,3],[0,3],[61,3],[56,3],[59,12],[9,6],[14,6],[15,6],[23,3],[49,3],[51,3],[4,6],[54,9],[48,39],[32,6],[10,6],[57,3],[7,6],[65,3],[66,3],[79,27],[55,6],[53,6],[28,3],[12,9],[13,6],[52,3],[8,6],[5,6],[64,3],[78,21],[76,9],[6,6],[75,3],[11,6]],'have':[[19,3],[50,12],[61,27],[56,3],[27,3],[59,15],[15,3],[14,3],[54,3],[66,3],[60,18],[71,18],[48,48],[10,3],[40,18],[7,9],[65,3],[79,30],[46,9],[53,9],[30,12],[45,6],[68,3],[5,3],[17,6],[63,3],[21,9],[78,39],[76,30],[72,3],[75,6],[11,3],[58,6]],'conforms':[[7,3]],'script':[[7,3],[55,3],[19,6],[38,12],[50,3],[61,21],[12,3],[13,9],[8,3],[59,78],[9,3],[60,24],[11,3],[58,30]],'deals':[[70,3]],'position':[[59,18],[15,6],[76,3],[71,12],[60,3],[48,3],[68,12],[40,3],[11,15]],'abilities':[[76,3]],'crash':[[55,3],[53,6],[12,6],[13,9],[8,3],[5,6],[59,6],[49,3],[14,3],[6,6],[4,9],[10,3],[11,9],[7,9]],'sweeps':[[76,6]],'efficient':[[78,3]],'created':[[1,3],[55,3],[38,6],[36,3],[8,3],[5,3],[71,3],[60,3],[3,6],[79,3],[11,3],[58,3]],'other':[[50,9],[67,3],[61,3],[27,3],[59,15],[9,3],[15,6],[23,6],[29,3],[60,9],[71,3],[48,15],[10,3],[79,21],[7,3],[46,3],[55,3],[30,3],[62,3],[12,3],[68,6],[8,3],[5,3],[63,3],[78,39],[76,9],[75,9],[3,6]],'xh%&q':[[78,3]],'separately':[[9,3]],'quickly':[[15,3],[23,3],[53,3],[30,3],[50,6],[68,3]],'offers':[[19,3]],'proprietary':[[21,3],[5,3]],'pepper':[[3,3]],'declared':[[60,9]],'gone':[[76,3]],'append':[[48,3]],'representation':[[48,3],[76,3],[62,6]],'defaults':[[59,12],[13,6],[33,3],[37,3]],'put':[[19,3],[61,3],[68,3],[36,3],[59,9],[15,3],[21,3],[54,6],[43,9],[48,12],[32,3],[79,12]],'request':[[79,3]],'snapshots':[[25,3]],'meta':[[23,3]],'alternatively':[[17,3],[55,3],[40,3],[50,3]],'17ff':[[68,6]],'past':[[7,3],[27,3]],'int':[[59,390]],'|the':[[79,3]],'usefully':[[63,3]],'newname4':[[50,3]],'asl':[[78,33]],'dashes':[[60,3]],'organized':[[68,3]],'battery':[[28,6],[21,3],[8,3],[11,3]],'capture':[[22,18],[15,3],[55,6],[6,3],[62,3]],'0000000011111111':[[80,3]],'topmost':[[78,6]],'accompanying':[[40,3]],'ppu':[[73,27],[50,15],[67,6],[77,6],[27,27],[9,15],[49,18],[51,30],[71,3],[80,3],[4,6],[48,3],[10,15],[79,285],[7,9],[65,12],[55,9],[53,9],[81,6],[52,12],[68,15],[8,3],[76,3],[6,6],[3,3],[11,9]],'presses':[[66,6],[11,3]],'collisions':[[79,9]],'kid':[[68,3]],'ninja':[[68,3],[46,3]],'taken':[[78,9],[3,3],[76,9],[11,3]],'relocate':[[75,3]],'platforms':[[59,3],[62,3]],'lowmost':[[78,9]],'sram':[[13,3],[68,3],[40,3],[28,3]],'sytem':[[21,3]],'rate':[[75,6],[76,42],[33,6],[79,6]],'sloppy':[[66,3]],'cheat':[[53,6],[67,6],[28,3],[42,6],[68,9],[56,12],[8,3],[27,3],[39,6],[5,12],[9,3],[15,6],[41,6],[66,3],[40,81],[7,27]],'sebastian':[[3,3]],'because':[[55,3],[38,3],[30,3],[53,3],[52,3],[35,3],[59,21],[78,9],[23,9],[76,9],[60,6],[75,9],[3,3],[79,21],[18,3],[65,3]],'example':[[73,3],[79,3],[46,3],[55,12],[50,24],[62,12],[52,6],[68,15],[59,30],[78,15],[71,6],[43,6],[48,9],[75,3],[40,9],[7,3],[58,3]],'dmcseed':[[59,3]],'behave':[[78,3],[75,3],[50,3],[60,3]],'c128':[[78,3]],'boat':[[18,24]],'reset':[[79,6],[55,9],[50,9],[12,6],[68,3],[5,6],[59,6],[9,3],[15,6],[23,9],[71,12],[24,12],[43,6],[76,27],[72,6],[78,24],[40,15],[11,6],[7,3]],'pha':[[78,6]],'repeated':[[79,9]],'corresponding':[[78,3],[55,3],[71,3],[43,3],[76,3],[4,3],[48,3]],'uploading':[[62,3]],'data':[[73,24],[50,15],[67,9],[59,27],[9,3],[23,15],[49,12],[51,3],[54,33],[60,3],[4,3],[71,9],[80,6],[10,3],[40,6],[7,3],[18,3],[79,156],[55,120],[53,30],[62,6],[81,6],[13,3],[42,3],[52,3],[68,33],[8,3],[5,15],[78,45],[21,6],[41,3],[76,3],[72,9],[75,69],[3,3],[11,9]],'drag&drop':[[5,6]],'appended':[[36,6],[50,3]],'reside':[[68,6]],'excitingbike':[[63,6]],'worth':[[79,6]],'bots':[[59,3]],'cia':[[78,24]],'pointer':[[73,3],[78,84],[54,3],[50,3],[79,3],[8,3],[5,3]],'translates':[[68,3]],'nesm':[[75,3]],'precisely':[[68,3]],'tables':[[78,6],[51,3],[60,6],[81,3],[48,9],[52,6],[10,3],[79,6]],'screenshots':[[13,3],[28,6]],'assembler':[[3,3],[50,12]],'contexts':[[7,3]],'explicitly':[[60,3]],'struct':[[8,3]],'knowledge':[[78,3],[48,6],[68,3],[56,3],[57,3],[79,3]],'198':[[4,3]],'rbibaseball':[[5,3]],'adr':[[60,12]],'encompasses':[[75,3]],'chain':[[78,3]],'oe_':[[78,6]],'due':[[59,3],[21,3],[78,3],[76,9],[66,3],[48,3],[68,3],[3,3],[79,3],[11,6]],'contain':[[73,6],[55,3],[50,6],[28,3],[13,3],[68,6],[23,9],[76,6],[71,3],[60,3],[72,3],[75,3],[32,3]],'hexrowheightborder':[[20,3]],'maintain':[[35,3],[5,3]],'unzipped':[[58,3]],'int16':[[73,3]],'07ffh':[[75,6]],'sounddisplay':[[5,3]],'applies':[[73,6],[59,18],[52,3],[32,3]],'developed':[[78,6]],'k0z':[[78,3]],'schematics':[[79,3]],'idle':[[50,3]],'applyinputchanges':[[59,3]],'amplitude':[[73,3],[76,3],[79,3]],'played':[[55,6],[66,3],[71,3],[19,3],[30,3],[75,6],[27,6]],'responsible':[[78,3],[55,3],[76,6],[60,3]],'returning':[[59,6]],'dd05':[[78,12]],'hex':[[50,9],[67,9],[56,6],[59,6],[49,3],[66,6],[60,6],[71,3],[4,3],[48,3],[10,15],[40,33],[7,9],[55,9],[53,21],[42,3],[20,9],[68,9],[5,3],[41,3],[6,3],[43,12],[3,3],[11,9]],'googlecode':[[3,3]],'enter':[[79,3],[59,3],[53,3],[50,6],[24,3],[4,3],[61,3],[10,3],[56,15],[35,9],[11,3]],'dwedit':[[8,3]],'icarus':[[68,3]],'6000':[[73,3],[75,15],[68,3],[40,3],[6,3]],'zbq':[[78,3]],'452de2c3':[[71,3]],'named':[[65,6],[78,3],[21,3],[50,3],[28,3],[3,6],[40,6],[27,6]],'explosion':[[11,3]],'pageup':[[59,3]],'composite':[[79,3]],'processing':[[78,3],[51,3],[62,6],[34,3],[77,6],[32,3],[33,3],[11,3]],'configable':[[8,3]],'assign':[[19,3],[30,12],[37,9]],'lavelle':[[9,3]],'|06':[[76,6]],'specificness':[[73,3]],'ready':[[48,6],[67,3]],'regular':[[66,3],[13,3]],'guaranteed':[[73,3]],'analog':[[76,9]],'ctrl':[[17,6],[13,3],[53,9],[56,3],[5,3]],'ganbare':[[8,6]],'consume':[[54,3]],'numpad':[[59,15],[13,3]],'milliseconds':[[59,3]],'triggers':[[75,6]],'global':[[59,12],[61,3],[32,3],[60,3]],'comprehend':[[59,3],[78,3]],'loading':[[7,15],[30,3],[13,6],[16,3],[36,3],[8,3],[5,12],[27,3],[59,9],[9,3],[15,3],[23,18],[66,6],[6,3],[43,6],[4,6],[71,3],[75,3],[76,3],[10,3],[57,3],[11,6],[18,3]],'resize':[[7,3]],'problem':[[78,6],[12,3],[75,6],[79,3]],'columns':[[40,3],[68,6]],'dostuffhere':[[60,3]],'0x0200':[[59,6]],'out':[[73,3],[79,24],[50,3],[62,3],[56,6],[35,9],[27,3],[8,6],[5,9],[49,3],[23,3],[59,6],[76,18],[60,3],[78,9],[48,21],[32,3],[10,3],[40,3],[7,3],[75,3]],'170th':[[79,3]],'predictable':[[79,3],[23,3]],'transparancy':[[59,3]],'042x':[[68,3]],'response':[[78,3]],'easilly':[[79,3]],'intend':[[22,3]],'toggles':[[11,3],[59,3],[19,6],[24,3],[36,6],[7,3],[27,15]],'flashing':[[6,3]],'subroutine':[[78,6],[54,3],[50,3],[5,3]],'think':[[59,3],[76,3],[80,3],[81,6],[48,3],[75,3],[79,6]],'resuming':[[23,3]],'fly':[[52,3]],'entire':[[73,3],[53,3],[48,3],[68,3],[75,3],[79,6]],'indicated':[[59,3],[79,6]],'dictate':[[50,3]],'bne':[[78,12]],'anding':[[78,6]],'beat':[[68,6]],'fceuxdsp':[[9,3],[15,6],[25,3],[2,6],[48,3],[3,27],[11,3]],'tbl4':[[60,9]],'abbreviated':[[66,3]],'caveat':[[79,6],[75,6]],'setnote':[[59,3]],'take':[[53,6],[30,3],[68,3],[56,3],[27,3],[63,3],[59,6],[78,12],[23,6],[76,6],[75,3],[40,3],[79,6]],'vsnprintf':[[13,3]],'attr':[[13,3]],'mixed':[[76,3],[79,6],[60,3]],'tcp':[[62,3]],'cases':[[59,6],[78,3],[50,3],[12,3],[13,9],[10,3]],'eats':[[59,3]],'competitionrecorder':[[63,3]],'produce':[[54,6],[76,12],[71,3],[10,3],[33,3],[56,6],[79,3]],'rla':[[78,39]],'general':[[73,3],[1,6],[16,9],[5,6],[63,9],[59,3],[15,3],[76,3],[6,3],[2,3],[79,3],[58,3]],'smbconfig':[[19,3]],'luau':[[57,3]],'randomly':[[79,3]],'straighten':[[5,3]],'corresponds':[[68,3],[71,3],[79,6]],'0x2000':[[73,9]],'resembles':[[48,3]],'consider':[[78,3],[76,3],[79,3]],'multi':[[9,3],[71,3],[62,3],[66,6],[50,9],[7,3]],'values':[[73,3],[50,6],[35,3],[59,39],[49,3],[66,3],[60,21],[71,18],[48,3],[10,12],[40,33],[79,12],[53,3],[42,3],[20,9],[68,57],[8,6],[37,3],[78,18],[41,3],[76,12],[43,18],[75,12],[11,9]],'usable':[[12,3]],'inc':[[78,30]],'translator':[[48,9]],'cxi':[[78,6]],'systems':[[62,3],[79,3],[18,3],[65,3]],'kids':[[30,3]],'prior':[[54,3],[76,12],[6,3],[79,6],[11,3],[5,3]],'edge':[[68,3],[76,3],[66,3],[67,3],[79,3]],'9810':[[73,3]],'priority':[[34,6],[78,3],[32,9],[79,54]],'topics':[[79,3]],'irqc':[[73,6]],'requiring':[[21,3]],'modulated':[[79,3]],'gauntlet':[[68,3]],'entertainment':[[17,3],[21,3],[3,3]],'reason':[[59,3],[48,3],[55,3],[76,3],[79,9]],'whatever':[[59,6],[52,3],[61,6],[55,3],[76,6]],'nospritelim':[[13,3]],'rule':[[78,3]],'printing':[[4,3]],'hexbackcolorr':[[20,3]],'concern':[[40,3]],'signficantly':[[6,3]],'particularly':[[59,3]],'65536':[[71,6],[78,6]],'accurately':[[79,3]],'irix':[[3,3]],'cool':[[48,6]],'evaluated':[[61,12],[79,6]],'0x5fff':[[5,3]],'md5':[[71,3]],'brief':[[78,6],[57,3],[43,3]],'handakuten':[[48,12]],'4800':[[75,9]],'|01':[[76,3]],'`rp`':[[78,3]],'blader':[[8,3]],'autofire':[[15,3],[46,36],[14,6]],'closest':[[79,3]],'forcing':[[59,3]],'tab':[[59,3],[15,3]],'188':[[78,3]],'rgp':[[78,6]],'potential':[[5,3],[7,3],[65,3]],'resolve':[[33,3]],'wrapping':[[81,6],[68,3],[5,3]],'visible':[[35,3],[50,6]],'040':[[76,3]],'entering':[[50,6],[48,3],[79,3],[24,3],[35,3]],'generating':[[59,3],[75,3],[76,3],[79,3]],'stepping':[[66,3],[9,3]],'accessing':[[78,3]],'assembled':[[50,6]],'accu':[[78,3]],'subs':[[48,6]],'submitdeleteframes':[[59,3]],'remainder':[[71,3]],'j@8n':[[78,3]],'timeline':[[5,3]],'deutsche':[[78,3]],'scaling':[[13,3],[79,6],[35,3],[11,3]],'lets':[[78,9],[52,3],[54,3],[53,6]],'attribute':[[73,6],[79,30]],'|miscellanious':[[79,3]],'wordpad':[[20,3]],'findings':[[76,6]],'program':[[73,3],[50,21],[67,3],[61,6],[63,15],[59,6],[78,42],[47,3],[76,3],[60,3],[75,6],[79,3]],'&a%_':[[78,6]],'table':[[73,6],[53,6],[62,3],[81,3],[61,21],[52,15],[68,6],[8,3],[59,81],[49,6],[78,6],[76,3],[60,54],[48,60],[3,3],[10,3],[79,99]],'replacing':[[76,3],[66,3]],'hacking':[[67,33],[1,3],[64,9],[2,3]],'august':[[13,3],[14,3],[3,12],[15,3]],'retained':[[3,3],[76,3]],'multibyte':[[5,3]],'these':[[50,15],[61,18],[35,12],[27,6],[59,9],[23,6],[66,3],[24,3],[60,6],[71,3],[48,6],[10,3],[40,3],[7,3],[18,3],[65,3],[79,15],[46,3],[38,3],[30,9],[28,15],[62,3],[42,3],[20,3],[68,18],[69,6],[63,24],[78,15],[26,3],[25,6],[41,3],[76,30],[75,9]],'ijc':[[78,24]],'d2n@3y':[[78,3]],'getlostplayback':[[59,3]],'xmouse':[[59,3]],'getregister':[[59,9],[9,3]],'finds':[[48,3]],'combined':[[78,3],[1,3],[55,3],[0,3],[61,6],[79,3]],'jajamaru':[[8,3]],'fractions':[[66,3],[13,3]],'player1':[[71,3]],'quietust':[[76,3]],'66hl2n@':[[78,3]],'some':[[50,3],[61,15],[35,6],[27,3],[59,30],[9,3],[29,3],[60,9],[4,3],[48,18],[10,6],[40,3],[7,3],[18,6],[65,6],[79,27],[55,6],[38,3],[62,3],[28,3],[81,3],[12,6],[13,6],[20,3],[68,6],[8,3],[5,6],[63,3],[78,27],[21,3],[25,3],[76,6],[6,6],[75,6],[3,3],[33,3],[11,3]],'displaced':[[66,3]],'05ff9h':[[75,6]],'parameter':[[61,6],[78,30],[40,3]],'colors':[[65,3],[59,42],[60,3],[32,3],[10,3],[79,3],[7,9],[11,3]],'unique':[[71,3],[23,3]],'loved':[[78,3]],'chunks':[[73,15]],'analyzing':[[49,3]],'exactly':[[59,6],[76,3],[50,3],[75,3],[79,3],[58,3]],'complex':[[78,3],[79,3]],'skipped':[[78,6]],'modify':[[59,3],[78,24],[53,9],[56,3]],'trade':[[78,3]],'lesser':[[59,3]],'snels9x':[[41,3]],'achieved':[[73,3],[56,6],[50,6]],'fine':[[79,15],[24,6]],'reversing':[[79,3]],'freezing':[[40,6],[11,6],[60,3]],'1x1':[[35,12]],'identified':[[71,3]],'quicker':[[66,3],[50,3],[67,3]],'fill':[[13,3],[56,3],[35,3]],'debuggers':[[67,3]],'version':[[73,18],[79,3],[1,3],[30,6],[0,3],[44,3],[42,3],[5,3],[78,18],[15,3],[41,3],[47,3],[2,3],[71,12],[75,3],[3,30],[57,3],[11,3],[65,6]],'tod':[[78,15]],'lxa':[[78,9]],'website':[[48,9]],'decrement':[[76,6],[78,18]],'j1rb':[[73,3]],'slots':[[59,9],[13,6],[68,3],[11,3]],'las':[[78,3]],'except':[[59,12],[54,3],[78,18],[76,9],[71,6],[60,6],[61,6],[75,3],[40,6],[5,3]],'226':[[8,3]],'control':[[79,3],[30,3],[62,3],[59,18],[78,3],[47,3],[76,15],[60,18],[75,6],[10,3],[57,3],[33,6],[11,9]],'bit7':[[71,6]],'xxx':[[71,6]],'acquired':[[76,3]],'xxff':[[78,3]],'exit':[[60,3],[59,21],[29,6],[50,3],[7,3]],'causes':[[78,6],[76,3],[50,6],[81,3],[10,3],[79,6],[35,3]],'batteries':[[21,3]],'characteristic':[[68,3]],'bit5':[[71,6],[78,3]],'symbolic':[[4,6],[54,3],[50,18],[5,6]],'resolved':[[31,3],[65,6]],'assume':[[59,3],[75,6],[78,3],[60,3]],'clouds':[[79,9]],'accessable':[[79,3]],'once':[[38,6],[30,3],[67,3],[36,3],[56,3],[35,3],[27,6],[17,3],[59,21],[54,6],[23,3],[76,3],[78,3],[60,6],[4,3],[48,21],[75,12],[10,3],[40,3],[11,6],[79,3]],'steady':[[34,3]],'org':[[58,3],[66,15],[60,3],[65,3]],'2kb':[[73,6]],'throw':[[78,18],[79,3]],'flip':[[79,3],[75,3]],'ldy':[[78,27]],'0900':[[68,3]],'areas':[[53,3],[35,9],[5,3]],'filenames':[[15,3],[8,3],[5,3]],'storing':[[59,3],[71,3],[18,3]],'increment':[[78,213],[75,3],[27,15]],'readup':[[59,3]],'holds':[[61,6],[76,3],[79,3],[30,6]],'pushing':[[78,6]],'made':[[79,21],[30,3],[12,3],[8,6],[17,3],[9,3],[15,9],[23,15],[76,3],[6,3],[48,9],[3,6],[10,9],[7,21],[65,3]],'discarding':[[54,3]],'republik':[[78,3]],'fceu98':[[13,3]],'bryan':[[78,6]],'inconvenience':[[76,3]],'chm':[[44,3],[5,6]],'loadscriptdata':[[59,3],[9,6]],'b002':[[75,3]],'xh8':[[78,3]],'262':[[79,9]],'highlighed':[[5,3]],'cell':[[21,3]],'inspect':[[50,3]],'auxiliary':[[63,3]],'400a':[[76,6]],'changed':[[50,3],[12,3],[13,3],[8,6],[5,3],[78,3],[21,3],[43,3],[4,9],[10,6],[40,9],[11,3],[79,3]],'minimized':[[10,3],[8,3]],'copyright':[[78,3],[75,9]],'scroll':[[50,3],[81,12],[52,15],[68,3],[79,24],[11,3],[5,3]],'hhhhllll':[[75,3]],'effect':[[79,3],[78,3],[76,9],[38,9],[50,3],[30,3],[56,9],[7,3],[27,3]],'fullscreen':[[4,3],[13,3],[29,6],[10,3],[5,3]],'distribute':[[55,3]],'life':[[63,3],[40,3],[67,3]],'ddr':[[78,3]],'subtracting':[[76,3],[78,6]],'web':[[44,3]],'semi':[[76,3]],'indexing':[[78,9]],'snap':[[13,3],[48,9],[56,3]],'poorly':[[31,3],[35,6]],'through':[[73,3],[79,15],[55,9],[50,3],[67,3],[12,3],[20,6],[68,3],[5,6],[59,3],[54,3],[23,6],[76,6],[66,3],[60,3],[48,3],[75,6],[40,6],[57,3],[58,3]],'woes':[[13,3]],'widely':[[18,3]],'downloading':[[62,3]],'subtitles':[[63,3],[23,18],[38,18],[71,6],[10,6],[36,12],[11,6]],'couldn':[[59,6],[12,3],[79,3]],'exceeds':[[5,6]],'reinstalled':[[11,3]],'glitchy':[[33,3]],'scale':[[76,9]],'accidental':[[5,3]],'titlebar':[[13,3]],'r65c00':[[78,6]],'laggy':[[46,3]],'lastkey':[[61,3]],'y2k':[[79,6]],'4018':[[50,3]],'checks':[[55,3],[8,3]],'greatly':[[33,3],[11,3]],'|scanline':[[79,3]],'deliver':[[47,3]],'5th':[[78,3]],'filename':[[11,12],[19,9],[38,3],[50,3],[12,3],[13,3],[36,3],[8,3],[5,3],[59,6],[22,3],[4,3],[7,3],[18,3]],'comparing':[[49,3]],'kh%61':[[78,3]],'dialogue':[[67,3]],'jammed':[[73,3],[78,3]],'valid':[[18,6],[19,3],[5,3],[59,6],[15,3],[78,3],[71,3],[6,3],[72,3],[79,12],[11,3],[40,3]],'tilde':[[59,3],[60,3]],'aratanaru':[[8,3]],'|08':[[76,6]],'resources':[[59,3],[68,3],[66,3],[62,3],[67,3]],'bound':[[30,3],[60,3]],'iiiiiiiiiiiii':[[50,3]],'blitting':[[59,3]],'snowbro':[[76,3]],'rounder':[[35,3]],'regulate':[[76,3]],'history':[[4,3],[1,3],[3,6],[0,3]],'addr_hi':[[78,15]],'divided':[[79,3]],'408':[[79,3]],'results':[[63,6],[59,3],[54,3],[78,9],[55,3],[76,27],[40,3],[79,3]],'eyebrows':[[79,3]],'portion':[[68,3],[76,3],[40,3]],'cah4e3':[[3,6],[13,3]],'fixing':[[78,18],[49,3],[55,3],[6,6],[7,6]],'early':[[59,3]],'local':[[59,12],[60,27],[62,3]],'freeware':[[3,3]],'240':[[81,3],[76,9],[79,3],[50,3]],'ddt':[[73,3]],'limits':[[66,6],[79,6]],'overhauls':[[15,3]],'flow':[[60,6]],'detect':[[79,3],[27,3]],'replaced':[[78,3],[76,3],[50,3],[48,3],[79,3],[11,3]],'approx':[[11,3]],'contra':[[68,3]],'minvalue':[[61,36]],'strobe':[[76,9]],'jams':[[78,6]],'socket':[[6,3]],'former':[[78,3]],'adjustments':[[32,3]],'sorta':[[75,3]],'pauseframe':[[10,3]],'existence':[[63,3],[76,3]],'outlet':[[67,3]],'inspecting':[[50,3]],'onattemptstart':[[61,6]],'deflate':[[18,3]],'over':[[73,3],[46,3],[38,9],[31,3],[50,6],[62,6],[61,3],[52,3],[27,3],[63,3],[78,3],[15,3],[26,3],[51,6],[66,6],[2,3],[60,6],[48,6],[79,9],[11,3]],'0318':[[78,9]],'incorrectly':[[11,3]],'definition':[[48,3],[50,3]],'fact':[[63,3],[78,3]],'wiped':[[13,3]],'ejected':[[21,6]],'third':[[78,3],[50,6]],'reopen':[[59,6]],'editors':[[67,3]],'refills':[[40,3]],'binds':[[60,3]],'pcm':[[22,3],[55,12],[33,3]],'sit':[[75,3]],'animation':[[40,3],[68,3]],'initializing':[[61,3],[14,3]],'overrides':[[17,3],[9,6],[21,6],[28,6],[11,3],[65,3]],'non':[[11,3],[73,6],[79,18],[50,12],[67,3],[61,3],[12,3],[13,6],[68,3],[8,3],[5,3],[27,3],[59,9],[76,12],[66,6],[3,3],[40,3],[57,3],[10,3]],'depending':[[59,3],[55,3],[71,3],[66,3],[76,9],[40,3],[79,3],[65,3]],'fire':[[59,6],[46,15],[66,3],[8,9],[39,9]],'impose':[[5,3]],'hits':[[54,3],[79,3],[8,3],[5,3]],'minimizes':[[10,3]],'310':[[50,3]],'primitive':[[50,9]],'description':[[73,30],[59,3],[78,120],[76,9],[43,3],[50,6],[75,6],[57,3],[40,3]],'sense':[[59,3],[78,3]],'callbacks':[[59,24]],'bmf_final2':[[25,3]],'decoder':[[49,3],[67,3],[3,3],[79,3],[56,21],[27,3]],'numpad5':[[59,3]],'intellivision':[[75,3]],'operation|':[[76,6]],'misleading':[[61,3]],'ora':[[78,51]],'selecting':[[17,6],[79,6],[23,6],[53,6],[28,3],[48,3],[40,6],[7,3],[5,3]],'b@ll7aol':[[78,3]],'much':[[79,6],[55,9],[50,3],[35,3],[27,6],[59,9],[78,15],[76,3],[60,3],[48,9],[57,6],[7,3],[58,3]],'00698089599609375':[[71,3]],'pgen':[[73,3]],'dffe':[[50,3]],'performance':[[34,3],[66,3],[6,3]],'crc':[[4,3],[7,3]],'american':[[21,3]],'properties':[[59,3],[78,3]],'hurt':[[27,3]],'constant':[[78,6],[13,3],[10,3],[79,3]],'inline':[[3,3],[50,12]],'hidden':[[38,3],[29,3]],'unassigned':[[11,3]],'getplaybacktarget':[[59,3]],'|commands|port0|port1|port2|':[[71,3]],'please':[[78,6],[48,18],[80,3]],'oldversion':[[73,6]],'silenced':[[76,12]],'mc650x':[[78,3]],'vd`d2n0l':[[78,3]],'unconditionally':[[79,3]],'considering':[[79,3]],'critical':[[61,3],[23,3]],'versatile':[[79,3]],'been':[[61,12],[42,3],[59,3],[15,6],[54,6],[41,3],[66,3],[60,3],[76,18],[78,15],[75,3],[3,9],[10,3],[40,6],[79,21]],'00000111':[[80,6]],'onstart':[[61,15]],'tht':[[11,3],[48,9]],'dynamic':[[57,3]],'nesdev':[[76,9],[80,3],[69,3]],'tya':[[78,3]],'closing':[[4,6],[9,3],[29,3],[8,3]],'helps':[[48,3],[49,3]],'null':[[73,6],[13,3],[75,12],[60,3],[5,3]],'poll':[[59,6],[27,3]],'were':[[55,6],[53,6],[62,3],[61,3],[13,6],[59,6],[21,3],[23,3],[25,3],[54,3],[71,3],[76,3],[78,3],[3,6],[79,6],[11,3]],'sides':[[21,18],[19,6],[24,3],[48,3],[68,6],[35,6],[11,3]],'doc':[[75,9],[76,3],[79,3]],'dd0c':[[78,30]],'c100':[[78,3]],'0008':[[75,3]],'tas':[[1,3],[44,15],[68,9],[64,9],[5,9],[63,3],[59,6],[15,15],[39,6],[47,3],[66,21],[4,3],[7,3]],'excuse':[[79,3]],'command':[[19,18],[12,3],[16,9],[17,3],[78,12],[15,3],[21,12],[23,3],[72,6],[3,3],[40,3],[7,3],[11,6]],'svgalib':[[3,9]],'stuck':[[12,3],[48,3]],'sockets':[[21,3]],'improves':[[10,3],[11,3]],'confuse':[[78,6]],'portability':[[3,3]],'0070h':[[75,9]],'pulling':[[78,3],[30,3]],'jmp':[[55,3],[78,27]],'18ff':[[68,3]],'iup':[[62,9]],'occurring':[[50,3]],'nybbles':[[78,3]],'interrupts':[[76,6],[78,60]],'part2':[[50,3]],'1900':[[68,3]],'extra':[[73,12],[19,3],[50,3],[30,3],[59,6],[54,3],[78,6],[76,3],[71,3],[75,6],[10,3],[79,21],[7,3]],'love':[[80,3]],'find':[[65,3],[55,6],[53,3],[28,3],[68,12],[56,3],[5,3],[59,3],[49,6],[23,3],[54,3],[76,3],[43,6],[60,6],[78,6],[48,6],[75,3],[40,9],[58,6]],'moreover':[[76,3]],'search':[[53,6],[67,6],[28,3],[61,3],[42,12],[68,18],[56,3],[27,3],[39,6],[5,9],[9,9],[15,6],[41,24],[54,3],[6,6],[66,6],[4,6],[48,3],[40,78],[7,12]],'later':[[17,3],[59,3],[54,3],[78,6],[48,3],[3,3],[40,3],[79,6],[58,3]],'shot':[[59,6],[60,3]],'boost':[[34,3],[11,3],[5,3]],'limit':[[61,6],[13,3],[78,6]],'limited':[[33,3],[68,3]],'papers':[[79,3]],'flattering':[[79,3]],'0fff':[[68,6]],'scope':[[60,6],[58,3]],'f18':[[59,3]],'show':[[13,3],[52,3],[8,3],[5,3],[35,3],[59,6],[51,6],[54,3],[63,3],[76,3],[43,3],[60,3],[4,3],[78,6],[48,3],[79,3],[11,3]],'modifies':[[59,3]],'author':[[15,6],[23,9],[66,3],[71,9],[12,3],[13,3],[48,3],[79,3]],'mapping':[[1,3],[4,3],[13,3],[68,9],[3,3],[11,6],[64,6]],'shots':[[59,3]],'bible':[[67,3]],'paint':[[59,12],[48,3],[60,3]],'core':[[27,3],[9,3],[62,3],[74,3],[10,6],[69,3],[58,3]],'wasok':[[61,6]],'w0dn':[[78,3]],'aaaa':[[50,12]],'cleaned':[[13,3],[5,3]],'unpause':[[59,3],[9,3],[22,3],[50,3],[48,3],[40,3]],'40000h':[[75,3]],'corner':[[59,15],[50,6],[27,6]],'si_gamepad':[[71,12]],'speedup':[[65,3],[5,3]],'engineer':[[55,3]],'semicolon':[[59,3]],'vertical':[[73,3],[68,6],[40,3],[79,18],[5,3]],'sweet':[[68,3]],'tone':[[75,9]],'complicated':[[78,9]],'hotkeys':[[30,6],[13,3],[8,3],[5,6],[17,3],[27,9],[9,3],[15,6],[21,6],[23,12],[24,3],[26,3],[4,3],[37,15],[41,6],[33,6],[7,3],[11,12]],'cleaner':[[55,3]],'indirectly':[[55,6],[76,3]],'048x':[[68,3]],'pal':[[19,21],[35,12],[27,6],[5,3],[9,3],[25,27],[71,6],[2,3],[4,3],[75,36],[32,15],[10,9],[7,3]],'scanning':[[12,3]],'anyone':[[57,3],[48,3]],'grain':[[76,3]],'revisions':[[76,9]],'capability':[[13,6],[68,3],[55,3]],'computer':[[21,6],[35,3]],'performs':[[59,6],[78,9]],'writable':[[75,12]],'inputtable':[[60,3]],'researching':[[78,3]],'li#':[[78,6]],'understanding':[[79,3],[80,3]],'oam':[[79,21]],'skipfirst':[[59,12]],'solaris':[[3,3]],'meaning':[[4,3],[63,3]],'tracer':[[54,3],[5,3]],'having':[[7,3],[79,6],[30,3],[61,3],[63,3],[59,6],[15,3],[78,3],[76,3],[48,3],[40,3],[11,3],[18,3]],'trigger':[[59,9],[78,3],[53,6],[30,9]],'shapedefs':[[63,3]],'dcfb':[[78,3]],'maximize':[[11,3]],'ultimately':[[79,3],[48,3]],'400b':[[76,18]],'implement':[[79,9]],'accomplished':[[67,3]],'transfered':[[79,3]],'occurence':[[79,3]],'generictips':[[66,3]],'absolutely':[[61,3]],'0400':[[68,3]],'getimmediate':[[59,3],[5,3]],'excite':[[48,3]],'0071h':[[75,3]],'technical':[[78,3],[1,6],[70,3],[77,3],[79,6],[69,6]],'produced':[[76,9],[56,3],[66,3]],'overhauling':[[6,3]],'unfreeze':[[10,3]],'gfceux':[[12,12]],'|18':[[76,3]],'debian':[[5,3]],'safe':[[4,3],[48,3],[40,3],[27,3]],'japenese':[[48,3]],'numbers':[[63,3],[78,6],[46,6],[60,6],[50,3],[61,3],[75,3],[68,3]],'241':[[79,3],[50,3]],'energy':[[68,12],[40,15],[79,18]],'recently':[[38,15]],'apply':[[63,3],[59,3],[54,3],[73,3],[50,9],[79,3]],'perl':[[57,3]],'anthony':[[3,3]],'stateful':[[59,3]],'communities':[[1,3]],'disable':[[65,3],[19,6],[30,6],[50,3],[20,3],[56,3],[8,3],[35,6],[59,3],[78,12],[29,6],[76,39],[34,3],[10,3],[40,3],[11,3],[7,6]],'create':[[79,3],[55,9],[50,6],[61,3],[56,6],[63,3],[59,21],[15,3],[49,3],[60,15],[40,3],[7,3],[58,3]],'float':[[59,9]],'tiff':[[62,3]],'sf_':[[78,3]],'uud':[[78,3]],'hides':[[27,3]],'miscellanious':[[76,6],[79,3]],'purple':[[59,3]],'mostly':[[78,3],[9,3],[54,3],[25,3],[61,3],[48,3]],'shinwa':[[30,3]],'give':[[78,9],[48,3],[68,3],[51,3]],'via':[[21,3],[23,3],[51,3],[70,3],[30,3],[76,9],[79,18],[27,3]],'320x239':[[59,3]],'operating':[[3,3],[18,3],[65,3]],'pro':[[40,3]],'5205':[[75,12]],'ch2':[[75,6]],'successful':[[78,3]],'planes':[[59,3]],'sp`0':[[78,3]],'legal':[[78,3]],'switches':[[19,9],[24,3],[27,3]],'referencing':[[50,3]],'automagically':[[78,3]],'concepts':[[1,3],[79,3],[64,3],[62,3]],'pasting':[[61,3],[48,3]],'operates':[[78,3],[75,3],[55,3],[76,3]],'mmc3':[[79,12]],'january':[[3,3]],'does':[[73,3],[55,3],[50,3],[61,6],[12,6],[52,3],[68,6],[56,3],[35,3],[27,6],[59,12],[51,3],[78,57],[76,6],[71,3],[43,3],[60,6],[4,3],[48,6],[75,3],[40,9],[11,6],[79,15]],'ending':[[71,3]],'tricks':[[79,3]],'1000000ths':[[75,3]],'get':[[65,3],[79,6],[55,3],[61,9],[12,6],[13,3],[8,6],[5,3],[17,3],[59,27],[54,3],[29,3],[63,3],[66,3],[6,6],[60,9],[76,6],[78,3],[48,12],[75,6],[57,3],[11,9],[7,3]],'volumes':[[33,3]],'bool':[[59,69],[71,15]],'enabled':[[75,3],[79,3],[55,3],[19,12],[30,3],[38,18],[50,9],[61,3],[35,3],[5,9],[27,27],[29,24],[76,21],[80,6],[6,3],[4,6],[48,3],[32,3],[10,6],[33,3],[7,9],[11,3]],'horton':[[75,3]],'relivant':[[79,3]],'bcc':[[78,6]],'share':[[68,3],[79,6],[80,3]],'cannot':[[59,3],[15,3],[78,6],[55,3],[53,3],[71,3],[79,3]],'encountered':[[59,3],[78,3]],'knows':[[12,3]],'dummy':[[72,9],[79,12]],'registerafter':[[59,3]],'salt':[[76,3]],'sourceforge':[[3,6]],'conte':[[76,3]],'slider':[[11,3]],'searches':[[40,6]],'inputdisplay':[[19,9]],'parsed':[[71,6]],'imaging':[[62,3]],'gun':[[63,3],[30,3]],'dd09':[[78,12]],'logical':[[59,9],[78,6],[57,6],[79,3]],'fresh':[[14,3]],'broad':[[58,3]],'disassembled':[[50,3]],'rerecord':[[59,9],[71,3],[27,9]],'examples':[[78,3],[60,3],[62,3],[50,3],[61,3],[32,3],[18,3]],'capabilities':[[59,3],[68,3],[79,6]],'taseditor':[[5,27],[59,75],[44,6]],'beginning':[[38,12],[50,6],[61,6],[5,3],[59,3],[15,3],[23,9],[78,3],[66,6],[71,3],[40,3],[79,9]],'placing':[[52,3]],'eliminates':[[57,3]],'recognized':[[7,3]],'dd0b':[[78,18]],'fortunately':[[40,3]],'integer':[[59,6],[78,6],[71,15],[79,3]],'decremented':[[79,3]],'bigbad':[[32,18]],'few':[[68,3],[63,3],[59,3],[21,3],[14,3],[29,3],[76,3],[60,18],[80,3],[48,6],[75,6],[3,3],[40,3],[79,9]],'row':[[48,3],[68,30],[20,3],[79,3]],'configure':[[17,3],[33,3],[30,6]],'elements':[[5,3],[67,3],[2,3]],'channel':[[76,252],[33,9],[5,3]],'combination':[[61,3],[78,6],[37,3]],'itself':[[63,3],[59,12],[78,3],[76,6],[53,12],[50,3],[43,3],[48,3],[79,3]],'ranges':[[79,9],[24,3],[50,3]],'idea':[[48,3],[75,6],[55,3]],'attempting':[[63,3],[59,3],[13,3],[25,3],[11,3]],'speed':[[7,3],[19,6],[13,3],[68,18],[35,3],[59,3],[22,9],[23,12],[76,6],[66,6],[6,3],[24,42],[4,15],[34,9],[60,3],[75,27],[11,9],[58,3]],'blocks':[[75,3],[68,12],[76,3]],'10#newname4#':[[50,3]],'caption':[[4,3],[10,3]],'4003':[[76,18]],'bullets':[[63,3]],'article':[[78,6]],'clv':[[78,9]],'tied':[[76,3]],'reduce':[[33,3],[35,3],[79,6]],'007a':[[75,3]],'sensitive':[[59,6],[61,3],[19,3],[60,3]],'blowing':[[30,3]],'termination':[[59,3]],'pipe':[[71,9]],'shows':[[11,6],[78,9],[54,12],[76,9],[43,3],[4,3],[52,3],[10,3],[7,6],[37,3]],'when':[[50,33],[61,36],[35,18],[27,33],[15,12],[29,3],[24,3],[48,12],[79,60],[38,12],[28,9],[81,3],[12,9],[13,27],[20,9],[36,15],[68,9],[5,39],[21,3],[22,3],[43,9],[33,9],[11,30],[73,9],[19,3],[59,48],[9,6],[23,15],[51,3],[54,12],[60,36],[66,3],[4,54],[71,12],[10,12],[40,18],[7,18],[65,9],[55,12],[53,6],[52,6],[8,6],[78,72],[76,60],[6,12],[34,3],[72,3],[75,3],[3,3]],'detailed':[[15,3],[68,3],[79,3],[50,3]],'emulua':[[13,3],[62,3],[60,3]],'createfrompng':[[59,3]],'redrawn':[[59,3]],'unpredictably':[[78,3]],'virtual':[[4,3]],'works':[[46,3],[55,3],[53,3],[50,3],[62,3],[13,3],[59,9],[78,3],[48,6],[75,3],[79,9],[11,6]],'segmentation':[[6,3]],'launches':[[9,3]],'place':[[30,6],[61,3],[13,3],[59,3],[15,3],[78,12],[76,6],[48,3],[75,3],[10,3],[79,9],[18,3]],'never':[[78,6],[21,3],[55,3],[79,12],[58,3]],'setlagflag':[[59,3],[5,3]],'tile':[[73,3],[51,6],[49,3],[55,9],[80,6],[67,3],[48,6],[52,9],[79,36]],'filling':[[56,3]],'addhealthpoints':[[50,3]],'meant':[[3,3]],'figured':[[48,3]],'keyrecording1':[[61,3]],'deccmp':[[78,6]],'luascripts':[[63,6],[61,3]],'declaring':[[60,3]],'whatsoever':[[79,3]],'togglable':[[7,6],[8,3]],'situation':[[48,3],[46,6],[29,3],[38,3]],'decreased':[[40,6]],'block':[[13,3],[68,72],[48,3],[79,3]],'cccvvvv':[[75,3]],'049x':[[68,3]],'timestamp':[[72,12]],'newlines':[[71,6]],'halted':[[76,6]],'increased':[[40,3],[15,3],[3,3],[79,3],[33,3],[11,3]],'m016':[[5,3]],'operate':[[76,3],[40,3],[79,3]],'assembly':[[49,6],[50,12]],'sequence':[[78,12],[55,3],[76,18],[79,3]],'v%_0ah':[[78,6]],'shownotes':[[5,3]],'subtitle':[[38,3],[11,6],[71,15]],'enable':[[55,6],[19,6],[30,3],[50,6],[13,9],[56,3],[8,6],[27,3],[78,9],[29,3],[76,42],[4,9],[79,3],[65,6]],'ouch':[[40,3]],'teenagemutantninjaturtles':[[63,3]],'series':[[17,3],[78,18],[76,3],[50,3]],'hardwired':[[79,3]],'officially':[[48,3]],'differently':[[71,3],[78,15]],'operation':[[59,9],[78,63],[76,18],[79,15]],'seeking':[[4,3]],'task':[[10,3]],'0078':[[75,3]],'frames|':[[79,3]],'unlicensed':[[3,3]],'conf':[[5,6]],'spaces':[[7,3]],'faq':[[1,3],[56,3],[64,9]],'fffa':[[78,6],[68,3],[50,3]],'boolean':[[61,3],[50,3]],'arkanoid':[[59,3],[71,3],[30,9]],'remodel':[[4,3]],'predefined':[[59,18],[60,6]],'jetpack':[[63,3]],'found':[[79,15],[41,3],[76,21],[30,3],[42,3],[56,3],[69,3],[58,3]],'mar':[[73,3]],'50fps':[[34,3],[27,3]],'wouldn':[[76,3],[48,3]],'cpus':[[65,3]],'versions':[[65,3],[59,6],[9,3],[15,3],[23,6],[70,3],[76,3],[45,3],[3,3],[58,6]],'substraction':[[78,3]],'1984':[[78,3]],'1000|':[[68,3]],'tweaked':[[4,3],[25,3]],'4007':[[76,18]],'xxx000x1':[[78,3]],'dsiplay':[[10,3]],'turtle':[[68,3]],'replicate':[[25,3]],'acceleration':[[35,6],[65,9]],'revamp':[[5,3]],'001f':[[50,3]],'ok#00':[[50,3]],'retrieve':[[59,15]],'say':[[59,3],[29,3],[43,3],[48,3],[75,3],[40,6],[79,3]],'ffff':[[73,3],[78,3],[55,3],[53,12],[50,3],[75,18],[68,6],[56,6]],'6000h':[[75,3]],'measured':[[76,6],[78,3]],'source':[[78,3],[3,9],[55,6],[76,3]],'pay':[[79,3]],'died':[[61,6]],'prompted':[[48,3],[21,3],[23,6]],'closely':[[13,3],[54,3],[40,3]],'int8':[[73,3]],'greater':[[59,3],[78,9],[23,3],[43,3],[40,6],[27,3]],'silence':[[76,3]],'read':[[73,12],[19,15],[50,9],[61,3],[59,57],[15,3],[23,36],[51,3],[60,18],[10,9],[40,12],[7,12],[79,36],[46,3],[55,18],[38,39],[53,6],[12,3],[13,6],[36,12],[68,3],[8,6],[5,6],[78,177],[76,15],[6,3],[75,9],[3,3],[11,3]],'python':[[3,9],[57,3]],'doubles':[[78,3],[5,3]],'mirroring':[[73,3],[52,6],[68,9],[7,3]],'exponentially':[[61,3]],'knobs':[[32,3]],'guides':[[49,3],[16,3],[1,6],[64,6],[39,3]],'ans':[[3,3],[1,6]],'customizing':[[11,3],[20,6]],'mute':[[13,3],[12,3],[33,9],[11,9]],'substitution':[[40,9],[48,12]],'chip':[[78,6],[75,18],[79,3]],'generation':[[76,12],[79,9]],'took':[[79,3],[48,3]],'getting':[[17,6],[58,3],[59,3],[38,3],[61,3],[52,3],[16,3],[57,3],[11,6],[5,3]],'endian':[[11,3]],'direction':[[76,3],[78,3]],'bullethell':[[63,3]],'pull':[[78,18],[76,3],[33,3],[30,3],[37,3]],'x11x':[[78,3]],'stored':[[73,12],[28,9],[68,3],[27,3],[59,12],[78,9],[71,9],[72,3],[75,3],[10,6],[40,9],[11,6],[65,6]],'keeps':[[59,6],[48,3],[55,6]],'appears':[[59,3],[78,3],[76,3],[38,9]],'11111000':[[80,6]],'even':[[46,3],[53,6],[61,3],[68,3],[35,6],[17,3],[59,36],[78,27],[23,3],[76,6],[60,6],[75,3],[3,3],[79,12],[11,9]],'dictionary':[[48,18]],'network':[[26,3],[31,6],[8,3]],'hovering':[[50,3]],'xii':[[78,6]],'rgp9':[[78,6]],'missed':[[59,3]],'streams':[[79,3]],'crashed':[[53,3]],'max':[[11,3]],'consequence':[[71,3],[78,3]],'haven':[[48,3],[76,3],[79,3]],'asq_realityb':[[25,3]],'special':[[55,6],[50,12],[13,12],[68,3],[35,6],[27,3],[78,12],[51,3],[76,6],[75,6],[79,3],[7,3],[11,3]],'started':[[38,3],[61,21],[16,3],[17,6],[59,15],[66,3],[43,3],[48,6],[3,3],[57,6],[11,3],[58,3]],'rheiny':[[3,3]],'5ff8':[[75,3]],'cpy':[[78,9]],'advances':[[66,3],[60,3]],'eject':[[21,15],[24,3]],'29651n52':[[78,3]],'including':[[73,3],[59,3],[15,3],[76,3],[13,3],[52,3],[3,6],[10,3],[79,3],[65,3]],'than':[[57,3],[73,3],[79,18],[46,3],[19,6],[30,3],[50,6],[61,6],[12,3],[35,24],[27,9],[59,21],[15,9],[78,45],[76,15],[71,3],[43,6],[4,3],[48,6],[75,6],[40,15],[11,6],[18,3]],'006e':[[75,6]],'2008':[[15,3],[14,3],[12,3],[13,3],[3,15],[68,3]],'space':[[73,3],[59,9],[53,6],[30,3],[71,3],[61,3],[75,18],[56,6],[40,9]],'delta':[[5,3]],'sounding':[[76,9]],'represented':[[71,6]],'march':[[4,3],[72,3],[3,3],[11,3]],'hooker':[[48,54],[3,3],[11,3],[39,3]],'begin':[[59,3],[22,3],[23,12],[55,3],[66,3],[50,6],[71,3],[78,27]],'engineering':[[76,9],[67,3]],'10240':[[40,6]],'02ff':[[68,3]],'fcuex':[[19,3]],'nitsujrehtona':[[3,6]],'encompassing':[[2,3]],'background':[[27,6],[59,15],[19,6],[80,15],[20,9],[79,24],[35,3],[11,3]],'unchecked':[[36,9],[35,3],[28,3]],'4008':[[76,39]],'bankswitchable':[[75,3]],'went':[[76,3]],'mix':[[60,3]],'rolledback':[[61,3]],'efficiency':[[5,3]],'where':[[61,3],[27,6],[59,15],[15,3],[23,9],[54,3],[60,6],[48,6],[10,3],[79,24],[65,9],[46,12],[38,3],[53,12],[28,30],[12,15],[13,18],[78,6],[76,18],[6,3],[75,12],[33,3],[11,15],[58,6]],'smaller':[[59,3],[48,3],[78,27]],'situations':[[61,6],[46,3],[38,6],[11,3],[27,3]],'employs':[[61,3],[11,6]],'reminding':[[13,3]],'2c02':[[77,3],[68,9],[79,9]],'04ax':[[68,3]],'0x0123456789abcdef':[[71,3]],'editing':[[63,3],[59,3],[15,3],[23,3],[53,9],[66,3],[67,9],[4,3],[71,3],[20,3],[5,6]],'obscure':[[3,3]],'listening':[[55,3]],'calculate':[[78,15],[79,3]],'religion_mode_on':[[78,3]],'mem':[[79,12]],'won':[[59,18],[54,3],[78,3],[53,3],[30,3],[81,3],[13,3],[48,3],[40,3],[56,3],[5,3]],'saner':[[13,3]],'editor':[[50,9],[67,9],[56,6],[39,3],[59,12],[15,3],[23,3],[49,3],[66,12],[60,3],[4,6],[48,3],[10,15],[40,21],[7,9],[55,9],[53,24],[44,12],[20,12],[68,9],[5,12],[6,3],[43,6],[3,3],[11,9],[58,3]],'addition':[[30,3],[27,3],[59,3],[9,3],[15,3],[76,3],[78,27],[6,3],[4,3],[3,3],[7,3],[65,6]],'composition':[[79,3]],'reply':[[81,3],[80,3]],'quit':[[4,3],[60,3]],'116':[[5,3]],'launch':[[5,3]],'mmc5':[[13,9],[68,3],[14,3],[75,21],[79,6]],'sine':[[40,3],[79,3]],'8000':[[73,6],[55,3],[53,12],[75,12],[68,3],[56,6]],'isn':[[80,3],[56,3],[7,3],[30,3]],'qwerty':[[59,3]],'ruined':[[78,3]],'3w@`':[[78,3]],'explains':[[26,3],[24,3],[81,3],[16,3],[68,3],[27,3]],'gave':[[10,3]],'corrupt':[[55,3]],'double':[[46,3],[50,12],[28,3],[56,3],[5,6],[37,3],[27,6],[21,3],[15,6],[29,6],[76,3],[40,15],[79,3]],'tostring':[[59,3]],'quirks':[[60,3]],'machine':[[78,15],[50,3],[5,3]],'bug':[[11,39],[9,12],[15,3],[6,6],[4,3],[12,15],[13,27],[10,9],[7,15],[5,33]],'did':[[63,3],[59,3],[78,6],[75,6],[79,3],[7,3]],'moment':[[17,3],[59,3],[24,6]],'isrunend':[[61,3]],'amoung':[[76,3]],'now':[[73,3],[61,9],[59,3],[9,18],[14,3],[15,15],[23,6],[60,12],[66,3],[4,12],[71,3],[48,3],[10,12],[40,6],[7,12],[79,12],[55,3],[44,3],[12,12],[13,30],[8,24],[5,33],[78,6],[76,21],[43,3],[75,6],[11,42]],'arguments':[[19,3],[59,6]],'looping':[[76,12]],'commodore':[[78,15]],'needed':[[63,3],[59,3],[15,3],[23,6],[78,3],[62,3],[48,6],[79,3],[58,6]],'microprocessors':[[78,6]],'exceptions':[[78,6]],'ishihara':[[76,3]],'dc0c':[[78,3]],'inflating':[[59,3]],'techniques':[[78,3]],'mygame':[[50,21]],'update':[[50,3],[52,6],[59,3],[15,3],[54,6],[76,9],[66,3],[4,9],[72,9],[48,3],[75,3],[10,9],[40,9],[7,3]],'appeared':[[81,3],[3,3],[79,3]],'truly':[[78,3]],'pressing':[[17,3],[59,6],[22,3],[23,9],[63,3],[53,3],[50,3],[24,3],[30,6],[60,3]],'rise':[[79,3]],'appearing':[[76,3],[79,3]],'behaviour':[[78,3],[76,6],[79,9],[5,3]],'bankswitched':[[50,3],[75,6]],'reads':[[59,3],[78,15],[7,3]],'breathe':[[67,3]],'mirror':[[73,6],[68,15]],'end':[[50,3],[61,18],[59,18],[21,3],[78,24],[76,3],[71,3],[60,33],[4,3],[48,6],[3,3],[79,6],[7,3],[58,9]],'chart':[[76,3]],'bmi':[[78,6]],'continuing':[[66,6]],'illustration':[[78,3]],'multiplexed':[[79,3]],'16384':[[68,6]],'exec_count':[[59,3]],'annoying':[[59,3],[79,3]],'paged':[[73,3]],'codec':[[22,3]],'mv#b@3':[[78,3]],'cias':[[78,6]],'impossible':[[48,3],[54,3]],'selection':[[78,6],[6,12],[48,57],[79,6],[7,3],[5,3]],'child':[[12,3]],'right':[[19,6],[50,15],[61,9],[56,3],[35,3],[27,9],[59,18],[51,3],[23,3],[29,6],[54,3],[60,3],[71,9],[48,9],[40,21],[79,6],[65,6],[53,12],[30,15],[5,3],[17,6],[78,18],[76,9],[43,3],[11,6]],'monitors':[[79,6],[43,6]],'desync':[[7,3]],'dumb':[[48,3]],'way':[[55,3],[50,3],[30,3],[44,3],[61,3],[56,3],[63,3],[59,3],[15,6],[23,6],[54,3],[78,15],[60,3],[80,3],[48,3],[75,15],[57,3],[79,9],[58,3]],'reg':[[79,3],[5,3]],'exhausts':[[61,3]],'filebase':[[28,3]],'there':[[50,15],[61,9],[27,3],[59,24],[9,3],[23,6],[54,6],[80,6],[60,15],[48,12],[10,3],[40,18],[79,12],[65,9],[46,3],[55,6],[38,6],[53,9],[81,3],[12,3],[20,3],[68,3],[63,3],[78,15],[76,9],[75,12],[3,3],[11,3]],'j2rb':[[73,3]],'settings':[[46,6],[30,3],[50,6],[61,3],[36,3],[35,6],[5,3],[17,3],[27,6],[26,9],[39,6],[49,3],[24,3],[34,3],[32,3],[33,3],[11,3]],'originally':[[59,3],[42,3],[3,6],[41,3],[76,3]],'further':[[3,3],[48,3]],'boxes':[[59,3],[15,6],[29,3],[43,3],[48,6],[40,3],[7,3],[56,3]],'okattempts':[[61,3]],'somevalue':[[60,3]],'his':[[78,6],[25,3],[76,9]],'tabbed':[[54,3]],'registerexecute':[[59,6]],'hexbackcolorb':[[20,3]],'increase':[[22,3],[9,3],[23,3],[76,12],[6,3]],'esper2':[[75,3]],'sequences':[[76,27],[5,3]],'forbid':[[13,3],[50,6]],'focus':[[27,9]],'gpa':[[78,6]],'pops':[[60,3],[58,3]],'stays':[[79,3]],'infinite':[[59,6],[76,3],[40,3]],'tapanim':[[78,3]],'loop':[[59,12],[78,12],[76,3],[60,9]],'doesn':[[73,3],[46,3],[8,3],[5,3],[63,3],[59,6],[78,3],[76,3],[4,3],[48,3],[32,3],[10,6],[79,3],[7,9]],'quite':[[59,3],[54,3],[68,3],[78,9],[79,3]],'blocking':[[59,3]],'wav':[[22,24]],'expandable':[[53,3]],'tale':[[78,3]],'amounts':[[35,3]],'isa':[[79,3]],'plugged':[[30,6]],'mentioned':[[59,3],[76,3],[79,3]],'1999':[[81,3],[75,12],[80,3]],'playmovie':[[19,36]],'ontop':[[79,3]],'subtitler':[[63,3]],'fme':[[75,6]],'dehacked':[[60,9]],'clocked':[[76,33]],'3rd':[[71,3],[79,9]],'consist':[[71,6],[23,3]],'monitoring':[[66,3],[43,15],[61,3],[79,3],[40,3],[11,3]],'sorry':[[10,3],[80,3],[8,3]],'amd':[[11,3]],'c000#newname1#comment1':[[50,3]],'impa':[[62,3]],'prelim':[[75,3]],'modified':[[59,12],[21,6],[78,3],[48,3],[75,3],[3,6]],'surprise':[[48,3]],'higher':[[73,3],[78,3],[54,3],[76,3],[61,3],[32,3],[79,3]],'same':[[50,12],[61,12],[59,30],[9,3],[23,3],[54,3],[66,3],[24,3],[60,15],[71,3],[48,12],[32,3],[40,12],[18,3],[7,3],[79,24],[55,6],[38,48],[30,6],[45,3],[52,3],[68,12],[5,3],[63,3],[78,33],[25,3],[76,6],[72,6],[75,6],[58,3]],'champion':[[3,3]],'400f':[[76,12]],'percents':[[24,3]],'flipped':[[75,3]],'denotes':[[78,12],[75,3],[40,9],[60,3]],'chosen':[[50,3]],'2004':[[72,3],[78,6],[3,9],[10,3],[79,3]],'junk':[[59,3]],'additionally':[[59,3],[76,3],[79,3]],'was':[[61,3],[56,3],[59,21],[9,3],[14,3],[15,3],[23,3],[47,3],[54,3],[60,3],[66,9],[48,3],[71,18],[10,6],[40,15],[7,6],[65,3],[79,51],[55,33],[38,33],[44,3],[13,15],[42,3],[68,3],[5,6],[17,3],[78,30],[21,18],[41,3],[76,12],[6,3],[75,3],[3,66],[11,9]],'manage':[[61,3]],'ball':[[76,3],[9,3]],'bvc':[[78,9]],'yellow':[[55,6],[59,3]],'releases':[[13,3],[3,3],[7,3],[5,3]],'outputs':[[49,3],[76,18],[79,9]],'msg':[[59,3]],'setplayback':[[59,3]],'readbyterange':[[59,3],[13,3]],'revolutionizes':[[15,3]],'romfilename':[[71,3]],'edcba9876543210':[[76,3]],'2c00|':[[68,3]],'tested':[[78,3],[55,3],[76,3],[48,9],[3,3],[10,3],[79,3]],'has':[[50,12],[61,15],[27,6],[59,21],[9,3],[15,18],[29,3],[54,6],[60,6],[66,6],[40,18],[79,21],[65,9],[55,6],[38,12],[30,3],[44,3],[53,3],[62,3],[42,3],[52,3],[36,3],[68,9],[8,6],[78,51],[41,3],[76,36],[6,3],[43,3],[75,15],[3,9],[11,3]],'picked':[[3,3]],'3w@':[[78,3]],'volume':[[59,15],[76,57],[30,3],[75,6],[10,3],[33,24]],'fast':[[66,6]],'sounddisplay2':[[5,3]],'rgb':[[59,3],[20,3],[10,3],[32,3],[7,3]],'hadn':[[54,3]],'simulate':[[32,3]],'maru':[[48,12]],'fully':[[59,6],[15,3],[75,3],[7,6]],'again':[[55,3],[61,3],[68,3],[59,9],[9,3],[21,3],[54,3],[78,12],[60,3],[48,3],[3,6],[10,6],[79,9]],'thinking':[[44,3]],'code':[[50,30],[67,6],[61,9],[56,72],[59,48],[9,3],[49,12],[54,15],[71,12],[4,6],[10,3],[40,9],[7,6],[65,6],[55,105],[53,6],[62,3],[12,3],[13,3],[68,6],[5,9],[78,30],[76,6],[75,9],[3,18],[11,3]],'bankswitch':[[53,3],[75,3]],'xdsp':[[3,3]],'input1':[[13,3]],'unexpectingly':[[60,3]],'drivers':[[78,3],[5,3]],'fffd':[[68,3]],'sbc':[[78,78]],'cable':[[21,3]],'extends':[[3,3]],'devices':[[71,9]],'eliminate':[[68,3]],'psid':[[75,3]],'failed':[[61,3],[66,6]],'fixed':[[18,3],[12,15],[13,36],[8,12],[5,81],[78,3],[9,12],[14,3],[15,3],[71,3],[6,36],[76,6],[4,51],[75,3],[10,27],[79,9],[11,36],[7,12]],'10x1':[[78,3]],'developing':[[48,3]],'hear':[[76,3]],'ror':[[78,63]],'point':[[38,3],[17,3],[21,3],[23,9],[49,3],[66,6],[76,9],[80,3],[4,3],[72,3],[40,6],[79,3]],'respective':[[71,3]],'one':[[50,24],[61,15],[59,57],[15,3],[49,3],[51,3],[66,9],[60,24],[4,3],[48,9],[32,3],[10,6],[40,9],[18,3],[65,3],[7,3],[79,27],[55,3],[30,18],[12,3],[68,12],[78,60],[22,3],[25,3],[76,15],[43,9],[75,12],[3,3],[58,9]],'156':[[5,3]],'signals':[[78,3],[76,9],[79,3]],'variable':[[73,9],[59,24],[71,6],[60,3],[61,21],[79,3]],'positioning':[[4,3]],'predecrement':[[78,3]],'c64':[[78,9],[75,3]],'drawtext':[[59,3]],'5fff':[[68,3]],'pbin':[[73,3]],'archive':[[59,6],[15,6],[67,3],[12,6],[13,9],[48,3],[18,3]],'077h':[[75,3]],'32k':[[76,6]],'instead':[[46,3],[55,6],[53,6],[50,18],[81,3],[61,3],[27,3],[59,12],[9,6],[14,3],[76,6],[78,15],[60,3],[48,6],[10,12],[33,3],[7,6],[79,9]],'part3':[[50,3]],'backwards':[[63,3],[59,9],[73,3],[10,3]],'guid':[[71,9],[15,3]],'nsfs':[[32,3]],'alteration':[[46,3]],'represents':[[59,3],[55,3],[53,3],[76,3],[32,3],[40,6],[56,3]],'order':[[55,6],[50,3],[28,3],[45,3],[61,3],[68,3],[63,3],[59,3],[21,3],[23,6],[76,6],[66,6],[71,3],[48,6],[32,6],[79,21]],'c006#newname3#multilinecomment':[[50,3]],'lfsr':[[73,3]],'`&z0':[[78,3]],'timing':[[17,3],[78,9],[26,6],[76,12],[19,3],[71,3],[34,6],[10,3],[79,24],[11,3],[27,3]],'conflict':[[5,6]],'levels':[[78,3],[55,3],[33,3],[67,6],[76,3]],'problematic':[[40,3]],'switchy':[[59,3]],'tools':[[1,6],[55,3],[62,3],[67,18],[13,3],[68,3],[39,12],[5,6],[9,6],[15,12],[49,3],[66,12],[48,9],[3,12],[40,3],[7,3]],'freebsd':[[3,3]],'biggest':[[48,3]],'exec_time':[[59,3]],'stevedonovan':[[62,3]],'claim':[[66,3],[78,3]],'numbered':[[75,3]],'sits':[[75,3]],'enhancing':[[5,3]],'accuracy':[[59,3],[10,3],[27,3]],'shu':[[11,3]],'tweaking':[[48,3]],'open':[[55,3],[38,6],[50,18],[28,3],[45,3],[13,12],[36,6],[8,3],[27,9],[17,6],[63,6],[15,9],[23,9],[29,6],[78,3],[48,9],[40,3],[11,12],[18,3]],'sq2':[[76,30]],'pagedown':[[59,3]],'shared':[[76,3],[79,3]],'uuencoded':[[78,3]],'progress':[[59,3]],'&b%_3bxi':[[78,3]],'button':[[55,3],[38,6],[30,33],[50,18],[53,3],[61,15],[37,6],[5,6],[59,42],[9,3],[15,3],[21,6],[23,3],[24,9],[43,3],[4,3],[60,3],[48,33],[63,3],[71,18],[40,24],[11,15],[72,3]],'yourself':[[63,3],[48,3],[60,3]],'circuitry':[[79,6]],'prevented':[[9,3],[5,3]],'ntsccolor':[[13,3]],'mails':[[62,3]],'complimentery':[[79,3]],'misrepresented':[[79,3]],'persist':[[59,3]],'loc':[[78,9]],'merge':[[3,3],[2,3]],'continuously':[[50,3]],'watching':[[68,3]],'dcfd':[[78,6]],'randomness':[[78,3]],'val':[[76,6],[78,15]],'decoded':[[76,3],[59,6]],'layout':[[68,6],[64,3],[5,3]],'wrong':[[15,3],[48,3],[10,3],[5,3]],'inserting':[[21,3],[43,3],[24,3]],'multiplier':[[35,3],[75,3]],'documented':[[48,3],[20,3]],'overridden':[[28,3]],'jones':[[6,3]],'resets':[[76,3],[40,3],[50,3]],'mega':[[40,15]],'kept':[[61,6],[79,3],[50,3]],'keep':[[55,3],[50,3],[30,3],[61,3],[59,9],[54,3],[78,3],[76,3],[43,3],[34,3],[75,3],[79,6],[18,3],[58,3]],'hikari':[[30,3]],'makedata':[[55,3]],'board':[[68,6]],'ppc':[[12,3]],'loads':[[59,12],[78,9],[23,3],[76,3],[38,6],[19,6],[12,3],[75,3],[79,3],[11,3],[27,3]],'www':[[58,3],[62,12],[60,3]],'kirby':[[68,3]],'dual':[[75,9]],'obsolete':[[5,3]],'following':[[1,3],[50,9],[68,3],[17,3],[59,15],[21,3],[78,30],[70,3],[71,12],[60,6],[76,6],[75,3],[79,9]],'speedmode':[[60,3],[59,3],[11,3],[58,3]],'noconfig':[[11,3]],'chunk':[[4,3],[73,24],[18,3]],'grapical':[[35,3]],'programmers':[[63,6],[78,6],[79,3],[60,3]],'intact':[[79,3]],'adc':[[78,66]],'skill':[[66,9]],'cdlogger':[[4,3],[7,3]],'8_47':[[78,3]],'_29_':[[81,3]],'understand':[[78,3],[56,3],[57,3],[79,9]],'describes':[[25,3],[38,3],[79,6],[65,3]],'9010':[[75,3]],'ensure':[[59,6],[78,6],[65,3]],'loadstate':[[17,24],[27,3],[15,6],[23,3],[59,3],[19,9],[6,3],[38,18],[7,9],[11,3]],'dd0d':[[78,33]],'fairly':[[53,3]],'comment':[[78,6],[23,6],[71,15],[60,3],[50,27]],'truecolor':[[59,3]],'attain':[[76,3]],'just':[[73,3],[55,3],[50,12],[61,9],[13,3],[20,3],[42,3],[35,3],[5,3],[27,3],[59,12],[49,3],[54,3],[41,3],[63,6],[43,3],[60,12],[76,3],[72,3],[48,9],[78,33],[40,3],[79,18]],'inv':[[59,3]],'paying':[[79,3]],'loadstates':[[7,3]],'extracted':[[79,3]],'major':[[15,3],[53,3],[12,3],[75,3],[10,3],[79,3],[11,15],[5,3]],'posted':[[76,3]],'ongoing':[[59,3]],'uwa':[[78,3]],'option':[[38,48],[30,9],[50,12],[12,9],[13,12],[36,3],[42,3],[35,18],[5,42],[17,9],[27,9],[9,3],[15,12],[21,3],[41,3],[52,3],[54,12],[4,18],[59,6],[10,15],[11,15],[7,15]],'cpu':[[73,9],[50,24],[77,6],[68,18],[5,3],[59,12],[15,3],[51,6],[76,27],[78,18],[10,9],[79,36],[7,3]],'dialogs':[[9,3],[13,9],[10,3],[11,3],[62,3]],'without':[[11,6],[62,3],[81,3],[61,3],[12,6],[13,3],[68,3],[5,6],[59,30],[21,3],[78,3],[76,3],[66,3],[48,9],[75,3],[79,12],[7,6],[58,3]],'significant':[[73,3],[59,3]],'pretty':[[59,3],[75,3],[79,6]],'frameadvancing':[[60,3]],'zeros':[[55,3]],'canceling':[[11,3]],'rely':[[35,3],[60,3]],'hardware':[[35,15],[59,6],[69,6],[1,3],[76,69],[78,18],[4,3],[75,3],[79,18],[18,3],[65,9]],'funny':[[78,3],[75,3]],'designates':[[50,3]],'implemented':[[79,6],[9,3],[47,3],[62,3],[3,9],[10,9],[7,6],[11,9]],'containers':[[38,3]],'navigation':[[3,3],[50,6]],'ideas':[[44,3]],'indirect':[[78,24],[50,3]],'tutorial':[[58,3]],'seek':[[50,6],[5,3]],'explained':[[79,3],[60,3]],'08000h':[[75,12]],'poweron':[[59,3],[11,3]],'triplets':[[32,3]],'tatakai':[[8,3]],'omitted':[[59,3]],'cmp':[[78,63]],'wealth':[[66,3],[67,3]],'activated':[[79,9]],'backups':[[8,3],[36,6],[11,3],[7,3]],'activate':[[40,3],[56,3]],'nogui':[[4,3]],'drive':[[21,3]],'pcsx':[[41,3],[42,3]],'utfconverter':[[10,3]],'sometime':[[38,3]],'uint32':[[73,33]],'overincreased':[[13,3]],'experienced':[[60,3]],'containing':[[78,3],[7,3],[5,3]],'lists':[[78,3]],'8x8':[[13,3]],'mwav':[[73,3]],'unified':[[3,3]],'sample':[[59,9],[55,3],[33,3],[76,3]],'know':[[53,3],[61,3],[68,3],[56,3],[63,6],[59,6],[78,9],[80,6],[60,3],[48,27],[75,6],[40,12],[79,6]],'trial':[[61,6],[48,3]],'progression':[[59,3]],'gotcha':[[7,3]],'leftbracket':[[59,3]],'bbitmaster':[[3,3]],'nmi3':[[50,3]],'basis':[[79,3],[32,3]],'reaching':[[36,6],[23,3]],'dff6':[[50,3]],'prevent':[[59,6],[78,3],[53,3],[50,3],[60,3],[61,3],[12,3],[13,3],[79,3],[7,3],[11,6]],'slight':[[35,3],[25,3],[6,3],[27,3]],'subsequent':[[59,6],[71,3]],'lame':[[79,3]],'brk':[[78,84],[68,3]],'galaxian':[[63,3]],'bpl':[[78,39]],'unless':[[50,3],[28,3],[27,3],[59,15],[21,6],[23,3],[54,3],[71,9],[76,3],[78,3],[48,3],[79,6]],'09fffh':[[75,6]],'add':[[53,3],[30,3],[50,30],[62,3],[13,9],[56,9],[5,12],[78,57],[49,3],[4,3],[48,9],[32,3],[75,3],[40,9],[7,3],[79,6]],'issues':[[65,6],[25,3],[6,6],[12,6],[11,3],[5,3]],'iiii':[[50,3]],'sounds':[[75,3]],'combinations':[[61,3],[78,12],[79,3]],'aop':[[78,3]],'visit':[[23,3]],'described':[[76,6],[56,3],[79,12]],'blow':[[59,3]],'crackle':[[65,6]],'6502':[[78,18],[51,3],[76,12],[77,3],[75,18],[68,6],[40,9]],'savestates':[[65,9],[38,6],[12,6],[13,9],[36,6],[8,6],[27,18],[17,3],[5,9],[15,9],[23,6],[59,9],[60,9],[10,3],[57,3],[7,3],[11,3]],'allowing':[[11,3],[59,3],[71,3],[36,3],[35,3],[5,3]],'decrypt':[[56,3]],'discovered':[[76,3],[78,3]],'coincides':[[79,3]],'available':[[38,12],[62,3],[44,3],[16,3],[68,3],[59,3],[15,3],[29,3],[54,3],[66,3],[76,15],[78,12],[4,3],[32,3],[57,3],[18,3]],'portions':[[61,3],[79,3],[6,3]],'refers':[[59,3],[68,3],[50,3]],'format':[[73,9],[55,3],[45,3],[13,6],[74,6],[8,3],[5,3],[39,3],[59,9],[15,18],[23,6],[54,3],[66,3],[70,12],[71,48],[72,15],[75,15],[32,3],[40,18],[33,3],[18,15]],'lastkey2':[[61,3]],'prehaps':[[79,9]],'matter':[[63,3],[75,3],[32,3]],'done':[[55,3],[53,3],[67,3],[61,3],[20,3],[27,3],[78,3],[15,3],[76,3],[66,6],[60,9],[75,12],[3,3],[40,6],[79,24],[65,3]],'persistently':[[49,3]],'optimal':[[59,3]],'120hz':[[76,3]],'coinciding':[[79,3]],'intention':[[57,3]],'index':[[73,9],[59,6],[78,45],[79,18],[60,3]],'several':[[50,3],[62,6],[42,3],[63,3],[78,3],[25,3],[41,3],[71,3],[76,3],[72,3],[75,3],[3,3],[40,6],[65,3]],'length':[[73,12],[13,3],[59,9],[78,3],[76,123],[71,15],[60,3],[72,6],[75,6],[10,3],[79,3],[11,3]],'need':[[73,3],[79,3],[46,3],[55,6],[53,3],[50,3],[45,3],[61,3],[17,3],[59,15],[21,3],[63,9],[78,9],[72,3],[48,30],[75,6],[57,3],[7,3],[58,6]],'computers':[[34,3],[78,3],[35,3],[65,3]],'remappable':[[10,3]],'27th':[[79,3]],'words':[[59,3],[78,3],[71,3],[48,18],[75,3],[79,6]],'told':[[62,3]],'summon':[[56,3]],'don':[[55,3],[53,3],[50,6],[61,9],[12,3],[5,6],[63,12],[59,9],[21,3],[78,3],[76,9],[80,3],[60,6],[48,9],[10,3],[79,6]],'|__________________________________________|':[[68,27]],'terminator':[[75,3]],'00fh':[[75,3]],'readability':[[59,3]],'forums':[[3,3]],'dialog':[[50,3],[59,21],[9,12],[15,12],[23,12],[29,6],[4,15],[10,9],[40,3],[7,12],[18,3],[65,6],[38,12],[53,3],[12,9],[13,18],[36,6],[42,12],[8,9],[5,15],[37,3],[41,12],[43,15],[11,39],[58,6]],'rerecords':[[27,3],[5,3]],'0700':[[68,3]],'sure':[[59,6],[22,3],[55,3],[71,3],[61,3],[48,3],[75,3],[40,3]],'compared':[[9,3],[15,3],[3,6],[7,3],[62,3]],'fc0':[[19,6]],'vint':[[79,27]],'|extra':[[79,3]],'mark':[[3,3],[48,9]],'arriving':[[76,3]],'4011':[[76,12]],'75%':[[59,6]],'rewinding':[[38,6],[9,3]],'waits':[[7,3]],'unit':[[78,3],[21,3],[51,3],[76,42],[79,3],[58,3]],'cancel':[[11,3],[58,3]],'bulletproof':[[7,3]],'rename':[[13,3],[50,3],[27,3]],'autosearch':[[41,3],[42,3]],'soft':[[59,3],[15,3],[55,6],[71,6],[24,3],[7,3],[5,3]],'1024':[[68,9]],'ntar':[[73,3]],'pair':[[71,3]],'confirmed':[[76,6],[59,3]],'sprites':[[27,3],[59,6],[19,9],[80,6],[48,6],[68,3],[79,6],[35,9],[11,3]],'updates':[[7,3],[5,3],[78,3],[46,3],[80,3],[48,3],[3,3],[8,6],[11,9]],'cyan':[[55,3],[59,3]],'bak':[[36,3]],'pspfceultra':[[3,3]],'stage':[[78,3],[76,3],[79,24]],'conditions':[[76,15],[50,12]],'symmetry':[[76,3]],'inits':[[75,3]],'sources':[[78,12],[76,3],[79,3]],'generated':[[73,3],[78,3],[76,15],[71,3],[79,12]],'loses':[[63,3]],'disassembly':[[54,9],[55,3],[50,54],[5,9]],'adventure':[[68,3]],'unusual':[[78,3]],'midikey':[[59,15]],'debugger':[[1,3],[53,3],[50,45],[67,9],[12,9],[13,12],[56,12],[8,6],[5,9],[9,6],[49,6],[54,9],[66,3],[6,3],[43,3],[3,12],[10,3],[11,9],[7,12]],'case':[[46,6],[55,3],[19,3],[50,3],[61,15],[12,3],[63,3],[59,12],[78,9],[71,3],[60,6],[40,6],[79,3]],'savescreenshotas':[[59,3],[6,3]],'locate':[[56,3]],'http':[[65,3],[66,15],[62,15],[60,9],[69,3],[58,3]],'king':[[30,3]],'drawimage':[[59,3]],'overriding':[[59,3]],'0ffffh':[[75,9]],'bcd':[[78,48]],'always':[[19,3],[50,3],[52,3],[12,3],[13,6],[36,6],[68,6],[5,3],[59,15],[9,3],[23,3],[76,12],[71,9],[60,6],[78,66],[48,3],[79,9],[11,3],[7,3]],'preferred':[[59,3],[40,3],[79,3],[27,3]],'choppy':[[13,3]],'intervals':[[75,3]],'ejects':[[24,3]],'reporting':[[7,3]],'alternative':[[56,3]],'reorganize':[[14,3]],'minute':[[78,3]],'gnu':[[3,3]],'argus_':[[55,3]],'iql1':[[73,6]],'halt':[[76,6],[50,6]],'replaces':[[56,3]],'3f9':[[76,3]],'argument':[[59,21],[78,24],[6,3],[60,3],[13,3],[12,3]],'perfectly':[[79,3]],'desired':[[49,3],[75,12],[76,3],[56,9],[30,3]],'luaperks':[[57,3],[62,9]],'someone':[[55,6]],'searchspace':[[61,3]],'mailing':[[76,3]],'14915':[[76,3]],'pairs':[[75,3],[71,9],[60,6]],'7fff':[[73,3],[75,6],[68,3],[40,3],[6,3]],'setregister':[[59,6],[9,3]],'most':[[50,3],[67,3],[61,9],[59,9],[23,3],[66,3],[80,3],[4,3],[48,9],[40,3],[18,3],[57,3],[79,6],[46,3],[55,3],[38,6],[30,6],[53,3],[62,3],[52,3],[68,3],[17,3],[78,27],[76,6],[43,3],[58,3]],'dropping':[[79,3],[7,3]],'239':[[59,3],[35,3],[50,3]],'since':[[79,36],[5,6],[59,6],[54,3],[78,12],[76,3],[72,3],[48,18],[75,12],[3,3],[40,18],[10,3],[11,3]],'pain':[[73,3]],'nonsensical':[[18,3]],'expect':[[78,3],[30,6]],'getrecordermode':[[59,3]],'zeroes':[[61,3]],'deselected':[[48,3]],'east':[[78,3]],'sec':[[78,3],[75,6]],'yos0ffa':[[78,3]],'0070':[[75,6]],'fullest':[[1,3]],'emulated':[[17,6],[59,15],[26,3],[65,3],[30,24],[40,3],[5,3]],'1994':[[78,12]],'partially':[[29,3],[55,3],[7,3]],'psg':[[59,3]],'shifting':[[78,3],[10,3],[79,3]],'bbb':[[72,3]],'view':[[49,3],[55,3],[38,6],[50,9],[53,6],[76,3],[13,3],[48,3],[56,3]],'assumed':[[75,3]],'bottom':[[59,9],[78,3],[60,6],[50,3],[43,6],[27,3]],'hooks':[[59,3]],'0@9':[[78,9]],'2j1t892n%':[[78,3]],'6th':[[78,3]],'redesigned':[[44,3]],'gfce':[[3,3]],'counter':[[73,18],[46,3],[50,21],[12,6],[68,3],[5,12],[27,42],[59,18],[15,6],[23,9],[76,291],[78,15],[79,45],[11,6]],'process':[[55,3],[50,3],[62,3],[67,6],[12,3],[27,3],[59,3],[78,6],[23,3],[66,6],[48,6],[40,6],[79,21]],'unavailable':[[66,3]],'stuff':[[51,3],[80,3],[60,12],[61,6],[48,3],[75,3],[79,3]],'p2t0p9d`pid`':[[78,3]],'imbedded':[[36,3],[71,3]],'develop':[[79,3]],'might':[[59,9],[78,9],[46,6],[23,3],[50,3],[61,6],[48,3],[68,3],[35,3]],'removing':[[55,3],[79,3],[6,3],[5,3]],'strict':[[50,3]],'depth':[[59,3]],'040x':[[68,6]],'ours':[[78,3]],'faster':[[22,3],[15,3],[68,3],[7,3],[35,3]],'denoted':[[61,3],[60,3]],'notification':[[7,6]],'odds':[[61,3]],'khz':[[76,9]],'assisted_speedrun':[[66,3]],'0x0000':[[59,6]],'informed':[[76,3]],'output':[[59,3],[22,3],[54,6],[76,78],[6,3],[28,3],[68,6],[33,3],[79,15],[5,3]],'4015':[[76,27]],'65c02':[[78,3]],'registerbefore':[[59,12]],'o&_':[[78,3]],'tell':[[59,3],[71,3],[61,6],[48,3],[68,3],[58,6]],'files':[[50,24],[16,3],[39,3],[9,3],[15,12],[23,15],[54,3],[48,9],[32,3],[10,6],[40,9],[7,9],[18,15],[55,15],[38,6],[30,3],[28,39],[45,15],[53,6],[12,3],[13,9],[62,3],[5,12],[63,3],[22,12],[26,3],[25,3],[70,3],[43,9],[11,12],[58,6]],'resolution':[[76,6],[35,6]],'272':[[79,3]],'browse':[[58,3],[23,3]],'parts':[[73,3],[55,6],[53,3],[50,6],[62,3],[71,3],[61,3],[48,3]],'outline':[[59,3]],'investigate':[[63,3]],'trace':[[11,3],[9,3],[49,3],[54,18],[55,6],[67,6],[4,3],[3,3],[10,3],[8,6],[5,6]],'marks':[[48,12],[50,3]],'getreadonly':[[59,6],[11,3]],'edits':[[1,6]],'install':[[59,3]],'rpgs':[[48,3]],'soon':[[78,3],[48,6]],'save':[[73,9],[50,9],[61,3],[56,3],[27,15],[59,33],[9,15],[15,12],[47,3],[60,15],[4,9],[48,36],[10,18],[55,21],[38,18],[53,9],[28,6],[13,6],[68,6],[8,3],[5,6],[17,21],[78,3],[21,3],[43,6],[72,3],[11,21]],'dec':[[78,33]],'readable':[[54,3],[75,3]],'transferred':[[76,3],[49,3]],'correctly':[[78,3],[13,3],[12,3],[52,3],[5,3]],'modifying':[[78,3],[76,3],[53,3],[67,3],[20,3],[10,3]],'horizontally':[[79,6]],'squares':[[49,3]],'3f20|':[[68,3]],'super':[[68,9],[40,3],[43,3],[79,6]],'alphamul':[[59,21]],'extension':[[53,3],[62,6],[13,6],[32,3],[36,3],[48,6],[18,3]],'extreme':[[61,3]],'tue':[[81,3],[80,3]],'8910':[[75,6]],'question':[[59,9],[65,3]],'also':[[73,3],[50,36],[61,12],[56,3],[35,3],[27,18],[59,30],[15,3],[23,24],[29,3],[49,3],[54,3],[60,6],[66,3],[71,3],[48,3],[10,6],[40,6],[7,3],[65,12],[79,21],[55,9],[38,3],[30,9],[28,3],[44,3],[53,12],[12,3],[13,3],[42,3],[52,3],[8,3],[5,12],[17,3],[68,12],[78,30],[41,3],[76,9],[72,3],[3,6],[33,3],[11,6],[58,3]],'lastkey1':[[61,3]],'1000000th':[[75,6]],'d`h#v1':[[78,3]],'fce':[[73,9],[1,3],[53,3],[0,3],[45,3],[15,3],[23,3],[71,3],[2,6],[72,3],[3,63],[40,9]],'labeled':[[7,6],[30,3]],'09ff':[[68,3]],'numpad7':[[59,3]],'0100':[[78,60],[68,6],[50,6]],'fetching':[[78,3],[79,6],[50,3],[80,3]],'heard':[[76,3]],'0677fc51543b':[[71,3]],'cut':[[40,3],[68,3]],'rectangle':[[59,6]],'04xx':[[75,3],[68,3]],'replayed':[[7,3]],'chance':[[59,6],[48,3],[61,3],[79,3]],'down':[[30,27],[50,3],[61,3],[68,12],[37,3],[5,3],[59,9],[15,3],[23,15],[76,27],[71,9],[24,6],[43,3],[60,3],[78,3],[75,3],[32,3],[3,3],[33,6],[40,6],[79,15]],'directory':[[65,12],[19,3],[50,3],[28,18],[61,3],[12,6],[13,3],[27,6],[17,3],[9,3],[15,3],[21,15],[26,3],[43,3],[32,6],[40,3],[11,9],[18,3]],'joysticks':[[72,3]],'inx':[[78,6]],'packaged':[[25,3],[65,3]],'objctr':[[59,9]],'resized':[[11,6],[50,3]],'401f':[[68,3]],'linked':[[3,3]],'brand':[[15,3],[5,3]],'iny':[[78,3]],'hitting':[[40,3]],'worlds':[[2,3]],'graphical':[[3,3],[57,3],[62,3],[79,12]],'ripsubs':[[10,3]],'details':[[54,3],[25,3],[38,3],[60,3],[76,24],[68,6],[79,24],[11,30]],'maxframes':[[61,12]],'fm3':[[71,3],[5,3]],'wrote':[[3,3],[38,9],[79,3]],'possibilities':[[15,9],[68,6],[55,3],[40,21],[79,3]],'1fff':[[73,6],[68,6]],'decide':[[79,3],[68,3]],'interact':[[59,3],[58,3]],'buggy':[[49,3]],'|1e':[[76,3]],'navigating':[[17,3],[22,3],[23,9]],'utf':[[12,3],[62,3]],'translation':[[48,18]],'criterion':[[66,6]],'gens':[[9,6],[41,3],[42,3],[10,3],[7,3],[8,3]],'simultaniously':[[79,3]],'categories':[[37,3]],'playing':[[55,6],[62,3],[61,3],[16,6],[68,3],[8,3],[27,6],[17,3],[59,6],[9,3],[15,9],[22,3],[23,18],[26,6],[66,18],[4,3],[75,3],[40,3],[18,6],[11,3]],'added':[[79,9],[53,3],[50,3],[12,21],[13,27],[8,12],[5,60],[27,3],[59,9],[9,15],[78,9],[25,6],[71,12],[6,15],[4,33],[48,3],[75,15],[3,6],[10,24],[11,99],[7,39]],'framerate':[[34,3],[76,3],[71,3],[65,3]],'filenaming':[[5,3]],'crossed':[[78,12]],'remove':[[13,3],[48,3],[10,3],[50,3],[37,3]],'feature':[[55,3],[53,6],[30,24],[50,6],[12,3],[13,3],[8,3],[5,3],[27,6],[54,6],[47,3],[76,6],[4,3],[48,3],[3,3],[10,3],[7,3],[57,3]],'preview':[[41,3],[42,3]],'convert':[[59,3],[15,3],[70,3],[76,3],[45,12],[13,6],[7,3],[39,6]],'cht':[[4,3],[40,15],[28,6]],'parameters':[[59,3],[40,6],[6,3]],'commercially':[[3,3]],'april':[[8,3]],'hardly':[[79,3],[31,3]],'referenced':[[50,3]],'event':[[72,3],[53,3],[66,3]],'capacity':[[21,3]],'manipulate':[[60,3]],'luabot_framework':[[61,3]],'shape':[[63,3]],'expected':[[78,9],[32,3],[66,3],[79,3]],'misbelief':[[78,3]],'john@ucc':[[78,3]],'161':[[79,3]],'atx':[[10,3]],'waveform':[[73,6]],'compensate':[[59,3]],'parser':[[50,3]],'bugsbunnybirthdayblowout':[[63,3]],'edition':[[3,3]],'copies':[[78,3],[5,3]],'j2x@to':[[78,3]],'warped':[[79,3]],'shown':[[60,3],[51,3],[40,3],[50,12],[5,3]],'almost':[[54,3],[68,3],[3,3]],'connect':[[50,12]],'fade':[[76,3]],'characteristics':[[76,3],[68,9]],'teal':[[59,3]],'160':[[79,3]],'unintentional':[[11,3]],'largely':[[63,3]],'notepad':[[50,3]],'part':[[63,3],[78,12],[53,6],[50,15],[66,9],[61,3],[48,6],[72,3],[77,6],[56,3],[79,9]],'gives':[[59,3],[29,3],[30,3],[62,3],[34,3],[68,12],[10,3],[79,3]],'snaps':[[5,3]],'supplied':[[21,6],[60,3]],'html':[[65,3],[59,6],[66,9],[60,9],[62,3]],'warned':[[60,3]],'brute':[[59,3]],'maintenance':[[7,3],[14,3]],'zenity':[[13,3]],'bmf':[[25,9]],'maximus':[[3,6]],'reload':[[13,3],[10,3],[38,3],[50,6],[5,3]],'foundation':[[67,3]],'token':[[71,3]],'sax':[[78,30]],'halves':[[78,3]],'phase':[[78,3],[79,33]],'cia2':[[78,3]],'nestopia':[[25,3]],'songs':[[75,6]],'segments':[[61,18]],'z80':[[79,3]],'methods':[[59,6],[78,3]],'recovery':[[12,3],[13,3]],'combines':[[55,3]],'john':[[78,3]],'sweeping':[[76,12]],'direct':[[57,3],[78,3]],'timing|':[[79,3]],'suffice':[[40,3]],'boards':[[4,3]],'banked':[[75,3]],'updated':[[73,3],[79,9],[1,3],[76,12],[72,3],[48,9],[75,9],[10,6],[40,6],[11,3],[5,9]],'bankswitching':[[75,15],[55,3],[79,3],[50,3]],'licensed':[[3,3]],'objpri':[[79,3]],'unpauses':[[59,3],[8,3]],'rewinder':[[63,3]],'pattern':[[59,3],[51,6],[46,21],[14,3],[68,6],[79,63]],'020':[[76,3]],'spanned':[[21,3]],'readme':[[78,3]],'expansion':[[30,6],[6,3],[13,3],[68,3],[75,6],[18,3]],'finished':[[4,3],[59,3],[52,3],[73,3],[7,3]],'w0fvb':[[78,3]],'statistical':[[61,6]],'wii':[[4,3]],'f10':[[17,6],[59,3],[55,3]],'associated':[[59,3],[40,3],[79,9]],'str':[[59,24],[60,6]],'trans':[[59,9]],'replaying':[[36,3]],'hasn':[[10,3]],'executing':[[59,3],[78,12]],'chrr':[[73,6]],'0000h':[[75,9]],'assignment':[[37,6]],'21477270':[[75,3]],'cope':[[78,3]],'painting':[[59,3],[13,3],[60,6]],'cpuregistername':[[59,6]],'being':[[30,9],[61,3],[27,6],[59,9],[21,3],[54,6],[76,18],[78,21],[43,3],[80,3],[72,3],[48,3],[75,6],[57,3]],'ida':[[55,3]],'vrcvii':[[75,9]],'criticised':[[66,3]],'newer':[[3,3]],'nmos':[[78,48]],'unmodified':[[78,6]],'ports':[[51,3],[3,3],[30,6],[5,3]],'5x5':[[59,6]],'marginal':[[78,3]],'silly':[[18,3]],'blossom”':[[48,3]],'remind':[[71,3]],'comprehension':[[79,3]],'0600':[[81,3],[68,3],[80,3]],'https':[[62,3]],'006eh':[[75,3]],'start_address':[[75,3]],'keyboard':[[59,9],[21,6],[30,3],[24,3],[4,3],[12,3],[11,3]],'#xh':[[78,3]],'overhauled':[[15,3]],'gekimadden':[[8,3]],'latency':[[33,3]],'rewind':[[63,3],[23,3],[38,6]],'vectors':[[7,3]],'future':[[63,3],[78,3],[31,3],[48,3],[75,3],[65,6]],'timings':[[4,3],[34,3],[79,3]],'#byte':[[78,12]],'detrimental':[[55,3]],'mac':[[3,3],[65,3]],'young':[[6,3]],'poking':[[49,3]],'01ff':[[78,9],[68,6],[50,6]],'akel':[[78,9]],'tries':[[59,3]],'clockline':[[79,3]],'watch':[[7,3],[55,3],[50,9],[28,9],[13,3],[42,9],[68,3],[39,6],[5,3],[59,3],[9,6],[15,24],[54,6],[66,3],[6,3],[43,42],[3,3],[40,9],[11,18],[10,18]],'228':[[4,3]],'nvidia':[[5,3]],'remember':[[78,9],[66,3],[53,3],[60,3],[48,6],[13,6],[75,3],[79,6],[27,3]],'advanced':[[79,3],[66,3],[50,6],[67,3]],'rmw':[[78,6]],'scrolls':[[5,3]],'sq1':[[76,30]],'cherished':[[67,3]],'dcfc':[[78,9]],'commandline':[[10,6],[6,3]],'location':[[59,6],[22,3],[23,3],[76,6],[78,9],[50,6],[56,3],[33,3],[40,6]],'pointed':[[30,3]],'dd04':[[78,6]],'entry':[[27,3],[59,12],[78,3],[48,3],[75,6],[40,3],[79,12],[5,3]],'824':[[79,3]],'discovering':[[55,3]],'said':[[63,3],[52,3],[76,3],[79,3]],'offset':[[73,3],[78,3],[46,9],[53,6],[60,3],[50,3],[80,6],[75,3],[79,15],[39,3]],'looking':[[48,3],[49,3],[25,3],[54,6]],'quote':[[59,3]],'exotic':[[13,3]],'xmessage':[[59,3]],'flubba':[[76,3]],'warioland':[[11,3]],'043x':[[68,3]],'course':[[59,3],[78,3],[76,3],[79,6]],'tsx':[[78,6]],'shinydoofy':[[12,3]],'|ppu':[[79,9]],'115':[[4,3],[5,3]],'hacks':[[64,3]],'invert':[[59,18],[9,3]],'armed':[[75,3]],'players':[[61,3],[9,3],[46,3],[68,3],[79,3]],'announced':[[21,3]],'supported':[[59,9],[21,3],[55,3],[53,3],[60,6],[62,3],[71,9],[72,3],[3,3],[18,12]],'base':[[59,3],[21,6],[78,3],[76,3],[19,3],[28,6],[12,3],[3,3],[40,3],[79,12],[27,3]],'internal':[[59,9],[78,9],[76,21],[71,12],[79,9]],'argment':[[11,3]],'gamepads':[[71,3],[30,3]],'alternate':[[78,3],[46,9],[39,3]],'_will_':[[61,3]],'consistency':[[9,3],[11,3]],'bginput':[[19,9]],'hitboxes':[[63,3],[62,3]],'issue':[[65,6],[78,3],[6,6],[31,3],[12,9],[13,3],[10,9],[33,3],[11,3],[5,3]],'interactive':[[55,3]],'192':[[4,3],[76,9]],'int32':[[73,9],[71,3]],'sequentially':[[79,3],[75,3]],'05ff':[[68,3]],'shx':[[78,12]],'stick':[[75,3],[68,3]],'entirity':[[79,3]],'goal':[[61,3],[66,3],[62,3]],'defines':[[73,3],[24,6],[50,9]],'hotkey':[[38,6],[30,15],[50,9],[12,9],[13,9],[5,9],[17,12],[27,15],[15,6],[22,3],[23,3],[26,3],[37,12],[54,3],[4,3],[59,3],[3,3],[10,3],[11,21]],'02xx':[[68,6]],'usability':[[9,3],[3,3],[8,3],[5,3]],'c022':[[50,3]],'draws':[[81,3],[59,15],[79,3]],'recommend':[[79,3]],'saver':[[10,3],[29,6]],'writing':[[53,6],[50,3],[81,3],[61,3],[59,9],[21,3],[78,6],[76,12],[80,3],[60,3],[75,3],[79,9],[11,3],[58,3]],'environments':[[18,3]],'resulting':[[32,3],[55,3],[66,3]],'learning':[[58,3]],'onsegmentstart':[[61,6]],'kh%&1':[[78,3]],'multiplexer':[[79,21]],'messages':[[11,3],[7,3],[54,3],[59,3],[6,3],[13,3],[8,3],[5,12]],'profit':[[79,3]],'differrences':[[76,3]],'vastly':[[5,3]],'reverse':[[68,3],[55,3],[76,9],[67,3]],'legend':[[78,3]],'113':[[79,3]],'outputted':[[76,3]],'joypad':[[12,3],[8,9],[5,3],[59,45],[9,3],[21,6],[26,3],[71,6],[24,3],[60,9],[7,3],[11,9]],'buttoncount':[[5,3]],'idc':[[55,3]],'drawings':[[5,3]],'psin':[[73,3]],'implied':[[78,15]],'two':[[50,3],[62,3],[61,6],[68,3],[35,6],[27,3],[59,12],[21,6],[54,3],[76,3],[71,9],[43,6],[60,6],[78,36],[48,3],[75,3],[3,3]],'acts':[[78,3],[79,3]],'powersave':[[10,3]],'regression':[[10,3]],'automatic':[[4,3],[50,3],[76,3],[11,3],[18,6]],'cycle':[[73,6],[59,3],[78,60],[76,42],[24,3],[60,6],[13,3],[40,3],[79,72]],'playfields':[[79,9]],'pseudo':[[61,3],[78,3],[76,15]],'2000':[[73,6],[80,6],[75,9],[68,9],[3,3],[79,24]],'bmp':[[62,3]],'74ls373':[[79,3]],'customization':[[5,3]],'brackets':[[40,3],[50,3]],'fatal':[[78,3]],'compresses':[[27,3]],'0fe':[[76,3]],'needs':[[59,3],[48,6],[50,6],[60,3]],'specify':[[59,3],[54,3],[75,3],[43,3]],'expertise':[[76,3]],'appliciable':[[79,3]],'encoder':[[49,3],[67,3],[50,3],[3,3],[56,21],[27,3]],'info':[[15,9],[23,6],[66,6],[80,3],[61,3],[75,9],[68,9],[79,3],[11,3]],'understandable':[[50,3]],'receive':[[59,3],[48,3],[27,3]],'patterns':[[46,3],[76,6],[79,3]],'tbl1':[[60,9]],'posting':[[76,3]],'abandoned':[[3,3]],'belonging':[[50,3]],'ungzipping':[[13,3]],'home':[[59,3],[62,3]],'became':[[66,3]],'alot':[[79,3]],'dma':[[78,6],[68,3],[79,3]],'avi':[[15,9],[22,27],[6,3],[28,6],[62,3],[12,3],[13,3],[16,6],[36,6],[11,6],[5,3]],'lower':[[78,27],[76,3],[50,3],[61,3],[72,3],[68,3],[33,3],[79,18],[27,3]],'classics':[[79,3]],'counts':[[59,3]],'wram':[[73,6],[13,3]],'ones':[[49,3],[51,3],[10,3],[79,3]],'unofficial':[[3,3],[10,3],[67,3]],'every':[[73,3],[46,9],[55,12],[38,6],[50,3],[61,6],[12,6],[27,15],[59,12],[54,12],[78,15],[76,12],[71,6],[48,6],[75,3],[79,39],[11,3]],'0000001111100000':[[80,3]],'backtrack':[[61,3]],'envelope':[[76,90]],'flicker':[[79,6]],'fceultra':[[3,3]],'bare':[[60,3]],'smallest':[[59,3],[76,6],[79,3]],'rgba':[[59,6]],'tool':[[53,6],[50,3],[28,3],[44,6],[61,6],[42,3],[68,3],[64,6],[39,18],[5,6],[9,3],[15,9],[23,12],[41,3],[2,3],[43,3],[49,12],[66,45],[48,12],[3,6],[11,3],[65,3]],'jpeg':[[62,3]],'dex':[[78,9]],'industry':[[79,3]],'smb0':[[19,42]],'loaded':[[19,3],[50,3],[61,6],[35,9],[27,3],[59,63],[15,3],[23,12],[29,6],[49,3],[54,3],[4,3],[32,9],[10,6],[40,6],[7,6],[79,18],[38,30],[53,3],[28,12],[13,6],[68,15],[36,12],[8,6],[5,3],[63,3],[78,21],[21,6],[76,12],[43,6],[75,24],[11,12]],'click':[[53,9],[50,39],[45,6],[56,12],[37,3],[17,3],[5,9],[27,3],[29,12],[59,3],[48,9],[40,15],[11,9],[58,6]],'compare':[[41,3],[50,9],[42,3],[56,12],[40,15],[5,6]],'extensively':[[66,3]],'introduction':[[1,6],[55,3],[53,3],[50,3],[0,9],[62,3],[52,3],[22,3],[23,3],[51,3],[54,3],[60,3],[76,3],[40,3]],'affect':[[59,3],[78,9],[40,6],[11,3]],'dc0d':[[78,12]],'edit':[[15,15],[53,33],[50,3],[43,3]],'rips':[[75,6]],'letting':[[59,6]],'laptop':[[11,3]],'f20':[[59,3]],'configurations':[[15,3],[69,3]],'effects':[[81,3],[79,6],[50,3]],'emrwxf':[[50,6]],'enters':[[59,6]],'xing':[[4,3]],'clear':[[55,6],[50,6],[30,9],[37,6],[5,3],[59,12],[78,30],[71,3],[80,3],[48,3],[75,12],[79,3]],'include':[[15,6],[23,3],[71,3],[18,3]],'consists':[[59,3],[53,3],[71,12],[72,3],[79,12],[40,3]],'truth':[[78,3]],'simulation':[[59,3]],'punchouttraining':[[63,3]],'textual':[[67,3]],'2002':[[78,3],[3,6],[79,15],[80,3]],'triggered':[[76,3],[59,3]],'65500':[[73,3]],'002':[[76,3]],'tracing':[[54,3]],'4#p`e@`h#vq':[[78,3]],'languages':[[57,6],[5,3]],'recieve':[[76,3]],'characters':[[15,3],[53,3],[50,3],[71,3],[13,3],[68,3],[75,3],[5,3]],'engine':[[65,3],[5,3]],'045x':[[68,3]],'thrown':[[59,3],[79,3]],'ldx':[[78,45]],'menu':[[1,18],[27,48],[39,3],[59,6],[9,6],[14,3],[15,21],[23,24],[24,12],[29,12],[4,3],[49,6],[48,6],[10,18],[40,15],[7,12],[65,3],[38,60],[30,3],[28,3],[53,6],[12,3],[13,6],[8,9],[5,12],[17,9],[37,3],[21,6],[22,12],[26,18],[6,3],[43,9],[33,6],[11,54]],'approximate':[[59,3],[71,3]],'cld':[[78,3],[68,3]],'playmoviefrombeginning':[[7,3]],'buffing':[[33,3]],'blanking':[[40,3]],'turtles':[[68,3],[46,3]],'forced':[[76,3],[79,3]],'successive':[[78,3]],'bandwith':[[79,3]],'needle':[[76,3]],'speedrun':[[61,3],[66,6],[2,3]],'evaluates':[[61,12],[79,3],[50,3]],'6fff':[[75,3]],'suggest':[[59,3],[36,3],[5,3]],'accordingly':[[27,3]],'sections':[[73,3],[48,3],[79,6]],'interally':[[62,3]],'creation':[[61,3],[12,3],[15,3],[60,3],[62,3]],'emu':[[58,9],[59,135],[9,3],[7,9],[60,21],[8,3],[5,6]],'own':[[50,6],[44,3],[30,3],[56,3],[63,3],[59,3],[15,3],[78,6],[76,3],[79,9],[40,3],[7,3]],'010':[[76,3]],'invertselection':[[5,3]],'044x':[[68,3]],'bookmarked':[[7,6]],'prefixes':[[43,3]],'backgrounds':[[20,3],[79,3],[27,6]],'000':[[68,3]],'rotate':[[78,6]],'d8t`2i':[[78,3]],'empty':[[78,3],[15,3],[71,3],[50,9],[60,9],[35,6],[5,3]],'help':[[1,6],[55,6],[38,18],[44,3],[35,6],[59,3],[15,3],[78,3],[76,3],[60,3],[34,3],[75,3],[11,6],[58,3]],'frame':[[19,12],[50,18],[67,3],[61,18],[27,33],[59,96],[15,3],[23,54],[47,3],[51,3],[24,15],[54,6],[4,3],[60,18],[66,15],[71,15],[10,9],[40,3],[7,15],[79,24],[80,3],[46,12],[38,6],[45,3],[12,6],[13,6],[36,12],[5,9],[22,3],[76,66],[43,3],[72,6],[33,6],[11,21],[58,3]],'instance':[[46,3],[50,3],[61,9],[68,9],[27,3],[17,3],[78,6],[29,3],[60,6],[75,3],[40,3],[7,3],[79,3]],'converter':[[13,3],[23,3],[76,12],[11,3],[65,3]],'composed':[[73,3],[62,3]],'vints':[[79,6]],'resistors':[[76,3]],'correction':[[76,3],[11,3],[35,3]],'next':[[73,6],[30,3],[50,12],[61,15],[68,6],[56,3],[8,3],[27,3],[59,15],[78,48],[76,12],[60,9],[4,3],[48,6],[40,12],[7,3],[79,45]],'kilobytes':[[21,3]],'newtext':[[59,3]],'bit0':[[71,6],[78,3]],'pushed':[[78,12]],'separator':[[71,3]],'mpby':[[73,3]],'04000':[[75,3]],'credit':[[76,3]],'processors':[[78,21],[11,3]],'thread':[[34,3]],'connection':[[78,3]],'c002##comment2':[[50,3]],'xoff':[[73,3]],'date':[[81,3],[80,3],[60,3]],'bandwidth':[[79,3]],'adjust':[[79,3]],'dcfa':[[78,9]],'detection':[[30,3]],'dragged':[[8,3]],'job':[[35,3]],'chibi':[[76,3]],'dincsbc':[[78,12]],'invoked':[[8,3]],'triplet':[[32,3]],'kbfe_j':[[78,3]],'hence':[[59,12],[75,3],[60,3]],'religion_mode_off':[[78,3]],'instantly':[[79,3]],'sev':[[78,6]],'folder':[[27,6],[58,3],[59,6],[63,6],[65,3],[43,9],[28,6],[45,3],[40,3],[5,3]],'rar':[[18,3]],'scoring':[[61,3]],'loopcounter':[[61,3]],'aspiring':[[48,3]],'readbytesigned':[[59,6],[11,3],[60,3]],'interpreted':[[71,3],[79,3]],'hexi':[[43,3]],'cartridge':[[21,6],[68,3],[40,3],[30,3],[79,6]],'vtog':[[73,3]],'irritating':[[59,3]],'beebee':[[61,12]],'automagical':[[78,3]],'snapshot':[[17,3],[23,3]],'digital':[[62,3]],'console':[[35,3],[59,3],[21,3],[23,3],[53,3],[30,3],[66,3],[4,3],[8,6],[5,6]],'logs':[[54,9],[55,3],[8,3]],'had':[[59,3],[78,3],[25,3],[76,3],[2,3],[12,3],[75,3],[79,9],[65,3]],'fields':[[75,6],[56,6],[43,3],[71,3]],'radikus':[[5,3]],'nmi2':[[50,3]],'de0d':[[78,3]],'registerload':[[59,3],[9,6]],'defined':[[48,6],[58,3]],'luabitop':[[59,3]],'willing':[[75,3]],'123':[[78,12]],'verify':[[78,3],[80,3]],'vsync':[[65,3]],'acknowledged':[[76,3]],'prepend':[[13,3]],'highlighting':[[40,3]],'maskable':[[68,3],[76,6],[50,12]],'0800':[[68,6]],'already':[[63,3],[59,9],[54,3],[21,3],[66,3],[48,3],[68,3],[56,3],[79,12]],'dot':[[78,6]],'modal':[[59,6]],'onfinish':[[61,3]],'pins':[[79,9]],'exist':[[63,3],[59,3],[76,6],[52,3],[32,3],[79,6]],'nice':[[54,6]],'disassemble':[[55,3]],'collision':[[79,3]],'frozen':[[43,6],[20,3],[7,6],[11,9]],'metal':[[48,3]],'atop':[[79,3]],'freeze':[[17,6],[59,6],[78,6],[53,6],[60,3],[10,3]],'their':[[50,3],[62,3],[68,3],[37,3],[63,3],[59,3],[15,3],[49,3],[76,6],[71,3],[78,6],[48,9],[33,3],[11,3],[79,3]],'promptly':[[63,3]],'mirr':[[73,3]],'key4':[[61,3]],'|05':[[76,6]],'emulate':[[21,3],[75,6],[30,3],[27,3]],'thinks':[[79,3]],'specifies':[[19,15],[59,12]],'appendix':[[59,3]],'rgb32':[[59,3]],'8bit':[[59,6]],'confirmation':[[6,3],[29,3]],'bypasses':[[11,3]],'tablet':[[30,3]],'libraries':[[59,3],[57,3],[60,3],[62,9]],'decrease':[[76,12]],'that':[[50,60],[61,57],[56,3],[27,12],[15,9],[47,3],[80,9],[2,6],[48,57],[32,6],[57,9],[79,120],[46,3],[38,24],[28,3],[44,3],[81,3],[13,6],[20,6],[68,36],[5,3],[63,21],[21,3],[41,3],[43,3],[11,27],[73,6],[19,3],[39,3],[59,153],[9,9],[14,3],[23,27],[49,6],[51,6],[54,21],[60,36],[66,27],[71,21],[10,15],[40,72],[18,3],[7,21],[65,6],[55,36],[53,30],[30,9],[62,18],[42,3],[52,9],[8,3],[17,9],[78,132],[25,3],[76,87],[6,6],[75,24],[3,15],[58,6]],'okay':[[48,3]],'hq3x':[[35,6]],'wraps':[[81,9],[78,3]],'convertible':[[12,3]],'area':[[59,3],[46,3],[50,3],[48,3],[68,3],[75,9],[79,15],[35,6]],'enemy':[[68,63]],'19th':[[76,3],[79,3]],'suggested':[[59,3]],'disallow':[[8,3],[5,3]],'setmarker':[[59,3]],'first':[[73,12],[50,6],[61,6],[56,6],[35,6],[27,3],[59,18],[9,3],[29,3],[54,12],[71,9],[60,12],[80,9],[48,9],[32,3],[10,3],[79,48],[7,6],[55,3],[45,3],[68,9],[78,39],[21,3],[76,9],[72,6],[75,6],[3,3]],'maxvalue':[[61,36]],'411ah':[[75,3]],'luminance':[[79,12]],'care':[[59,3],[78,3],[76,3]],'points':[[59,3],[61,3],[78,9],[79,3],[5,3]],'demonstrate':[[79,3]],'0000010000011111':[[80,6]],'antony':[[9,3]],'top':[[59,12],[26,3],[50,9],[6,3],[60,3],[40,3],[79,3],[27,3]],'correct':[[59,18],[78,3],[13,3],[10,12],[7,3],[35,6]],'stats':[[68,12]],'family':[[78,6],[21,6],[30,6]],'coding':[[49,3],[60,3]],'below':[[73,3],[78,21],[76,6],[50,15],[60,3],[40,3]],'account':[[59,3],[61,3],[11,3],[50,3]],'kh%r1':[[78,3]],'step':[[78,3],[10,3],[76,24],[50,12]],'actually':[[63,3],[59,18],[78,3],[55,3],[76,9],[61,3],[68,3],[79,15]],'allowudlr':[[19,9]],'stands':[[3,6],[79,3]],'prefix':[[43,9],[50,6]],'filled':[[56,6]],'often':[[78,3],[48,9],[68,9],[66,6],[58,3]],'230':[[59,3]],'constructed':[[58,3]],'plus':[[59,3],[75,3],[53,3],[79,9]],'formula':[[59,3],[75,3],[76,3],[79,3],[43,6]],'abstraction':[[62,3]],'fired':[[79,3]],'really':[[59,3],[78,9],[55,3],[76,3],[80,3],[61,3],[48,12],[79,3]],'edwin':[[78,3]],'tay':[[78,3]],'8184':[[68,3]],'tutorials':[[48,3],[60,3]],'cycling':[[79,6]],'zeropage':[[78,27],[50,3]],'audible':[[76,12]],'wasted':[[79,3]],'mangling':[[48,3]],'onscreen':[[59,3],[5,3]],'playstation':[[3,3]],'putting':[[59,3],[51,3]],'bit':[[73,21],[79,90],[55,6],[50,9],[81,9],[35,3],[59,9],[78,114],[76,219],[71,27],[60,6],[4,6],[72,3],[48,3],[32,6],[75,42],[57,3],[33,6],[40,6]],'audio':[[22,21],[75,6],[55,6],[33,3],[76,3]],'slow':[[78,6],[23,6],[66,9],[60,3],[24,3],[48,3],[40,3],[35,3],[65,12]],'pages':[[78,3],[68,6]],'patchlevel':[[78,3]],'recent':[[8,3],[7,6],[9,3],[15,3],[38,6],[43,6],[10,6],[11,3],[5,6]],'world':[[30,3],[60,9]],'xodnizel':[[3,6],[78,3]],'sets':[[79,3],[19,69],[38,6],[28,9],[35,12],[59,12],[26,15],[78,9],[76,3],[24,6],[34,3],[40,3],[33,12],[11,3]],'total':[[73,3],[59,3],[21,3],[23,3],[76,3],[78,3],[75,3],[40,3],[79,3],[5,6]],'presets':[[15,3],[66,3],[30,9],[28,9]],'substitutions':[[48,3]],'alpha':[[59,27],[5,3]],'vram':[[73,3],[81,3],[68,3],[53,3],[80,12]],'11ff':[[68,3]],'subpix':[[68,6]],'segfault':[[13,3],[5,9]],'killed':[[79,3],[68,3]],'usually':[[78,9],[76,6],[53,3],[67,6],[66,9],[75,3],[68,9],[56,3]],'fcexp':[[71,3]],'rotations':[[78,6]],'believed':[[78,3]],'attrib':[[81,3]],'channels':[[59,3],[75,3],[76,51],[33,6],[11,3]],'neccessary':[[79,3]],'dostuff':[[60,3]],'yet':[[59,3],[78,3],[60,3],[68,6],[10,3],[40,6],[79,3]],'030x':[[68,3]],'prepared':[[59,3]],'teenage':[[68,3],[46,3]],'avoid':[[59,9],[66,3]],'isattemptend':[[61,9]],'into':[[50,9],[67,3],[61,12],[16,3],[56,9],[59,12],[15,6],[29,3],[2,6],[60,3],[48,21],[57,6],[40,3],[7,6],[79,48],[55,6],[53,3],[30,9],[28,3],[45,3],[62,6],[13,3],[68,15],[36,12],[78,12],[21,3],[22,6],[76,15],[43,6],[75,39],[3,3],[11,3],[58,6]],'carrier':[[73,3]],'ch1':[[75,6]],'damaging':[[79,3]],'parsecolor':[[4,3],[59,6],[8,3]],'sum':[[50,9]],'lasereyes':[[63,3]],'enhance':[[79,6]],'timer':[[78,24],[68,3],[76,33]],'`28':[[78,3]],'supports':[[59,3],[23,3],[3,6],[18,9],[5,3]],'varying':[[73,3]],'runtime':[[55,3],[50,6]],'calculates':[[76,3]],'isolate':[[49,3]],'windows':[[40,6],[65,3],[62,12],[44,3],[12,3],[13,3],[35,6],[5,9],[8,6],[59,6],[9,6],[29,6],[4,3],[3,9],[10,3],[11,3],[7,3]],'jamm':[[73,3]],'either':[[50,3],[62,3],[81,3],[68,3],[59,12],[54,6],[78,18],[76,6],[71,6],[48,3],[75,6],[79,6]],'interprets':[[59,3],[79,3]],'fail':[[78,3],[13,3],[48,3],[55,3]],'corruptor':[[55,6]],'myimage':[[59,3]],'gettie1':[[61,3]],'passage':[[66,3]],'big_time_software@hotmail':[[76,3],[79,3]],'branch':[[78,27],[3,12],[2,3]],'win98':[[48,3]],'irrelevant':[[55,3],[71,6]],'getscore':[[61,3]],'successfully':[[78,6]],'“cherry':[[48,3]],'correspond':[[75,3],[68,3]],'gamecube':[[3,3]],'user':[[30,3],[62,6],[12,6],[13,3],[8,3],[5,3],[27,9],[59,54],[21,3],[60,6],[4,3],[3,3],[10,6],[11,9],[79,3]],'rainbowriding':[[63,3]],'hexbackcolorg':[[20,3]],'counting':[[59,3],[75,6],[76,15],[79,3],[50,3]],'copy':[[59,3],[49,3],[29,3],[78,15],[53,9],[48,18],[36,3],[7,3]],'definetely':[[79,3]],'how':[[73,3],[79,21],[1,6],[55,3],[28,3],[81,3],[61,12],[68,6],[56,6],[64,3],[69,3],[63,6],[59,3],[54,3],[78,27],[76,12],[43,6],[48,18],[75,3],[40,3],[57,9],[65,6]],'tracks':[[63,3]],'tbl3':[[60,6]],'serves':[[61,3],[79,3]],'failattempts':[[61,3]],'external':[[59,3],[47,12],[55,12],[62,3],[76,3],[61,3],[32,3],[79,15],[39,6]],'condition':[[76,9],[50,3],[12,3],[32,3],[79,3],[5,3]],'cnrom':[[13,3],[5,3]],'websites':[[48,6]],'certain':[[46,3],[55,3],[30,3],[50,3],[61,12],[63,3],[59,3],[49,3],[54,3],[76,12],[57,3],[79,3],[65,3]],'die':[[68,3]],'pack':[[61,3],[58,3]],'haystack':[[76,3]],'168':[[78,3],[79,3]],'threshold':[[78,3]],'inspired':[[79,3]],'fdsr':[[73,3]],'isolated':[[79,3]],'numpad3':[[59,3]],'stx':[[78,33]],'effected':[[79,3]],'dropped':[[10,3],[8,3]],'4000':[[76,18],[68,3]],'irqa':[[73,6]],'60th':[[23,3]],'plot':[[60,6]],'gtk':[[8,6],[5,6]],'00000011':[[80,3]],'rippers':[[55,3]],'gamepad':[[7,3]],'pulled':[[79,3]],'vrc7':[[75,3]],'047x':[[68,3]],'experiment':[[79,3]],'deselect':[[7,3],[48,3]],'black':[[59,3],[20,9],[79,15],[35,3]],'name':[[73,30],[19,6],[50,30],[61,3],[59,24],[15,3],[23,6],[49,6],[71,3],[48,18],[32,6],[10,3],[40,9],[18,3],[79,48],[28,3],[81,6],[13,3],[52,21],[36,3],[8,9],[5,3],[37,3],[78,3],[6,3],[43,3],[75,9],[3,9],[11,3],[58,3]],'micro':[[10,3]],'sent':[[48,3],[76,12],[40,3],[79,3],[58,3]],'commands':[[1,12],[19,3],[12,3],[37,3],[27,9],[78,12],[9,3],[15,6],[41,3],[71,9],[24,6],[72,3],[57,3],[7,3]],'regions':[[4,3],[13,3]],'248':[[5,3]],'decryption':[[78,3]],'match':[[59,3],[4,3],[13,3],[40,6],[8,3],[35,3]],'endless':[[59,6],[79,3],[60,3]],'attained':[[76,3]],'nitsuja':[[3,3],[25,9]],'nsf':[[9,9],[49,3],[55,30],[50,18],[74,6],[32,3],[75,12],[18,9]],'rti':[[76,3],[78,33]],'familiar':[[75,3],[76,3],[60,3],[58,3]],'227':[[5,3]],'path':[[58,3],[59,6],[21,3],[29,3],[19,12],[4,3],[7,9],[5,6]],'generates':[[76,9],[38,3],[79,3]],'alongside':[[50,3]],'identical':[[59,3],[76,3],[79,3]],'weren':[[76,3]],'accident':[[17,3]],'8502':[[78,18]],'theory':[[78,6]],'cracle':[[65,3]],'adds':[[5,3],[11,3],[9,3],[59,3],[78,6],[28,3],[4,3],[3,6],[10,3],[8,6],[7,6]],'`@yoo0a':[[78,3]],'here':[[38,3],[30,3],[50,6],[53,6],[61,3],[42,3],[20,3],[5,3],[59,12],[78,9],[41,3],[76,15],[24,6],[60,12],[80,3],[48,12],[32,3],[75,9],[40,3],[79,36],[58,3]],'sync':[[5,3],[65,3],[35,12],[11,3]],'scheme':[[72,3],[20,3],[10,3],[79,3]],'directories':[[26,3],[28,3]],'truthvalue':[[59,3]],'hackers':[[67,3]],'reached':[[61,6],[52,6],[79,3],[50,3]],'accumulator':[[73,3],[78,81],[75,6]],'current':[[73,3],[50,18],[67,3],[61,27],[35,6],[27,3],[59,60],[49,6],[23,6],[51,3],[54,3],[24,6],[66,6],[4,3],[71,6],[80,3],[32,3],[40,18],[7,3],[79,9],[55,3],[30,9],[62,3],[12,3],[52,6],[36,3],[68,3],[5,6],[78,12],[21,3],[76,36],[75,3],[3,3],[33,3],[11,9]],'mapper':[[7,3],[5,3],[9,6],[53,3],[50,6],[4,6],[13,3],[8,3],[11,3]],'internet':[[15,3],[26,3],[62,3],[67,3],[31,3],[58,6]],'likelihood':[[21,3]],'disks':[[21,9],[30,3]],'decided':[[48,6],[75,3],[66,3]],'prerender':[[50,3]],'autostart':[[78,3]],'border':[[35,3]],'pch':[[78,48]],'deducted':[[61,3]],'choosing':[[5,3]],'emulation':[[1,3],[19,9],[50,3],[77,3],[35,9],[27,6],[59,15],[23,15],[66,3],[24,39],[60,6],[4,9],[32,6],[40,3],[7,3],[65,3],[38,6],[13,6],[36,3],[5,9],[17,6],[21,3],[22,9],[26,3],[76,3],[34,3],[33,3]],'scale2x':[[35,12]],'character':[[59,3],[53,3],[50,6],[71,3],[48,9],[68,9]],'processes':[[66,3]],'sed':[[78,3],[68,3]],'claimed':[[78,3]],'fceu':[[61,3],[59,12],[9,6],[15,18],[29,3],[47,3],[2,15],[60,3],[65,12],[53,3],[31,6],[28,15],[13,3],[69,3],[5,6],[17,3],[21,3],[22,3],[70,3],[25,18],[26,3],[43,3],[3,36],[11,24]],'tbl':[[53,3],[48,3]],'latching':[[76,6]],'nesting':[[54,3],[5,3]],'whereas':[[78,6],[79,3]],'nametable':[[80,9],[4,6],[13,3],[68,15],[10,3],[79,3],[11,3]],'result':[[59,12],[78,66],[76,12],[53,3],[66,3],[75,3],[32,3],[79,15]],'perform':[[59,6],[78,12],[55,15],[61,3],[75,3],[40,3]],'dmcsize':[[59,3]],'measurements':[[78,3]],'twice':[[76,6]],'mappable':[[11,12],[23,3]],'green':[[59,24],[32,3],[55,6],[60,3]],'codes':[[27,6],[78,6],[49,6],[50,3],[67,3],[56,12],[40,3],[65,3]],'medium':[[59,6]],'receives':[[59,3],[60,3]],'entries':[[79,9]],'binding':[[12,3]],'handy':[[48,3],[68,3],[60,3]],'clocks':[[76,6],[79,9]],'07f':[[76,3]],'xor':[[59,6],[76,6],[60,3]],'l8i':[[78,3]],'impl':[[78,6]],'adjustment':[[25,3],[76,3]],'dump':[[54,3],[38,3],[11,6]],'significantly':[[68,3],[40,3],[7,3]],'incorporating':[[44,3]],'crashes':[[59,3],[60,3],[4,3],[13,9],[11,6],[5,3]],'true':[[59,78],[9,3],[78,3],[71,18],[60,9],[50,3],[61,21],[79,3],[35,3],[58,3]],'execution':[[78,6],[66,3],[50,39]],'0xffff':[[59,6]],'required':[[9,3],[55,3],[19,3],[71,21],[28,3],[4,3],[76,3],[40,3],[79,15]],'previous':[[11,3],[38,27],[45,3],[61,15],[68,3],[8,3],[5,3],[17,3],[59,3],[15,6],[23,3],[70,3],[71,3],[43,3],[76,3],[57,3],[7,3],[40,12]],'full':[[11,6],[59,3],[15,3],[21,3],[55,6],[76,9],[10,3],[36,3],[35,24],[7,3]],'winapi':[[62,15]],'reverted':[[10,3]],'submenus':[[27,3]],'level':[[79,9],[76,9],[71,6],[62,6],[52,9],[33,3],[40,12],[57,3]],'scenario':[[76,3]],'131072':[[78,3]],'d019':[[78,15]],'accesses':[[55,3],[79,6]],'007b':[[75,3]],'hexfreezecolorr':[[20,3]],'restricting':[[59,6]],'sided':[[21,3]],'movie':[[19,42],[67,3],[61,3],[16,9],[27,30],[39,3],[59,201],[9,15],[15,24],[23,180],[66,42],[71,69],[4,9],[10,36],[7,69],[46,3],[38,87],[30,6],[28,3],[44,3],[45,6],[12,12],[13,18],[36,72],[68,9],[8,12],[5,18],[22,18],[26,6],[70,15],[6,6],[43,6],[72,3],[3,6],[11,60]],'dll':[[9,3],[58,6]],'feed':[[79,6]],'caveats':[[59,3],[75,15]],'taking':[[78,6],[76,3],[57,3],[79,6]],'gyp#8':[[78,3]],'somethingistrue':[[60,12]],'compute':[[59,3]],'opponent':[[31,3]],'opcode':[[78,183],[10,6],[50,6]],'exception':[[78,3],[68,3]],'detected':[[18,3],[30,3]],'seem':[[78,9],[79,6]],'quick':[[17,3],[59,6],[50,3],[60,3]],'guess':[[78,3],[79,3]],'official':[[78,6],[75,3],[58,3]],'relate':[[79,3]],'savestate':[[73,3],[19,3],[38,69],[28,3],[12,12],[13,6],[36,18],[8,6],[5,3],[17,36],[27,15],[9,18],[15,21],[23,45],[59,84],[60,30],[66,9],[70,12],[71,21],[10,3],[7,30],[11,9]],'horizontal':[[73,3],[81,3],[52,3],[68,3],[79,30]],'dungeon':[[79,3]],'fashion':[[79,6]],'extraneous':[[21,3]],'simulated':[[59,3]],'logger':[[55,45],[53,3],[67,12],[8,6],[5,6],[9,6],[49,6],[54,27],[4,6],[3,6],[10,3],[11,3]],'architecture':[[51,3],[3,3],[76,3],[79,3],[5,3]],'appear':[[38,6],[50,15],[28,3],[56,6],[8,3],[5,3],[17,3],[59,6],[21,9],[54,3],[76,3],[79,6],[11,6]],'gdimage':[[59,3]],'temporary':[[73,3],[59,3],[78,3],[3,3],[79,24]],'active':[[79,3],[50,3],[28,3],[56,3],[8,6],[59,3],[9,3],[78,3],[76,3],[4,3],[32,3],[40,21],[11,6],[7,3]],'relatively':[[40,3]],'vars':[[61,3]],'1kb':[[73,3]],'shadow':[[4,3],[30,3]],'handle':[[61,3],[12,3],[13,3],[78,6],[60,6]],'f13':[[59,3]],'nametables':[[68,3]],'size':[[73,15],[55,3],[50,15],[13,3],[42,3],[68,6],[35,18],[5,3],[59,30],[21,3],[41,3],[71,15],[75,6],[11,9],[65,3]],'allow':[[11,3],[7,3],[59,3],[19,9],[30,9],[50,6],[71,3],[61,3],[79,6],[35,6],[5,6]],'unlike':[[59,3],[78,6]],'useful':[[79,12],[55,15],[50,6],[12,3],[68,12],[27,3],[59,6],[49,3],[51,3],[54,9],[78,3],[43,3],[48,3],[57,3],[18,3],[58,3]],'cart':[[4,3],[68,6],[79,15],[50,6]],'noticeable':[[59,3]],'arise':[[65,3]],'#34053d':[[60,3]],'vista':[[65,3]],'clarify':[[78,3]],'messageboards':[[76,3]],'project':[[3,6],[4,3]],'nestopia_rgb':[[25,3]],'doliner':[[3,3]],'connecting':[[50,3]],'bpp':[[12,3]],'produces':[[61,3],[76,9],[79,3],[11,6]],'predecessor':[[61,3]],'#bxi':[[78,3]],'dependent':[[78,3]],'assigns':[[26,3]],'programming':[[63,6],[68,3],[57,3],[60,3],[58,3]],'|graphical':[[79,3]],'adders':[[79,3]],'loopy':[[81,6],[80,6]],'manual':[[59,6],[60,3],[44,3]],'dc9d':[[78,12]],'farcry':[[60,3]],'fceud':[[3,12],[25,3]],'executable':[[78,6],[68,6],[3,3]],'ines':[[5,3],[73,3],[50,12],[18,12]],'weird':[[59,3],[78,6]],'programmatically':[[55,9]],'figuring':[[32,3]],'come':[[68,3]],'isfromsavestate':[[59,6],[7,3]],'bios':[[65,6],[21,6],[75,3],[8,3],[28,3]],'swapping':[[9,3],[50,3]],'new':[[50,3],[67,6],[61,24],[56,3],[27,18],[39,3],[59,6],[9,24],[14,6],[15,30],[23,3],[54,3],[60,6],[4,21],[71,6],[48,6],[10,18],[40,3],[7,24],[65,3],[79,15],[55,9],[44,6],[45,3],[12,9],[13,21],[8,12],[5,30],[78,21],[21,6],[25,3],[76,33],[6,12],[43,6],[75,3],[3,9],[11,24]],'opaque':[[59,12]],'dosomething':[[60,3]],'modded':[[59,3]],'jump':[[78,21],[79,6]],'dragging':[[35,6]],'fourth':[[78,3]],'prg':[[68,6],[55,6],[53,6],[56,15]],'drawpixel':[[59,3]],'tasing':[[66,3]],'upward':[[76,3]],'400e':[[76,9]],'register':[[73,21],[59,87],[78,123],[76,84],[80,3],[60,3],[50,12],[75,24],[79,15],[8,3]],'bother':[[76,3],[53,3]],'pushes':[[78,3]],'stderr':[[4,3]],'issegmentend':[[61,9]],'quality':[[33,9],[11,3]],'very':[[73,6],[55,6],[53,3],[31,3],[50,3],[62,3],[68,3],[63,3],[78,24],[49,3],[54,3],[66,3],[60,3],[48,6],[75,9],[40,3],[79,15],[65,3]],'shell':[[59,3]],'0xff':[[78,3]],'wch':[[5,6]],'modules':[[62,9]],'afterwards':[[78,3]],'xnor':[[76,12]],'square':[[79,3],[10,6],[33,6],[60,3],[76,93]],'accounts':[[8,3]],'evaluate':[[50,3],[60,6]],'somethingglobal':[[60,3]],'playback':[[19,6],[61,6],[12,3],[13,3],[36,6],[59,15],[15,3],[22,3],[23,18],[76,12],[4,6],[75,9],[10,12],[7,6],[11,3]],'noise':[[73,3],[59,3],[76,102],[10,9],[33,3],[5,3]],'unif':[[4,3],[18,12],[5,3]],'low':[[78,132],[76,3],[13,3],[33,3],[57,3],[79,9]],'image':[[62,15],[67,3],[52,3],[35,18],[59,27],[21,15],[23,3],[78,6],[60,6],[48,3],[79,15],[65,3]],'examiners':[[78,3]],'analyse':[[79,3]],'though':[[78,6],[51,3],[76,3],[55,3],[53,3],[60,6],[40,3],[79,3]],'opening':[[59,6],[6,3],[4,3],[61,3],[13,3],[40,3],[5,3]],'visual':[[68,3],[29,6],[7,3]],'dots':[[78,6]],'functional':[[9,3],[15,3],[3,3],[8,3]],'difficulty':[[66,3],[58,3]],'deb':[[9,3],[50,9],[5,3]],'bitmap':[[79,39]],'long':[[65,3],[78,3],[15,3],[54,3],[76,18],[66,3],[30,3],[48,3],[3,3],[79,6],[5,3]],'longer':[[8,6],[58,3],[9,3],[15,6],[76,6],[71,3],[13,6],[48,3],[10,12],[11,6],[7,3]],'fetch':[[73,3],[78,327],[79,45]],'lastkey3':[[61,3]],'places':[[75,3]],'registered':[[59,30]],'optimizing':[[66,3]],'divide':[[76,6],[79,3]],'1976':[[78,3]],'cleared':[[61,6],[78,27],[76,6],[7,3]],'positions':[[13,3],[68,9],[79,3],[8,6]],'parameterstack':[[60,3]],'configured':[[11,3]],'pet':[[78,6]],'consecutive':[[78,3],[60,3]],'player3':[[71,3]],'moves':[[4,3],[8,3]],'serial':[[79,3]],'screwed':[[79,3]],'people':[[59,3],[55,3],[76,3],[48,3],[40,3],[64,3],[79,3]],'second':[[73,3],[50,6],[61,3],[13,3],[12,3],[59,12],[54,3],[23,3],[29,3],[66,3],[78,6],[80,9],[75,9],[79,9],[7,3]],'commonly':[[66,3],[48,3],[38,3],[11,3],[62,3]],'scaler':[[7,3],[35,6]],'snapping':[[54,3]],'suitable':[[55,3]],'and':[[50,72],[0,3],[61,93],[77,3],[56,42],[35,42],[27,33],[15,30],[29,6],[47,3],[80,15],[2,9],[24,6],[48,123],[32,12],[57,18],[79,183],[46,21],[38,21],[28,3],[44,3],[81,9],[12,18],[13,21],[20,3],[36,6],[64,12],[5,63],[63,9],[68,51],[21,15],[22,15],[41,6],[69,6],[43,6],[33,9],[11,51],[73,27],[1,15],[19,6],[67,21],[16,3],[39,9],[59,222],[9,27],[23,45],[49,30],[51,6],[54,12],[60,75],[4,12],[66,33],[71,45],[10,27],[40,84],[18,27],[7,69],[65,21],[55,90],[53,39],[30,45],[31,3],[62,42],[42,6],[52,3],[8,30],[17,21],[78,525],[26,3],[25,9],[70,3],[6,15],[76,171],[75,171],[3,93],[58,18]],'messes':[[13,3]],'resurrected':[[3,3]],'still':[[81,3],[36,3],[27,3],[59,12],[22,3],[78,3],[76,9],[60,3],[48,6],[75,6],[10,6],[40,6],[11,3]],'individual':[[59,6],[76,6],[33,9],[11,3],[79,6]],'selectively':[[55,3]],'subdirectory':[[40,3]],'pbl':[[73,3]],'stops':[[59,12],[76,3],[7,3],[60,3]],'pipelines':[[79,6]],'before':[[55,9],[38,3],[50,9],[61,15],[36,3],[8,3],[17,3],[59,33],[21,3],[29,3],[54,6],[66,6],[6,3],[60,6],[76,15],[78,30],[48,6],[75,3],[3,3],[40,3],[79,15]],'256':[[73,3],[59,3],[78,6],[71,6],[61,6],[68,27],[79,21],[11,3],[27,3]],'ignore':[[63,3],[59,3],[61,3],[10,3],[7,3]],'unisystem':[[32,6],[8,3],[30,3]],'implies':[[2,3],[30,3]],'lock':[[13,3]],'various':[[1,3],[38,3],[67,3],[28,3],[61,3],[36,3],[35,3],[27,3],[37,6],[5,6],[15,3],[26,3],[29,3],[59,3],[6,3],[64,3],[76,6],[3,9]],'lacking':[[41,3],[42,3]],'patcher':[[50,3]],'corrupts':[[55,3]],'registering':[[59,18]],'informing':[[60,3]],'030':[[76,3]],'starts':[[78,3],[23,6],[29,3],[71,3],[60,3],[24,3],[61,9],[75,3],[79,12],[7,3]],'|09':[[76,3]],'adding':[[78,3],[23,3],[53,3],[60,3],[4,3],[48,3],[3,6],[56,3],[7,3]],'menus':[[9,3],[26,3],[29,3],[30,3],[48,9],[10,3],[5,6]],'lagcounter':[[13,3]],'brightness':[[32,3],[25,3],[79,3]],'400d':[[76,3]],'rra':[[78,42]],'x64':[[78,6]],'controls':[[76,18],[50,3],[60,3],[30,12],[75,12],[16,3],[10,6],[11,3]],'differences':[[78,3],[76,3],[27,3]],'bases':[[79,3]],'hit':[[54,3],[50,9],[4,3],[61,3],[68,3],[40,3],[8,3],[5,3]],'north':[[21,3]],'highest':[[79,3],[32,3]],'stationary':[[79,3]],'myself':[[60,3]],'switch':[[5,6],[21,18],[29,6],[19,6],[24,3],[48,3],[32,3],[36,3],[40,3],[27,3]],'sha':[[78,27]],'key2':[[61,3]],'163&164':[[13,3]],'icou':[[73,3]],'10000':[[19,3]],'greenzone':[[4,6],[6,3]],'xparent':[[79,6]],'denote':[[61,3],[75,3]],'n#bm#l':[[78,3]],'0fffh':[[75,9]],'0x5000':[[5,3]],'references':[[78,3],[79,3],[50,3]],'stopped':[[59,6],[15,3],[78,6],[76,3]],'initialization':[[55,3],[11,3]],'subject':[[71,9],[80,3]],'compliment':[[76,6]],'anyway':[[63,3],[51,3],[76,3]],'03ff':[[68,3]],'vrcvi':[[75,9]],'kj0':[[78,3]],'yield':[[79,6]],'dd0a':[[78,27]],'inversion':[[79,12]],'formatted':[[48,3]],'delgamegenie':[[59,6],[7,3]],'cartridges':[[30,3]],'pram':[[73,3]],'immed':[[78,6]],'0000110000000000':[[80,3]],'mexr':[[73,3]],'its':[[1,9],[50,9],[0,3],[61,6],[56,3],[35,3],[59,15],[15,6],[66,3],[24,3],[60,3],[32,3],[57,3],[40,6],[7,3],[53,3],[30,3],[44,3],[36,9],[64,3],[5,3],[78,27],[43,3],[75,6],[3,3],[11,9]],'regs':[[59,15],[13,3]],'77ac':[[71,3]],'online':[[60,3],[68,3]],'2011':[[6,3]],'grayed':[[10,6],[11,3]],'deal':[[62,3],[69,3],[60,3]],'approved':[[61,3]],'adequate':[[48,3]],'tetris':[[63,3]],'reasons':[[78,3]],'eval':[[61,9]],'interrupted':[[78,3]],'006fh':[[75,6]],'present':[[52,3],[75,3],[55,3],[71,3],[79,12]],'sophisticated':[[79,3]],'txa':[[78,6]],'pixel':[[59,27],[60,12],[50,3],[79,114],[11,3],[7,9]],'00a2':[[40,3]],'cursor':[[51,6],[4,9],[52,3],[40,3],[35,6],[5,3]],'8kb':[[73,9],[14,3]],'poke':[[40,9],[7,3]],'1986':[[21,3]],'records':[[55,3],[66,3],[71,6]],'cbl':[[73,3]],'sort':[[78,6],[40,3],[60,3],[79,3]],'04015h':[[75,3]],'eraser':[[48,3]],'numpad6':[[59,3]],'sometimes':[[59,3],[48,3],[78,9],[76,3],[79,6]],'problems':[[65,3],[78,3],[35,3],[7,3],[11,3],[64,3]],'style':[[59,3],[21,3],[24,3],[30,3],[3,3],[40,3],[10,3]],'04cx':[[68,3]],'didn':[[59,3],[13,3],[48,3],[40,6],[79,3],[5,3]],'happens':[[59,3],[78,9],[60,3],[48,6],[75,3],[79,3]],'hooking':[[39,3]],'~60':[[9,3]],'info|':[[79,3]],'advantage':[[23,3],[76,3],[57,3]],'breaking':[[50,6]],'prompt':[[60,3],[9,3],[6,3],[7,3]],'context':[[7,6],[5,6],[57,3],[23,3],[29,9],[38,12],[10,6],[40,6],[11,15],[27,6]],'|0b':[[76,3]],'close':[[38,6],[30,3],[53,3],[13,3],[36,6],[27,3],[59,12],[15,3],[78,3],[25,3],[4,3],[48,3],[79,9],[11,6]],'6510':[[78,39]],'terminal':[[76,21]],'savestateas':[[6,3]],'make':[[50,12],[67,3],[61,3],[56,3],[35,9],[27,6],[59,21],[49,6],[23,6],[29,3],[71,3],[60,9],[48,15],[32,3],[10,3],[79,12],[55,12],[38,3],[53,6],[17,6],[63,3],[22,3],[78,3],[76,3],[75,6]],'dey':[[78,3]],'megamanii':[[63,3]],'nreg':[[73,3]],'truncating':[[6,3]],'f19':[[59,3]],'portable':[[3,3],[62,3]],'8160':[[68,3]],'initalizing':[[75,3]],'nesten':[[3,3]],'proper':[[5,3],[75,15],[27,3]],'bigger':[[61,21],[48,3],[78,9],[35,12]],'addresses':[[50,33],[52,3],[68,15],[56,3],[5,3],[59,6],[49,3],[76,3],[43,9],[6,6],[75,3],[10,6],[40,36],[11,12],[79,3]],'universally':[[65,3]],'windows98':[[29,3]],'both':[[18,3],[79,12],[46,3],[55,6],[30,9],[50,6],[62,3],[5,3],[78,27],[9,3],[15,6],[21,3],[23,6],[54,6],[76,18],[80,3],[48,3],[75,9],[40,3],[7,3],[11,3]],'respect':[[79,3]],'any':[[50,18],[61,9],[35,6],[27,9],[59,33],[15,6],[14,3],[23,18],[54,3],[60,12],[71,12],[48,6],[40,12],[7,6],[79,36],[46,3],[55,3],[53,6],[30,3],[62,3],[52,3],[20,3],[68,6],[8,3],[5,6],[17,3],[63,9],[21,3],[22,3],[76,30],[78,54],[75,3],[3,9],[58,3]],'typing':[[40,3],[53,6]],'synchronized':[[50,3]],'0a00':[[68,3]],'008':[[76,6]],'structure':[[58,3]],'transfering':[[78,3]],'declare':[[58,3]],'controllers':[[26,3],[30,12],[27,3]],'hl2n@':[[78,3]],'parentheses':[[50,3]],'evolution':[[2,3]],'whereby':[[53,3]],'collapsible':[[11,3]],'dictates':[[59,3]],'overlap':[[78,3]],'february':[[76,3]],'about':[[1,6],[38,6],[50,3],[0,3],[62,3],[68,3],[64,3],[69,3],[59,12],[78,6],[76,3],[60,6],[48,12],[75,3],[10,3],[57,3],[11,3],[79,9]],'artifacts':[[35,6]],'fequency':[[76,3]],'manually':[[59,3],[23,3],[30,3],[50,3],[81,3],[48,3],[79,3]],'value':[[73,9],[50,12],[61,18],[56,30],[27,6],[59,69],[15,12],[71,54],[60,15],[48,3],[32,3],[10,9],[79,36],[40,117],[7,6],[53,15],[81,6],[20,6],[5,3],[78,102],[76,114],[43,36],[75,6],[11,12]],'calculating':[[78,3]],'whose':[[78,3]],'breaks':[[78,3],[79,3],[8,3],[50,3]],'bero':[[3,3]],'interesting':[[55,3]],'operations':[[59,9],[78,30],[53,3],[50,3],[62,6]],'f15':[[59,3]],'abbr':[[79,3]],'deletes':[[7,3]],'score':[[61,9],[10,3],[30,6]],'formats':[[15,3],[1,3],[70,6],[18,15],[62,3]],'takes':[[59,6],[78,12],[76,3],[50,3],[60,3],[44,3],[61,3],[13,3],[75,3],[79,9],[35,3]],'disables':[[76,3],[19,6],[40,3]],'key1':[[61,9]],'controlled':[[75,3],[76,3],[79,3],[50,6]],'fffb':[[78,3],[68,3]],'decays':[[76,3]],'mistake':[[53,3],[60,6]],'bd2ox':[[78,3]],'bounds':[[8,6],[5,3]],'move':[[59,3],[61,3],[68,3],[55,12]],'spec':[[75,9]],'headers':[[73,3],[7,3]],'outputting':[[22,3],[32,3]],'none':[[59,3]],'t%_87':[[78,6]],'extensions':[[18,6]],'showfps':[[5,3]],'hard':[[15,3],[23,3],[55,6],[71,6],[24,3],[48,3],[11,3]],'clicked':[[59,3]],'experiments':[[76,3]],'typical':[[79,3],[68,3]],'cmos':[[78,30]],'enhancements':[[79,3],[9,3],[15,12],[12,3],[13,3],[3,3],[10,9],[8,3],[11,6]],'uninstall':[[12,3]],'upon':[[17,3],[59,3],[29,3],[55,3],[66,3],[76,15],[79,3]],'2010':[[7,6],[8,3]],'runs':[[59,30],[54,3],[66,3],[50,15],[31,3],[60,3],[61,3],[3,3],[11,6]],'exits':[[59,3],[61,3]],'sakura':[[48,6]],'whyandhow':[[66,3]],'optimized':[[15,3]],'fulscreen':[[5,3]],'searching':[[15,3],[54,3],[58,3]],'oninputend':[[61,3]],'determined':[[78,3],[75,9],[71,3],[79,3]],'nulled':[[73,3]],'gradius':[[63,3]],'assemblers':[[67,3]],'sachen':[[5,3]],'duh':[[48,3]],'intelligent':[[55,3]],'metadata':[[15,3],[23,15],[38,12],[11,3]],'represent':[[76,15],[53,3],[71,9]],'use':[[50,24],[61,15],[56,3],[35,3],[27,3],[29,3],[47,6],[48,39],[32,6],[57,9],[79,21],[46,3],[28,3],[12,3],[13,3],[68,15],[5,9],[63,15],[22,3],[43,9],[33,3],[11,3],[73,3],[1,6],[19,3],[67,3],[39,6],[59,42],[9,3],[49,3],[54,12],[66,12],[60,6],[10,3],[40,15],[7,6],[65,9],[55,6],[53,6],[30,21],[31,3],[45,6],[62,3],[8,3],[78,45],[76,3],[75,18],[3,6],[58,6]],'involving':[[7,6]],'esc':[[29,3],[27,3]],'contributed':[[76,3]],'katakana':[[48,3]],'customlagindicator_rvt':[[5,3]],'globally':[[59,3]],'writepixel':[[59,3]],'onattemptend':[[61,3]],'ram':[[73,27],[1,3],[50,30],[67,3],[61,3],[39,6],[59,18],[9,12],[15,3],[49,12],[54,3],[60,3],[66,12],[4,9],[10,3],[40,27],[7,9],[79,30],[55,6],[53,18],[42,12],[68,78],[64,9],[5,15],[21,3],[41,12],[6,12],[43,12],[75,33],[3,3],[11,12]],'sconsruct':[[13,3]],'inputcfg':[[8,3],[12,3]],'identifier':[[71,6]],'header':[[73,21],[59,9],[21,6],[71,12],[75,12],[8,3],[18,3]],'0319':[[78,3]],'backcolor':[[59,9]],'2005':[[73,3],[81,6],[80,9]],'studying':[[76,3]],'contains':[[73,6],[50,6],[62,3],[5,3],[63,3],[78,12],[23,3],[76,12],[71,3],[60,3],[48,3],[3,6],[40,3],[79,3]],'|0f':[[76,3]],'auto':[[46,9],[38,33],[30,27],[50,3],[12,3],[13,3],[36,3],[8,3],[5,3],[27,18],[39,9],[23,3],[66,6],[4,15],[75,6],[7,6],[11,15]],'tasedit':[[8,6],[11,3],[6,3]],'botloop':[[61,9]],'1100000000000000':[[80,3]],'advance':[[11,3],[50,6],[67,3],[61,3],[27,9],[59,15],[54,3],[23,27],[47,3],[66,12],[24,15],[4,3],[40,6],[33,6],[58,3]],'part1':[[50,3]],'applicable':[[79,6]],'years':[[3,3],[79,3]],'real':[[53,6],[35,6],[27,3],[5,3],[78,18],[76,6],[80,3],[60,3],[75,3],[10,3],[79,3],[40,3]],'construct':[[57,3]],'graphic':[[49,3],[79,3],[8,3],[5,3]],'asr':[[78,3]],'128':[[78,21],[79,6],[11,6],[50,6]],'25%':[[59,6]],'p3f':[[59,3]],'element':[[59,3],[79,15]],'rests':[[79,3]],'symbols':[[50,3]],'functionality':[[62,6],[13,6],[7,6],[8,3]],'sconscripts':[[10,3]],'dac':[[76,24]],'clean':[[48,3]],'6500':[[78,15]],'hokeys':[[27,3]],'returned':[[73,6],[59,3],[78,3],[76,3],[61,18],[79,6]],'memw':[[43,3]],'~50':[[9,3]],'wanted':[[78,3],[79,3]],'began':[[3,6]],'somthing':[[79,6]],'4bits':[[75,3]],'clc':[[78,3]],'map':[[53,3],[30,3],[61,3],[68,45],[37,9],[17,3],[27,12],[9,3],[15,3],[21,6],[23,12],[24,3],[26,3],[49,3],[76,3],[33,3]],'they':[[73,3],[50,3],[67,3],[61,3],[59,6],[54,6],[66,3],[60,3],[48,3],[10,3],[79,21],[18,3],[55,12],[28,3],[13,3],[52,6],[68,6],[8,3],[5,3],[63,9],[78,27],[25,3],[41,3],[76,3],[75,6]],'md5_asciistr':[[10,3]],'language':[[78,3],[49,3],[60,6],[61,3],[48,9],[57,3],[58,3]],'then':[[50,12],[61,27],[56,21],[27,6],[59,42],[15,3],[23,12],[29,3],[51,3],[54,9],[60,39],[71,9],[48,6],[32,6],[40,6],[7,6],[79,15],[55,18],[53,6],[45,6],[36,3],[37,3],[78,21],[76,21],[43,9],[75,33],[3,3],[58,3]],'resulted':[[11,3]],'copied':[[45,3],[78,15],[48,3],[79,3]],'coloring':[[55,3]],'php':[[78,12]],'requested':[[79,6]],'mention':[[79,3]],'backup':[[8,3],[27,3],[38,9],[36,12],[11,3],[65,3]],'toggle':[[73,3],[79,3],[19,33],[38,9],[12,12],[13,3],[5,3],[27,6],[15,6],[14,3],[23,3],[29,3],[80,3],[10,3],[40,15],[11,9],[7,6]],'pad':[[3,3],[30,18]],'beginnign':[[7,3]],'numerous':[[19,3],[15,6]],'saying':[[48,6],[50,3]],'ways':[[63,3],[54,3],[55,3],[71,3],[60,3],[32,3],[79,3]],'postings':[[76,3]],'capacitance':[[76,3]],'splicing':[[66,3],[71,3]],'builds':[[55,3],[13,3]],'paiting':[[60,3]],'attach':[[30,3]],'matthew':[[76,3]],'power':[[30,12],[61,3],[13,3],[12,6],[68,3],[5,6],[59,3],[23,6],[71,12],[24,12],[72,3],[40,3]],'essence':[[66,3]],'4004':[[76,18]],'ing':[[49,3]],'mainly':[[76,3]],'savescreenshot':[[59,3]],'pictures':[[27,3]],'identify':[[79,3]],'mustrollback':[[61,3]],'p00':[[59,3]],'spike':[[76,9]],'adjusted':[[78,3]],'sign':[[59,3],[48,9],[78,6]],'repeating':[[79,3]],'manipulating':[[61,3],[50,3]],'additional':[[78,6],[9,3],[1,3],[76,3],[38,3],[50,6],[3,3],[57,6],[79,3],[65,3]],'overflow':[[78,39],[13,3]],'65c816':[[78,3]],'upgrade':[[13,3]],'translate':[[48,9]],'broke':[[10,3]],'normally':[[78,6],[54,6],[76,6],[62,6],[50,6],[48,3],[27,3]],'earliest':[[79,3]],'`j@xn':[[78,3]],'subroutines':[[55,3]],'fourscore':[[71,18],[13,3]],'would':[[79,57],[46,3],[55,15],[50,3],[12,6],[13,9],[68,18],[27,3],[59,6],[78,12],[76,6],[48,9],[32,3],[10,3],[40,3],[18,3],[75,3]],'mis':[[5,3]],'overhaul':[[44,3],[15,3],[79,3],[7,3],[11,3]],'uncheck':[[48,3],[32,3],[35,6],[30,3]],'li#v7':[[78,6]],'z`_d2n@09':[[78,3]],'times':[[59,3],[78,3],[76,3],[66,6],[43,3],[61,3],[75,6],[68,3],[79,21],[35,12]],'target':[[59,3],[66,3],[79,3]],'chr':[[73,6],[55,9],[52,3],[13,9],[79,6],[5,6]],'association':[[78,3]],'authors':[[3,3]],'manners':[[60,3]],'borders':[[35,3]],'irql':[[73,3]],'framework':[[61,6]],'original':[[47,3],[76,3],[50,6],[2,3],[3,6],[40,6],[11,3],[56,3]],'four':[[73,9],[53,3],[30,9],[68,3],[35,6],[78,9],[21,3],[4,3],[72,3],[48,3],[10,3],[7,3]],'lagframe':[[59,3]],'chips':[[79,3],[75,3]],'borrow':[[78,3]],'maintained':[[8,3]],'mnemonics':[[71,3]],'ntsc':[[27,3],[35,12],[59,3],[23,3],[71,3],[2,3],[75,36],[32,15],[79,24],[7,3],[5,3]],'revision':[[78,33]],'engineers':[[78,3],[79,3]],'0500':[[68,3]],'rb`xh8':[[78,3]],'activation':[[76,3]],'switching':[[81,3],[12,3],[21,6],[55,3],[56,3]],'grayscale':[[32,6],[79,3],[5,3]],'bitwise':[[59,3],[60,9]],'trim':[[48,3]],'highlight':[[45,3],[48,3]],'periods':[[79,3]],'aspect':[[4,3],[35,18],[76,3],[11,3],[5,3]],'custom':[[59,3],[51,3],[55,3],[24,6],[62,3],[4,6],[32,12],[79,3],[11,3]],'admittedly':[[48,3]],'counters':[[76,27],[50,9],[10,3],[79,9],[11,3],[5,3]],'looped':[[76,3],[59,3]],'highly':[[61,6]],'typically':[[68,3],[76,6],[38,6],[79,3]],'pbrate':[[75,6]],'u%_':[[78,3]],'cycles|':[[79,3]],'0007':[[75,3]],'padding':[[4,3]],'par':[[40,3]],'holder':[[75,3]],'large':[[59,3],[13,3],[61,3],[79,3],[50,3]],'x00fd':[[43,3]],'j0`zgx':[[78,3]],'porst':[[3,3]],'ghz':[[35,3]],'objects':[[79,45],[57,3],[60,3],[27,3]],'06ff':[[68,3]],'ale':[[79,6]],'sufficient':[[80,3]],'airman':[[79,3]],'informative':[[7,3]],'skipping':[[12,3],[11,3],[27,3]],'count':[[59,15],[78,3],[76,99],[71,3],[43,9],[19,3],[79,9],[7,6],[8,3]],'lagcount':[[59,3],[11,3]],'rst':[[50,6]],'gdscreenshot':[[59,3],[60,3]],'applications':[[78,6],[60,3],[62,9]],'damage':[[40,3]],'see':[[73,3],[19,21],[50,6],[61,9],[27,9],[59,24],[15,3],[23,9],[51,3],[54,6],[24,6],[60,9],[66,3],[71,3],[48,6],[32,3],[80,3],[40,3],[79,15],[65,6],[46,3],[55,15],[38,3],[53,6],[44,6],[81,3],[12,6],[68,15],[36,3],[5,6],[17,3],[37,3],[78,45],[25,3],[76,33],[43,3],[75,15],[3,12],[11,24]],'inclusive':[[61,3],[60,3]],'slowest':[[24,3]],'frequencys':[[76,12]],'illegal':[[78,3]],'reduces':[[68,3]],'stripped':[[55,27],[5,3]],'connected':[[78,3],[21,3],[76,6],[79,9]],'fails':[[27,3]],'uint64':[[71,3]],'%xh`':[[78,3]],'600':[[78,9]],'0x100':[[73,3]],'allows':[[38,3],[30,9],[31,3],[50,6],[53,12],[61,3],[20,3],[37,6],[27,6],[59,3],[9,3],[15,3],[22,3],[29,3],[24,3],[43,3],[49,15],[60,3],[48,3],[32,3],[66,3],[40,6],[57,6]],'esper':[[8,3]],'indiana':[[6,3]],'000c':[[75,3]],'clears':[[78,9]],'lae':[[78,3]],'fd%j':[[78,3]],'bot':[[59,6],[15,6],[47,6],[66,3],[61,66],[57,6]],'warcraft':[[60,3]],'hundred':[[62,3]],'emulators':[[7,3],[59,3],[9,6],[23,3],[36,3],[8,3],[5,3]],'ended':[[61,6]],'031x':[[68,3]],'ideal':[[76,3],[66,3]],'altered':[[23,3]],'crossings':[[78,9]],'many':[[73,3],[61,3],[54,3],[9,3],[15,6],[29,3],[60,3],[2,3],[4,3],[48,3],[32,3],[40,3],[7,3],[79,3],[55,6],[53,3],[42,3],[52,3],[68,3],[8,3],[5,9],[63,3],[78,15],[21,6],[41,3],[6,6],[43,6],[75,3],[3,6],[11,9]],'toggled':[[15,3],[36,3],[6,3],[27,12]],'raised':[[61,6],[79,6]],'alter':[[51,3],[67,3]],'19ff':[[68,3]],'dffa':[[50,3]],'7000':[[75,3]],'0a000h':[[75,3]],'qfox':[[3,3],[60,3]],'act':[[66,3]],'happen':[[81,3],[78,3],[76,3]],'improbably':[[61,3]],'desire':[[76,3],[54,3]],'_f_':[[78,3]],'uses':[[1,3],[61,6],[16,3],[59,12],[15,9],[71,12],[60,6],[80,3],[48,3],[79,6],[40,6],[65,3],[7,3],[55,3],[38,3],[45,3],[68,3],[78,9],[25,3],[76,6],[43,3],[75,39],[3,3],[11,3]],'microphone':[[7,9],[30,12]],'routines':[[78,3],[49,3],[54,3],[55,3]],'tecgraf':[[62,9]],'inspection':[[50,3]],'nnnn':[[55,3],[50,9]],'floppy':[[21,6]],'agree':[[80,3]],'anytime':[[4,3],[23,3]],'knew':[[48,3]],'mirrors':[[68,3]],'flop':[[79,3]],'vbl':[[50,3]],'patent':[[79,3]],'seen':[[15,3],[68,3],[66,3]],'primary':[[79,27]],'cheats':[[7,3],[5,6],[49,3],[59,12],[43,6],[28,6],[4,9],[60,3],[40,57],[8,12],[11,15]],'combine':[[78,3],[55,18],[50,3]],'variables':[[73,3],[54,3],[60,9],[61,18],[75,6],[10,3],[58,6]],'installation':[[48,3]],'embedded':[[59,3]],'asymmetery':[[76,3]],'bitmaps':[[79,9]],'readbyteunsigned':[[59,6]],'inside':[[59,12],[12,3],[79,9],[50,3]],'25th':[[79,6]],'watched':[[43,3]],'last':[[73,9],[19,3],[50,6],[35,6],[27,12],[59,12],[15,12],[23,3],[80,3],[48,6],[10,6],[79,6],[40,15],[55,3],[38,33],[68,6],[36,9],[5,3],[78,18],[76,6],[43,3],[72,3],[3,12],[11,3]],'oninputstart':[[61,9]],'polls':[[59,3]],'rol':[[78,33]],'x_functions':[[63,3]],'4bit':[[75,12]],'discrete':[[79,3]],'starting':[[55,3],[50,15],[17,3],[59,12],[78,3],[29,3],[76,6],[66,6],[71,3],[75,21],[10,3],[79,6],[7,3]],'spra':[[73,3]],'prevention':[[11,3]],'red':[[59,21],[60,3],[4,3],[32,3],[10,3],[27,3]],'zd`92r%_':[[78,3]],'04bx':[[68,3]],'8th':[[78,6],[79,3]],'carrying':[[79,3]],'document':[[73,6],[78,6],[76,12],[38,9],[79,18]],'kanji':[[48,15]],'minimize':[[11,3],[15,3]],'deterministic':[[23,3]],'prints':[[78,6],[13,3],[8,3]],'001c':[[43,6]],'conclusion':[[76,3]],'brothers':[[68,6]],'somewhat':[[73,6],[76,3],[60,3],[72,3],[75,6],[40,3],[35,3],[79,9]],'lsb_first':[[12,3]],'try':[[65,3],[59,18],[54,3],[78,6],[55,3],[60,3],[61,3],[48,6],[52,3],[56,3],[58,3]],'0310':[[68,6]],'easily':[[59,6],[78,3],[41,3],[53,6],[50,6],[61,6],[79,9]],'blobs':[[71,3]],'referred':[[73,3],[72,3],[23,3],[3,3]],'disksys':[[28,6],[21,6],[65,6]],'latches':[[78,6],[79,3]],'support':[[7,6],[53,3],[62,9],[12,3],[13,12],[8,3],[5,9],[59,3],[15,6],[76,3],[6,3],[48,6],[75,6],[3,6],[40,3],[11,6],[10,6]],'seconds':[[38,6],[78,6]],'opposed':[[48,3],[40,3],[79,12]],'selections':[[48,12]],'hold':[[15,6],[80,3],[66,3],[30,27],[79,3],[35,3]],'00xx':[[68,3]],'possibly':[[55,3],[53,3],[60,3],[61,3],[48,3],[7,3]],'select':[[79,24],[53,3],[30,15],[45,9],[61,3],[27,3],[17,12],[59,6],[21,3],[22,18],[23,27],[71,15],[43,9],[60,6],[78,3],[48,15],[40,3],[33,3],[7,3]],'loops':[[59,3],[60,6]],'faults':[[6,3]],'coordinates':[[59,6],[68,15],[79,3]],'prioritized':[[79,12]],'hell':[[79,3]],'displayed':[[79,3],[19,6],[50,12],[52,6],[36,3],[56,3],[27,3],[59,3],[49,3],[23,3],[71,12],[43,3],[4,3],[40,6],[11,3],[7,3]],'independent':[[62,3]],'vrom':[[73,3],[5,3]],'frameadvance':[[60,15],[59,6],[61,3],[24,6],[58,6]],'orange':[[59,9]],'quiz':[[30,3]],'smb':[[63,21],[51,3],[19,48],[11,3]],'easy':[[55,3],[53,3],[60,3],[71,3],[75,3],[79,3]],'lagged':[[59,3],[11,3]],'accurate':[[76,3],[78,3]],'b000':[[75,3]],'pfpixel':[[79,3]],'completing':[[66,3]],'speeds':[[13,3],[24,3]],'041x':[[68,3]],'kicked':[[59,6]],'distinguish':[[59,3],[78,3],[55,6],[7,3]],'good':[[61,3],[40,3],[79,12]],'007bh':[[75,3]],'october':[[78,3]],'carry':[[59,3],[78,51],[76,9]],'watches':[[6,3]],'outside':[[75,3],[68,3],[79,3],[7,3]],'03xx':[[68,3]],'9030':[[75,3]],'among':[[41,3],[42,3]],'bi&':[[78,12]],'indicate':[[79,3],[58,3]],'underlaps':[[79,3]],'~diego':[[62,3]],'257':[[59,3]],'price':[[79,3]],'dance':[[11,3]],'thus':[[59,6],[78,3],[55,3],[60,3],[36,3],[79,3]],'ignores':[[12,3]],'|07':[[76,6]],'look':[[65,3],[28,3],[61,3],[12,6],[13,3],[35,3],[63,3],[59,6],[78,3],[60,3],[72,3],[48,9],[75,3],[3,3],[79,15],[7,3],[58,3]],'1000000':[[75,3]],'old':[[67,6],[13,3],[5,3],[27,15],[59,3],[54,3],[78,6],[76,12],[4,6],[10,3],[79,3],[65,9]],'5206':[[75,12]],'f22':[[59,3]],'fairy':[[78,3]],'04ex':[[68,3]],'light':[[55,6]],'9th':[[78,3]],'104':[[79,3]],'colored':[[53,3],[35,3],[79,3]],'60fps':[[27,3],[34,3],[65,3]],'squeeze':[[48,3]],'certainly':[[57,3]],'ought':[[78,3]],'firing':[[59,12],[79,3]],'marko':[[78,12]],'zip':[[32,3],[19,6],[7,3],[18,12]],'built':[[63,6],[62,3],[6,3],[3,3],[56,6],[58,3]],'readonly':[[19,21],[59,12]],'emulates':[[69,3],[21,3],[30,6],[24,9]],'comes':[[65,3],[78,9],[25,3],[61,3],[48,3],[32,3],[40,3],[79,3],[27,3]],'override':[[7,3],[65,3],[30,3],[28,3],[12,3],[27,3],[59,6],[15,3],[26,3],[43,3],[40,3],[11,9],[33,3]],'fceuxd':[[65,3],[3,24],[25,3],[2,3],[53,3]],'ends':[[61,6],[78,6],[71,3],[7,3],[50,3]],'icoa':[[73,3]],'7f2':[[76,3]],'07ff':[[68,24],[6,3],[50,3]],'exe':[[65,6],[27,3],[58,3]],'vba':[[42,3],[36,3],[41,3],[7,3]],'pads':[[30,6]],'pane':[[59,3],[5,3]],'numpad4':[[59,3]],'toggling':[[27,3],[79,6],[15,6],[23,3],[6,3],[30,6],[3,3],[10,3],[11,6],[8,3]],'parantheses':[[60,3]],'imposed':[[66,3]],'2a03':[[76,39],[68,12]],'4002':[[76,15]],'comparisons':[[78,6]],'kh#f1':[[78,3]],'damn':[[79,3]],'c150':[[78,3]],'paddle':[[59,3],[71,3],[30,9]],'fffc':[[50,3],[68,3]],'interpreter':[[60,3]],'immaterial':[[79,3]],'execute':[[78,3],[54,3],[76,3],[50,15],[58,3]],'perhaps':[[59,3],[48,3],[78,3]],'gate':[[76,6]],'removed':[[35,3],[9,3],[15,6],[55,3],[4,3],[68,3],[3,3],[79,6],[11,3],[5,3]],'technique':[[66,6]],'choices':[[15,3],[32,3],[18,3],[7,3]],'missing':[[8,3],[12,3]],'method':[[79,6],[59,9],[78,6],[76,3],[40,6],[35,6],[27,3]],'8ch':[[75,3]],'radiobuttons':[[5,3]],'pen':[[48,3]],'calculations':[[59,3]],'erroneous':[[7,3],[11,3]],'indexed':[[78,39],[79,3]],'game':[[73,3],[19,9],[50,15],[67,24],[61,3],[16,3],[56,48],[35,6],[27,63],[59,36],[9,6],[15,3],[23,27],[29,12],[24,3],[49,27],[4,9],[51,3],[48,30],[32,15],[54,9],[40,27],[18,6],[60,3],[65,24],[66,15],[71,3],[79,21],[55,36],[38,21],[30,9],[53,27],[13,6],[52,9],[68,27],[8,9],[5,6],[17,9],[63,9],[21,9],[43,12],[6,3],[75,3],[3,3],[11,9]],'initial':[[78,6]],'tons':[[75,3]],'lacked':[[76,3]],'toolkit':[[62,6]],'clipping':[[19,3]],'arcade':[[24,3],[75,3]],'xx00':[[78,6]],'clipsides':[[19,6]],'specifically':[[63,3],[59,3],[23,3],[61,3],[13,3],[68,6],[57,3]],'acknowledge':[[78,24]],'boundary':[[59,3],[78,60]],'restart':[[17,3],[59,3],[61,3],[29,3]],'booklet':[[78,3]],'2009':[[9,3],[10,3],[11,3]],'misplaced':[[59,3]],'getnote':[[59,3]],'split':[[79,3],[68,3]],'changes':[[78,6],[9,3],[15,3],[76,3],[53,3],[60,6],[48,6],[3,3],[79,3],[11,3],[5,6]],'knowing':[[63,3]],'fans':[[67,3]],'goemon':[[8,6]],'numbering':[[59,6],[7,3],[11,6]],'test':[[17,3],[78,30],[23,3],[50,9],[48,6],[10,9],[79,3]],'desyncs':[[65,3],[23,3]],'addressed':[[56,3]],'desmume':[[42,3],[41,3],[7,3]],'plays':[[23,3],[55,3],[19,6],[38,6],[75,3],[68,3],[7,3]],'rightclicks':[[5,3]],'hue':[[79,3],[32,3]],'eof':[[75,3],[76,3],[71,3],[79,3]],'255':[[73,3],[59,21],[78,12],[32,3],[20,27],[40,3],[8,3],[79,3]],'completely':[[59,12],[78,6],[23,3],[6,3],[44,3],[61,3],[79,3],[11,3],[5,3]],'trainer':[[30,3]],'writebyte':[[59,3],[60,3]],'snd':[[73,6]],'dd9d':[[78,3]],'zxcvzxcv@netzero':[[81,6],[80,6]],'blurred':[[35,3],[65,3]],'wide':[[53,3]],'wish':[[58,3],[63,3],[22,3],[54,3],[53,3],[50,9],[45,3],[56,3],[37,3]],'pcejin':[[41,3],[42,3]],'slightly':[[81,3],[59,3],[75,3],[76,3]],'individuals':[[76,6]],'track':[[59,3],[9,3],[68,3],[55,9],[43,3]],'lost':[[13,6],[23,3],[15,3],[48,3],[53,3]],'are':[[50,45],[61,27],[35,6],[27,6],[15,6],[80,15],[48,51],[32,3],[57,3],[79,117],[46,6],[38,9],[28,18],[81,3],[13,6],[20,9],[36,3],[68,21],[5,6],[63,12],[21,3],[41,6],[43,3],[33,3],[11,27],[73,15],[19,3],[67,9],[59,57],[9,3],[23,6],[54,3],[66,9],[60,48],[71,39],[4,3],[10,3],[40,24],[7,6],[18,9],[65,6],[55,24],[53,9],[62,15],[42,6],[8,6],[17,3],[78,114],[76,81],[75,30],[58,12]],'syncronization':[[76,3],[79,6]],'others':[[78,3],[46,3],[55,3],[76,6],[67,3],[5,3]],'music':[[75,36],[48,3],[68,9],[76,3]],'multiples':[[76,3],[35,3]],'2006':[[73,3],[81,3],[3,12],[79,6],[80,12]],'notes':[[59,18],[78,30],[55,3],[71,3],[76,6],[4,3],[81,3],[68,3]],'cancelled':[[66,3]],'reloading':[[10,3],[76,6]],'layers':[[62,3]],'claims':[[78,3]],'getcurrentbranch':[[59,3]],'naturally':[[76,3],[79,6]],'modulus':[[41,3],[42,3]],'vic20':[[78,6]],'q_s8':[[78,3]],'agrees':[[80,3]],'112':[[59,12]],'holding':[[4,3],[23,3],[57,3],[24,6]],'throught':[[55,3]],'|03':[[76,3]],'tadd':[[73,3]],'load':[[19,12],[50,9],[61,3],[27,15],[59,18],[15,9],[23,3],[29,9],[47,3],[60,33],[4,3],[48,12],[32,6],[10,3],[40,9],[7,6],[18,6],[65,3],[55,3],[38,9],[53,3],[28,3],[12,6],[36,9],[8,12],[17,12],[63,9],[21,3],[78,15],[25,3],[76,30],[43,12],[75,39],[11,3]],'setselection':[[59,3]],'unf':[[18,3]],'skip':[[63,3],[59,3],[15,3],[46,3],[13,6],[11,6],[27,6]],'collected':[[62,3],[1,3]],'obtain':[[55,3]],'reflect':[[10,3]],'paused':[[59,9],[50,6],[5,6]],'listings':[[37,3]],'villigust':[[75,3]],'weapon':[[68,6],[46,3]],'enough':[[63,3],[48,3],[68,3],[79,6]],'skips':[[60,3]],'chapters':[[26,3],[1,3],[69,3]],'prevents':[[15,3],[23,3]],'260':[[79,3],[50,3]],'gdi':[[62,3]],'aki':[[78,3]],'11111111':[[80,3]],'01ah':[[75,3]],'sei':[[78,6]],'build':[[48,3],[12,9],[13,6],[3,3],[10,3],[11,6],[5,6]],'enlist':[[5,3]],'backspace':[[59,3]],'run':[[65,3],[46,3],[50,21],[61,12],[35,6],[27,3],[63,9],[59,18],[49,3],[78,27],[66,6],[60,6],[80,3],[3,6],[11,6],[58,21]],'interface':[[29,3],[62,3],[3,6],[79,3],[40,3],[8,6]],'inputs':[[17,3],[59,6],[66,3],[30,3],[61,6],[13,9],[57,3],[79,3]],'indicating':[[59,3],[79,3]],'happily':[[78,3]],'tar':[[18,3]],'groups':[[10,3],[27,3]],'f21':[[59,3]],'densetsu':[[5,3]],'three':[[73,3],[78,9],[53,3],[50,12],[60,3],[30,3],[61,6],[48,6],[79,3],[35,6]],'random':[[61,39],[48,3],[68,3],[76,42],[78,6]],'rarely':[[78,3],[54,3],[68,3]],'127':[[59,15],[78,3]],'2400|':[[68,3]],'relevant':[[55,3],[73,3]],'okcancel':[[59,3]],'aware':[[60,3]],'distributed':[[67,3]],'redesign':[[4,3]],'processtable':[[60,6]],'getscreenpixel':[[59,9],[7,3]],'rio':[[62,9]],'forward':[[73,3]],'strobed':[[76,3],[79,3]],'oddities':[[78,3]],'&6':[[78,3]],'129':[[79,3]],'5ff7':[[75,6]],'hypershot':[[30,3]],'clearmarker':[[59,3]],'0x60':[[78,3]],'immediate':[[78,27],[7,3],[50,3]],'shakes':[[10,3]],'patching':[[13,3],[49,3],[40,3],[18,9],[50,3]],'numpad1':[[59,3]],'fceu_setrenderplanes':[[11,3]],'designated':[[76,3]],'j3c0b%a@':[[78,3]],'nintendo':[[17,3],[21,6],[68,6],[3,6],[79,18]],'compressed':[[15,3],[18,6]],'lda':[[55,3],[78,138]],'goto':[[40,9],[7,6]],'advancing':[[15,3],[5,3]],'hexified':[[71,3]],'#228844':[[59,3]],'numlock':[[59,3]],'patient':[[75,3]],'exram':[[79,3],[75,9]],'newname1':[[50,6]],'anywhere':[[76,3],[78,6]],'abbreviation':[[78,3]],'reverses':[[59,3]],'notation':[[60,9]],'tracking':[[66,3]],'somewhere':[[48,6],[50,3]],'solutions':[[61,3]],'lagging':[[27,6]],'false':[[59,84],[9,3],[71,3],[60,6],[61,15],[79,3],[11,3]],'things':[[63,3],[59,3],[29,3],[55,9],[53,3],[60,3],[76,6],[75,3],[79,3]],'dffc':[[50,3]],'overcome':[[66,6]],'tells':[[59,3],[55,3],[58,3]],'waveforms':[[76,3]],'txs':[[78,12]],'transition':[[27,3]],'002e':[[75,3]],'obviously':[[81,3],[78,3]],'ideally':[[79,3]],'hereon':[[76,3],[79,3]],'organization':[[11,3]],'tint':[[79,3],[32,3]],'mamiya':[[75,9]],'optional':[[59,9],[71,27],[50,6],[60,6],[12,3],[75,3],[10,6],[40,3],[8,3]],'man':[[40,15]],'escape':[[59,3],[11,3]],'hexfreezecolorg':[[20,3]],'makers':[[66,3]],'0200':[[50,3],[68,6]],'cfg':[[27,6],[14,3],[19,12],[12,3],[13,9],[10,6],[20,6],[7,3],[11,6]],'mode':[[79,3],[19,3],[38,3],[12,3],[13,3],[36,9],[68,3],[35,18],[27,3],[59,24],[78,102],[23,24],[29,9],[76,60],[6,3],[24,6],[60,3],[75,9],[10,3],[33,3],[11,6],[7,18]],'duty':[[76,33],[59,6]],'producing':[[76,6]],'0be':[[76,3]],'zelda':[[55,3],[79,3],[30,3]],'welcome':[[1,3]],'gui':[[58,3],[61,6],[8,21],[5,9],[17,3],[59,135],[9,3],[15,3],[26,3],[29,6],[6,12],[60,27],[4,6],[3,3],[10,6],[11,6],[7,15]],'per':[[19,6],[35,3],[27,6],[59,18],[21,3],[76,3],[60,3],[48,3],[32,3],[75,6],[79,24],[11,6]],'uncompressed':[[15,3]],'whitespace':[[48,3]],'n#l':[[78,3]],'after':[[73,3],[55,3],[19,6],[50,6],[61,12],[13,3],[36,9],[35,3],[59,12],[21,3],[22,3],[76,15],[71,9],[60,12],[78,57],[4,3],[72,6],[48,3],[75,12],[40,3],[79,42]],'clicking':[[53,6],[30,6],[50,18],[56,3],[35,3],[17,3],[59,3],[9,3],[15,6],[23,6],[51,3],[40,15]],'mismatch':[[12,3]],'palettes':[[51,6],[32,12],[25,12],[79,3],[65,3]],'requirement':[[63,3],[57,3]],'desyncing':[[61,3]],'speedometeronly':[[63,3]],'expose':[[79,3]],'should':[[73,3],[79,21],[46,3],[55,3],[53,6],[30,3],[50,6],[81,3],[61,18],[12,6],[35,12],[63,3],[59,12],[78,18],[76,6],[71,9],[60,3],[48,21],[32,3],[3,3],[75,33],[7,3],[58,3]],'updating':[[11,3],[5,3]],'usage':[[59,21],[55,3],[43,3],[62,15],[13,3],[48,3],[3,3],[75,3]],'brings':[[59,3],[68,3],[38,3],[6,3],[40,3]],'white':[[59,12],[20,3]],'e000':[[55,3],[75,12]],'noisey':[[76,3]],'00ff':[[68,6],[40,3],[50,3]],'preferably':[[59,6]],'famicom':[[30,30],[28,3],[13,3],[16,6],[69,3],[17,3],[21,21],[76,3],[71,3],[2,3],[6,3],[24,6],[3,3],[40,6]],'bugs':[[5,6],[11,3],[9,3],[15,3],[6,6],[4,6],[13,3],[10,3],[7,9],[8,3]],'generally':[[59,3],[78,6],[76,6],[67,6],[68,9],[79,6]],'nrom':[[11,6]],'continue':[[76,3],[66,3],[61,3],[32,3],[79,3],[27,9]],'patch':[[12,3],[49,3],[40,6],[50,18]],'smb2u':[[63,3]],'#ce_2gpl`ki7rbp':[[78,3]],'converted':[[45,3],[23,3],[76,3],[65,3]],'define':[[4,3],[59,3],[48,3],[73,3],[24,3]],'alu':[[78,6]],'components':[[59,9],[76,3],[40,3],[50,3]],'2746924':[[10,3]],'timed':[[66,3]],'discard':[[68,3]],'4001':[[76,6]],'sai`':[[78,6]],'wavelength':[[76,84]],'%02x':[[59,3]],'operational':[[78,18]],'030f':[[68,3]],'acknowledgement':[[79,3]],'actions':[[23,3]],'branches':[[15,6],[3,3],[53,3],[2,3],[65,3]],'turn':[[59,3],[78,3],[29,3],[23,3],[30,3],[33,3],[27,6]],'occur':[[78,15],[76,3],[79,9],[43,3],[27,3]],'decodes':[[78,3]],'raster':[[78,12],[50,3]],'odd':[[78,18],[46,3],[76,3],[81,3],[75,3],[10,3],[79,12]],'thingy':[[48,18]],'parse':[[5,3]],'indeterminate':[[78,3]],'bad':[[61,3],[48,6],[75,3],[50,6],[65,3]],'16k':[[50,9]],'pick':[[22,3],[13,3],[7,3]],'graphics':[[26,3],[55,9],[62,6],[67,3],[20,6],[79,15],[35,3],[27,6]],'33554432':[[78,3]],'depends':[[59,3],[78,6],[71,3]],'tunes':[[75,21]],'mutant':[[68,3],[46,3]],'undo':[[38,24],[50,3],[53,6],[42,3],[56,3],[27,3],[17,18],[78,3],[23,3],[41,3],[66,6],[11,6]],'likely':[[63,3],[48,3],[54,3],[76,3]],'equivelant':[[79,3]],'sre':[[78,39]],'theme':[[29,3]],'syntax':[[57,3],[60,6],[58,3]],'mean':[[40,3],[48,3]],'exclusive':[[61,3],[78,6],[76,6],[79,6]],'whether':[[59,9],[54,15],[23,3],[55,24],[19,12],[61,21],[48,6],[68,3],[36,6],[5,3]],'sub':[[28,3],[26,6],[24,3],[27,9]],'differing':[[75,3]],'acknowledges':[[78,6]],'november':[[9,3],[12,3],[3,9],[5,3]],'werefolf':[[6,3]],'visualization':[[54,3],[62,3],[5,3]],'|_____|_____|':[[68,6]],'able':[[59,3],[15,3],[76,3],[30,3],[48,6],[79,3],[7,3]],'arred':[[78,3]],'cpuc':[[73,6]],'jsr':[[78,6],[50,9]],'@xcey':[[78,3]],'0x8000':[[73,6]],'amount':[[79,9],[78,6],[15,3],[54,6],[76,6],[68,3],[33,3],[35,6],[56,3]],'all':[[73,6],[19,3],[50,15],[61,9],[16,3],[56,3],[59,24],[9,6],[15,6],[23,6],[71,6],[2,6],[24,3],[60,12],[80,6],[48,21],[10,6],[40,27],[18,6],[7,3],[79,48],[46,3],[38,3],[30,3],[28,3],[45,3],[53,3],[13,3],[20,3],[68,36],[5,6],[17,3],[37,6],[63,6],[78,36],[76,30],[6,3],[75,15],[3,3],[11,15]],'displays':[[59,9],[9,3],[23,3],[49,3],[43,6],[50,6],[13,3],[52,3],[5,3]],'stripping':[[55,3]],'joined':[[3,3],[72,3]],'lazy':[[79,3],[11,3]],'chirps':[[11,3]],'delete':[[59,3],[40,6],[50,3]],'adelikat':[[68,3],[3,6],[1,6],[71,3]],'beq':[[78,6]],'near':[[76,3],[40,3]],'assignments':[[26,6],[76,12],[30,6],[37,3]],'depths':[[59,3]],'pipelined':[[79,3]],'minimum':[[32,3],[7,3],[11,3]],'coolest':[[53,3]],'them':[[55,3],[50,9],[61,15],[12,3],[56,3],[8,3],[35,3],[63,15],[59,9],[49,3],[64,3],[25,3],[76,3],[78,15],[80,3],[48,15],[75,6],[40,12],[18,3],[79,12]],'hellraiser':[[79,3]],'08fffh':[[75,6]],'instruction':[[78,186],[54,12],[68,3],[55,6],[50,30]],'%03d':[[71,6]],'retain':[[54,3]],'dlljjbbb':[[72,3]],'readimmediate':[[59,3]],'piano':[[4,3]],'variety':[[6,3],[11,3]],'lives&hpdisplay':[[63,3]],'0077h':[[75,9]],'lasts':[[78,3]],'musical':[[76,3]],'least':[[73,3],[59,6],[78,9],[38,3],[60,6],[72,3],[48,3],[32,3],[75,3],[79,3],[35,3]],'redirecting':[[78,3]],'purposes':[[78,3],[68,3],[76,3],[79,3]],'bit3':[[76,6],[71,6]],'factors':[[4,3],[35,3]],'directly':[[15,9],[76,9],[53,15],[50,6],[20,3],[79,3]],'enableoppositedirectional':[[5,3]],'change':[[56,9],[35,6],[27,9],[59,12],[23,3],[48,3],[32,3],[10,3],[79,3],[7,3],[38,12],[30,6],[53,6],[13,6],[20,3],[52,3],[68,3],[8,3],[37,3],[78,15],[21,3],[76,15],[43,18],[72,3],[75,9],[11,6]],'scripts':[[58,3],[59,6],[9,3],[14,6],[15,3],[63,36],[28,6],[61,3],[12,3],[8,6],[5,3]],'renders':[[76,3],[79,9]],'fortunate':[[78,3]],'followings':[[18,3]],'9_s8':[[78,3]],'sending':[[62,3]],'status':[[73,6],[38,12],[19,15],[50,6],[52,9],[68,3],[36,3],[27,3],[59,12],[51,3],[23,12],[76,51],[78,9],[79,9],[7,3]],'complete':[[59,3],[22,3],[78,3],[55,3],[66,6],[80,3],[75,6]],'fatratknight':[[63,3],[9,3],[1,3]],'attempts':[[61,30],[55,3],[35,3]],'iterate':[[60,3]],'intruction':[[78,3]],'array':[[59,6],[50,6]],'russian':[[78,3]],'flags':[[78,75],[50,12],[75,9],[10,3],[79,3],[7,3],[11,3]],'rolling':[[76,3],[61,3]],'jopi':[[78,21]],'remains':[[78,9],[79,6]],'inservice':[[79,3]],'remembers':[[11,12],[15,6]],'banks':[[73,6],[75,12],[56,3],[50,3],[5,3]],'resource':[[57,3],[15,3]],'luabot':[[61,33]],'our':[[63,3],[78,3]],'best':[[61,15],[54,6],[79,3],[2,3],[35,3]],'punchoutstats':[[63,3]],'traditionally':[[66,3],[78,3]],'multitude':[[10,3],[11,3]],'mapped':[[17,3],[21,6],[23,6],[55,3],[53,3],[50,3],[24,3],[76,3],[68,3],[27,12]],'bvs':[[78,6]],'kernal':[[78,6]],'everywhere':[[79,3]],'preceding':[[78,3],[50,3]],'0006':[[75,3]],'handler':[[78,15],[68,9],[76,3]],'video':[[19,6],[67,6],[61,3],[13,3],[35,6],[5,6],[17,3],[78,6],[22,15],[26,6],[51,6],[4,3],[79,33],[11,6],[65,6]],'backlash':[[23,3]],'dd08':[[78,6]],'integrated':[[79,3],[76,3],[57,3],[62,3],[66,3]],'snes9x':[[59,3],[42,3],[36,3],[7,3],[60,12]],'opened':[[15,6],[50,6],[28,3],[13,3],[20,3],[8,3],[18,3]],'routed':[[79,3],[30,3]],'interfaces':[[62,3]],'checking':[[8,3],[59,3],[55,3],[30,3],[61,3],[11,3],[35,12]],'046x':[[68,3]],'equals':[[48,9],[76,3],[79,9],[60,3]],'stretched':[[35,9]],'solid':[[59,6]],'preserves':[[78,3]],'jsrs':[[54,3]],'considered':[[59,3],[71,6],[60,3],[79,9]],'remaining':[[73,3],[68,9],[71,9],[79,3]],'schemes':[[79,3]],'pausing':[[7,3]],'message':[[5,9],[59,42],[15,3],[21,9],[78,6],[71,3],[4,3],[13,3],[11,9],[8,3]],'types':[[73,3],[46,3],[62,3],[61,3],[17,3],[59,3],[21,6],[78,6],[76,6],[71,9],[7,3],[18,12]],'undocumented':[[76,3],[78,21]],'prompts':[[5,3]],'display':[[19,6],[50,15],[35,3],[27,45],[59,3],[51,6],[14,3],[23,12],[4,3],[48,3],[79,3],[7,18],[46,3],[12,3],[13,6],[20,3],[36,3],[52,27],[5,15],[63,3],[78,6],[6,6],[43,12],[11,3]],'arrays':[[60,9]],'c004#newname2#':[[50,3]]}; \ No newline at end of file diff --git a/help/toc.html b/help/toc.html index e4afb4e6..d9417766 100644 --- a/help/toc.html +++ b/help/toc.html @@ -579,6 +579,12 @@ target="FrameMain"> Lua Bot +