games/weshgrowWesh Grow$data/tiles.pngdefault controllerLeftTriggerRightShoulderRightTriggerdata/fx_engine_start.wavdata/fx_engine_loop.wavdata/fx_bonus.wavdata/fx_crash.wavdata/bu-blue-and-crazed.oggdata/bu-legs-of-heads.oggdata/map%d.tmxdata/title.tmx13weshgrow_game($8%N3lol12InputProfileE %07loading level %s N3lol12TextureImageE((   N3lol7TileSetE(@PN3lol6CameraE(@ 0lua/init.luaN3lol18ApplicationDisplayE(x~N3lol5Lolua6LoaderEloading Lua file %s could not find Lua file %s Lua error %s (new Error).stackDEBUGINFOWARNERROR%s: vert.glslfrag.glslh[failed to compile vertex shader %s: %s shader source: %s compile log for vertex shader %s: %s failed to compile fragment shader %s: %s compile log for fragment shader %s: %s failed to link program %s: %s link log for program %s: %s failed to validate program %s ddddddee(e8eHeXehepeeunable to parse attribute semantic from name: %s attribute %s not found in shader %s #version{#version 130#version 120in vec2attribute vec2varying vec2in vec3attribute vec3varying vec3in vec4attribute vec4varying vec4in mat4attribute mat4varying mat4out vec2out vec3out vec4out mat4 ;} N3lol6ShaderE(X[header@\N5pegtl11basic_debugEN5pegtl10debug_baseEN5pegtl11nocopy_impl6nocopyINS_10debug_baseEEE[[ \([(\pegtl: ../external/pegtl-0.32/include/pegtl/parse_generic.hhparseN5pegtl11parse_errorE(\8h]h]\]]\80 0!"NSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE( ]0^#$ NSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE(](N5pegtl3seqIJN3lol12lolfx_parser6headerENS_4starIJNS2_6shaderEEEEEEE := ,N5pegtl4starIJN3lol12lolfx_parser6shaderEEEEN5pegtl3seqIJN3lol12lolfx_parser5titleENS2_12code_sectionEEEEN5pegtl7ifapplyINS_5untilINS_2atINS_3sorIJN3lol12lolfx_parser12title_ignoreENS_3eofEEEEEEJNS5_9code_lineEEEENS5_7do_codeEJEEEN5pegtl5untilINS_3eolEJNS_3anyEEEEN5pegtl3anyEattempt to read beyond end of input\%& parsing aborted at N5pegtl3sorIJNS_3eofENS_4crlfENS_2lfENS_2crEEEEN5pegtl3eofEN5pegtl2atINS_3sorIJN3lol12lolfx_parser12title_ignoreENS_3eofEEEEEEN5pegtl3sorIJN3lol12lolfx_parser12title_ignoreENS_3eofEEEEN5pegtl3seqIJNS_3oneIJLi91EEEENS_4plusIJNS_7not_oneIJLi93EEEEEEENS1_IJLi93EEEENS_5untilINS_3eolEJNS_3anyEEEEEEEN5pegtl3oneIJLi93EEEEN5pegtl4plusIJNS_7not_oneIJLi93EEEEEEEN5pegtl7not_oneIJLi93EEEEN5pegtl3oneIJLi91EEEEN5pegtl3seqIJNS_3oneIJLi91EEEENS_7ifapplyINS_4plusIJNS_7not_oneIJLi93EEEEEEEN3lol12lolfx_parser8do_titleEJEEENS1_IJLi93EEEENS_5untilINS_3eolEJNS_3anyEEEEEEEN5pegtl7ifapplyINS_4plusIJNS_7not_oneIJLi93EEEEEEEN3lol12lolfx_parser8do_titleEJEEE( )* | $ $N3lol12lolfx_parser7do_codeEN5pegtl5untilINS_2atINS_3sorIJN3lol12lolfx_parser12title_ignoreENS_3eofEEEEEEJNS4_9code_lineEEEE{ }eolN5pegtl3eolEN3lol12lolfx_parser9code_lineE& / &eof]"+"[^N3lol12lolfx_parser12title_ignoreEN3lol12lolfx_parser12code_sectionEN3lol12lolfx_parser8do_titleEN3lol12lolfx_parser5titleEN3lol12lolfx_parser6shaderEN3lol12lolfx_parser6headerEN3lol12lolfx_parser5lolfxEin_Positionin_BlendWeightin_BlendIndicesin_Normalin_PointSizein_TexCoordin_TexCoordExtin_Tangentin_Binormalin_TessFactorin_PositionTin_Colorin_Fogin_Depthin_Samplestream #%d with usage %x not found in declaration       cannot initialise GLEW: %s trying to bind key to nonexistent input device %s trying to bind nonexistent key %s.%s trying to bind axis to nonexistent input device %s trying to bind nonexistent axis %s.%s h'(controller “%s” has already been registered N3lol10ControllerE(PJoystick%dJoystick[vert.glsl] #version 130 attribute vec3 in_Position; attribute vec2 in_TexCoord; varying vec2 pass_TexCoord; uniform mat4 u_projection; uniform mat4 u_view; uniform mat4 u_model; void main() { gl_Position = u_projection * u_view * u_model * vec4(in_Position, 1.0); pass_TexCoord = in_TexCoord; } [frag.glsl] #version 130 #if defined GL_ES precision mediump float; #endif uniform sampler2D u_texture; uniform vec2 u_texsize; varying vec2 pass_TexCoord; void main() { vec4 col = texture2D(u_texture, pass_TexCoord); if (col.a == 0.0) discard; gl_FragColor = col; } [vert.hlsl] void main(float4 in_Position : POSITION, float2 in_TexCoord : TEXCOORD0, uniform float4x4 u_projection, uniform float4x4 u_view, uniform float4x4 u_model, uniform float2 u_texsize, out float2 out_TexCoord : TEXCOORD0, out float4 out_Position : POSITION) { float2 delta = float2(0.0, 0.0); out_Position = mul(u_projection, mul(u_view, mul(u_model, in_Position))); out_TexCoord = in_TexCoord + delta; } [frag.hlsl] void main(float2 in_TexCoord : TEXCOORD0, uniform sampler2D u_texture, out float4 out_FragColor : COLOR) { float4 col = tex2D(u_texture, in_TexCoord); out_FragColor = col; } [vert.glsl] #version 120 attribute vec3 in_Position; attribute vec2 in_TexCoord; varying vec2 pass_TexCoord; uniform mat4 u_projection; uniform mat4 u_view; uniform mat4 u_model; void main() { gl_Position = u_projection * u_view * u_model * vec4(in_Position, 1.0); pass_TexCoord = in_TexCoord; } [frag.glsl] #version 120 #if defined GL_ES precision mediump float; #endif uniform sampler2D u_texture; uniform sampler2D u_palette; uniform vec2 u_texsize; varying vec2 pass_TexCoord; void main() { vec4 pal = texture2D(u_texture, pass_TexCoord); vec4 col = texture2D(u_palette, vec2(pal.x, 0.0)); if (pal.x == 0.0) discard; gl_FragColor = col; } [vert.hlsl] void main(float4 in_Position : POSITION, float2 in_TexCoord : TEXCOORD0, uniform float4x4 u_projection, uniform float4x4 u_view, uniform float4x4 u_model, uniform float2 u_texsize, out float2 out_TexCoord : TEXCOORD0, out float4 out_Position : POSITION) { float2 delta = float2(0.0, 0.0); out_Position = mul(u_projection, mul(u_view, mul(u_model, in_Position))); out_TexCoord = in_TexCoord + delta; } [frag.hlsl] void main(float2 in_TexCoord : TEXCOORD0, uniform sampler2D u_texture, out float4 out_FragColor : COLOR) { float4 col = tex2D(u_texture, in_TexCoord); out_FragColor = col; } [vert.glsl] #version 130 attribute vec4 in_Position; attribute vec4 in_Color; varying vec4 pass_Color; uniform mat4 u_projection; uniform mat4 u_view; void main() { if (in_Position.w > 0.5) gl_Position = vec4(in_Position.xyz, 1.0); else gl_Position = u_projection * u_view * vec4(in_Position.xyz, 1.0); pass_Color = in_Color; } [frag.glsl] #version 130 #if defined GL_ES precision mediump float; #endif varying vec4 pass_Color; void main() { gl_FragColor = pass_Color; } [vert.hlsl] void main(float4 in_Position : POSITION, float4 in_Color : COLOR, uniform float4x4 u_projection, uniform float4x4 u_view, out float4 out_Color : COLOR, out float4 out_Position : POSITION) { out_Position = mul(u_projection, mul(u_view, in_Position)); out_Color = in_Color; } [frag.hlsl] void main(float4 in_Color : COLOR, out float4 out_FragColor : COLOR) { out_FragColor = in_Color; } hproject dir: “%s” solution dir: “%s” source subdir: “%s” ../src/../src/binary dir: “%s” data dir %d/%d: “%s” @N3lol8SafeEnumINS_14StreamTypeBaseENS1_4TypeEEEN3lol14StreamTypeBaseE(7(0StdInStdOutStdErrFileFileBinarywbImage::Load: Codec %s succesfully loaded %s. Image::Load: Last codec %s, Error loading image %s. 8 )*N3lol9PixelDataILNS_11PixelFormatE6EEEN3lol13PixelDataBaseE(0+,N3lol9PixelDataILNS_11PixelFormatE5EEE(h0-.N3lol9PixelDataILNS_11PixelFormatE4EEE(0@/0N3lol9PixelDataILNS_11PixelFormatE3EEE(012N3lol9PixelDataILNS_11PixelFormatE2EEE(p0 !"#34N3lol9PixelDataILNS_11PixelFormatE1EEE(0wb*$N3lol13SdlImageCodecEN3lol10ImageCodecE*(**.RSCp<%N3lol13ZedImageCodecE(X<*.pal0N& N3lol20ZedPaletteImageCodecE(N*Pb' N3lol14OricImageCodecE(8b*@0t( N3lol15DummyImageCodecE(t*%d frames required to quit 56N3lol6EntityE`78N3lol5WorldE(P 9:N3lol11WorldEntityE(;<cannot initialise SDL: %s cannot create rendering window: %s (=>N3lol13SdlAppDisplayEN3lol6SdlAppE?@N3lol8SdlInputE(h()AB  could not load sample %s: %s N3lol6SampleE(X(MAXMouseKeyboardUnknownWhateverABDEFGHIJKMNOPQRSTUVWXYZ1234567890ReturnEscapeBackspaceTabSpaceMinusEqualsLeftBracketRightBracketBackslashNonUSHashSemicolonApostropheGraveCommaPeriodSlashCapsLockF1F2F3F4F5F6F7F8F9F10F11F12PrintScreenScrollLockPauseInsertHomePageUpDeleteEndPageDownRightLeftDownUpNumLockClearKP_DivideKP_MultiplyKP_MinusKP_PlusKP_EnterKP_1KP_2KP_3KP_4KP_5KP_6KP_7KP_8KP_9KP_0KP_PeriodNonUSBackslashApplicationPowerKP_EqualsF13F14F15F16F17F18F19F20F21F22F23F24ExecuteHelpMenuSelectStopAgainUndoCutCopyPasteFindMuteVolumeUpVolumeDOwnKP_CommaKP_EqualsAS400International1International2International3International4International5International6International7International8International9Lang1Lang2Lang3Lang4Lang5Lang6Lang7Lang8Lang9AltEraseSysReqCancelClearPriorReturn2SeparatorOutOperClearAgainCrSelExSelKP_00KP_000ThousandsSeparatorDecimalSeparatorCurrencyUnitCurrencySubunitKP_LeftParenKP_RightParenKP_LeftBraceKP_RightBraceKP_TabKP_BackspaceKP_AKP_BKP_CKP_DKP_EKP_FKP_XorKP_PowerKP_PercentKP_LessKP_GreaterKP_AmpersandKP_DblAmpersandKP_VerticalBarKP_DblVerticalBarKP_ColonKP_HashKP_SpaceKP_AtKP_ExclamKP_MemStoreKP_MemRecallKP_MemClearKP_MemAddKP_MemSubtractKP_MemMultiplyKP_MemDivideKP_PlusMinusKP_ClearKP_ClearEntryKP_BinaryKP_OctalKP_DecimalKP_HexadecimalLCtrlLShiftLAltLGuiRCtrlRShiftRAltRGuiModeAudioNextAudioPrevAudioStopAudioPlayAudioMuteMediaSelectWWWMailCalculatorComputerAC_SearchAC_HomeAC_BackAC_ForwardAC_StopAC_RefreshAC_BookmarksBrightnessDownBrightnessUpDisplaySwitchKbdIllumToggleKbdIllumDownKbdIllumUpEjectSleepApp1App2CapsLockStatusScrollLockStatusNumLockClearStatusMiddleInScreenXPixelYPixelScrollCursorDPadUpDPadDownDPadLeftDPadRightLeftThumbRightThumbLeftShoulderRightshoulderStartBackAxis1Axis2Axis3Axis4Axis5Axis6`@stack traceback: ...Slnt %s:%d: in (...tail calls...)bad argument #%d (%s)calling '%s' on bad selfbad argument #%d to '%s' (%s)Sl%s:%d: invalid option '%s'stack overflow (%s)buffer too large=stdin@%sopenrbreopenreadobject length is not a number__tostring%s: %ptoo many upvaluesmultiple Lua VMs detectedversion mismatch: app. needs %f, Lua core provides %fbad conversion number->int; must recompile Lua with proper settingsPANIC: unprotected error in call to Lua API (%s) cannot %s %s: %s%s expected, got %sffunction '%s'main chunkfunction <%s:%d>attempt to %s %s '%s' (a %s value)attempt to %s a %s valueconcatenateperform arithmetic onattempt to compare two %s valuesattempt to compare %s with %sglobalfieldupvalueconstantmethodfor iteratormetamethod=[C]=?mainLua(*temporary)(*vararg)C stack overflowattempt to yield across metamethod/C-call boundaryattempt to yield from outside a coroutinebinarytextattempt to load a %s chunk (mode is '%s')error in error handlingcannot resume non-suspended coroutineno messageerror in __gc metamethod (%s)packagecoroutinebit32math0*8+@,H-P.X/`0h1p2x3456789:;<ȝ=Н>؝?@ABCDpihugeabsacosasinatan2atanceilcoshcosdegexpfloorfmodfrexpldexplogmaxminmodfpowradrandomrandomseedsinhsinsqrttanhtaninterval is emptywrong number of argumentstoo many %s (limit is %d)memory allocation error: block too big_CLIBSȡEСFsearcherspathLUA_PATH_5_2LUA_PATH/usr/local/share/lua/5.2/?.lua;/usr/local/share/lua/5.2/?/init.lua;/usr/local/lib/lua/5.2/?.lua;/usr/local/lib/lua/5.2/?/init.lua;./?.luacpathLUA_CPATH_5_2LUA_CPATH/usr/local/lib/lua/5.2/?.so;/usr/local/lib/lua/5.2/loadall.so;./?.so/ ; ? ! - config_LOADEDloaded_PRELOADpreload8Grequire'package.searchers' must be a tablemodule '%s' not found:%s;;;;LUA_NOENV/ no module '%s' in file '%s'error loading module '%s' from file '%s': %s_luaopen_%sdynamic libraries not enabled; check your Lua installation'package.%s' must be a string? no file '%s'r no field package.preload['%s']loadlibsearchpathabsentinitnNxX%invalid option '%%%c' to 'lua_pushfstring'[string ""]`qATPP\l< at line %d not inside a loopno visible label '%s' for at line %d at line %d jumps into the scope of local '%s'labels/gotos%s expectedsyntax errorC levels cannot use '...' outside a vararg functionself or '...' expectedlocal variablesfunctionsitems in a constructormain functionfunction at line %dtoo many %s (limit is %d) in %sfunction arguments expectedunexpected symbollabel '%s' already defined on line %d'=' or 'in' expected(for generator)(for state)(for control)(for index)(for limit)(for step)%s expected (to close %s at line %d)upvaluesnot enough memoryHIJKLM N(O0P8Q@RHSPTXUbytechardumpfindformatgmatchgsublenlowermatchrepreversesubupperresulting string too largetoo many capturesinvalid capture indexunfinished capturemissing '[' after '%%f' in patterninvalid capture index %%%dmalformed pattern (ends with '%%')malformed pattern (missing ']')malformed pattern (missing arguments to '%%b')invalid pattern capture^$*+?.([%-string/function/table expectedinvalid replacement value (a %s)invalid use of '%c' in replacement stringnot a number in proper rangenot a non-negative number in proper rangeinvalid option '%%%c' to 'format'\%d\%03d-+ #0invalid format (repeated flags)invalid format (width or precision too long)unable to dump given functionvalue out of rangestring slice too longtable index is niltable index is NaNtable overflowinvalid key to 'next'VWX Y(Z0[concatinsertpackunpackremovesortinvalid order function for sortingtoo many results to unpacknwrong number of arguments to 'insert'invalid value (%s) at index %d in table for 'concat'no valuebooleanuserdatanumberstringtablethreadprotoupval8 (08Ьج (0@__index__newindex__gc__len__eq__add__sub__mul__div__mod__pow__unm__lt__le__concat__callbinary string  truncated%s: %s precompiled chunkcorruptednot aversion mismatch inincompatible%.14gindexloop in gettableloop in settablestring length overflowget length of'for' initial value must be a number'for' limit must be a number'for' step must be a number_Gx\]^_`abcdȯeЯfدghijklpmn o0p8qLua 5.2_VERSIONassertcollectgarbagedofileerroripairsloadfileloadnextpairspcallprintrawequalrawlenrawgetrawsetselecttonumbertostringtypexpcallvalue expectedstack overflowbase out of range __metatablecannot change a protected metatableindex out of rangetable or string expected'tostring' must return a string to 'print'__pairsbt=(load)too many nested functionsreader function must return a string__ipairsȱбر 0stoprestartcollectstepsetpausesetstepmulsetmajorincisrunninggenerationalincremental %sassertion failed!rstuv w(x0y8z@{H|P}arshiftbandbnotborbxorbtestextractlrotatelshiftreplacerrotatershiftfield cannot be negativewidth must be positivetrying to access non-existent bitsfunction or expression too complexconstructor too longconstantsopcodescontrol structure too longh~pxcreateresumerunningstatuswrapyieldtoo many arguments to resumecannot resume dead coroutinetoo many results to resumecoroutine expectedsuspendednormaldead ȶض(8HX`pdebuggetuservaluegethookgetinfogetlocalgetregistrygetmetatablegetupvalueupvaluejoinupvalueidsetuservaluesethooksetlocalsetmetatablesetupvaluetracebacknil or table expectedlevel out of range_HKEYk__modeXcalllinecounttail callfull userdata expected, got light userdata>uinvalid upvalue indexLua function expectedflnStu>%sfunction or level expectedinvalid optionsourceshort_srclinedefinedlastlinedefinedwhatcurrentlinenupsnparamsisvarargnamenamewhatistailcallactivelinesfuncexternal hooklua_debug> cont =(debug command)%s лػX (08@HPX`8hpxȼм'%c'char(%d)'%s'_ENVinvalid long string delimiterEeXxPp+-malformed numberlexical element too longunfinished stringinvalid escape sequencedecimal escape too largehexadecimal digit expectedunfinished long stringunfinished long commentchunk has too many lines%s:%d: %s%s near %sandbreakdoelseelseifendforfunctiongotoifinlocalnilnotorrepeatreturnthenuntilwhile.....==>=<=~=::       нuncaughtterminating with %s exception of type %s: %sterminating with %s exception of type %sterminating with %s foreign exceptionterminatingpthread_once failure in __cxa_get_globals_fast()cannot create pthread key for __cxa_get_globals()cannot zero out thread value for __cxa_get_globals()hCDstd::bad_allocSt9bad_alloc(Xterminate_handler unexpectedly returnedSt9exception%E St13runtime_error(ؿSt9type_infoN10__cxxabiv116__shim_type_infoE(N10__cxxabiv117__class_type_infoE(P@N10__cxxabiv119__pointer_type_infoEN10__cxxabiv117__pbase_type_infoE(@(xFGHIpFJHIN10__cxxabiv120__si_class_type_infoE(HxFKHIN10__cxxabiv121__vmi_class_type_infoE(x  !"#  !"#infinity d'@B              -+ 0X0x(null)-0X+0X 0X-0x+0x 0xinfINFnanNAN0123456789ABCDEF.PLM  NSt3__111__stdoutbufIwEE(0hLN  NSt3__110__stdinbufIwEE(hunsupported locale for standard inputPOP NSt3__111__stdoutbufIcEE(0(OQ NSt3__110__stdinbufIcEE((!"basic_string length_error"/home/sam/emscripten/system/include/libcxx/string(OR hLS   TUVWXYZ[0 0!"x\]x^_h`aNSt3__18ios_baseEPNSt3__19basic_iosIcNS_11char_traitsIcEEEE(phNSt3__19basic_iosIwNS_11char_traitsIwEEEE(hNSt3__115basic_streambufIcNS_11char_traitsIcEEEENSt3__115basic_streambufIwNS_11char_traitsIwEEEE0NSt3__113basic_istreamIcNS_11char_traitsIcEEEEpNSt3__113basic_istreamIwNS_11char_traitsIwEEEENSt3__113basic_ostreamIcNS_11char_traitsIcEEEENSt3__113basic_ostreamIwNS_11char_traitsIwEEEEHbcd(efdghd 0123456789abcdefABCDEFxX+-pPiInN%pijd Pkld  lllLmnd  %%popd%H:%M:%S%m/%d/%y%Y-%m-%d%I:%M:%S %p%H:%M%H:%M:%S@qrd !"#$@%H:%M:%S%m/%d/%y%Y-%m-%d%I:%M:%S %p%H:%M%H:%M:%Sstd8uvdxwxd yzd{|d8}~d !"d0123456789%LfXd0123456789d%%.0Lfxd&d#d$!"vector length_error"/home/sam/emscripten/system/include/libcxx/vector__throw_length_errorCdddd%&'d()*truetruefalsefalse%m/%d/%y%m/%d/%y%H:%M:%S%H:%M:%S%a %b %d %H:%M:%S %Y%a %b %d %H:%M:%S %Y%I:%M:%S %p%I:%M:%S %pdNSt3__16locale5facetE(8xdNSt3__15ctypeIwEENSt3__110ctype_baseEX@pNSt3__15ctypeIcEEpHdNSt3__17codecvtIcc11__mbstate_tEENSt3__112codecvt_baseE(@NSt3__17codecvtIwc11__mbstate_tEEh@d NSt3__17codecvtIDsc11__mbstate_tEE@d NSt3__17codecvtIDic11__mbstate_tEEX@d NSt3__116__narrow_to_utf8ILj32EEE(`d NSt3__117__widen_from_utf8ILj32EEE(8NSt3__18numpunctIcEE(pNSt3__18numpunctIwEE(NSt3__16locale5__impE(NSt3__17collateIcEE(NSt3__17collateIwEE(NSt3__110moneypunctIcLb0EEENSt3__110money_baseEX8pNSt3__110moneypunctIcLb1EEEpNSt3__110moneypunctIwLb0EEEpNSt3__110moneypunctIwLb1EEEpNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEENSt3__19__num_getIcEENSt3__114__num_get_baseEXNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEENSt3__19__num_getIwEE`xNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEENSt3__19__num_putIcEENSt3__114__num_put_baseE08NSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEENSt3__19__num_putIwEE0pNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEENSt3__19time_baseEPNSt3__120__time_get_c_storageIcEEphNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEENSt3__120__time_get_c_storageIwEEh8NSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEENSt3__110__time_putEhNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEENSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEENSt3__111__money_getIcEEXNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEENSt3__111__money_getIwEE0PNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEENSt3__111__money_putIcEExNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEENSt3__111__money_putIwEEPpNSt3__18messagesIcEENSt3__113messages_baseENSt3__18messagesIwEEAMPMAMPMJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberJanFebMarAprJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberJanFebMarAprJunJulAugSepOctNovDecSundayMondayTuesdayWednesdayThursdayFridaySaturdaySunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturdaySunMonTueWedThuFriSatNSt3__114__shared_countE