content
stringlengths
7
1.05M
class VposConfigurationError(Exception): pass
{ 'includes': ['common.gypi'], 'conditions': [ ['OS == "win"', { 'variables': { 'application_platform%': 'Win32', 'renderers%': ['Direct3D11', 'GL4'], 'audio%': 'XAudio2', 'input_devices%': ['DirectInput'], }, }], ['OS == "mac"', { 'variables': { 'application_platform%': 'Cocoa', 'renderers%': ['GL4'], 'audio%': 'OpenAL', 'input_devices%': [], }, }], ['OS == "ios"', { 'variables': { 'application_platform%': 'CocoaTouch', 'renderers%': ['Metal'], 'audio%': 'OpenAL', 'input_devices%': [], }, }], ['OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 'variables': { 'application_platform%': 'X11', 'renderers%': ['GL4'], 'audio%': 'OpenAL', 'input_devices%': [], }, }], ], 'variables': { 'pomdog_third_party_dir%': '../third-party', 'pomdog_library_core_sources': [ '../include/Pomdog/Application/Duration.hpp', '../include/Pomdog/Application/Game.hpp', '../include/Pomdog/Application/GameClock.hpp', '../include/Pomdog/Application/GameHost.hpp', '../include/Pomdog/Application/GameWindow.hpp', '../include/Pomdog/Application/MouseCursor.hpp', '../include/Pomdog/Application/Timer.hpp', '../include/Pomdog/Application/TimePoint.hpp', # '../include/Pomdog/Async/Helpers.hpp', # '../include/Pomdog/Async/ImmediateScheduler.hpp', # '../include/Pomdog/Async/QueuedScheduler.hpp', # '../include/Pomdog/Async/Scheduler.hpp', # '../include/Pomdog/Async/Task.hpp', '../include/Pomdog/Audio/AudioClip.hpp', '../include/Pomdog/Audio/AudioChannels.hpp', '../include/Pomdog/Audio/AudioEmitter.hpp', '../include/Pomdog/Audio/AudioEngine.hpp', '../include/Pomdog/Audio/AudioListener.hpp', '../include/Pomdog/Audio/SoundEffect.hpp', '../include/Pomdog/Audio/SoundState.hpp', '../include/Pomdog/Audio/detail/ForwardDeclarations.hpp', '../include/Pomdog/Basic/Export.hpp', '../include/Pomdog/Basic/Platform.hpp', '../include/Pomdog/Basic/Version.hpp', '../include/Pomdog/Content/AssetManager.hpp', '../include/Pomdog/Content/AssetBuilders/Builder.hpp', '../include/Pomdog/Content/AssetBuilders/PipelineStateBuilder.hpp', '../include/Pomdog/Content/AssetBuilders/ShaderBuilder.hpp', '../include/Pomdog/Content/Utility/BinaryFileStream.hpp', '../include/Pomdog/Content/Utility/BinaryReader.hpp', '../include/Pomdog/Content/Utility/MakeFourCC.hpp', '../include/Pomdog/Content/Utility/PathHelper.hpp', '../include/Pomdog/Content/detail/AssetDictionary.hpp', '../include/Pomdog/Content/detail/AssetLoaderContext.hpp', '../include/Pomdog/Content/detail/AssetLoader.hpp', '../include/Pomdog/Content/detail/AssetLoaders/AudioClipLoader.hpp', '../include/Pomdog/Content/detail/AssetLoaders/Texture2DLoader.hpp', '../include/Pomdog/Graphics/Blend.hpp', '../include/Pomdog/Graphics/BlendDescription.hpp', '../include/Pomdog/Graphics/BlendFunction.hpp', '../include/Pomdog/Graphics/BufferUsage.hpp', '../include/Pomdog/Graphics/ClearOptions.hpp', '../include/Pomdog/Graphics/ComparisonFunction.hpp', '../include/Pomdog/Graphics/ConstantBuffer.hpp', '../include/Pomdog/Graphics/CullMode.hpp', '../include/Pomdog/Graphics/DepthFormat.hpp', '../include/Pomdog/Graphics/DepthStencilDescription.hpp', '../include/Pomdog/Graphics/DepthStencilOperation.hpp', '../include/Pomdog/Graphics/EffectAnnotation.hpp', '../include/Pomdog/Graphics/EffectConstantDescription.hpp', '../include/Pomdog/Graphics/EffectReflection.hpp', '../include/Pomdog/Graphics/EffectVariableClass.hpp', '../include/Pomdog/Graphics/EffectVariableType.hpp', '../include/Pomdog/Graphics/EffectVariable.hpp', '../include/Pomdog/Graphics/FillMode.hpp', '../include/Pomdog/Graphics/GraphicsCommandList.hpp', '../include/Pomdog/Graphics/GraphicsCommandQueue.hpp', '../include/Pomdog/Graphics/GraphicsDevice.hpp', '../include/Pomdog/Graphics/IndexBuffer.hpp', '../include/Pomdog/Graphics/IndexElementSize.hpp', '../include/Pomdog/Graphics/InputClassification.hpp', '../include/Pomdog/Graphics/InputElement.hpp', '../include/Pomdog/Graphics/InputElementFormat.hpp', '../include/Pomdog/Graphics/InputLayoutDescription.hpp', '../include/Pomdog/Graphics/InputLayoutHelper.hpp', '../include/Pomdog/Graphics/PipelineState.hpp', '../include/Pomdog/Graphics/PipelineStateDescription.hpp', '../include/Pomdog/Graphics/PresentationParameters.hpp', '../include/Pomdog/Graphics/PrimitiveTopology.hpp', '../include/Pomdog/Graphics/RasterizerDescription.hpp', '../include/Pomdog/Graphics/RenderTarget2D.hpp', '../include/Pomdog/Graphics/RenderTargetBlendDescription.hpp', '../include/Pomdog/Graphics/SamplerDescription.hpp', '../include/Pomdog/Graphics/SamplerState.hpp', '../include/Pomdog/Graphics/Shader.hpp', '../include/Pomdog/Graphics/ShaderLanguage.hpp', '../include/Pomdog/Graphics/ShaderPipelineStage.hpp', '../include/Pomdog/Graphics/SurfaceFormat.hpp', '../include/Pomdog/Graphics/StencilOperation.hpp', '../include/Pomdog/Graphics/Texture.hpp', '../include/Pomdog/Graphics/Texture2D.hpp', '../include/Pomdog/Graphics/TextureAddressMode.hpp', '../include/Pomdog/Graphics/TextureFilter.hpp', '../include/Pomdog/Graphics/VertexBuffer.hpp', '../include/Pomdog/Graphics/VertexBufferBinding.hpp', '../include/Pomdog/Graphics/Viewport.hpp', '../include/Pomdog/Graphics/detail/ForwardDeclarations.hpp', '../include/Pomdog/Graphics/detail/EffectBinaryParameter.hpp', '../include/Pomdog/Graphics/ShaderCompilers/GLSLCompiler.hpp', '../include/Pomdog/Graphics/ShaderCompilers/HLSLCompiler.hpp', '../include/Pomdog/Input/ButtonState.hpp', '../include/Pomdog/Input/Gamepad.hpp', '../include/Pomdog/Input/GamepadButtons.hpp', '../include/Pomdog/Input/GamepadCapabilities.hpp', '../include/Pomdog/Input/GamepadDPad.hpp', '../include/Pomdog/Input/GamepadState.hpp', '../include/Pomdog/Input/GamepadThumbSticks.hpp', '../include/Pomdog/Input/GamepadType.hpp', '../include/Pomdog/Input/Keyboard.hpp', '../include/Pomdog/Input/KeyboardState.hpp', '../include/Pomdog/Input/KeyState.hpp', '../include/Pomdog/Input/Keys.hpp', '../include/Pomdog/Input/Mouse.hpp', '../include/Pomdog/Input/MouseState.hpp', '../include/Pomdog/Input/PlayerIndex.hpp', '../include/Pomdog/Input/TouchLocation.hpp', '../include/Pomdog/Input/TouchLocationState.hpp', '../include/Pomdog/Logging/Log.hpp', '../include/Pomdog/Logging/LogChannel.hpp', '../include/Pomdog/Logging/LogEntry.hpp', '../include/Pomdog/Logging/LogLevel.hpp', '../include/Pomdog/Logging/LogStream.hpp', '../include/Pomdog/Math/BoundingBox.hpp', '../include/Pomdog/Math/BoundingBox2D.hpp', '../include/Pomdog/Math/BoundingCircle.hpp', '../include/Pomdog/Math/BoundingSphere.hpp', '../include/Pomdog/Math/Color.hpp', '../include/Pomdog/Math/ContainmentType.hpp', '../include/Pomdog/Math/Degree.hpp', '../include/Pomdog/Math/MathHelper.hpp', '../include/Pomdog/Math/Matrix2x2.hpp', '../include/Pomdog/Math/Matrix3x2.hpp', '../include/Pomdog/Math/Matrix3x3.hpp', '../include/Pomdog/Math/Matrix4x4.hpp', '../include/Pomdog/Math/Point2D.hpp', '../include/Pomdog/Math/Point3D.hpp', '../include/Pomdog/Math/Quaternion.hpp', '../include/Pomdog/Math/Radian.hpp', '../include/Pomdog/Math/Ray.hpp', '../include/Pomdog/Math/Rectangle.hpp', '../include/Pomdog/Math/Vector2.hpp', '../include/Pomdog/Math/Vector3.hpp', '../include/Pomdog/Math/Vector4.hpp', '../include/Pomdog/Math/detail/Coordinate2D.hpp', '../include/Pomdog/Math/detail/Coordinate2DImplementation.hpp', '../include/Pomdog/Math/detail/Coordinate3D.hpp', '../include/Pomdog/Math/detail/Coordinate3DImplementation.hpp', '../include/Pomdog/Math/detail/FloatingPointMatrix2x2.hpp', '../include/Pomdog/Math/detail/FloatingPointMatrix3x2.hpp', '../include/Pomdog/Math/detail/FloatingPointMatrix3x3.hpp', '../include/Pomdog/Math/detail/FloatingPointMatrix4x4.hpp', '../include/Pomdog/Math/detail/FloatingPointQuaternion.hpp', '../include/Pomdog/Math/detail/FloatingPointVector2.hpp', '../include/Pomdog/Math/detail/FloatingPointVector3.hpp', '../include/Pomdog/Math/detail/FloatingPointVector4.hpp', '../include/Pomdog/Math/detail/ForwardDeclarations.hpp', '../include/Pomdog/Math/detail/TaggedArithmetic.hpp', '../include/Pomdog/Signals/Connection.hpp', '../include/Pomdog/Signals/ConnectionList.hpp', '../include/Pomdog/Signals/Event.hpp', '../include/Pomdog/Signals/EventQueue.hpp', '../include/Pomdog/Signals/Helpers.hpp', '../include/Pomdog/Signals/ScopedConnection.hpp', '../include/Pomdog/Signals/Signal.hpp', '../include/Pomdog/Signals/detail/EventBody.hpp', '../include/Pomdog/Signals/detail/ForwardDeclarations.hpp', '../include/Pomdog/Signals/detail/SignalBody.hpp', '../include/Pomdog/Utility/Any.hpp', '../include/Pomdog/Utility/Assert.hpp', '../include/Pomdog/Utility/Exception.hpp', '../include/Pomdog/Utility/Optional.hpp', '../include/Pomdog/Utility/StringHelper.hpp', '../include/Pomdog/Utility/detail/CRC32.hpp', '../include/Pomdog/Utility/detail/FileSystem.hpp', '../include/Pomdog/Utility/detail/Tagged.hpp', '../src/Application/GameClock.cpp', '../src/Application/SubsystemScheduler.hpp', '../src/Application/SystemEvents.hpp', '../src/Application/Timer.cpp', '../src/Application/TimeSource.hpp', # '../src/Async/ImmediateScheduler.cpp', # '../src/Async/QueuedScheduler.cpp', # '../src/Async/Task.cpp', '../src/Audio/AudioClip.cpp', '../src/Audio/AudioEngine.cpp', '../src/Audio/SoundEffect.cpp', '../src/Content/AssetDictionary.cpp', '../src/Content/AssetLoaderContext.cpp', '../src/Content/AssetManager.cpp', '../src/Content/AssetBuilders/PipelineStateBuilder.cpp', '../src/Content/AssetBuilders/ShaderBuilder.cpp', '../src/Content/AssetLoaders/AudioClipLoader.cpp', '../src/Content/AssetLoaders/Texture2DLoader.cpp', '../src/Content/Utility/DDSTextureReader.cpp', '../src/Content/Utility/DDSTextureReader.hpp', '../src/Content/Utility/MSWaveAudioLoader.cpp', '../src/Content/Utility/MSWaveAudioLoader.hpp', '../src/Content/Utility/PNGTextureReader.cpp', '../src/Content/Utility/PNGTextureReader.hpp', '../src/Graphics/ClearOptions.cpp', '../src/Graphics/ConstantBuffer.cpp', '../src/Graphics/EffectBinaryParameter.cpp', '../src/Graphics/EffectReflection.cpp', '../src/Graphics/GraphicsCommandList.cpp', '../src/Graphics/GraphicsCommandQueue.cpp', '../src/Graphics/GraphicsDevice.cpp', '../src/Graphics/IndexBuffer.cpp', '../src/Graphics/InputLayoutHelper.cpp', '../src/Graphics/PipelineState.cpp', '../src/Graphics/RenderTarget2D.cpp', '../src/Graphics/SamplerState.cpp', '../src/Graphics/Texture2D.cpp', '../src/Graphics/Viewport.cpp', '../src/Graphics/VertexBuffer.cpp', '../src/Graphics/ShaderCompilers/GLSLCompiler.cpp', '../src/Graphics/ShaderCompilers/HLSLCompiler.cpp', '../src/Input/KeyboardState.cpp', '../src/InputSystem/InputDeviceCreator.hpp', '../src/InputSystem/InputDeviceFactory.cpp', '../src/InputSystem/InputDeviceFactory.hpp', '../src/Logging/Log.cpp', '../src/Logging/LogChannel.cpp', '../src/Logging/LogStream.cpp', '../src/Math/BoundingBox.cpp', '../src/Math/BoundingBox2D.cpp', '../src/Math/BoundingCircle.cpp', '../src/Math/BoundingSphere.cpp', '../src/Math/Color.cpp', '../src/Math/MathHelper.cpp', '../src/Math/Ray.cpp', '../src/Math/Rectangle.cpp', '../src/Math/detail/FloatingPointMatrix2x2.cpp', '../src/Math/detail/FloatingPointMatrix3x2.cpp', '../src/Math/detail/FloatingPointMatrix3x3.cpp', '../src/Math/detail/FloatingPointMatrix4x4.cpp', '../src/Math/detail/FloatingPointQuaternion.cpp', '../src/Math/detail/FloatingPointVector2.cpp', '../src/Math/detail/FloatingPointVector3.cpp', '../src/Math/detail/FloatingPointVector4.cpp', '../src/RenderSystem/GraphicsCapabilities.hpp', '../src/RenderSystem/GraphicsCommandListImmediate.cpp', '../src/RenderSystem/GraphicsCommandListImmediate.hpp', '../src/RenderSystem/GraphicsCommandQueueImmediate.cpp', '../src/RenderSystem/GraphicsCommandQueueImmediate.hpp', '../src/RenderSystem/GraphicsContext.cpp', '../src/RenderSystem/GraphicsContext.hpp', '../src/RenderSystem/NativeBuffer.hpp', '../src/RenderSystem/NativeEffectReflection.hpp', '../src/RenderSystem/NativeGraphicsCommandList.hpp', '../src/RenderSystem/NativeGraphicsCommandQueue.hpp', '../src/RenderSystem/NativeGraphicsContext.hpp', '../src/RenderSystem/NativeGraphicsDevice.hpp', '../src/RenderSystem/NativePipelineState.hpp', '../src/RenderSystem/NativeRenderTarget2D.hpp', '../src/RenderSystem/NativeSamplerState.hpp', '../src/RenderSystem/NativeTexture2D.hpp', '../src/RenderSystem/ShaderBytecode.hpp', '../src/RenderSystem/ShaderCompileOptions.hpp', '../src/RenderSystem/SurfaceFormatHelper.cpp', '../src/RenderSystem/SurfaceFormatHelper.hpp', '../src/RenderSystem/TextureHelper.cpp', '../src/RenderSystem/TextureHelper.hpp', '../src/Signals/Connection.cpp', '../src/Signals/ConnectionList.cpp', '../src/Signals/EventQueue.cpp', '../src/Signals/ScopedConnection.cpp', '../src/Utility/CRC32.cpp', '../src/Utility/Noncopyable.hpp', '../src/Utility/PathHelper.cpp', '../src/Utility/ScopeGuard.hpp', '../src/Utility/StringHelper.cpp', ], 'pomdog_library_opengl4_sources': [ '../src/RenderSystem.GL4/BlendStateGL4.cpp', '../src/RenderSystem.GL4/BlendStateGL4.hpp', '../src/RenderSystem.GL4/BufferGL4.cpp', '../src/RenderSystem.GL4/BufferGL4.hpp', '../src/RenderSystem.GL4/DepthStencilStateGL4.cpp', '../src/RenderSystem.GL4/DepthStencilStateGL4.hpp', '../src/RenderSystem.GL4/EffectReflectionGL4.cpp', '../src/RenderSystem.GL4/EffectReflectionGL4.hpp', '../src/RenderSystem.GL4/ErrorChecker.cpp', '../src/RenderSystem.GL4/ErrorChecker.hpp', '../src/RenderSystem.GL4/GraphicsContextGL4.cpp', '../src/RenderSystem.GL4/GraphicsContextGL4.hpp', '../src/RenderSystem.GL4/GraphicsDeviceGL4.cpp', '../src/RenderSystem.GL4/GraphicsDeviceGL4.hpp', '../src/RenderSystem.GL4/InputLayoutGL4.cpp', '../src/RenderSystem.GL4/InputLayoutGL4.hpp', '../src/RenderSystem.GL4/OpenGLContext.hpp', '../src/RenderSystem.GL4/OpenGLPrerequisites.hpp', '../src/RenderSystem.GL4/PipelineStateGL4.cpp', '../src/RenderSystem.GL4/PipelineStateGL4.hpp', '../src/RenderSystem.GL4/RasterizerStateGL4.cpp', '../src/RenderSystem.GL4/RasterizerStateGL4.hpp', '../src/RenderSystem.GL4/RenderTarget2DGL4.cpp', '../src/RenderSystem.GL4/RenderTarget2DGL4.hpp', '../src/RenderSystem.GL4/SamplerStateGL4.cpp', '../src/RenderSystem.GL4/SamplerStateGL4.hpp', '../src/RenderSystem.GL4/ShaderGL4.cpp', '../src/RenderSystem.GL4/ShaderGL4.hpp', '../src/RenderSystem.GL4/Texture2DGL4.cpp', '../src/RenderSystem.GL4/Texture2DGL4.hpp', '../src/RenderSystem.GL4/TypesafeGL4.hpp', '../src/RenderSystem.GL4/TypesafeHelperGL4.hpp', ], 'pomdog_library_openal_sources': [ '../src/SoundSystem.OpenAL/AudioClipAL.cpp', '../src/SoundSystem.OpenAL/AudioClipAL.hpp', '../src/SoundSystem.OpenAL/AudioEngineAL.cpp', '../src/SoundSystem.OpenAL/AudioEngineAL.hpp', '../src/SoundSystem.OpenAL/ContextOpenAL.cpp', '../src/SoundSystem.OpenAL/ContextOpenAL.hpp', '../src/SoundSystem.OpenAL/ErrorCheckerAL.cpp', '../src/SoundSystem.OpenAL/ErrorCheckerAL.hpp', '../src/SoundSystem.OpenAL/PrerequisitesOpenAL.hpp', '../src/SoundSystem.OpenAL/SoundEffectAL.cpp', '../src/SoundSystem.OpenAL/SoundEffectAL.hpp', ], 'pomdog_library_apple_sources': [ '../src/Platform.Apple/FileSystemApple.mm', '../src/Platform.Apple/TimeSourceApple.cpp', '../src/Platform.Apple/TimeSourceApple.hpp', ], 'pomdog_library_cocoa_sources': [ '../include/Pomdog/Platform/Cocoa/Bootstrap.hpp', '../include/Pomdog/Platform/Cocoa/PomdogOpenGLView.hpp', '../src/Platform.Cocoa/Bootstrap.mm', '../src/Platform.Cocoa/CocoaWindowDelegate.hpp', '../src/Platform.Cocoa/CocoaWindowDelegate.mm', '../src/Platform.Cocoa/GameHostCocoa.hpp', '../src/Platform.Cocoa/GameHostCocoa.mm', '../src/Platform.Cocoa/GameWindowCocoa.hpp', '../src/Platform.Cocoa/GameWindowCocoa.mm', '../src/Platform.Cocoa/KeyboardCocoa.hpp', '../src/Platform.Cocoa/KeyboardCocoa.cpp', '../src/Platform.Cocoa/MouseCocoa.hpp', '../src/Platform.Cocoa/MouseCocoa.cpp', '../src/Platform.Cocoa/OpenGLContextCocoa.hpp', '../src/Platform.Cocoa/OpenGLContextCocoa.mm', '../src/Platform.Cocoa/PomdogOpenGLView.mm', ], 'pomdog_library_dxgi_sources': [ '../src/RenderSystem.DXGI/DXGIFormatHelper.cpp', '../src/RenderSystem.DXGI/DXGIFormatHelper.hpp', ], 'pomdog_library_direct3d_sources': [ '../src/RenderSystem.Direct3D/HLSLCompiling.cpp', '../src/RenderSystem.Direct3D/HLSLCompiling.hpp', '../src/RenderSystem.Direct3D/HLSLReflectionHelper.cpp', '../src/RenderSystem.Direct3D/HLSLReflectionHelper.hpp', '../src/RenderSystem.Direct3D/PrerequisitesDirect3D.hpp', ], 'pomdog_library_direct3d11_sources': [ '../src/RenderSystem.Direct3D11/BufferDirect3D11.cpp', '../src/RenderSystem.Direct3D11/BufferDirect3D11.hpp', '../src/RenderSystem.Direct3D11/EffectReflectionDirect3D11.cpp', '../src/RenderSystem.Direct3D11/EffectReflectionDirect3D11.hpp', '../src/RenderSystem.Direct3D11/GraphicsContextDirect3D11.cpp', '../src/RenderSystem.Direct3D11/GraphicsContextDirect3D11.hpp', '../src/RenderSystem.Direct3D11/GraphicsDeviceDirect3D11.cpp', '../src/RenderSystem.Direct3D11/GraphicsDeviceDirect3D11.hpp', '../src/RenderSystem.Direct3D11/PipelineStateDirect3D11.cpp', '../src/RenderSystem.Direct3D11/PipelineStateDirect3D11.hpp', '../src/RenderSystem.Direct3D11/PrerequisitesDirect3D11.hpp', '../src/RenderSystem.Direct3D11/RenderTarget2DDirect3D11.cpp', '../src/RenderSystem.Direct3D11/RenderTarget2DDirect3D11.hpp', '../src/RenderSystem.Direct3D11/SamplerStateDirect3D11.cpp', '../src/RenderSystem.Direct3D11/SamplerStateDirect3D11.hpp', '../src/RenderSystem.Direct3D11/ShaderDirect3D11.cpp', '../src/RenderSystem.Direct3D11/ShaderDirect3D11.hpp', '../src/RenderSystem.Direct3D11/Texture2DDirect3D11.cpp', '../src/RenderSystem.Direct3D11/Texture2DDirect3D11.hpp', ], 'pomdog_library_xaudio2_sources': [ '../src/SoundSystem.XAudio2/AudioClipXAudio2.cpp', '../src/SoundSystem.XAudio2/AudioClipXAudio2.hpp', '../src/SoundSystem.XAudio2/AudioEngineXAudio2.cpp', '../src/SoundSystem.XAudio2/AudioEngineXAudio2.hpp', '../src/SoundSystem.XAudio2/PrerequisitesXAudio2.hpp', '../src/SoundSystem.XAudio2/SoundEffectXAudio2.cpp', '../src/SoundSystem.XAudio2/SoundEffectXAudio2.hpp', ], 'pomdog_library_directinput_sources': [ '../src/InputSystem.DirectInput/DeviceContextDirectInput.cpp', '../src/InputSystem.DirectInput/DeviceContextDirectInput.hpp', '../src/InputSystem.DirectInput/PrerequisitesDirectInput.hpp', ], 'pomdog_library_win32_sources': [ '../include/Pomdog/Platform/Win32/Bootstrap.hpp', '../include/Pomdog/Platform/Win32/BootstrapSettingsWin32.hpp', '../include/Pomdog/Platform/Win32/PrerequisitesWin32.hpp', '../src/Platform.Win32/Bootstrap.cpp', '../src/Platform.Win32/GameHostWin32.cpp', '../src/Platform.Win32/GameHostWin32.hpp', '../src/Platform.Win32/GameWindowWin32.cpp', '../src/Platform.Win32/GameWindowWin32.hpp', '../src/Platform.Win32/FileSystemWin32.cpp', '../src/Platform.Win32/KeyboardWin32.cpp', '../src/Platform.Win32/KeyboardWin32.hpp', '../src/Platform.Win32/MouseWin32.cpp', '../src/Platform.Win32/MouseWin32.hpp', '../src/Platform.Win32/TimeSourceWin32.cpp', '../src/Platform.Win32/TimeSourceWin32.hpp', ], 'pomdog_library_win32_opengl_sources': [ '../src/Platform.Win32/OpenGLContextWin32.cpp', '../src/Platform.Win32/OpenGLContextWin32.hpp', ], 'pomdog_library_x11_sources': [ '../include/Pomdog/Platform/X11/Bootstrap.hpp', '../src/Platform.X11/Bootstrap.cpp', '../src/Platform.X11/GameHostX11.cpp', '../src/Platform.X11/GameHostX11.hpp', '../src/Platform.X11/GameWindowX11.cpp', '../src/Platform.X11/GameWindowX11.hpp', '../src/Platform.X11/KeyboardX11.cpp', '../src/Platform.X11/KeyboardX11.hpp', '../src/Platform.X11/MouseX11.cpp', '../src/Platform.X11/MouseX11.hpp', '../src/Platform.X11/OpenGLContextX11.cpp', '../src/Platform.X11/OpenGLContextX11.hpp', '../src/Platform.X11/X11AtomCache.hpp', '../src/Platform.X11/X11Context.cpp', '../src/Platform.X11/X11Context.hpp', ], 'pomdog_library_linux_sources': [ '../src/Platform.Linux/FileSystemLinux.cpp', '../src/Platform.Linux/TimeSourceLinux.cpp', '../src/Platform.Linux/TimeSourceLinux.hpp', ], }, 'target_defaults': { 'dependencies': [ '<@(pomdog_third_party_dir)/libpng/libpng.gyp:libpng_static', ], 'include_dirs': [ '../include', '<@(pomdog_third_party_dir)/libpng', ], 'sources': [ '<@(pomdog_library_core_sources)', '../include/Pomdog/Pomdog.hpp', ], 'msbuild_settings': { 'ClCompile': { 'WarningLevel': 'Level4', # /W4 'TreatWarningAsError': 'true', # /WX }, }, 'xcode_settings': { 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', 'CLANG_CXX_LANGUAGE_STANDARD': 'c++14', 'CLANG_CXX_LIBRARY': 'libc++', # Warnings (Clang): 'CLANG_WARN_BOOL_CONVERSION': 'YES', 'CLANG_WARN_CONSTANT_CONVERSION': 'YES', 'CLANG_WARN_EMPTY_BODY': 'YES', 'CLANG_WARN_ENUM_CONVERSION': 'YES', 'CLANG_WARN_INT_CONVERSION': 'YES', 'CLANG_WARN_UNREACHABLE_CODE': 'YES', # Warnings (GCC and Clang): 'GCC_WARN_64_TO_32_BIT_CONVERSION': 'YES', 'GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS': 'YES', 'GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS': 'YES', 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', 'GCC_WARN_ABOUT_RETURN_TYPE': 'YES_ERROR', 'GCC_WARN_CHECK_SWITCH_STATEMENTS': 'YES', 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', 'GCC_WARN_MISSING_PARENTHESES': 'YES', 'GCC_WARN_NON_VIRTUAL_DESTRUCTOR': 'YES', 'GCC_WARN_SHADOW': 'YES', 'GCC_WARN_SIGN_COMPARE': 'YES', 'GCC_WARN_TYPECHECK_CALLS_TO_PRINTF': 'YES', 'GCC_WARN_UNINITIALIZED_AUTOS': 'YES_AGGRESSIVE', 'GCC_WARN_UNKNOWN_PRAGMAS': 'YES', 'GCC_WARN_UNUSED_FUNCTION': 'YES', 'GCC_WARN_UNUSED_LABEL': 'YES', 'GCC_WARN_UNUSED_VALUE': 'YES', 'GCC_WARN_UNUSED_VARIABLE': 'YES', # Warnings - Objective-C: 'CLANG_WARN_DIRECT_OBJC_ISA_USAGE': 'YES_ERROR', 'CLANG_WARN__DUPLICATE_METHOD_MATCH': 'YES', 'GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL': 'YES', 'GCC_WARN_UNDECLARED_SELECTOR': 'YES', 'CLANG_WARN_OBJC_ROOT_CLASS': 'YES_ERROR', # Warning Policies: 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', 'WARNING_CFLAGS': [ '-Wall', ], # Symbols: 'CLANG_ENABLE_OBJC_ARC': 'YES', 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', # '-fvisibility-inlines-hidden' 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # '-fvisibility=hidden' }, 'conditions': [ ['"Direct3D11" in renderers', { 'defines': ['POMDOG_ENABLE_DIRECT3D11'], 'sources': [ '<@(pomdog_library_dxgi_sources)', '<@(pomdog_library_direct3d_sources)', '<@(pomdog_library_direct3d11_sources)', ], 'link_settings': { 'libraries': [ '-ldxgi.lib', '-ld3d11.lib', '-ld3dcompiler.lib', '-ldxguid.lib', # using _IID_ID3D11ShaderReflection ], }, }], ['"GL4" in renderers', { 'defines': ['POMDOG_ENABLE_GL4'], 'sources': [ '<@(pomdog_library_opengl4_sources)', ], }], ['"GL4" in renderers and OS == "win"', { 'sources': [ '<@(pomdog_library_win32_opengl_sources)', ], 'defines': [ 'GLEW_STATIC', ], 'dependencies': [ '<@(pomdog_third_party_dir)/glew/glew.gyp:glew_static', ], 'include_dirs': [ '<@(pomdog_third_party_dir)/glew/include', ], 'link_settings': { 'libraries': [ '-lopengl32.lib', ], }, }], ['"Metal" in renderers and OS == "mac"', { 'link_settings': { 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/Metal.framework', ], }, }], ['"Metal" in renderers and OS == "ios"', { 'link_settings': { 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/Metal.framework', '$(SDKROOT)/System/Library/Frameworks/MetalKit.framework', '$(SDKROOT)/System/Library/Frameworks/ModelIO.framework', ], }, }], ['audio == "OpenAL"', { 'sources': [ '<@(pomdog_library_openal_sources)', ], }], ['audio == "OpenAL" and OS == "mac"', { 'link_settings': { 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/AudioToolBox.framework', '$(SDKROOT)/System/Library/Frameworks/OpenAL.framework', ], }, }], ['audio == "OpenAL" and OS == "ios"', { 'link_settings': { 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/AudioToolBox.framework', '$(SDKROOT)/System/Library/Frameworks/OpenAL.framework', ], }, }], ['audio == "OpenAL" and OS == "linux"', { 'link_settings': { 'libraries': [ '-lopenal', ], }, }], ['audio == "XAudio2"', { 'sources': [ '<@(pomdog_library_xaudio2_sources)', ], 'link_settings': { 'libraries': [ '-lxaudio2.lib', ], }, }], # audio == "XAudio2" ['"DirectInput" in input_devices', { 'sources': [ '<@(pomdog_library_directinput_sources)', ], 'link_settings': { 'libraries': [ '-ldinput8.lib', '-ldxguid.lib', ], }, }], ['application_platform == "X11"', { 'sources': [ '<@(pomdog_library_x11_sources)', ], }], ['application_platform == "X11" and OS == "linux"', { 'defines': [ 'GLEW_STATIC', ], 'dependencies': [ '<@(pomdog_third_party_dir)/glew/glew.gyp:glew_static', ], 'include_dirs': [ '/usr/X11R6/include', '<@(pomdog_third_party_dir)/glew/include', ], 'library_dirs': [ '/usr/X11R6/lib', ], 'link_settings': { 'libraries': [ '-lX11', '-lGL', ], }, }], ['application_platform == "Cocoa"', { 'sources': [ '<@(pomdog_library_cocoa_sources)', ], 'link_settings': { 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', ], }, }], ['OS == "mac" or OS == "ios"', { 'sources': [ '<@(pomdog_library_apple_sources)', ], }], ['OS == "mac"', { 'xcode_settings': { 'MACOSX_DEPLOYMENT_TARGET': '10.9', }, }], ['OS == "ios"', { 'xcode_settings': { 'IPHONEOS_DEPLOYMENT_TARGET': '9.0', 'SDKROOT': 'iphoneos', }, 'link_settings': { 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', ], }, }], ['OS == "win"', { 'sources': [ '<@(pomdog_library_win32_sources)', ], 'link_settings': { 'libraries': [ '-lkernel32.lib', '-luser32.lib', '-lgdi32.lib', '-lole32.lib', '-lwinmm.lib', #'-lws2_32.lib', #'-lwinspool.lib', #'-lcomdlg32.lib', #'-ladvapi32.lib', '-lshell32.lib', #'-loleaut32.lib', #'-luuid.lib', #'-lodbc32.lib', #'-lodbccp32.lib', ], }, }], # OS == "win" ['OS == "linux"', { 'sources': [ '<@(pomdog_library_linux_sources)', ], }], ], }, 'targets': [ { 'target_name': 'pomdog-static', 'product_name': 'pomdog', 'type': 'static_library', 'xcode_settings': { 'SKIP_INSTALL': 'YES', }, }, { 'target_name': 'pomdog-shared', 'product_name': 'Pomdog', 'type': 'shared_library', 'msvs_guid': 'A8F27BAE-660F-42B4-BC27-D5A435EF94BF', 'mac_bundle': 1, 'defines': ['POMDOG_BUILDING_LIBRARY_EXPORTS=1'], 'xcode_settings': { 'PRODUCT_NAME': 'Pomdog', #'$(TARGET_NAME)', 'PRODUCT_BUNDLE_IDENTIFIER': 'net.enginetrouble.pomdog', 'INFOPLIST_FILE': '../src/Platform.Apple/Info.plist', 'INSTALL_PATH': '$(LOCAL_LIBRARY_DIR)/Frameworks', 'SKIP_INSTALL': 'YES', #'DEFINES_MODULE': 'YES', 'DYLIB_INSTALL_NAME_BASE': '@rpath', 'LD_RUNPATH_SEARCH_PATHS': [ '$(inherited)', '@executable_path/../Frameworks', '@loader_path/Frameworks', ], }, }, ], }
#coding:utf-8 ''' filename:exchange_keys_and_values.py chap:4 subject:10 conditions:a dict solution:exchanged keys and values ''' origin_dict = {'book':['python','djang','data'],'author':'laoqi','publisher':'phei'} def ishashable(obj): try: hash(obj) return True except: return False xchange_dict = {} for key,value in origin_dict.items(): if ishashable(value): xchange_dict.update({value:key}) else: for v in value: xchange_dict.update({v:key}) print(f'''origin_dict : {origin_dict} xchange_dict{xchange_dict}''')
class Input_data(): def __init__(self): self.s='' def getString(self): self.s = input() def printString(self): print(self.s.upper()) strobj=Input_data() strobj.getString() strobj.printString()
'''8. Faça um programa que receba o valor de um depósito e o valor da taxa de juros, calcule e mostre o valor do rendimento e o valor total depois do rendimento de um mês.''' #entrada deposito = float(input('valor de deposito: ')) juros = float(input("Taxa de juros: ")) #processamento rendimento = deposito * juros / 100 total = deposito + rendimento #saida print("Rendimento: ",rendimento) print("Valor total: ",total)
class Solution: def minSessions(self, tasks: List[int], sessionTime: int) -> int: n = len(tasks) initial_state = int('0b'+'1'*n,2) dp = {} def find_dp(state): if state in dp: return dp[state] if state == 0: dp[state] = (1, 0) else: ans = (float('inf'), float('inf')) for i in range(n): if state & (1<<i): pieces, last = find_dp(state - (1 << i)) full = (last + tasks[i] > sessionTime) ans = min(ans, (pieces + full, tasks[i] + (1-full)*last)) dp[state] = ans return dp[state] return find_dp((1<<n)-1)[0] # reference: https://leetcode.com/problems/minimum-number-of-work-sessions-to-finish-the-tasks/discuss/1431829/Python-dynamic-programming-on-subsets-explained
#AGNET # 該当のチャンネルのID ID_CHANNEL_README = 771383900814573598 #たすきる ID_ROLE_TSKL = 671354476044615680 #たすきる用ちゃんねるID(とつかんり) ID_TSKILL = 624668843444273164 #とつ予定(とつかんり) ID_totu = 739498595329376487 #とつ予定じゃり ID_totu2 = 750321508219355227 #さーばーID ID_SRV = 539773033724772362 #agnet ID_agnet = 549971775828656168 ID_alist = 750236871967244379 #RKME #たすきる用ちゃんねるID ID_Channel_RKME = 795869377882226708 #さーばーID ID_SRV_RKME = 795355793524129823
""" Given a binary tree, find the root-to-leaf path with the maximum sum. """ class TreeNode: def __init__(self, val, left=None, right=None): self.val = val self.left = left self.right = right def find_paths(root): res = [] cur_path = [] find_max(root, res, cur_path, 0) return res max_sum = 0 def find_max(root, res, cur_path, cur_sum): global max_sum if not root: return cur_sum += root.val cur_path.append(root.val) if (not root.left) and (not root.right): if cur_sum > max_sum: max_sum = cur_sum res.clear() res.extend(cur_path) find_max(root.left, res, cur_path, cur_sum) find_max(root.right, res, cur_path, cur_sum) cur_path.pop() def main(): root = TreeNode(12) root.left = TreeNode(8) root.right = TreeNode(1) root.left.left = TreeNode(4) root.right.left = TreeNode(10) root.right.right = TreeNode(5) required_sum = 23 print("Tree paths max sum " + str(find_paths(root))) main() """ Time O(N) Space O(N) """
print('Grocery list:') print('"add" to add items and "view" to view list') grocery_list = [] while True: command = input('Enter command: ') if command == 'add': to_add = input('Enter new item: ') grocery_list.append(to_add) # elif stands for "else if" elif command == 'view': for i in range(len(grocery_list)): print(grocery_list[i]) else: print('Invalid command')
class Solution: # @return an integer def uniquePaths(self, m, n): if ((m == 0) or (n == 0)): return 0 if (n > m): return self.uniquePaths(n, m) row = [1] * m for i in range(1, n): # print row r2 = [1] last = 1 for j in range(1, m): last = last + row[j] r2.append(last) row = r2 return row.pop()
""" For a given positive integer n determine if it can be represented as a sum of two Fibonacci numbers (possibly equal). Example For n = 1, the output should be fibonacciSimpleSum2(n) = true. Explanation: 1 = 0 + 1 = F0 + F1. For n = 11, the output should be fibonacciSimpleSum2(n) = true. Explanation: 11 = 3 + 8 = F4 + F6. For n = 60, the output should be fibonacciSimpleSum2(n) = true. Explanation: 11 = 5 + 55 = F5 + F10. For n = 66, the output should be fibonacciSimpleSum2(n) = false. Input/Output [execution time limit] 4 seconds (py3) [input] integer n Guaranteed constraints: 1 ≤ n ≤ 2 · 109. [output] boolean true if n can be represented as Fi + Fj, false otherwise. """ def csSearchRotatedSortedArray(nums, target): start = 0 end = len(nums) - 1 while start <= end: mid = start + (end - start) // 2 print(nums[start], " - ",nums[mid], " - ", nums[end]) if nums[mid] == target: return mid else: if target < nums[mid]: if target < nums[start]: start = mid + 1 else: end = mid -1 else: if target > nums[end]: end = mid - 1 else: start = mid + 1 return -1
# @Title: 最长回文子串 (Longest Palindromic Substring) # @Author: KivenC # @Date: 2019-06-12 15:25:33 # @Runtime: 136 ms # @Memory: 13.1 MB class Solution: def longestPalindrome(self, s: str) -> str: # # way 1 # # 从回文串的中心向两边扩展,O(n^2) # # 分奇数串和偶数串 # if len(s) < 2: # return s # def expandAroundCenter(s: str, left: int, right: int): # while left >= 0 and right < len(s) and s[left] == s[right]: # left -= 1 # right += 1 # return right - left - 1 # start, end = 0, 0 # for i, _ in enumerate(s): # len_odd = expandAroundCenter(s, i, i) # 奇数串 # len_even = expandAroundCenter(s, i, i + 1) # 偶数串 # res = max(len_odd, len_even) # if res > end - start: # start = i - (res - 1) // 2 # end = i + res // 2 # return s[start: end+1] # way 2 # Manacher 算法 # O(n) new_s = '$#' + '#'.join(s) + '#' mx, ct, resLen, resCenter = 0, 0, 0, 0 p = [0 for _ in range(len(new_s))] for i in range(1, len(new_s)): p[i] = min(p[2 * ct - i], mx - i) if mx > i else 1 while i - p[i] >= 0 and i + p[i] < len(new_s) and new_s[i + p[i]] == new_s[i - p[i]]: p[i] += 1 if mx < i + p[i] - 1: mx = i + p[i] - 1 ct = i if resLen < p[i]: resLen = p[i] resCenter = i return s[(resCenter - resLen + 1) // 2:(resCenter + resLen - 1) // 2]
# # Copyright (C) 2018 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # layout = BoolScalar("layout", False) # NHWC # TEST 1: SPACE_TO_BATCH_NCHW_1, block_size = [2, 2] i1 = Input("op1", "TENSOR_FLOAT32", "{1, 2, 2, 2}") pad1 = Parameter("paddings", "TENSOR_INT32", "{2, 2}", [0, 0, 0, 0]) o1 = Output("op4", "TENSOR_FLOAT32", "{4, 1, 1, 2}") Model().Operation("SPACE_TO_BATCH_ND", i1, [2, 2], pad1, layout).To(o1) # Additional data type quant8 = DataTypeConverter().Identify({ i1: ("TENSOR_QUANT8_ASYMM", 0.1, 0), o1: ("TENSOR_QUANT8_ASYMM", 0.1, 0) }) # Instantiate an example example = Example({ i1: [1.4, 2.3, 3.2, 4.1, 5.4, 6.3, 7.2, 8.1], o1: [1.4, 2.3, 3.2, 4.1, 5.4, 6.3, 7.2, 8.1] }).AddNchw(i1, o1, layout).AddVariations("relaxed", "float16", quant8) # TEST 2: SPACE_TO_BATCH_NCHW_2, block_size = [2, 2] i2 = Input("op1", "TENSOR_FLOAT32", "{1, 4, 4, 1}") o2 = Output("op4", "TENSOR_FLOAT32", "{4, 2, 2, 1}") Model().Operation("SPACE_TO_BATCH_ND", i2, [2, 2], pad1, layout).To(o2) # Additional data type quant8 = DataTypeConverter().Identify({ i2: ("TENSOR_QUANT8_ASYMM", 0.5, 0), o2: ("TENSOR_QUANT8_ASYMM", 0.5, 0) }) # Instantiate an example example = Example({ i2: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], o2: [1, 3, 9, 11, 2, 4, 10, 12, 5, 7, 13, 15, 6, 8, 14, 16] }).AddNchw(i2, o2, layout).AddVariations("relaxed", "float16", quant8) # TEST 3: SPACE_TO_BATCH_NCHW_3, block_size = [3, 2] i3 = Input("op1", "TENSOR_FLOAT32", "{1, 5, 2, 1}") pad3 = Parameter("paddings", "TENSOR_INT32", "{2, 2}", [1, 0, 2, 0]) o3 = Output("op4", "TENSOR_FLOAT32", "{6, 2, 2, 1}") Model().Operation("SPACE_TO_BATCH_ND", i3, [3, 2], pad3, layout).To(o3) # Additional data type quant8 = DataTypeConverter().Identify({ i3: ("TENSOR_QUANT8_ASYMM", 0.5, 128), o3: ("TENSOR_QUANT8_ASYMM", 0.5, 128) }) # Instantiate an example example = Example({ i3: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], o3: [0, 0, 0, 5, 0, 0, 0, 6, 0, 1, 0, 7, 0, 2, 0, 8, 0, 3, 0, 9, 0, 4, 0, 10] }).AddNchw(i3, o3, layout).AddVariations("relaxed", "float16", quant8) # TEST 4: SPACE_TO_BATCH_NCHW_4, block_size = [3, 2] i4 = Input("op1", "TENSOR_FLOAT32", "{1, 4, 2, 1}") pad4 = Parameter("paddings", "TENSOR_INT32", "{2, 2}", [1, 1, 2, 4]) o4 = Output("op4", "TENSOR_FLOAT32", "{6, 2, 4, 1}") Model().Operation("SPACE_TO_BATCH_ND", i4, [3, 2], pad4, layout).To(o4) # Additional data type quant8 = DataTypeConverter().Identify({ i4: ("TENSOR_QUANT8_ASYMM", 0.25, 128), o4: ("TENSOR_QUANT8_ASYMM", 0.25, 128) }) # Instantiate an example example = Example({ i4: [1, 2, 3, 4, 5, 6, 7, 8], o4: [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0] }).AddNchw(i4, o4, layout).AddVariations("relaxed", "float16", quant8)
class PrintDictResults: def __init__(self, dict_of_sorted_words): self.list_of_sorted_words = dict_of_sorted_words def print_items(self, counter): print(f'{counter + 1}. "{self.list_of_sorted_words[counter][1]}" : {self.list_of_sorted_words[counter][0]}') def get_all_words(self): for item in self.list_of_sorted_words: self.print_items((self.list_of_sorted_words.index(item))) def get_top(self, number_of_wanted_items): for i in range(0, number_of_wanted_items): self.print_items(i)
class Node(object): def __init__(self, value): self.value = value self.left = None self.right = None #Binary Tree class BinaryTree(object): def __init__(self, root): self.root = Node(root) def search(self, find_val): """Return True if the value is in the tree, return False otherwise.""" return self.preorder_search(self.root, find_val) def print_tree(self): """Print out all tree nodes as they are visited in a pre-order traversal.""" return self.preorder_print(self.root,"")[:-1] def preorder_search(self, start, find_val): """Helper method - use this to create a recursive search solution.""" if start: hasVal = False if start.value == find_val: hasVal = True return hasVal or self.preorder_search(start.left, find_val) or self.preorder_search(start.right, find_val) return False def preorder_print(self, start, traversal): """Helper method - use this to create a recursive print solution.""" if start: traversal += str(start.value) + "-" traversal = self.preorder_print(start.left, traversal) traversal = self.preorder_print(start.right, traversal) return traversal # Binary Search Tree class BST(object): def __init__(self, root): self.root = Node(root) def insert(self, new_val): self.insert_helper(self.root, new_val) def search(self, find_val): return self.search_helper(self.root, find_val) def search_helper(self, start, find_val): if start.value == find_val: return True elif find_val < start.value: if start.left: return self.search_helper(start.left, find_val) elif find_val > start.value: if start.right: return self.search_helper(start.right, find_val) return False def insert_helper(self, start, new_val): if start.value == new_val: return if new_val > start.value: if start.right: self.insert_helper(start.right, new_val) else: start.right = Node(new_val) if new_val < start.value: if start.left: self.insert_helper(start.left, new_val) else: start.left = Node(new_val) return def print_tree(self): """Print out all tree nodes as they are visited in a pre-order traversal.""" return self.preorder_print(self.root,"")[:-1] def preorder_print(self, start, traversal): """Helper method - use this to create a recursive print solution.""" if start: traversal += str(start.value) + "-" traversal = self.preorder_print(start.left, traversal) traversal = self.preorder_print(start.right, traversal) return traversal
def iterative_levenshtein(string, target, costs=(1, 1, 1)): """ piglaker modified version : return edits iterative_levenshtein(s, t) -> ldist ldist is the Levenshtein distance between the strings s and t. For all i and j, dist[i,j] will contain the Levenshtein distance between the first i characters of s and the first j characters of t costs: a tuple or a list with three integers (d, i, s) where d defines the costs for a deletion i defines the costs for an insertion and s defines the costs for a substitution """ rows = len(string) + 1 cols = len(target) + 1 deletes, inserts, substitutes = costs dist = [[0 for x in range(cols)] for x in range(rows)] # dist = np.zeros(shape=(rows, cols)) edits = [ [[] for x in range(cols)] for x in range(rows)] # source prefixes can be transformed into empty strings # by deletions: for row in range(1, rows): dist[row][0] = row * deletes # target prefixes can be created from an empty source string # by inserting the characters for col in range(1, cols): dist[0][col] = col * inserts for col in range(1, cols): for row in range(1, rows): if string[row - 1] == target[col - 1]: cost = 0 else: cost = substitutes dist[row][col] = min(dist[row - 1][col] + deletes, dist[row][col - 1] + inserts, dist[row - 1][col - 1] + cost) # substitution # record edit min_distance = dist[row][col] if min_distance == dist[row - 1][col] + deletes: edit = ("delete", string[row - 1]) edits[row][col] = edits[row-1][col] + [edit] elif min_distance == dist[row][col - 1] + inserts: edit = ("insert", col, target[col-1]) edits[row][col] = edits[row][col-1] + [edit] else: edit = ("substitution", string[row-1], target[col-1]) edits[row][col] = edits[row-1][col-1] + [edit] return dist[row][col], edits[row][col] result, edits = iterative_levenshtein([1,2,3], [0,13]) print(result, edits)
# TODO: this may want to move to Invoke if we can find a use for it there too? # Or make it _more_ narrowly focused and stay here? class NothingToDo(Exception): pass class GroupException(Exception): """ Lightweight exception wrapper for `.GroupResult` when one contains errors. .. versionadded:: 2.0 """ def __init__(self, result): self.result = result
def tail(xs): """ Напишете функция в Python, която взима списък и връща нов списък, който се състои от всички елементи **без първия** от първоначалния списъка. **Не се грижете, ако списъка е празен** >>> tail([1, 2, 3]) [2, 3] >>> tail(["Python"]) [] """ pass
class Button(object): def __init__(self, url, label, get=''): self.url = url self.label = label self.get = get
class Solution: def getFormattedEMail(self, email): userName, domain = email.split('@') if '+' in userName: userName = userName.split('+')[0] if '.' in userName: userName = ''.join(userName.split('.')) return userName + '@' + domain def numUniqueEmails(self, emails: List[str]) -> int: emailsSet = set() for email in emails: emailsSet.add(self.getFormattedEMail(email)) return len(emailsSet)
class SendResult: def __init__(self, result={}): self.successful = result.get('code', None) == '200' self.message_id = result.get('message_id', None)
# -*- coding: utf-8 -*- """ Created on Wed Jan 3 10:27:50 2018 @author: James Jiang """ all_lines = [line.rstrip('\n') for line in open('Data.txt')] def has_two_pairs(string): for i in range(len(string) - 1): pair = string[i:i + 2] if (pair in string[:i]) or (pair in string[i + 2:]): return True else: return False def has_repeat_with_space(string): for i in range(len(string) - 2): if string[i] == string[i + 2]: return True else: return False def is_nice(string): if (has_two_pairs(string) == True) and( has_repeat_with_space(string) == True): return True else: return False count = 0 for string in all_lines: if is_nice(string) == True: count += 1 print(count)
#1 celsius=float(input("请输入一个摄氏度:>>")) fahrenheit=(9 / 5) *celsius + 32 print("华氏温度为:%.1f" % fahrenheit) #2 radius=float(input("请输入圆柱体的半径:>>")) length=float(input("请输入圆柱体的高:>>")) area= radius*radius*3.14159265 volume=area*length print("The area is %.4f" % area ) print("The volume is %.1f" % volume) #3 feet=float(input("请输入需要转换的英里值:>>")) meter=feet*0.305 print("对应的米数为: %.4f" % meter) #4 M=float(input("Enter amount of water in kilogram: ")) initiaTemperature=float(input("Enter the initia temperature: ")) finalTemperature=float(input("Enter the final temperature: ")) Q= M *(finalTemperature -initiaTemperature)*4184 print("The energy needed is %.1f" % Q) #5 balance=float(input("输入差额:>>")) interestrate=float(input("输入年利率:>>")) interestrate=balance*(interestrate/1200) print("下月要付的利息为: %.5f" % interestrate) #6 v0,v1,t=map(float,input('输入初始速度:,输入末速度:,输入占用的时间:').split(',')) a=(v1-v0)/t print("平均加速度为:%.4f" % a) #7 S=float(input("输入存款金额:>>")) one=S *(1+0.00417) two=(S+one)*(1+0.00417) theer=(S+two)*(1+0.00417) four=(S+theer)*(1+0.00417) five=(S+four)*(1+0.00417) six=(S+five)*(1+0.00417) print("六个月后账户里的金额为:%.2f"% six) #8 num=int(input("请输入一个0-1000的整数:>>")) a=int(num%100) b=int(a%10) c=int(a/10) d=int(num/100) sum = b + c +d print("各位数和为:", sum)
######################################################## # Copyright (c) 2015-2017 by European Commission. # # All Rights Reserved. # ######################################################## extends("BaseKPI.py") """ Transmission usage (%) ---------------------- Indexed by * scope * delivery point (dummy) * energy * test case * transmission The instant transmission usage of an interconnection is the ratio of electricity or gas flowing through the transmission over its capacity. The KPI computes the yearly average value of instant transmission usage, for a given transmission: .. math:: transmissionUsage_{transmission} = \\small \\frac{mean(instantTransmissionUsage^{transmission})}{installedCapacity^{transmission}} (\\%) """ def computeIndicator(context, indexFilter, paramsIndicator, kpiDict): timeStepDuration = getTimeStepDurationInHours(context) selectedScopes = indexFilter.filterIndexList(0, getScopes()) selectedEnergies = indexFilter.filterIndexList(1, getEnergies(context, includedEnergies = {ELECTRICITY, GAS})) selectedTestCases = indexFilter.filterIndexList(2, context.getResultsIndexSet()) selectedAssets = indexFilter.filterIndexList(3, getAssets(context, includedTechnologies = TRANSMISSION_TYPES)) selectedAssetsByScope = getAssetsByScope(context, selectedScopes, includedAssetsName = selectedAssets) capacitiesDict = getTransmissionCapacity(context, selectedScopes, selectedTestCases, selectedEnergies, selectedAssetsByScope) transmissionDict = getTransmittedEnergy(context, selectedScopes, selectedTestCases, selectedEnergies, selectedAssetsByScope) for index in capacitiesDict: totalCapacity = capacitiesDict[index].getSumValue() if totalCapacity != 0: kpiDict[index] = 100 * transmissionDict[index].getSumValue() / totalCapacity return kpiDict def get_indexing(context): baseIndexList = [getScopesIndexing(), getEnergiesIndexing(context, includedEnergies = {ELECTRICITY, GAS}), getTestCasesIndexing(context), getAssetsIndexing(context, includedTechnologies = TRANSMISSION_TYPES)] return baseIndexList IndicatorLabel = "Transmission usage" IndicatorUnit = "%" IndicatorDeltaUnit = "%" IndicatorDescription = "Usage of a transmission" IndicatorParameters = [] IndicatorIcon = "" IndicatorCategory = "Results>Transmission" IndicatorTags = "Power System, Gas System, Power Markets"
"""Dummy SMTP API.""" class SMTP_dummy(object): # pylint: disable=useless-object-inheritance # pylint: disable=invalid-name, no-self-use """Dummy SMTP API.""" # Class variables track member function calls for later checking. msg_from = None msg_to = None msg = None def login(self, login, password): """Do nothing.""" def sendmail(self, msg_from, msg_to, msg): """Remember the recipients.""" SMTP_dummy.msg_from = msg_from SMTP_dummy.msg_to = msg_to SMTP_dummy.msg = msg def close(self): """Do nothing.""" def clear(self): """Reset class variables.""" SMTP_dummy.msg_from = None SMTP_dummy.msg_to = [] SMTP_dummy.msg = None
""" MECHANICAL PARAMETERS """ s0_step_per_rev = 27106 s1_step_per_rev = 27106 pitch_travel_rads = 0.5 yaw_travel_rads = 1.2 pitch_center_rads = 0.21 yaw_center_rads = 0.59 default_vel_radps = 2.5 default_accel_radps2 = 20 trigger_min_pwm = 40 trigger_max_pwm = 120 trigger_hold_s = 0.5 """ PI PINOUTS """ half_press_index = 14 full_press_index = 15 laser_index = 17 """ OPERATION PARAMETERS """ gcode_folder = 'gcode' audio_path = 'audio' saveimg_path = '/home/pi/imgs' loser_mode_bump_pixels = 20 loser_mode_delay_s = 0.5 normal_mode_vertical_bump = 8 normal_mode_horiz_bump = 0 face_mode_close_enough_pixels = 10 aim_lock_fade_s = 0.5 # Soft lock on and fade into full tracking """ CAMERA PARAMETERS """ video_resolution = (640,480) laser_center = (269,305) """ OPENCV PARAMETERS """ tracking_mode = "mosse" # NOT IMPLEMENTED track_kp = 1500 track_ki = 350 track_kd = 5 lock_on_size_px = (40,40) lead_ahead_constant = 15 # pixels lead multiplier. Guess and check fam # Tuning for face finder only # track_kp = 500 # track_ki = 200 # track_kd = 2 """ FEATHER COMM PARAMETERS """ # Chars used for setting parameters on feather. All vars here must be int Feather_Parameter_Chars = { 'a': s0_step_per_rev, 'b': s1_step_per_rev, 'c': default_vel_radps, 'd': default_accel_radps2 } """ DEBUG PARAMS """ DEBUG_MODE = True SAVE_FRAMES = True
def square_of_number(): number = "179" number_for_sum = "179" for i in range (49): number = number + number_for_sum number = int(number) number = number ** 2 print(number) square_of_number()
# [카카오] 오픈채팅방 def solution(record): answer = [] id_dict = {} for query in record: q = query.split(" ") if len(q) >= 3: id_dict[q[1]] = q[2] for query in record: q = query.split(" ") if q[0] == "Enter": answer.append(f"{id_dict[q[1]]}님이 들어왔습니다.") elif q[0] == "Leave": answer.append(f"{id_dict[q[1]]}님이 나갔습니다.") return answer if __name__ == "__main__": record = [ "Enter uid1234 Muzi", "Enter uid4567 Prodo", "Leave uid1234", "Enter uid1234 Prodo", "Change uid4567 Ryan", ] print(solution(record))
# -*- coding: utf-8 -*- # @Time : 2021/8/6 15:01 # @Author : zc # @Desc : json格式的response序列化成实例对象异常 class SerializeResponseException(Exception): def __init__(self, err_msg): super().__init__(self, err_msg)
''' Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: strs = ["flower","flow","flight"] Output: "fl" Constraints: 1 <= strs.length <= 200 0 <= strs[i].length <= 200 strs[i] consists of only lower-case English letters. ''' class Node: def __init__(self): self.children = defaultdict(Node) self.count = 0 class Trie: def __init__(self): self.t = Node() def add(self,st): temp = self.t for i in st: temp = temp.children[i] temp.count += 1 return temp.count def traverse(self,st,n): temp = self.t ct = 0 if temp.count == n : ct += 1 for i in st: temp = temp.children[i] # print(temp.count) if temp.count == n : ct += 1 return ct class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: head = Trie() ans =0 for st in strs: ma = head.add(st) ans = head.traverse(strs[0],len(strs)) print(ans) return strs[0][:ans]
aeki_config = { "AEKI_HOST": "localhost", # rename to hostname for cgi if you like "IOT_HOST":"localhost" # assumes iot test device is also on local host }
def is_divisible(number): divisible = [num for num in range(2, 11) if number % num == 0] return True if divisible else False start = int(input()) end = int(input()) print([int(_) for _ in range(start, end + 1) if is_divisible(_)])
""""" Path to the Image Dataset directories """"" TR_IMG_DIR = './WORKSPACE/DATASET/annotation/' GT_IMG_DIR = './WORKSPACE/DATASET/annotation/' """"" Path to Numpy Video directories """"" TR_VID_DIR = './WORKSPACE/DATA/TR_DATA/' GT_VID_DIR = './WORKSPACE/DATA/GT_DATA/' """"" Path to Numpy batches directories """"" TR_VGG_DIR = './WORKSPACE/BATCH/VGG-16/' TR_BATCH_DIR = './WORKSPACE/BATCH/TR_BATCH/' GT_BATCH_DIR = './WORKSPACE/BATCH/GT_BATCH/' """"" Path to the global test dataset directories """"" TEST_DIR = './WORKSPACE/TEST/annotation/' TEST_RES = './WORKSPACE/TEST/result/' """"" Path to the text file, containing the dataset video names """"" DATASET_INDEX = './train.txt' TEST_INDEX = './test.txt' """"" The new image size """"" IMG_SIZE = 224 """""" """" The saved model directory """ Model_DIR = './WORKSPACE/TRAINED_MODEL/'
""" Quality Control Tools | Cannlytics Author: Keegan Skeate <keegan@cannlytics.com> Created: 2/6/2021 Updated: 6/23/2021 License: MIT License <https://opensource.org/licenses/MIT> Perform various quality control checks and analyses to ensure that your laboratory is operating as desired. TODO: - Trend analyte results. - Create predictions of lab results given available inputs! - Statistics for internal standards. """ def backup_data(): """Backup data stored in Firestore.""" return NotImplementedError def calculate_relative_percent_diff(): """Calculate relative perecent difference between two samples.""" return NotImplementedError def plot_area_response(): """Plot area response over time for a group of samples.""" return NotImplementedError def plot_deviations(): """Plot deviations in results for a group of samples.""" return NotImplementedError def track_deviations(): """Track deviations in results for a group of samples.""" return NotImplementedError def metrc_reconciliation(): """Reconcile Metrc data with Firestore data.""" return NotImplementedError
# Goal: # # Find the sums of subsections of an array # Change an element of the array and don't recalculate everything if __name__ == '__main__': arr = [1,2,3,4,5] print('here')
""" # Definition for a Node. class Node: def __init__(self, val = 0, neighbors = None): self.val = val self.neighbors = neighbors if neighbors is not None else [] """ class Solution: dairy = {} def cloneGraph(self, node: 'Node') -> 'Node': if not node: return None if node in self.dairy: return self.dairy[node] newnode = Node(node.val) self.dairy[node] = newnode for n in node.neighbors: newnode.neighbors.append(self.cloneGraph(n)) return newnode
inputFile = "day6/day6_1_input.txt" # https://adventofcode.com/2021/day/6 if __name__ == '__main__': print("Lanternfish") with open(inputFile, "r") as f: fishArray = [int(num) for num in f.read().strip().split(",")] # for part2... not needed to read array again from file origFishArray = fishArray.copy() # unsustainable solution for part2... to big array.. memory heavy nbDays = 1 while nbDays <= 80: for index in range(0, len(fishArray)): if fishArray[index] == 0: fishArray[index] = 6 fishArray.append(8) continue fishArray[index] -= 1 nbDays += 1 print("part1. Nb fish after 80 days: ", len(fishArray)) ## part 2 --> fish counters fishCounter = [0] * 9 for num in origFishArray: fishCounter[num] += 1 # index represent number.. value represent nb fishes for that fish stage nbDays = 1 while nbDays <= 256: # each day shift array values to th left. nbSpawn = 0 for i in range(0, len(fishCounter) - 1): if i == 0: ## spawn for current day nbSpawn = fishCounter[i] fishCounter[i] = fishCounter[i + 1] # spawn fishes for current day fishCounter[8] = nbSpawn # spawn nb fishes fishCounter[6] += nbSpawn # reset nbSpawn fished to state 6 nbDays +=1 print("part2. After 256 days. Efficient solution: ", sum(fishCounter))
INITIAL = 'INITIAL' CONNECTING = 'CONNECTING' ESTABLISHED = 'ESTABLISHED' ACCEPTED = 'ACCEPTED' DECLINED = 'DECLINED' ENDED = 'ENDED' ERROR = 'ERROR'
# Static data class for character stats class Zhongli: level = 90 talentLevel = 8 # Base stat values baseHP = 14695 baseATK = 251 baseCritRATE = 0.05 baseCritDMG = 0.5 # Ability MVs and frame counts class Normal: # Normal attack spear kick hop combo frames = 140 #mv = 2.7090 mv = 0.5653+0.5723+0.7087+0.7889+(4*0.1975) hits = 8 rotations = (720 - 100 - 140) / 140 # Removing time for hold E and Q hpConv = 0.0139 class HoldE: # Hold E initial hit frames = 720 mv = 1.3440 hits = 2 # Damage from pillar pop-up and hold E shockwave hpConv = 0.0190 class EResonate: # Pillar resonance frames = 120 mv = 0.4480 rotations = 6 hpConv = 0.0190 class Q: # I WILL HAVE ORDER frames = 140 mv = 6.3956 hpConv = 0.33
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """ML METADATA Data Validation external dependencies that can be loaded in WORKSPACE files. """ load("//ml_metadata:mysql_configure.bzl", "mysql_configure") def ml_metadata_workspace(): """All ML Metadata external dependencies.""" mysql_configure()
class Environment(object): def ask(self, prompt, default=None, starting=None): pass def ask_values(self, prompt, values, default=None, starting=None): pass def ask_directory(self, prompt, default=None, starting=None): pass def ask_completion(self, prompt, values, starting=None): pass def message(self, message): pass def yes_or_no(self, prompt): pass def y_or_n(self, prompt): pass def get(self, name, default=None): pass def get_offset(self): pass def get_text(self): pass def get_region(self): pass def filename(self): pass def is_modified(self): pass def goto_line(self, lineno): pass def insert_line(self, line, lineno): pass def insert(self, text): pass def delete(self, start, end): pass def filenames(self): pass def save_files(self, filenames): pass def reload_files(self, filenames, moves=None): pass def find_file(self, filename, readonly=False, other=False): pass def create_progress(self, name): pass def current_word(self): pass def push_mark(self): pass def pop_mark(self): pass def prefix_value(self, prefix): pass def show_occurrences(self, locations): pass def show_doc(self, docs, altview=False): pass def preview_changes(self, diffs): pass def local_command(self, name, callback, key=None, prefix=False): pass def global_command(self, name, callback, key=None, prefix=False): pass def add_hook(self, name, callback, hook): pass @staticmethod def _completion_text(proposal): return proposal.name.partition(':')[0].strip() def _completion_data(self, proposal): return self._completion_text(proposal)
x = float(input("Enter Number: ")) if(x % 2) == 0 and x > 0: print("The number you entered is positive and even.") elif(x % 2) == 0 and x < 0: print("The number you entered is negative and even.") elif(x % 2) != 0 and x > 0: print("The number you entered is positive and odd.") elif(x % 2) != 0 and x < 0: print("The number you entered is negative and odd.") else: print("Please enter a non zero number.")
""" AiiDA Plugin Template Adapt this template for your own needs. """ __version__ = '0.3.4'
#Ask user for name name = input("What is your name?: ") #Ask user for the age age = input("How old are you? ") #Ask user for city city = input("What city do you live in? ") #Ask user what they enjoy hobbies = input("What are your hobbies?, What do you love doing? ") #Create output text using placeholders to concatenate data string = "Your name is {} and you are {} years old. You live in {} and you love {}" output = string.format(name, age, city, hobbies) #Print output to screen print(output)
class Info: """ Allows to print out information about the application. """ def commands(): print('''Main modules: imu | Inertial Measurement Unit (GPS, gyro, accelerometer) gps | GPS gyro | Gyroscope accel | Accelerometer fuzzy | Fuzzy Controller nn | Neural Network test | Unit-tests for each module exit | Exit ''') def help(): print('''SDC CONSOLE APP SDC stands for Self-Driving Cars. So this app allows you to simulate some modules of SDC within a console. All modules can be called by: sdc module --mode All information modules can be called by: sdc -commands sdc -help ''') def imu(): print('''sdc imu: --p | IMU (position) --v | IMU (velocity) --a | IMU (acceleration) ''') def gps(): print('''sdc gps: --p | GPS (position) --v | GPS (velocity) --a | GPS (acceleration) ''')
print('Analisador de números') print('=-=' * 15) n1 = int(input('Digite o primeiro número: ')) n2 = int(input('Digite o segundo número: ')) if n1 > n2: print('O número {} é maior que o número {}'.format(n1, n2)) elif n2 > n1: print('O número {} é maior que o número {}'.format(n2, n1)) else: print('Os dois valores são iguais.')
print(''' Exercício 71 da aula 15 de Python Curso do Guanabara Day 24 Code Python - 23/05/2018 ''') print('{:^30}'.format('BANCO DO CIRINO')) print('=' * 30) n = int(input('Qual o valor para sacar? R$ ')) total = n nota = 50 # começar de cima para baixo na estrutura qtdNota = 0 while True: if total >= nota: total -= nota qtdNota += 1 else: if qtdNota > 0: print(f'Total de {qtdNota} notas de {nota}') if nota == 50: nota = 20 elif nota == 20: nota = 10 elif nota == 10: nota = 5 elif nota == 5: nota = 1 qtdNota = 0 if total == 0: break print('=' * 30) print('{:^30}'.format('FIM')) print('=' * 30)
def second_task(**context): print("This is ----------- task 2") return "hoge======" def third_task(**context): output = context["task_instance"].xcom_pull(task_ids="python_task_2") print("This is ----------- task 3") return "This is the result : " + output
""" MARKDOWN --- YamlDesc: CONTENT-ARTICLE Title: python builtin class attributes MetaDescription: python object oriented programming class builtin attributes __doc__, __name__, __module__, __bases__ example code, tutorials MetaKeywords: python object oriented programming class builtin attributes __doc__, __name__, __module__, __bases__ example code, tutorials Author: Hemaxi ContentName: class-builtin-attributes --- MARKDOWN """ """ MARKDOWN # Python Class Built-in Attributes * Object Oriented Programming, in PYTHON * Classes in PYTHON have a set of built in attributes and functions * Class built-in attributes * `__doc__` Prints the CLASS Documentation string * `__name__` prints the CLASS Name * `__module__` module name where the class is defined * `__bases__` base class list in case of Inheritance MARKDOWN """ # MARKDOWN ``` # 1. Create a CLASS ################### class Learnpython: 'This is a brief note about the class, This is the LEARNPYTHON Class' # a class Variable ti_var = 100 # a class list ti_list = ["a","b","c"] # a class tuple ti_tuple = ("x","y","z") # a class dictionary ti_dictionary = {"1":"A", "2":"b", "3":"c"} # a class function def ti_function(self): "This is a class function" print("This is a message from the LEARNPYTHON Class ti_function") # 2. Using the built-in attributes ################################## # Create an Object of the Class tiObject = Learnpython() # __doc__ : Prints the CLASS Documentation string print(Learnpython.__doc__) #__name__ : prints the CLASS Name print(Learnpython.__name__) # __module__ : module name where the class is defined print(Learnpython.__module__) # __bases__: base class list in case of Inheritance print(Learnpython.__bases__) # MARKDOWN ```
''' Source : https://leetcode.com/problems/maximum-depth-of-binary-tree/ Author : Yuan Wang Date : 2018-07-21 /********************************************************************************** *Given a binary tree, find its maximum depth. * *The maximum depth is the number of nodes along the longest path from the root node *down to the farthest leaf node. * *Note: A leaf is a node with no children. * *Example: * *Given binary tree [3,9,20,null,null,15,7], * * 3 * / \ * 9 20 * / \ * 15 7 *return its depth = 3. **********************************************************************************/ ''' def maxDepth(self, root): """ :type root: TreeNode :rtype: int """ depth=0 return self.calDepth(root,depth) def calDepth(self,root,depth): if root: depth+=1 return max(self.calDepth(root.left,depth),self.calDepth(root.right,depth)) return depth
#Faça um Programa que leia um vetor de 5 números inteiros e mostre-os. lista=[] for i in range(1, 6): lista.append(int(input('Digite um número: '))) print(lista)
# Licensed under a 3-clause BSD style license - see LICENSE.rst """ ======================== SBPy Vega Sources Module ======================== Descriptions of source Vega spectra. """ # Parameters passed to Vega.from_file. 'filename' is a URL. After # adding spectra here update __init__.py docstring and # docs/sbpy/spectroscopy.rst. available = [ 'Bohlin2014' ] Bohlin2014 = { 'filename': 'alpha_lyr_stis_008-edit.fits', 'description': 'Spectrum of Bohlin 2014', 'bibcode': '2014AJ....147..127B' }
def divide_by_four(input_number): return input_number/4 result = divide_by_four(16) # result now holds 4 print("16 divided by 4 is " + str(result) + "!") result2 = divide_by_four(result) print(str(result) + " divided by 4 is " + str(result2) + "!") def calculate_age(current_year, birth_year): age = current_year - birth_year return age my_age = calculate_age(2049, 1993) dads_age = calculate_age(2049, 1953) print("I am "+str(my_age)+" years old and my dad is "+str(dads_age)+" years old")
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """Here is the class that controls the bot. It also contains various value manipulation, and one function that lets the bot play one round, from first roll until hold. The intelligence is basically how many rolls the bot is going to do on one round. The easier level on the bot rolls so many times that its statistically is going to roll a one, the hardest level rolls lesser times to statistically hold before they’re rolling a one. """ class Bot(): """Bot class.""" def __init__(self, curr_round_score, total_score, level): """Initiate a bot object.""" self.curr_round_score = curr_round_score self.total_score = total_score self.level = level self.is_holding = True def get_number_of_rounds(self, bot_level): """Get how many rounds bot should run based on level.""" rounds_to_run = 0 if bot_level == 1: rounds_to_run = 14 elif bot_level == 2: rounds_to_run = 9 elif bot_level == 3: rounds_to_run = 5 return rounds_to_run def add_curr_to_total(self): """Add current score to total.""" self.total_score += self.curr_round_score def reset_current_score(self): """Reset current score to zero.""" self.curr_round_score = 0 def bot_round(self, die): """One round for the bot.""" rounds_to_run = self.get_number_of_rounds(int(self.level)) for x in range(rounds_to_run): self.curr_round_score += die.roll() print(f"The bot dice shows {die.this_roll}") if die.this_roll == 1: self.reset_current_score() self.is_holding = True print("The bot rolled a 1!!") print("--------------------") break self.add_curr_to_total() self.reset_current_score() print(f"Current bot round score {self.curr_round_score}") print(f"Total bot score {self.total_score}") def reset_scores(self): """Reset bot scores.""" self.curr_round_score = 0 self.total_score = 0
##################### ### Base classes. ### ##################### class barrier: synonyms = ["wall"] m_description = "There is a barrier in the way." def __init__(self, passable=False): self.passable = passable def __str__(self): return self.m_description def __repr__(self): return self.synonyms[0] class passage(barrier): synonyms = ["clearing"] m_description = "There is a clearing ahead." def __init__(self, passable=True): self.passable = passable class door(barrier): synonyms = ["door"] m_description = "There is door ahead." m_already_open = "The door is already opened." m_on_open = "You opened the door." m_already_closed = "The door is already closed." m_on_close = "You closed the door." def open(self): if self.passable: return self.m_already_open else: self.passable = True return self.m_on_open def close(self): if not self.passable: return self.m_already_closed else: self.passable = False return self.m_on_close def __str__(self): if self.passable: s = "opened" else: s = "closed" s = f"{self.m_description} It is currently {s}." return s ###################### ### Child classes. ### ######################
g1 = "#5d9e6d" g2 = "#549464" g3 = "#498758" g4 = "#3d784b" b1 = "#5f7ab8" b2 = "#5a70a3" b3 = "#4d67a3" r4 = "#262626" w1 = "#f0f0f0" w2 = "#d9d9d9" w3 = "#e6e6e6" r1 = "#707070" r2 = "#595959" r3 = "#404040" r4 = "#262626" l1 = "#d95757" l2 = "#d99457" l3 = "#d97857" v1 = "#664f47" v2 = "#4a3d39" v3 = "#382f2c" v4 = "#332c38" p1 = "#2e5925" p2 = "#2c4f24" p3 = "#284722" s1 = "#bebf7c" s2 = "#bfb37c" s3 = "#ccc481" cc = "#456e41", pp = ["rgb(165, 42, 42, 0.5)", "pink", "purple"] sk = "#82d2e0" i1 = "#c3e0dd" i2 = "#8fdaeb" i3 = "#71bfd1" o1 = "#7996d9" o2 = "#88a1db" o3 = "#6d8bd1" pa = "#443f45" a1 = "#c474d4" a2 = "#b97ec4" a3 = "#a66fb0" bl = "#000000" zz = "zz" bb = "bb" ll = "ll" rr = "rr" ii = "ii" gg = "gg" ss = "ss" ww = "ww" oo = "oo" aa = "aa" tb = ["treasure", "d", 8, s1] t1 = ["treasure", "l", 2.75, i1] t2 = ["treasure", "d", 2.95, i1] t3 = ["treasure", "r", 3.15, i1] t4 = ["treasure", "u", 3.32, i1] t5 = ["treasure", "l", 3.62, i1] e0 = 6 e1 = 7 e2 = 8 e3 = 9 e4 = 10 e5 = 11 maps = { "main": { "players": {}, "background": "darkslategray", "map": [ # 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 [r3, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, r3, r2, r1, r4, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r3, r2, r3, r1, r2, r3, r1, r2, r3, r1, r3, r1, r3, r2, r3, r2, r3, r2, r3, r2, r1, r3, w2, w1, w2, w2, w1], [r2, r3, r2, r1, r3, r4, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, r3, r2, r1, r4, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r3, r2, r3, r1, r2, r3, r1, r2, r3, r1, r3, r1, r3, r2, r3, r2, r3, r2, w2, w1, w2, w2], [r4, r2, r3, r4, r3, r2, pp, g3, g4, g4, r3, r1, r2, r3, r2, r4, g4, g2, g3, r4, r1, r2, r2, r4, r3, g4, g3, g4, r1, r2, r3, r4, r1, g4, g2, g3, r2, r1, r3, r4, r2, r3, g3, g4, g2, g3, g4, r1, r2, r3, r2, r4, r1, r4, pp, g4, g3, g4, g3, r3, r2, g3, g4, g4, r1, r3, r4, r1, r3, r4, w2, w1, w2], [r1, r3, r4, g1, g1, g2, g3, g2, g2, g3, g2, g2, g1, g2, g1, g2, g3, g3, g2, g2, g3, g2, g2, g1, g2, g1, g1, g2, g1, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, g2, g2, g1, g1, g1, g2, g2, g1, g1, g2, g2, g3, g2, g3, g2, g2, g3, g2, g2, g2, g3, g2, g2, g2, g1, g2, g3, r3, w1, w2, w1], [r2, r1, r2, g2, g1, g2, g2, g1, g1, g2, g3, g3, g2, g1, g2, g1, g2, g2, g1, g1, g2, g1, g1, g2, g1, g2, g2, g1, g2, g1, g1, g2, g2, g1, g3, g2, g2, g2, g3, g2, g3, g3, g3, g2, g3, g2, g2, g1, g1, g2, g2, g3, g3, g2, g1, g2, g1, g1, g2, g1, g1, g1, g2, g1, g1, g1, g2, g3, r2, w1, w2, w1, w1], [r3, r4, g2, g1, g2, g2, g1, g2, g1, g1, g2, g2, g1, g2, g1, g2, r2, r3, r1, g4, g3, g2, g2, g1, g2, g1, g1, g2, g1, g2, s2, s3, s2, g2, g2, g2, g1, g1, g2, g1, g2, g2, g3, g1, g2, g1, g1, g2, g2, g3, r3, r2, r1, r4, g3, g3, g2, g1, g2, g2, g2, g2, g1, g2, g2, r2, r3, r2, r1, w2, w1, w2, w1], [r3, r2, g3, g2, g2, g1, g2, g1, g2, g2, g3, g2, g2, g3, g4, r4, r3, r1, r2, r3, g4, g3, g3, g2, g1, g2, g2, g1, g2, s1, b3, b2, b3, s1, g1, g1, g1, g2, g3, g2, g3, g2, g1, g2, g3, g2, g2, g2, g3, r2, r1, r3, r4, r3, r2, r1, g2, g1, g1, g2, g1, g1, g2, r2, r3, r1, w1, r3, w2, w1, w1, w2, w2], [r2, r3, g3, g2, g1, g2, g1, g2, g1, g1, g2, g3, g3, g4, g4, r3, r4, r3, r4, r2, r1, g3, g2, g3, g2, g1, g1, g2, g1, b1, b2, b1, b2, b3, g2, g2, g2, g3, g2, g3, g2, g3, g2, g3, g2, g3, g2, g1, g2, g3, r3, r4, r2, r1, r3, g3, g4, g2, g2, g1, g2, r4, r2, r3, r2, w1, w2, w1, r4, w2, w2, w2, w1], [r3, r4, g2, g1, g2, g1, g2, g3, g2, g2, g3, g2, g2, g3, g3, g4, r2, r4, r2, r1, g3, g2, g2, g2, g1, g2, g2, g1, s1, b2, b3, b2, b1, b2, s2, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g3, g3, r3, r2, g3, g2, g3, g2, g1, g2, r3, r2, r3, r2, w2, w2, r1, r4, r3, r2, w1, w1, w2], [r2, r3, r2, g2, g2, g3, r3, r2, r3, g1, g2, g1, g1, g2, g2, g3, g2, g3, g4, g3, g2, g1, g1, g1, g2, g1, g1, g2, g2, s1, b1, b3, b2, s1, g2, g3, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g2, g3, g4, g2, g3, g2, r3, r2, r3, r2, r1, w1, w1, r3, r2, r3, p1, p3, pp, w2, w1, w2], [r3, r4, r1, g2, g3, r3, r2, r3, r4, r2, g2, g2, g2, g3, g3, g2, g1, g2, g3, g2, g1, g2, g2, g2, g1, g2, g2, g3, g2, g2, s2, s2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g3, g2, g1, g2, g1, g3, g2, g3, g4, r2, r3, r4, r3, r4, r3, r2, r3, r2, r4, r1, p1, p3, p1, p3, w2, w2, w1], [r2, r1, r3, g1, g2, r2, r3, r1, r2, r1, r2, r3, g3, g2, g2, g3, g2, g1, g2, g1, g2, g1, g1, g1, g2, g3, g3, g2, g1, g2, g3, g2, g2, g3, g2, g1, g2, g1, g2, g1, g2, g3, g3, g2, g2, g1, g2, g1, g2, g1, g2, g4, g3, g2, g3, g3, p1, p3, p1, p1, p3, p1, p3, p3, p1, p1, p3, p2, p3, p1, w1, w2, w1], [r1, r2, r2, g2, g3, g3, r4, r3, r1, r2, r3, g4, g2, g1, g1, g2, g1, g2, g1, g2, g1, g2, g2, g3, g3, g2, g2, g1, g2, g3, g2, g1, g1, g2, g1, g2, g1, g2, g3, g2, g3, g2, g2, g1, g1, g2, g3, g2, g1, g2, g2, g3, g2, g2, g3, g2, g4, p2, p2, p2, p1, p2, p2, p1, p3, p1, p1, p3, p1, p3, w1, w2, w2], [r2, r4, g2, g1, g1, g2, g3, g4, g3, g3, g2, g2, g1, g2, g1, g2, g3, s3, g2, g2, s1, s2, g2, g1, g2, g1, g1, g2, g1, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, g2, g2, g1, g1, g1, g2, g2, g1, g1, g2, g2, g3, g2, g3, p2, p1, p3, p3, p2, p2, p3, p2, p2, p2, p2, p2, p3, p1, w2, w1, w2], [r2, r3, g3, g2, g2, g3, g2, g3, g2, g2, g1, g1, g2, g3, g2, g3, s2, b3, b2, b1, b3, b2, s3, g2, g3, g2, g2, g3, g2, g3, g3, g2, g2, g1, g1, g3, g2, g2, g3, g2, g1, g1, g1, s3, g2, g2, g2, g2, g3, g2, g2, g3, g3, g2, g3, g4, r2, r3, r1, r4, r3, r1, r2, r3, r2, r4, p1, p3, p2, w1, w2, w1, w2], [r1, r2, r4, g2, g1, g2, g2, g1, g1, g2, g3, g3, g2, g1, g2, g1, b2, b1, b3, b2, b2, b3, b2, b3, g2, g3, g2, g2, g1, g2, g2, g3, g3, g2, g2, g2, g3, g3, g2, g1, g2, s2, b2, b1, b2, s2, g3, g3, g2, g3, g2, g1, g2, g1, g2, r3, r4, r2, r3, r3, w1, w1, r3, w1, r3, r2, r3, p1, w1, w2, w2, w2, w1], [r2, r1, r3, g1, g2, g1, g1, g2, g2, g1, g2, g2, g1, g2, g1, s3, b1, b2, b1, b2, b3, b2, b3, b2, s3, g2, g1, g1, g2, g1, g1, g2, g2, g3, g1, g1, g2, g2, g1, g2, s2, b3, b2, b3, r1, r2, r1, g2, g1, g2, g1, g2, g1, g2, g3, g2, r2, r3, r4, r3, r1, w2, w2, r3, r4, w2, r2, w1, w2, w1, w1, w2, w2], [r3, r2, r1, g1, g1, g2, g2, g1, g2, g3, g3, g2, g2, g3, g2, b3, b2, b3, b2, b1, b2, b1, b2, g1, g2, g3, g2, g2, g3, g2, g2, g1, g1, g2, g2, g3, g2, g1, g2, g1, s1, b1, r3, r4, r2, r3, r2, r3, g2, g1, g2, g3, g2, g1, g2, g3, g4, g3, r3, r2, r4, r3, r2, r1, r3, r4, w1, r3, w1, w1, w2, w1, w2], [r4, r2, r3, g1, g1, g1, g1, g2, g3, g2, g2, g1, g1, g2, s1, b2, b3, b2, b1, b2, b3, b2, s2, g2, g1, g2, g1, g1, g2, g1, g1, g2, g2, g1, g1, g2, g1, g2, g1, g2, g1, b2, b3, b1, r3, r4, r3, r4, g1, g2, g3, g3, g2, g2, g1, g2, g1, g2, g3, g4, g3, g4, r4, r3, r2, r1, r3, r4, r2, w2, w2, w1, w2], [r3, r4, r2, g2, g2, g1, g2, g3, g2, g3, g3, g2, g2, g3, g2, s1, b2, b3, b2, b1, b2, s1, g2, g3, g2, g3, g2, g2, g3, g2, g2, g1, g2, g2, g3, g2, g2, g3, g2, g3, s3, s1, b1, b2, r1, r2, b1, s1, g2, g1, g2, g2, g3, g3, g2, g3, g2, g3, g2, g3, g2, g3, g3, g4, g2, g3, r2, r3, r4, r2, w1, w1, w1], [r3, r2, r3, g1, g1, g2, g3, g2, g2, g3, g2, g2, g1, g2, g1, g2, g3, g3, s2, s3, g3, g2, g2, g1, g2, g2, g2, g2, g3, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, s2, g2, g1, s3, s2, g2, g2, g1, g1, g2, g2, g3, g2, g3, g2, g2, g3, g2, g2, g2, g3, g2, g2, g2, g1, g2, g3, r3, r2, w2, w1], [r2, r4, r1, g2, g2, g3, g2, v1, v2, g3, g3, g4, g3, g2, v2, v3, v4, g2, g3, g2, g1, g2, g3, g4, r1, r4, r2, r3, g4, g3, g1, g2, g2, g3, g2, g1, g3, g2, g1, g2, g1, g2, g2, g1, g2, g2, g1, g2, g3, g2, g3, g2, g1, g2, g3, g2, g1, g3, g2, g1, g2, g1, g2, g3, g3, g2, g2, g3, r4, r1, w2, w2, w1], [v4, r3, g4, g3, g4, v3, v4, v2, v1, v3, g4, g3, g4, v4, v2, v3, v2, v1, v2, g1, g2, g3, g4, g3, g4, r3, r2, r3, r1, g4, g3, g1, g2, g1, g2, g3, g2, g3, g4, g3, g4, g3, g2, g1, g3, g2, g2, g3, g2, g3, g2, g1, g2, g1, g2, g1, g2, g2, g3, g2, g3, g2, g3, g2, g2, r3, r2, r4, r1, w2, w1, w1, w2], [v1, v2, v3, v4, v2, v1, l1, v3, v2, v1, p1, g4, p2, v3, v1, l1, v3, v2, v4, v3, v2, g3, g3, g2, g1, g2, r1, r2, r4, g3, g2, g2, g3, g2, g1, g2, g3, g4, r4, r1, r3, r2, r1, g3, g2, g2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g1, g1, g2, g2, g3, g4, p1, r3, r2, r4, r1, r2, w2, w2, w1, w2, w1, w1], [v2, v1, v2, v2, v3, l2, l3, l1, v4, v2, p3, p2, p1, v1, v4, l3, l2, l1, v3, v2, v4, v1, v2, g4, g3, g2, g2, g2, g3, g2, g1, g1, g2, g3, g2, g3, r2, r3, r1, r4, r2, r1, r3, r2, g4, g3, g2, g3, g2, g1, g2, g3, g2, g1, g2, g2, g3, g1, g3, g4, p2, p3, p1, r4, r3, r2, w1, w2, w1, w2, w2, w1, w2], [v1, v2, v4, v3, v1, l3, l1, l2, l3, v4, v3, p3, p1, p2, v2, v3, l1, l3, v1, v3, v1, v4, v3, v2, g4, g3, g2, g1, g2, g1, g2, g1, g1, g2, g3, g4, r3, r4, r1, r2, r3, r2, r1, r4, r2, g3, g1, g2, g3, g2, g3, g2, g1, g2, g3, g1, g2, g3, r4, p3, p1, p2, p3, p2, r3, r1, r2, w1, w2, w1, w2, w2, w1], [v2, v3, v2, v1, v2, v3, v4, l3, l1, l2, v2, v4, p2, p3, p1, v2, v3, v4, p1, p3, p2, v3, v2, v1, v4, v3, g3, g2, g1, g1, s1, s2, g1, g2, g4, r1, r2, r4, r3, r1, r4, r2, r3, r1, g4, g2, g2, g3, g2, g1, g2, g1, g2, g3, g2, g2, r1, r2, r3, r2, p2, p3, p1, p2, p2, r2, w2, w2, w1, w1, w1, w2, w1], [v4, v3, v1, v2, v3, v2, l2, l1, l2, v3, v4, p1, p3, p2, v2, v4, v1, p2, p3, p1, p3, p1, p2, v2, v3, g3, g2, g1, g2, s3, s2, s1, g2, g2, g3, r3, r2, r4, r1, r2, r3, r1, r4, r2, g3, g1, g1, g2, g3, g2, g2, g2, g3, g2, g3, r3, r2, r3, r4, r1, r2, p1, p2, p3, p2, r4, w1, w1, w2, w1, w2, w2, w1], [v3, v2, v1, v3, v1, l3, l1, l2, v4, v2, p2, p3, p2, p1, p2, p3, p2, p1, p2, p3, p2, p2, p3, p2, p1, g4, g3, g2, g1, s3, s1, s2, g1, g2, g1, g4, r3, r2, r4, r1, r3, r2, g3, g2, g1, g2, g2, g1, g2, g3, g3, g2, g4, r4, r2, r3, r2, r1, r4, r2, r2, p2, p3, p1, p3, r3, r4, w2, w1, w2, w1, w1, w2], [v2, v3, v2, l3, l2, l3, l1, v2, v3, p1, p3, p2, p1, p2, p3, p2, p1, p3, v4, v2, v3, p3, p2, p1, p2, g4, g2, g1, s2, s1, s3, s1, s2, g1, g2, g3, g4, r1, r2, r4, g4, g3, g2, g1, g2, g1, g1, g2, g3, g2, g2, g3, r2, r3, r2, r4, b1, b2, r3, r3, p1, p3, p2, p1, r3, r1, w1, w2, w2, w1, w2, w2, w2], [v1, v2, l2, l1, l3, l2, l2, v4, p2, p3, p1, p3, p1, v1, p1, p2, p3, p1, v3, v1, v2, v2, p1, p2, p3, p2, g4, g2, s1, s2, s3, s2, s3, s2, g2, g1, g2, g3, g2, g1, g2, g3, g2, g1, g1, g2, g2, g3, g2, g1, g2, r4, r3, r1, b3, b2, b3, r1, r2, p3, p2, p1, p1, r1, r4, w2, w1, w1, w2, w2, w1, w1, w2], [v4, l3, l1, l2, l1, l3, l1, v3, p1, p2, p3, p2, v4, v2, v3, v1, v2, v3, v1, v3, v2, v3, v1, v2, v1, v3, v4, s3, s2, s1, s2, s3, s2, s1, g1, g2, g1, g2, g3, g2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, r3, r2, b2, b1, b1, b2, r4, p1, p2, p3, p2, r4, r2, w1, w1, w2, w2, w2, w1, w1, w2, w1], [v2, l2, l3, l1, l2, l1, l3, v4, v2, p1, p2, v3, v1, v2, v1, v2, v3, v1, v3, l2, l3, l2, v4, v1, v2, v3, s1, s2, s1, s3, s2, s1, s2, s3, g1, g2, g3, g1, g2, g3, g2, g1, g1, s3, s1, s2, s1, g1, g2, g3, g4, r2, r4, b1, b3, b2, r3, r2, p3, p1, p2, r2, r3, w2, w2, w1, w1, w2, w1, w2, w2, w1, w2], [v4, v3, l2, v3, l2, l3, l2, l1, v4, v2, v1, v2, v3, v1, v4, v2, l2, l3, l1, l1, l2, l3, l2, v4, v3, s3, s2, s3, cc, s2, s3, s2, s3, s2, s3, g1, g1, g2, g3, g2, g1, s2, s1, s2, s2, s3, s1, s2, s3, s1, r2, r3, b2, b3, b2, r4, r1, r4, r3, p2, p3, pp, w1, w1, w2, w2, w2, w1, w2, w2, w1, w1, w2], [v3, v2, v3, v4, v1, l1, l3, l2, l2, l1, v3, v1, l3, l2, l1, l3, l1, l2, l3, l2, l1, l1, v1, v2, v2, s2, s1, s2, s1, s3, s2, s1, s2, s1, s2, g1, g2, g1, g2, g1, s2, s3, s2, s1, s3, s1, s2, s3, s2, r3, r4, b3, b2, b1, b3, r3, r2, r1, r2, r3, r2, r3, w2, w2, w1, w1, w2, w2, w1, w2, w1, w1, w2], [v2, v3, v4, v2, v3, v4, l1, l1, l3, l2, l1, l2, l2, l1, l2, l2, l3, l1, l2, v4, v1, v2, v3, s2, s1, s3, s2, s3, s2, s2, s3, s2, s3, s2, s3, g1, g1, g2, g1, s2, s1, s2, s3, s2, s1, s2, s3, b2, b2, b3, b1, b2, b1, b2, b1, b2, r1, r4, r3, r2, r4, w1, w1, w2, w2, w1, w2, w1, w2, w1, w2, w1, w1], [v1, v4, v2, v1, v4, v3, v2, v1, l2, l1, l2, l3, l1, l2, l3, v4, v1, v3, v2, v3, v4, s3, s2, s1, s2, s1, s3, s2, s3, s1, cc, s1, s2, s3, s2, s1, g2, g1, s2, s1, s3, s1, s2, b3, b2, b1, b3, b3, b1, b2, b3, b2, b1, b3, b2, b3, r4, r3, r2, r1, w2, w2, w1, w2, w1, w1, w2, w2, w2, w1, w1, w1, w2], [v2, v3, v4, v3, v1, v4, v2, v2, v1, v4, l3, l1, l3, v3, v1, v3, v2, v4, v1, s1, s2, s3, s2, s3, s2, s1, s1, s2, s1, s3, s1, s3, s1, s2, s1, s3, s2, s3, s1, s2, s3, b2, b2, b1, b3, b2, b1, b2, b2, b3, b1, b2, b1, b3, s2, b2, b2, r2, r1, r3, r2, w1, w2, w1, w1, w2, w1, w1, w2, w1, w2, w2, w1], [v3, v4, v2, v4, v2, v1, v3, v2, v4, v1, v3, v2, v1, v4, v2, v1, s2, s3, s1, s3, s1, s2, cc, s1, s3, s2, cc, s3, s1, s2, s2, s1, s2, s3, s2, s2, s1, b2, b1, b3, b2, b3, b1, s2, s1, s2, b2, b3, b1, b2, b2, b3, b2, s1, g2, s3, b1, b3, b2, r4, r3, r2, r3, r1, r4, r2, r4, w2, w1, w2, w1, w1, w2], [v1, v3, v4, v3, v1, v2, v2, v1, v3, v2, v2, v1, v4, v3, v1, s3, s1, s2, cc, s3, s2, s1, s2, s1, b1, b3, s2, s1, s3, s1, s2, s1, s3, s2, s1, s3, b3, b1, b2, b1, b3, b2, s1, s3, g2, s1, s1, b2, b1, b3, b2, b1, b2, s2, g3, s1, s3, b2, b1, b3, b2, r4, r1, r3, r2, r2, r3, r1, r2, r3, w2, w2, w1], [v1, v2, v4, v2, v4, v3, v3, v2, v4, v3, v1, s3, s1, s2, s1, s3, s2, s2, s1, s3, s1, s2, b2, b3, b2, b1, b2, s3, s2, s1, s3, s2, s1, s2, s3, s2, b2, b2, b1, b2, b1, s2, s2, g2, r2, g1, s2, b2, b3, b2, b1, b3, b2, s1, r1, g4, s3, b1, b3, b1, b3, b1, b2, b1, b2, b2, r4, r3, r1, r2, r3, r1, w2], [v3, v2, v1, v3, v2, v1, s3, s2, s1, s2, s3, s2, s2, cc, s1, s3, s2, s3, s1, s2, s3, s1, b1, b2, b1, b2, b3, s2, s1, s3, s2, cc, s2, s3, s1, b2, b1, b3, b3, b1, b2, s3, g1, r1, g1, r2, s3, b3, b1, b2, b3, b2, b1, b3, s2, s1, s2, b1, b3, b1, b1, b3, b3, b2, b3, b1, b2, b1, b3, b1, r2, r4, r2], [v2, v3, v4, v4, s1, s2, cc, s3, s2, s1, cc, s3, s2, s1, s3, s2, cc, s2, s2, s3, cc, s3, s1, s3, b2, b3, s3, s1, s2, cc, s1, s2, s3, s2, s1, b3, b2, b2, b1, b2, b3, b2, s2, s3, g1, s1, s3, b2, b1, b3, b2, b1, b2, b3, b2, b3, b1, b2, b1, b3, b2, b2, s1, s2, s3, b2, b1, b3, b3, b2, b2, r3, r1], [v3, v4, pp, s2, s2, s3, s1, s1, s2, s3, s3, s2, s3, s1, s2, s1, s3, s2, s1, s3, s3, s2, s2, s1, s3, s1, s1, s2, s1, s2, s3, s1, s2, s3, s2, b2, b1, b3, b2, b1, b2, b3, b2, b1, s1, s2, b3, b3, b2, b2, b1, b2, b3, b2, b1, b2, b3, b1, b3, b2, b2, s3, g1, r2, g3, s2, b2, b3, b1, b2, b3, b1, b2], [v2, v3, v2, r2, r4, r1, r2, s2, s3, s1, s2, r1, r3, r4, s1, s2, s3, r4, r2, r2, r4, r2, s1, s3, s2, r4, r3, r2, r1, r2, s3, s2, s1, s3, s2, b3, b3, b1, b2, b1, b3, b1, b2, b3, b2, b3, b1, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, b3, s2, g3, g4, r1, s1, b2, b1, b2, b3, b2, b2, b3], [v3, v1, v3, v4, r3, r4, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, b1, b2, b3, b1, b2, b2, b3, b2, b2, b2, b3, b1, b3, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, s1, s3, s2, b2, b1, b3, b2, b1, b2, b3, b1], [v2, v3, v1, v3, v4, r3, r4, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r3, r2, r4, r1, r2, r2, r4, r3, r2, r1, r2, r4, b1, b2, b2, b3, b2, b2, b2, b3, b1, b3, b2, b3, b1, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b1] ], "elevation": [ # 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""], ["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", ""], ["", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", ""], ["", "", "", e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e3, e3, e3, e4, e4, e4, e4, e4, e4, "", "", ""], ["", "", "", e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, e3, e3, e3, e4, e4, e4, e4, e4, e4, "", "", ""], ["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e3, e3, e3, e4, e4, e4, e4, e4, e4, "", "", ""], ["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, "", "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e4, "", "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", ""], ["", "", "", e1, e1, e1, e1, "", "", e2, e2, e2, e2, e2, "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", ""], ["", "", e1, e1, e1, "", "", "", "", "", e2, e2, e2, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e1, e2, e2, e2, e2, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e3, e2, e3, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, e3, e3, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e4, e3, e3, "", "", "", e3, e3, e3, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, "", "", "", "", e3, e3, e3, e4, e3, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", "", e3, e3, e3, e3, e2, e2, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e3, e3, e3, e3, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, e3, e3, e3, e3, e3, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e4, e3, e3, e3, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, e4, e4, e3, e3, "", "", "", e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e4, e4, e4, e3, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, "", e4, e4, e3, e3, "", "", "", "", e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", e0, e0, e0, e0, e0, "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", e0, e0, "", e0, e0, e0, "", e0, e0, e0, e0, e0, "", e0, e0, e0, "", e0, e0, e0, "", "", e0, e0, e0, "", e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", e0, e0, e0, "", "", "", "", "", e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "cloud": { "players": {}, "background": sk, "map": [ [sk, sk, sk, w1, w2, w1, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w1, w2, sk, sk, sk], [sk, w2, w3, w2, w1, w1, w2, w3, w2, sk, sk, sk, sk, sk, w2, w3, w1, w2, sk, sk, sk, sk, w2, w3, w1, w2, w3, sk, sk], [sk, w1, w2, w3, w2, w3, w1, w2, w1, w2, w1, sk, sk, w3, w2, w2, w2, w3, w2, sk, sk, sk, w1, w2, w3, w1, w2, w3, sk], [w3, w2, w3, w2, w1, w2, w2, w1, w2, w3, w2, w1, w2, w2, w3, w2, w1, w2, w1, w1, sk, w2, w2, w3, w2, w2, w2, w3, pp], [w2, w2, w1, w2, w3, w3, w2, w1, w1, w2, w3, w2, w3, w3, w2, w3, w2, w1, w2, w3, w2, w1, w1, w2, w3, w1, w1, w2, w1], [w1, w3, w3, w2, w1, w2, w1, w2, w3, w2, w3, w1, w2, w1, w2, w2, w1, w2, w1, w2, w1, sk, sk, w1, w2, w2, w2, w3, w2], [w2, w1, w2, w3, w2, w3, w1, w2, w2, w1, w2, w3, w3, w2, w1, w1, w2, w3, w2, w1, w3, sk, sk, sk, sk, w1, w3, w2, sk], [sk, w3, w1, w2, w3, w2, w2, w1, w1, w2, w1, w2, w2, w1, w2, w3, w3, w2, w1, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk], [sk, sk, w2, w3, w2, w1, w2, w3, sk, sk, w2, w3, w1, w2, w1, w2, w1, w2, w3, sk, sk, w3, w2, sk, sk, sk, sk, sk, sk], [sk, sk, sk, sk, w1, w2, sk, sk, sk, sk, w2, w1, w2, w2, w3, w2, w2, w1, sk, sk, sk, w2, w1, w3, sk, w2, w3, sk, sk], [sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w3, w2, sk, w3, w2, w1, sk, sk, sk, sk, sk, sk, w2, w2, sk, w2, w2, w1, sk], [sk, w3, w1, sk, sk, sk, w2, w2, w1, w2, w2, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w3, sk, sk], [w2, w1, w2, w1, sk, sk, w1, w3, w2, w1, w2, w1, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w2, sk], [w3, w2, w3, sk, sk, w2, w1, w2, w1, w3, w1, w2, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w2, sk, sk, sk, sk], [sk, w1, w2, sk, w3, w2, w2, w1, w2, w1, w2, w1, w1, sk, sk, w2, w3, w2, sk, sk, sk, w3, w2, w2, w3, w1, sk, sk, sk], [sk, sk, sk, sk, w2, w2, w1, w2, w3, w2, w3, w3, w2, w2, w1, w2, w2, w3, w1, sk, w2, w2, w3, w1, w2, w3, w1, sk, sk], [sk, sk, sk, sk, w1, w2, w3, w1, w2, w1, w2, w2, w1, w2, w1, w2, w1, w2, w2, w2, w2, w1, w2, w2, w1, w2, sk, sk, sk], [sk, sk, sk, sk, w2, w3, w2, w2, w1, w2, w1, w1, w2, w3, w2, w3, w2, w3, w2, w3, w1, w2, w1, w2, w1, w2, sk, sk, sk], [sk, sk, sk, w1, w3, w1, w3, w3, w2, w1, w2, w1, w2, w2, w2, w2, w1, w2, w1, sk, sk, w1, w2, w3, pp, sk, sk, sk, sk], [sk, sk, sk, pp, w1, w2, w1, w2, w1, w2, w2, w3, w1, w3, w1, w3, w2, w3, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk], [sk, sk, sk, sk, w3, w1, w2, w2, w2, w1, w1, w2, w2, w1, w2, w3, w1, w1, sk, sk, sk, sk, sk, sk, w1, w2, sk, sk, sk], [sk, w1, sk, sk, sk, w2, w1, w2, w3, w2, w3, w2, w2, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w3, w2, w3, sk, sk], [w1, w2, w3, sk, sk, sk, sk, sk, w2, w3, w2, w1, w2, w1, w1, w2, sk, sk, sk, w2, w2, w1, sk, sk, w1, w1, sk, sk, sk], [w2, w1, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w3, w2, sk, w2, w3, w1, w2, w3, sk, sk, sk, sk, sk, sk], [w1, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w2, w3, w1, w1, w3, w1, w2, w2, sk, sk, sk, sk, sk], [sk, sk, sk, sk, sk, w1, w2, sk, sk, sk, sk, sk, sk, w2, w1, w3, w1, w2, w2, w2, w1, w2, w3, w3, sk, sk, sk, sk, sk], [sk, sk, sk, sk, w1, w2, w3, w2, sk, sk, sk, sk, sk, sk, w2, w2, w3, w2, w1, w1, w3, w2, w1, w2, sk, sk, sk, w1, sk], [sk, sk, sk, sk, sk, w1, w2, w3, w1, sk, sk, sk, sk, w2, w1, w1, w2, w3, w2, w1, w3, w1, w2, w1, sk, sk, w1, w2, w1], [sk, sk, sk, sk, sk, sk, sk, w1, sk, sk, sk, sk, w2, w1, w2, w3, sk, w2, w3, w2, w1, w2, w3, sk, sk, sk, w2, w1, w3], [sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w1, w3, w2, sk, pp, w1, w1, w3, w2, w2, sk, sk, sk, sk, w3, w2], [sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w1, sk, sk, sk, w2, w1, w1, w3, sk, sk, sk, sk, sk, sk, sk] ], "elevation": [ ["", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", ""], ["", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", ""], ["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, ""], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, ""], ["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", ""], ["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, "", "", ""], ["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", ""], ["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", ""], ["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", ""], ["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""] ] }, "volcano": { "players": {}, "background": v2, "map": [ [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3, v4], [v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v4, v2, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v3, v1, v1, v3, v4, v2, v1, v1, v3, v2, v3], [v3, v4, v2, v1, v1, v3, v2, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v1, v3, v2], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v4, v1, v1, v2, v3, v1, v4, l2, l3, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v1, v3], [v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v1, v3, v2, v1, v4, l2, l3, l2, l3, l2, v2, v4, v3, v2, v4, v2, v1, v3, v4, v4, v2, v1, v4, v3, v4], [v3, v4, v2, v3, v1, v3, v2, v2, v4, v1, v3, v3, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v2, v4, l1, l1, l2, l3, l1, l1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v2, v3], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v4, v4, v2, v1, v1, p3, p2, p1, p2, v2, v3, l2, l3, l3, l3, l2, l3, l2, l2, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, v3], [v3, v4, v2, v1, v1, v4, v4, v2, v1, v1, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, p3, p2, p1, p2, p3, p1, p2, v3, v4, l1, l2, l1, l1, l2, l3, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v3, v4], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v4, v3, v4, v2, v1, v1, v3, v3, p2, p1, p1, p2, p3, p2, p1, p2, p3, v3, v4, v2, l3, l2, l1, l2, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3], [v3, v4, v2, l2, l1, v1, v4, v3, v2, v1, v3, v4, v3, v1, v1, v3, v4, v2, v1, v1, v3, v3, p1, p3, p2, p1, p2, p3, p2, p3, p1, p2, p3, v2, v3, l3, l1, l1, v4, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1], [v2, v3, v1, l3, l2, l3, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, v3, p2, v3, v4, l1, v2, v1, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, v3], [v3, v4, v3, v1, l1, l2, l3, v2, v1, v1, v1, v3, v2, v3, v4, v4, v2, v2, v1, p2, p1, p2, p3, p2, p2, p1, p2, p1, p2, p1, p1, p2, p3, p3, p3, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v2, v3, v1], [v3, v4, v2, v1, l2, l1, l3, l1, v2, v1, v3, v4, v2, v1, v1, v3, p3, p1, p2, p3, p2, p1, p2, p3, p3, v3, v3, p3, p2, p2, p3, p2, p1, p2, p2, v2, v3, v1, v4, v2, v4, v3, v1, v1, v3, v4, v2, v1, v1, v1, v4, v2, v3], [v3, v3, v2, v1, v2, l1, l2, l3, v2, v1, v3, v3, p3, p2, p1, p2, p2, p3, p2, p1, p2, p3, p2, p1, v3, v4, v2, v1, v1, p1, p1, p2, p1, p2, p1, v3, v4, l2, l1, l3, v4, v4, v2, l1, l2, v3, v4, v2, v1, v1, v3, v4, v1], [v2, v3, v1, v4, v2, v4, l3, v1, v1, v1, p1, p2, p1, p2, p2, p3, p3, p2, p3, p2, p1, p2, p3, p1, v3, v4, v2, v1, v1, p2, p1, p1, p2, p3, p3, p2, v2, l1, l1, l3, l3, v4, l1, l2, l3, l2, v3, p1, v3, v4, v2, v1, v1], [v1, v3, v2, v3, v4, v4, l2, v4, v1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p2, p1, p2, p3, p1, v3, v4, l2, l1, v1, v3, v3, p3, p3, p2, p1, p2, p1, v3, v4, v2, l2, l3, l2, l3, l2, l2, v1, p3, p2, pp, v3, v4, v2, v1], [v2, v2, v1, v2, v2, l2, l2, v2, p1, p2, p3, p2, p2, p1, p3, p2, p1, p2, p2, p2, p1, v1, v3, v2, l1, l3, l2, l3, l1, v1, p1, p3, p2, p1, p1, p2, v2, v3, v1, l1, l1, l3, v3, v1, v1, v1, p2, p1, p2, p3, v4, v3, v3], [v3, v4, v2, v1, l3, l1, l1, v3, p2, p1, p2, p1, v3, v3, v2, v3, p3, p2, p1, v2, v3, v1, v4, l3, l2, l1, v1, v4, l2, v3, p2, p3, p1, p2, p2, p3, v1, v3, v2, l3, l2, l1, l2, v2, v1, p2, p3, p2, p3, p2, v3, v2, v1], [v2, v2, v1, v2, l2, l3, v1, v2, p3, p2, p1, p3, v2, l3, v1, v4, v2, v4, v3, v1, v1, v1, l3, l2, l2, l3, l2, l2, l3, v2, v1, p3, p3, p2, p1, p2, p2, v3, v4, v2, v1, v1, v3, p3, p2, p3, p2, p1, p1, p2, v1, v3, v3], [v3, v4, v3, v1, v1, v3, v3, p2, p2, p3, p2, p2, v2, l2, l2, v4, v2, v4, v3, v1, l2, l1, l2, l1, v2, l2, l1, l1, v2, v2, v1, p2, p2, p1, p2, p1, p2, p3, v3, v3, v3, v3, p2, p3, p2, p1, p3, p2, p1, v2, v3, v2, v4], [v4, v2, v2, v1, v1, v2, v4, p1, p3, p1, p3, v2, v3, l1, l1, l3, v4, v3, l3, l1, l2, l3, l1, v2, v3, v4, v4, v2, v2, v1, p3, p3, p3, p2, p3, p2, p1, p3, p3, p3, p2, p1, p3, p2, p1, p2, p1, p2, p3, v2, v4, v3, v3], [v3, v4, v2, v1, v1, v3, p1, p2, p1, p2, p1, v2, l2, l2, l3, l2, l1, l1, l2, l3, l1, l2, v4, v2, v1, v2, v3, p1, p3, p2, p1, p2, p2, p1, p1, p2, p1, p2, p1, p2, p2, p1, p2, p3, p2, p3, p2, p1, v3, v4, v2, v1, v1], [v2, v3, v2, v2, v4, v3, p2, p3, p1, p3, p2, v2, v3, l3, l2, l1, l2, l3, v1, l2, v1, v3, v4, v2, v4, v1, p2, p2, p1, p2, p2, p3, p3, p2, p3, p2, p1, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, v3, v4, v2, v1, v1], [v3, v4, v2, v2, v1, v4, p3, p1, p2, p1, p2, p1, v1, l2, l3, l1, l3, v4, v2, v2, v1, p2, p3, p1, p2, p1, p1, p3, p1, p2, p1, p2, p1, p1, p1, p1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p1, p3, v3, v4, v2, v1, v1, v3], [v3, v2, v4, v1, v1, v3, p2, p2, p1, p2, p3, p2, v1, v4, l1, l1, v1, v3, v3, p1, p2, p1, p2, p2, p2, p3, p2, p2, v3, v3, v3, p2, p2, v3, p2, p2, p3, p2, p1, p1, p1, p3, p1, p2, p1, p2, v3, v4, v2, v1, v1, v3, v4], [v1, v4, v3, v3, v1, v2, v3, p3, p2, p3, p2, p3, v3, v4, v2, v1, v1, p3, p2, p3, p2, p2, p1, p2, p3, p2, p1, v1, v1, v2, v3, v4, v4, v2, v2, v1, p1, p3, p2, p3, p2, p1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3], [v3, v1, v2, v1, v1, v3, v1, p1, p3, p1, p2, p3, v2, v3, v2, v3, p2, p2, p3, p2, p3, p2, p1, p2, p2, p3, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, l3, l1, l1, v3, v4, v4, v2, v1, v3, v2], [v3, v4, v2, v1, l1, v4, v3, p2, p2, p3, p2, p1, p3, v2, v3, v1, p1, p2, p1, p3, p2, p3, p3, p2, p1, v2, v3, v1, l1, l2, v2, l2, l1, l2, l3, v2, v1, v3, v2, v4, v3, l2, l1, l2, l3, l2, l3, v4, v2, v1, v3, v2, v3], [v2, v2, l3, v2, l2, l3, v1, v2, p1, p2, p1, p2, p2, v3, v4, v3, v3, p3, p2, p1, p3, p1, v3, v4, v2, v1, v1, l1, l2, l3, l2, l2, l1, l3, l2, l3, v2, v4, v3, v1, l1, l3, l2, l1, l2, l3, l2, v4, l2, l3, v1, v1, v4], [v3, v4, l2, v1, l1, l1, v3, v3, p2, p3, p2, p3, p1, v3, v4, l2, v2, v1, p3, p2, p2, v2, v3, v1, v1, v3, l2, l3, v4, l1, l1, v2, l1, l1, l3, l2, l3, v3, v4, v2, l1, l2, l2, v4, v2, l1, l2, l1, l3, l2, l1, v1, v3], [v2, v2, l3, l2, l3, l1, l2, v2, p3, p2, p1, p2, p2, p3, v2, l3, l1, v2, v3, v2, v1, v4, l2, v3, v2, v1, l1, v2, v4, v3, v3, v4, v2, l1, l2, l3, l2, v2, l2, l3, l2, l3, v1, v1, v2, l2, l3, l1, l2, l3, l2, l3, l2], [v3, v4, v2, l3, l2, v3, v3, v3, p2, p2, p3, p2, p3, p2, v2, v3, l2, l2, l3, v4, v3, l3, l1, l1, v3, v4, v2, v1, v4, v2, v3, v1, v4, v2, l1, l2, l1, l3, l1, l2, v4, l3, l2, v1, l2, l3, l1, l2, l1, l2, l2, l3, l2], [v1, v3, v2, v3, v4, v4, v2, v2, v1, p1, p2, p3, p2, p1, p3, v2, v3, v1, l2, v2, l1, l2, l3, l2, v1, v3, p2, p1, p3, p2, v2, v3, v1, v4, v2, l3, l2, l1, l1, v1, v2, l2, l1, l3, l2, l2, l1, l3, l2, l1, l3, l1, l3], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, p2, p3, p2, p1, p2, p2, p1, v2, v2, v1, v3, v2, v4, v1, v2, p1, p3, p2, p1, p3, p1, p2, v2, v3, v1, l2, l3, l2, l3, v1, v1, v1, l3, l2, l3, v4, v2, l2, l1, l1, l2, l2, l1], [v3, v4, v2, v4, v1, v3, v4, l3, l1, v1, p1, p2, p1, p3, p2, p1, p2, p1, p2, p2, v3, v3, v3, p2, p2, p3, p2, p2, p3, p2, p3, p2, p3, p2, v2, v3, l1, l3, v2, v4, v3, v1, v1, v1, v2, v2, v1, v2, l2, l3, l2, l3, v3], [v2, v3, v1, v4, v2, v4, l3, l2, v4, v1, p3, p3, p2, p2, p1, p2, p3, p2, p1, p2, p3, p2, p1, p3, p3, p2, p2, p1, p2, p3, p2, p1, p1, p2, p1, v3, v4, v2, v1, v1, v3, v3, p2, p1, p2, v3, v4, v2, v1, l2, l1, v3, v3], [v3, v4, v2, v1, v1, v2, l2, l3, v1, v2, v3, p1, p3, p2, p1, p2, p1, p2, p3, p2, p2, p1, p2, p3, p2, p1, p3, p1, p2, p3, p2, p3, p2, p1, p3, p2, p3, v3, v3, v3, p1, p2, p3, p2, p3, p2, p1, v3, v4, v2, v1, v1, v3], [v3, v4, v2, v1, l1, v3, v4, v1, v1, v2, v4, p2, p2, p1, p2, p3, p1, p3, p2, p2, p1, p2, p3, p2, p1, p1, p2, v3, v3, v3, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, p3, p2, p1, p2, p1, p2, p1, v3, v4, v2, v1, v1], [v2, v3, v1, v4, l1, l3, v3, v1, v3, v1, v2, v3, p3, p2, v3, v3, v3, p1, p3, p3, p2, p3, p2, p1, p2, p3, p1, v3, v3, v3, v3, p2, p1, p2, p1, p2, p1, p2, p3, p2, p3, p2, p3, p2, p1, p2, p1, p2, p1, v3, v3, v2, v3], [v3, v4, v2, l1, l2, v2, v4, v2, v1, v1, v3, v4, v2, v1, v1, v3, v3, p2, p2, p1, p1, p2, p1, p2, p2, p3, v3, v4, v2, v1, v1, p3, p2, p3, p2, p2, p1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p2, p3, p2, pp, v4, v3, v4], [v3, v4, v2, l3, l2, l3, v4, v2, v4, v1, v2, v2, v1, l1, l2, l1, v1, v2, p1, p2, p3, p3, p2, p1, v2, v2, v1, v2, l3, l3, v1, v2, p3, p2, p3, p1, p2, p3, p1, p2, p3, p2, p1, p2, p3, p2, p1, p2, p1, v3, v3, v1, v3], [v2, v3, v1, v1, l1, l2, l1, v4, v4, v3, v2, v1, l2, l3, l1, l3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, l3, l2, v4, l2, l1, v3, v1, v1, v1, v3, v3, p2, p3, p2, p1, v3, v3, v3, p2, p3, p2, p3, v3, v4, v2, v1, v1], [v2, v3, v1, v4, l3, l2, l3, v1, v1, v1, l3, l2, l1, l2, l3, l2, v4, v4, v1, v1, v2, v3, v1, v4, v2, l2, l1, v1, v1, v2, l1, l3, l2, l3, v1, v3, v4, v4, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v4, v3, v3], [v2, v3, v1, v1, v3, l1, v1, v4, v4, v3, v2, l2, l2, l3, l2, l1, v3, v4, v2, v1, v3, v4, v4, v2, v1, l2, l3, v1, v1, l1, l1, l1, l1, l1, l2, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v1, v2], [v3, v4, v2, v1, v1, v3, v4, v2, v2, v1, v3, v4, l3, l2, v1, v3, v4, v2, v3, v1, v2, v3, v1, v4, v2, l1, l3, l1, l2, l3, l3, v4, l3, v1, v1, v1, v4, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v1, v2, v3], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v3, v4, v2, v2, v1, v2, v3, v1, v1, v3, v2, l1, l2, l1, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v4, v2, v1, v1, v3, v3, v2], [v3, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, l3, v4, v2, v4, v3, v1, v1, v1, v3, v4, v3, v1, v1, v3, v4, v1, v1, v1, v3, v4, v2, v1, v1, v3, v1, v3], [v4, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v1, v4, v3] ], "elevation": [ ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e1, e1, e1, "", "", e1, e1, e1, e1, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", e1, e1, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", e1, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", e1, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", ""], ["", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", ""], ["", "", "", "", "", "", "", "", e1, e2, e2, e2, "", "", "", "", e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", e2, e1, e1, e1, e1, e1, e1, "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, "", "", "", "", e2, e2, e1, e1, e1, e1, e1, "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e5, e4, e4, e4, e4, e3, e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e5, e5, e5, e4, e4, e4, e4, e3, e3, "", "", "", e2, e2, "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", e5, e5, e5, e5, e5, e4, e4, e4, e4, e3, "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e5, e5, e5, e5, e5, e5, e5, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", e5, e5, e5, e5, e5, e5, e5, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e5, e5, e5, e5, e5, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", e5, e5, e5, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "cave": { "moveable": [s1, s2, s3, pp], "players": {}, "background": r2, "map": [ [r2, r3, r1, r3, r3, r3, r2, r1, r1, r1, r3, r2, r3, r1, r2, r3, r3, r1, r1, r2, r3, r3, r1, r3, r1, r2, r3, r3, r1, r1, r3, r1, r2, r3, r3, r2, r3, r3, r2, r3, r3, r3, r3, r2, r3, r3, r3, r3, r3, r2, r3, r2, r2, r3, r3, r1, r2], [r2, r1, r3, r3, b2, b2, r1, r2, r3, r1, r1, r2, r2, r1, r2, r3, r1, r1, r2, r3, r2, r3, r2, r3, r3, r1, r3, r2, r1, r2, r3, r3, r3, r3, r3, r3, r3, r3, r3, r1, r1, r3, r3, l1, l1, l2, l1, r2, r3, r2, r3, r1, r1, r3, r1, r4, r3], [r2, r2, r3, b2, b2, b3, b1, r3, r3, r3, r3, r1, r1, r3, r1, r3, r1, r2, r3, r3, r2, r1, r2, r1, r2, r3, r3, r2, r1, r3, r2, r3, r2, r2, r2, r3, r2, r3, r3, r2, l3, l3, l1, l3, l3, l2, l3, l3, l3, l2, l3, l3, r3, r2, r1, r3, r1], [r4, r2, r1, b1, b2, b1, b1, r3, r3, r3, r3, r1, r1, r1, r3, r2, r1, r2, r1, r3, r3, r2, r3, r3, r1, r3, r1, r2, r2, r1, r3, r2, r2, r3, r3, r2, r3, r3, r3, r3, l2, l2, l2, l1, l3, l1, l2, l2, l2, l3, l1, l2, l3, r3, r1, r2, r4], [r1, r2, r3, r3, b1, b1, r1, r3, r1, r2, r3, r1, r3, r1, r3, r3, r2, r1, r2, r1, r3, r1, r3, r1, r3, r1, r2, r1, r1, r2, b3, r1, r1, r2, r3, r3, r3, r1, r3, r1, r1, l2, l1, r1, r1, r3, r1, r1, r1, r1, l3, l2, l3, r1, r3, r1, r2], [r2, r4, r3, r3, b1, b2, r1, r2, r1, r2, r3, r3, r3, r3, r1, r3, r3, r2, r3, r1, r2, r1, r1, r1, r3, r3, r3, r3, r1, b3, b3, b3, b1, r1, r3, r2, r1, r2, r3, r3, r3, r2, r1, r3, r2, s3, s3, s3, s1, r3, r3, l3, l1, l2, r3, r3, r1], [r2, r1, r3, r3, r3, r3, r2, r3, r3, s2, s1, s2, s1, s3, s3, s2, s3, r3, r3, r3, r3, s2, s3, s1, s2, s3, r3, r2, b3, b3, b2, b1, b3, b1, r1, r2, r3, r3, r3, r3, r3, r2, s3, s1, s1, s3, s3, s3, s1, s1, r3, l1, l3, l2, r3, r4, r3], [r3, r4, r3, r1, r1, r3, r3, r3, s1, s2, s1, s3, s3, s1, s1, s1, s2, s2, s2, s2, s2, s2, s2, s2, s2, s1, s3, r2, r3, b3, b1, r2, b3, b2, r1, r3, r3, r3, r2, r3, r2, s3, s2, s2, s1, s1, r1, r3, s2, s3, r2, l1, l2, l3, r1, r3, r1], [r1, r2, r1, r3, r1, r1, r2, s1, s2, s2, s3, s1, s1, s3, r2, r3, r1, s3, s1, s1, s1, r3, r3, s1, s1, s3, s2, s3, r3, r3, r2, r3, r3, r1, r2, r1, s3, s3, s1, s3, s3, s2, s2, r3, r2, r1, r3, r2, s2, s2, r1, l3, l3, l1, l2, r4, r3], [r4, r3, r3, r3, r1, r3, s3, s3, s1, s2, r1, r1, r3, r3, r2, r2, r2, r3, r1, r3, r3, r3, r2, r3, s1, s1, s3, s2, s3, r3, r3, r1, r3, r1, r2, s1, s1, s1, s3, s3, s3, s1, s3, r1, r3, r2, r3, r3, s3, s3, r3, r2, l1, l2, l2, r3, r1], [r2, r1, r3, r3, r1, r2, s3, s3, s1, r2, r3, r3, r3, r3, b1, b2, b2, b3, r3, r2, b1, r1, r1, r3, r3, s2, s3, s1, s1, s2, r3, s1, s3, s3, s1, s2, s3, r3, r1, r3, s2, s3, r3, r2, r3, r3, r3, s1, s1, s3, r3, r2, l1, l1, l1, r1, r2], [r3, r4, r2, r2, r1, r3, s3, s2, s2, r1, r3, r2, r3, r3, r3, b2, b2, b1, b3, b1, b2, r3, r1, r2, r3, r1, s2, s3, s3, s2, s3, s1, s1, s2, s1, s3, r1, r3, r2, r2, s3, s3, s2, r3, r1, s3, s2, s3, s1, r2, r3, l2, l3, l1, r3, r4, r3], [r2, r1, r3, r1, r3, r3, s1, s1, s3, s3, r3, r3, r3, r3, r1, r2, r1, b2, b3, b3, r3, r3, r3, r3, r3, r3, r1, s1, s1, s3, s3, s3, s2, r2, r3, r3, r3, r2, r3, r1, r3, s3, s2, s3, s2, s3, s1, r3, r3, r1, l3, l1, l2, l2, r1, r2, r4], [r4, r2, r2, r3, r1, r3, r2, s1, s2, s3, s2, r3, r3, s2, s3, s3, r1, r3, r1, r3, r3, r1, s1, s1, r1, r3, r3, r3, s3, s1, s3, r3, r3, r3, r3, l3, l3, l3, r3, r1, r1, s1, s3, s2, s1, s1, s3, r3, r3, l2, l2, l2, l3, r3, r2, r1, r2], [r3, r4, r3, r3, r3, r3, r2, r1, s3, s3, s3, s3, s2, s1, s3, s2, s3, r2, r3, r3, s3, s3, s1, s3, s3, r2, r1, r3, r3, r3, r3, r3, r3, r2, r3, l1, l2, l1, l1, r3, r2, r3, r2, r3, r3, r3, r3, r1, r3, r3, l3, l3, r2, r3, r3, r3, r1], [r2, r1, r3, r1, r1, r3, r3, r3, r3, s2, s2, s2, s3, s1, s3, s2, s3, s1, s2, s3, s1, s3, s1, s3, s3, s1, r1, r3, r1, r3, r3, r1, r3, r1, r2, r2, l1, l1, l1, r3, r1, r2, s2, s1, s1, r1, r1, r1, r3, r3, r1, r2, r3, r3, r3, r4, r3], [r2, r4, r3, r1, r3, r1, r1, r3, r1, s3, s1, s1, r2, r3, r3, r2, s2, s1, s3, s2, s3, s3, s1, s1, s3, s1, s1, r3, r1, r3, r2, r1, r3, r3, r3, r2, r3, l2, r2, r1, r3, s1, s2, s3, s3, s1, s3, r1, r1, r3, r3, r1, r1, r3, r1, r1, r2], [r3, r2, r1, b1, b2, r2, r3, r3, r1, s2, s2, r3, r2, r1, r3, r3, r3, s3, s2, s3, s1, s1, r1, r3, r1, s3, s1, s3, s3, r3, r3, r1, r3, r3, r1, r3, r3, r3, r2, r1, s3, s3, s1, s3, s1, s2, s1, s1, r3, r1, r3, r2, r3, r3, r1, r2, r4], [r4, r1, b1, b1, b1, r3, r1, r1, s2, s1, s2, r2, r3, r3, r3, r1, r3, r1, r2, r2, r3, r3, r2, r3, r3, r3, s1, s3, s2, s1, s1, s1, s1, s3, s1, s3, s3, s1, s1, s3, s2, s2, r2, r3, r2, s3, s3, s2, r1, r2, r3, r3, r2, r3, r3, r3, r1], [r3, b2, b3, b3, b2, r1, r1, r2, s3, s1, s2, s1, r3, r3, r3, r1, r1, r1, r3, r3, r3, b2, b1, b3, b1, r3, r3, s3, s2, s2, s3, s3, s1, s3, s2, s3, s3, s2, s2, s2, s2, r1, r1, r2, r3, s3, s2, s3, r3, r3, r2, r3, r3, r3, r2, r4, r3], [r2, b3, b1, b1, b1, r1, r3, r1, s1, s3, s2, s3, r1, r1, r1, r2, r3, s2, s2, s3, r3, r2, b1, b2, b1, r3, r3, r1, r3, s3, s1, s3, s1, s2, s3, s3, s1, s3, s1, s1, r3, r2, r2, r3, r2, s1, s2, s3, r2, l2, l3, r3, r2, r3, r2, r2, r4], [r4, r2, r1, b1, r3, r1, r3, r3, s3, s3, s1, s3, r1, r2, r3, r3, s1, s2, s2, s3, s2, r3, b3, b3, b3, b3, b3, r3, r2, r2, s2, s3, s1, s2, r3, r2, r1, r1, r3, r1, r2, r1, r1, r3, r3, s2, s2, s3, r3, l3, l1, l1, r3, r3, r2, r4, r3], [r4, r2, r1, r3, r3, r2, r3, r1, s2, s2, s2, s1, r3, r1, s2, s3, s1, s3, s1, s3, s2, r3, r3, b2, b3, b3, b2, r1, r3, s1, s1, s3, s2, r2, r3, r3, r3, r3, r3, r3, r1, r2, r3, r3, r3, r3, s1, s1, r3, l3, l1, l3, r2, r2, r3, r3, r1], [r3, r3, r1, r2, r3, r1, r3, r3, s3, s2, s3, s2, r1, s1, s3, s2, s1, s3, s1, s3, s3, s2, r1, b3, b3, r1, r3, r3, s3, s2, s2, s3, r2, r2, r2, r2, r3, r2, r3, r3, r3, r1, r3, r3, r3, r2, s3, s3, r2, r1, l1, l3, r1, r1, r2, r1, r2], [r4, r2, r1, r1, r3, r3, r2, r3, r3, r3, s1, s2, s2, s3, s3, s3, r1, r2, s1, s2, s2, s3, r1, r1, r3, r3, r1, s3, s3, s3, s1, s2, s3, r1, r2, r2, r3, r3, r3, r1, r1, r3, r3, r3, r1, r3, s2, s2, r3, r3, l2, l2, r3, r1, r3, r2, r4], [r1, r2, r1, r1, r3, r3, r1, r2, r3, r2, s1, s3, s3, s3, s3, r2, r1, r2, r2, s1, s2, s3, s2, r3, r3, r1, r1, s1, s1, s3, s1, s3, s1, s3, r2, r1, r2, r1, r2, r3, r3, r3, r1, r2, r2, r2, s2, s3, r3, r3, r3, r3, r1, r3, r2, r4, r3], [r3, r2, r3, r3, r3, r2, r3, r3, r3, s1, s2, s2, s3, r1, r2, r2, r3, r3, r2, r2, s3, s3, s2, s3, r2, r3, r3, s2, s1, s3, s3, s2, s3, s1, s1, s3, r1, r1, r2, r2, r3, r3, r3, r2, r3, s3, s3, s1, r3, r3, r3, r1, r1, r3, r1, r3, r1], [r2, r1, r1, r3, r1, r3, r2, r3, s3, s2, s1, s2, r2, r3, r3, r3, r3, r2, r3, r1, s3, s1, s2, s3, s1, r3, s2, s2, s3, s1, s2, s2, s3, s2, s1, s3, s3, s3, r3, r3, r3, r1, r3, r3, s2, s2, s2, s2, r1, r3, r3, r3, r3, r1, r3, r4, r3], [r2, r4, r1, r3, r3, r3, r3, r3, s1, s3, s1, r3, r3, r1, r3, r3, r3, r2, r1, r2, r3, s2, s1, s1, s1, s1, s3, s2, s2, s1, s1, s1, r3, r1, s1, s2, s3, s1, r2, r1, r3, r1, r3, r2, s3, s1, s3, r2, r3, b2, b1, r3, r2, r2, r3, r2, r4], [r4, r1, r2, r2, r2, r3, r3, s3, s3, s2, r2, r2, r3, r1, r3, r3, r3, r2, r2, r3, r1, r1, s1, s3, s3, s2, s2, s3, s3, s2, r1, r2, r3, r1, r2, s1, s3, s3, s1, s2, r1, r1, r1, s1, s3, s2, r1, r3, b2, b1, b1, b1, r3, r1, r2, r1, r2], [r2, r2, r1, r2, r2, r2, r3, s2, s2, s1, r2, r3, r3, r3, r3, s1, s2, r3, r3, r2, r1, r1, s2, s2, s2, s2, s2, s1, r2, r2, r3, r1, r3, r2, r1, r3, s2, s1, s2, s3, s1, r3, r3, s1, s2, s3, r1, r3, b1, b2, b2, b1, b2, r2, r3, r2, r4], [r4, r4, r3, r1, r2, r3, r1, s3, s1, s3, r2, r3, r3, r3, s1, s2, s1, r3, r2, r2, r3, r3, r1, s2, s1, s2, s1, r1, r3, r3, r3, r1, r2, r2, r2, r3, r3, r2, s3, s3, s1, s2, s3, s3, s1, r1, r2, r1, r3, b2, b1, b1, b3, r3, r3, r4, r3], [r3, r1, r2, r2, r2, r2, r3, s1, s3, s2, s3, r3, r1, r3, s1, s2, s1, s3, r3, r3, r3, r3, r1, r3, s3, s2, s3, r2, r2, r1, r2, r2, r3, r3, r1, r3, r2, r2, r1, s3, s1, s3, s2, s1, r3, r3, r3, r1, r1, r3, b1, b1, b2, r3, r2, r3, r1], [r3, r2, l2, r3, r1, r2, r1, s2, s2, s1, s3, s2, s1, s3, s1, s1, s1, s2, s2, r3, r3, r1, r2, s3, s1, s3, r2, r2, r3, r1, r1, r2, r1, r3, r3, r3, r3, r3, r2, s3, s2, s2, s2, r3, r3, r2, r2, r1, r3, r3, r3, r3, r1, r3, r2, r2, r4], [r1, r2, l3, l1, r3, r2, r3, s1, s3, s3, s3, s2, s2, s2, s2, s1, s2, s1, s3, s3, r3, r2, s1, s2, s2, r3, r1, r2, r3, r1, r3, r3, r2, r3, r3, r3, r2, r2, r3, r3, s1, s2, s2, r3, r3, l2, l3, r3, r3, r1, r3, r1, r3, r1, r3, r1, r2], [r2, r4, l1, l1, l2, r3, r3, s2, s3, s2, s2, s1, s1, s1, s1, r3, s3, s3, s3, s1, s2, s1, s1, s1, s2, r3, r2, r3, r1, r1, r2, r1, r3, r2, r3, r3, r1, r3, s2, s1, s2, s1, r3, r3, r3, l3, l1, l3, r2, r2, r2, r1, r3, r3, r3, r3, r1], [r1, r3, r2, l3, l3, r3, r3, r3, s3, s2, s2, s3, s2, s1, r2, r1, s2, s2, s1, s1, s2, s1, s2, s2, s2, r2, r3, r1, r3, r2, r3, r3, r3, r3, r2, r3, r3, s3, s3, s3, s2, r3, r2, r3, r1, r3, l3, l3, l2, r3, r2, r1, r3, r1, r3, r1, r2], [r4, r3, r3, r2, l2, r3, r3, r2, r3, s3, s1, s1, s2, r1, r2, r3, r3, s1, s3, s1, s2, s3, s1, s3, s1, s1, r2, r3, r3, r1, r3, r3, r3, r3, r3, r1, s2, s2, s1, s2, r2, r3, r3, r3, r2, r3, l3, l2, l2, l2, r2, r3, r3, r1, r3, r3, r1], [r2, r1, r3, r3, r1, r2, r1, r2, r3, r2, s3, s2, s2, r3, r2, r2, r3, s3, s3, s2, s1, s3, r2, s1, s2, s1, s1, r3, r1, r3, s1, s2, s1, s1, s1, s2, s3, s1, r3, r2, r3, r2, r3, r2, r1, r3, r1, l3, l2, l1, r3, r3, r2, r3, r2, r4, r3], [r3, r1, r1, r2, r3, r2, r2, r3, r1, r1, s3, s2, s1, r3, r2, r1, s2, s2, s1, s3, s2, s3, r2, r1, s3, s3, s3, s2, r2, s2, s2, s2, s3, s1, s2, s3, s2, r3, r1, r3, r3, r2, r2, r2, r1, r1, r1, r3, l1, l3, r2, r3, r1, r1, r3, r2, r4], [r2, r4, r1, r1, r3, r3, r3, r1, r3, r1, s3, s3, s2, r3, s3, s2, s2, s1, s2, s2, s3, r3, r3, r1, r2, s1, s1, s3, s3, s3, s1, s1, s3, s2, s3, s1, r3, r1, r2, r3, s3, s2, s2, s3, r3, r1, r1, r3, r2, r3, r3, r1, r2, r1, r3, r3, r1], [r1, r3, r3, r1, r1, r3, r3, r3, r1, s1, s3, s1, s2, s2, s2, s3, s1, s1, s3, s2, r1, r3, r3, r1, r1, r1, s2, s3, s3, s3, s3, s2, s3, r3, s1, s1, s2, r3, r1, s2, s2, s3, s1, s1, s2, r2, r3, r3, r3, r3, r3, r3, r1, r1, r3, r4, r3], [r2, r3, r3, r1, r3, r3, r1, r2, s2, s3, s1, s3, s3, s3, s1, s3, r2, s2, s2, r2, r1, r1, r3, r3, r1, r2, r1, s3, s2, r3, r2, r2, r3, r3, s1, s2, s2, s3, s1, s1, s3, s3, s1, s2, s2, s3, s2, r3, r1, r1, r3, r2, r3, r3, r3, r2, r4], [r4, r3, r1, r3, r1, r3, r1, s1, s1, s1, s1, s3, s2, s2, s2, r3, r2, r2, r3, r2, r3, r3, r3, r2, r2, r3, r3, r3, r1, r1, r1, r3, r3, r2, r3, s3, s2, s2, s3, s3, s2, s3, r2, r3, s2, s1, s1, s3, r2, r3, r3, r1, r1, r3, r1, r1, r2], [r1, r2, r2, r3, r2, r1, r1, s1, s2, s1, s1, s3, r1, r2, r3, r2, b3, b1, b2, r2, r1, r1, r1, r1, r1, r2, r1, r3, r3, r3, b1, b2, r3, r1, r1, r3, s3, s3, s3, s1, s1, r3, r3, r2, r3, s3, s1, s2, s1, s3, r3, r1, r2, r3, r3, r2, r4], [r4, r1, r3, r3, r3, r1, r3, s1, s1, s1, s3, s2, r2, r2, b3, b2, b3, b2, b2, b1, r3, r3, r3, r2, r1, r2, r2, r3, r2, b2, b1, b1, b1, b3, r3, r1, r2, r3, r2, r3, r2, r2, l1, r2, r2, r3, r3, r2, r3, s2, r1, r1, r1, r3, r2, r3, r1], [r3, r1, r2, r3, r1, r3, r2, pp, s2, s3, s2, r1, r3, b2, b3, b1, b2, b1, b2, b2, r2, r3, r3, r3, r3, r1, r3, b3, b2, b2, b3, b1, b2, b2, r3, r2, r3, r3, r2, r2, r3, r2, l2, l2, r3, r1, r3, r3, r2, pp, r3, r1, r2, r1, r3, r4, r3], [r1, r2, r3, l2, r1, r2, r1, r2, r3, r2, r2, r2, b2, b3, b2, b1, b3, b1, b2, b1, b3, r3, r1, r1, r3, r3, b1, b2, b2, b3, r2, b1, b1, b2, b2, r3, r3, r3, r3, r2, r1, l3, l1, l1, l1, r1, r3, r3, r3, r3, r2, r3, r3, r2, r1, r2, r4], [r4, r2, r2, l2, l3, r3, r3, r3, r3, r3, r1, r2, b2, b2, b1, b2, b1, b3, b2, b3, b3, r2, r1, r3, r3, b1, b3, b3, b2, r3, r1, r1, b1, b2, b2, r3, r2, r3, r2, r1, l3, l2, r3, l2, l2, r1, r2, r2, r3, r1, r2, r2, r3, r3, r3, r3, r1], [r1, r2, r1, l1, l2, l1, r1, r3, r1, r1, r1, b2, b1, b1, b1, b2, b3, b2, b1, b1, b3, b1, r3, r2, b1, b2, b3, r1, r2, r1, r2, r2, r3, r3, r1, r2, r2, r1, r3, r3, r1, r3, r3, r3, r3, r3, r3, r2, r2, r3, r1, r2, r3, r3, r1, r2, r4], [r4, r1, r3, r3, l3, l3, r3, r2, r3, r2, r3, b2, b2, b2, b3, b3, b3, b3, b2, b1, b3, b1, b2, b2, b2, b3, r3, r3, r2, r3, r3, r2, r3, r1, r3, r2, r2, r1, r2, r2, r3, r2, r3, r1, r3, r3, r3, r3, r1, r3, r3, r2, r3, r3, r3, r1, r2], [r3, r1, r2, r2, r2, r1, r3, r3, r2, r3, r3, r1, b2, b1, b2, b2, b2, b1, b2, b3, b2, b1, b1, b1, b2, r2, r1, r3, r3, r2, r3, r2, r3, r2, r3, r3, r3, r1, r2, r3, r2, r3, r3, r1, r3, r3, r3, r1, r2, r3, r3, r1, r2, r1, r3, r3, r1], [r2, r3, r1, r3, r3, r3, r2, r1, r1, r1, r3, r2, b3, b2, b1, b1, b3, b2, b3, b2, b3, b2, b3, b3, r1, r2, r3, r3, r1, r1, r3, r1, r2, r3, r3, r2, r3, r3, r2, r3, r3, r3, r3, r2, r3, r3, r3, r3, r3, r2, r3, r2, r2, r3, r3, r4, r3], ], "elevation": [ ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "snow": { "players": {}, "background": r2, "map": [ [r1, r1, r1, r2, r1, r1, r2, r1, r1, r1, r1, r1, r1, r3, r2, r3, r3, r2, r1, r1, r2, w1, r3, r1, r1, r1, r1, r3, r3, r2, r1, r1, r1, r1, r3, r1, r2, r1, w3, r1, r3, r2], [r2, i2, i1, r1, r1, r4, r1, r3, r1, r1, r1, r1, r3, r1, r2, r1, r1, r1, r2, r1, w2, w1, r1, r2, r1, r1, r1, r2, r3, r2, r2, r1, r2, r3, r3, r3, r1, r2, w3, w2, r2, r3], [i2, i1, i1, i2, r1, r1, r2, r1, w2, w3, r3, r2, i2, i2, i1, i1, r3, r3, r3, r3, r2, w2, w3, r2, r2, w1, w3, w2, r2, r3, r1, w3, w1, r3, r3, r1, r3, r1, r2, r1, r1, r3], [i1, i2, i3, i2, i2, r3, r2, w1, w3, w1, r3, i2, i1, i1, i1, i1, i3, r1, r1, r1, w2, w3, r1, r3, w3, w3, w3, w2, w1, r1, r1, r1, w1, w1, r2, r3, r2, w2, w3, r2, r3, r1], [i3, i3, i2, i1, i3, r3, r1, w3, w2, r3, r3, r3, i3, i2, i1, i1, i3, r2, r1, r2, r1, r2, r3, r3, w1, w3, r1, w1, w2, w1, r3, r3, r2, r2, r3, r3, w1, w3, w3, r1, r1, r3], [r3, i3, i2, i1, i2, r1, r2, r2, r1, r2, r1, r2, r2, r1, r3, r2, r3, r3, r3, r2, r1, r1, r3, r2, r2, r3, r2, r1, w1, w2, w2, r1, r2, r3, r1, r1, r2, w1, r1, r1, r1, r2], [r2, i2, i3, i1, i2, i3, r1, w3, r1, r2, r3, r2, r3, r3, w1, r3, w3, r1, r1, r2, r2, r1, r2, r2, r1, r1, r1, r3, r3, w2, w1, w2, r1, w1, w3, r2, r1, r3, r2, r1, r3, r2], [r2, r1, r1, i1, i1, r1, r1, r1, r2, r3, r1, w3, w2, w2, r3, r3, r1, r1, r3, w2, w3, w3, w3, r1, r1, r1, w3, r1, r3, r1, w1, w1, r3, r3, r1, w1, r1, r1, r2, r2, r2, r3], [r2, r3, r2, r1, r1, r1, r3, w3, w1, w1, r2, r1, r1, r2, r1, r3, w3, w3, w3, w2, w2, w2, w3, w1, w3, w2, w2, w2, r2, r3, r1, r1, r2, r2, r1, r3, r3, r2, w1, w3, r1, r1], [r3, r3, w3, r3, r1, r1, r1, w1, w3, r1, r3, r1, r3, r3, pp, w3, w3, w3, w1, w1, w1, w1, w2, w1, w3, w1, w3, w2, r2, r2, r1, r1, r1, r2, w2, r2, r3, w2, w2, w2, r1, r3], [r3, w3, w2, r3, r1, w3, w3, r1, r3, r2, r2, r1, w2, w1, w1, w1, w3, w1, w3, r2, r1, r1, w1, w3, w1, w2, r1, r1, r2, r1, r3, w3, w1, r1, r2, r1, r2, r2, w2, r1, r1, r1], [r1, r1, r1, r3, w3, w2, w1, r3, w2, r2, r3, w2, w3, w2, w1, w1, w2, w2, w2, w2, r2, w1, w1, w1, w2, r1, r1, r2, r3, w1, w3, w3, w1, w2, r3, r2, w3, r3, r3, r2, r2, r3], [r1, r2, w3, w3, r1, w2, r3, r2, r2, r2, w2, w2, w2, r2, r1, w1, w2, w3, w2, w1, w2, w1, w1, w2, r1, r1, r2, r1, r3, w3, w3, w3, w3, w2, r3, r2, w3, r1, r1, r1, r2, r2], [r3, r3, r2, r1, r1, r3, r3, r1, r2, r1, w2, w1, r1, r1, r3, r2, w2, w1, w3, w1, w1, w1, w1, w3, w3, r1, r1, r2, w3, w2, w2, w3, w2, w3, r2, r2, w3, r3, r1, r1, r1, r1], [r1, r2, r2, r1, r2, r1, w2, r2, r2, w1, w3, r1, r3, r1, i1, i2, i3, i3, w3, w1, w2, w1, w2, w1, w1, w1, w2, w1, w3, w3, w2, w3, w2, w3, w3, r2, r2, r3, w3, w3, r2, r1], [r3, r3, r1, r1, r3, r1, w1, r2, r3, w2, w3, r3, i2, i1, i2, i1, i1, i2, i1, w1, w2, w2, w1, w3, w2, w2, w3, w2, w3, w2, w3, w3, w1, w3, w2, r2, r3, w3, w1, w1, r3, r1], [r2, r1, r3, r1, r1, w2, r1, r3, r1, w3, w1, w2, i1, i3, i1, i2, i3, i3, i2, w3, w1, w1, w1, w3, w2, w3, w2, w2, w2, w1, w2, w2, w1, w3, w2, r2, r3, r1, w3, w1, w1, r1], [r1, r1, r3, r2, w2, r2, r3, r1, w3, w1, w2, i2, i1, i1, i2, i2, i2, i3, i2, i3, r2, r3, w3, w2, w3, w2, w2, w2, w1, w2, w2, w1, w1, w3, w1, r1, r3, r2, r1, r1, r1, r1], [r2, r2, w1, r3, r2, r2, r2, r1, w2, w3, w3, i2, i1, i1, i1, i3, i3, i2, i1, i1, r3, r3, r2, w1, w2, w3, w1, w2, w3, w2, w2, w1, w1, w3, w2, r1, r1, r3, r3, r1, r1, r3], [r2, w2, w3, r1, r1, r2, r3, r3, w1, w3, w1, i1, i2, i1, i2, i2, i1, i2, i1, i2, i1, r1, r2, r1, w1, w1, w3, w1, w1, r2, r1, w1, w1, w2, w2, r3, r3, w1, w3, r2, r3, r3], [r2, r1, r1, r1, r3, r1, r1, w3, w3, w1, w3, i2, i1, i2, i1, i3, i3, i1, i2, i1, i3, i3, i3, i2, w1, w1, w2, w3, r3, r1, r2, w1, w3, w2, r1, r3, r2, w3, w3, r3, r1, r1], [r2, r1, r1, r1, w3, r1, r1, w1, w1, w2, w3, w1, i3, i1, i1, i1, i3, i1, i3, i3, i1, i3, i3, i1, i2, w2, w3, w1, r3, r2, r1, r3, w2, w3, r1, r2, r3, w3, r1, r1, r2, r2], [r1, r1, r1, w3, w3, r1, r3, w1, w2, w2, w2, w3, w3, w2, i1, i3, i1, i3, i3, i1, i3, i3, i1, i2, i3, i1, w2, w3, w2, r1, r1, r2, w3, w1, r2, r2, r1, r2, r2, r1, r3, r1], [r1, r1, r2, r1, r3, w3, r1, r3, w3, w1, w3, w2, w3, w1, w3, r3, r1, i3, i1, i1, i2, i1, i2, i3, i2, i2, w2, w1, w3, w2, w2, w1, w1, r2, r2, r2, w2, r2, r1, r3, r1, r2], [r3, r2, r1, r1, w2, w3, r1, r3, w2, w1, w2, w2, w2, w1, w1, w2, r1, r3, r3, i3, i3, i1, i3, i2, i1, i2, w2, w1, w1, w3, w1, w3, w1, r1, r1, r2, r2, w3, r3, w2, w1, r1], [r3, r1, r3, r1, w1, r1, r1, r1, w1, w2, w2, w2, w3, w1, w2, w1, w1, r2, r1, i1, i3, i1, i2, i3, i3, w1, w2, w1, w1, w2, w1, w3, w2, r2, r1, r2, w3, w3, w1, r1, w1, r2], [r3, r1, r1, w3, w2, r3, r1, w2, w3, w1, w1, w1, w1, w2, w3, w2, w1, w2, i2, i2, i2, i1, i1, i3, w1, w1, w1, w2, w1, w2, w2, w2, w1, w2, r1, r3, r3, w2, w2, r2, r2, r1], [r1, r1, w3, w1, w2, r2, r2, w3, w3, w1, w2, w2, w2, w1, w1, w2, w3, w1, w3, i1, i3, i2, i3, w1, w3, w1, w2, w3, w2, w1, w1, w3, w2, w2, r3, r1, r1, r1, r1, r1, r1, r1], [r1, r3, r3, w2, r3, r3, r2, w3, w3, w2, w1, w3, r2, w3, w1, w1, w3, w1, w1, w3, w3, w1, w2, w2, w1, w2, w1, w3, w2, r1, r1, w2, w1, w1, w1, r1, w2, w1, r1, r3, r2, r1], [r1, w3, r3, r1, r1, r1, r3, w1, w3, w1, w2, w2, r3, r1, w1, w1, w2, w1, w2, w1, w3, w2, w3, w1, w3, w2, w2, w1, r3, r1, r1, w1, w2, w1, w1, r2, r2, w2, w3, r1, r1, r1], [r1, w3, r1, r2, w1, r1, r1, r1, w2, w3, w2, w2, w1, w3, w1, w3, w1, w3, w3, w1, w3, w3, w3, w1, w3, w2, w1, w1, r1, r1, w2, w1, w1, w3, w1, r3, r2, r3, w1, w3, w1, r3], [r1, r1, r1, w3, w3, w2, r2, r2, w1, w2, w1, w2, w1, w2, w2, w2, w1, w3, w3, w1, w3, w3, w3, w2, w2, w3, w1, w2, w3, w2, w2, w3, w3, w3, w1, r3, r1, w3, r3, w3, r1, r3], [r1, r2, r3, r3, r2, r3, r1, r3, w3, w3, w3, w1, w2, w2, w2, w2, w2, w1, w3, w3, w1, w2, w1, w2, w3, w1, w1, w3, w3, w2, w3, w1, w2, w1, w2, r1, w2, w1, r1, r2, r1, r2], [r2, r2, i2, i2, r3, r1, r2, r1, r3, w2, w2, w3, w3, w1, w1, w3, w3, w3, r2, r1, w3, w3, w1, w3, w1, w3, w3, w3, w2, w2, w1, w1, w2, w1, w2, r2, r1, i3, i1, w1, r1, r1], [r2, i1, i3, i2, i2, i3, r1, r1, r3, w3, w1, w3, w2, w3, w2, w1, w3, r1, r3, r1, r3, w3, w1, w3, w1, w3, w2, w3, r1, r1, r1, r2, w1, w2, w3, r1, i3, i2, i2, i3, r1, r1], [r1, i1, i3, i2, i1, i1, i3, r1, r1, w2, w1, w1, w2, w1, w2, w1, w3, r1, r2, r3, r3, r1, w2, w3, w3, w1, w2, r1, r3, i1, i2, r2, w2, w1, w1, r3, i2, i2, i2, i1, w2, r3], [r1, i3, i3, i1, i1, i3, i2, r1, r1, r2, w3, w2, w3, w3, w1, w1, w3, w1, r2, r2, r1, r1, r1, w3, w2, w3, r2, r1, i3, i1, i1, r2, w3, w3, w2, r1, i2, i3, i3, i3, r2, r1], [r1, i3, i3, i1, i1, i1, r3, r3, r1, r1, w3, w3, w2, w1, w2, w1, w2, w1, r3, r2, r1, r1, w1, w3, w3, w2, r3, i3, i3, i3, r2, r2, w1, w3, r1, r1, r1, i2, i3, i1, r1, r3], [r1, r3, i1, i1, r1, r1, r2, r3, r1, r3, w3, w1, w3, r1, r1, w3, w2, w3, w1, w3, r2, w2, w2, w3, w3, w1, r1, i3, i3, r1, r2, w1, w1, r1, r1, r3, r1, r1, r1, r1, r2, r1], [r1, r3, r1, r1, r1, w2, r1, r3, r1, w2, w1, w2, w3, r1, r2, r3, w2, w3, w2, w1, w3, w1, w2, w1, w1, w1, r2, r1, r2, r3, w2, w1, w1, r1, r1, w1, r2, w2, w2, w1, r3, r1], [r1, r3, r2, r2, w3, w3, r2, r2, r3, w1, w1, w1, w1, w3, r3, w3, w1, w2, w2, w2, w3, w1, w2, w2, w3, w1, w1, w3, w3, w3, w1, w1, r1, r3, w1, w2, r3, r2, r2, w3, w2, r1], [r2, w1, w1, w3, r2, r1, r3, r1, w1, w2, w1, w1, w1, w3, w2, w2, w1, w3, w3, w3, w3, w2, w1, w3, w1, w3, w1, w2, w3, w3, w3, w3, r1, r1, r1, r1, r1, w3, r2, w3, w2, r1], [r1, r1, w2, r3, r1, r2, r1, pp, w2, w3, w3, w1, w3, w2, w2, w2, w1, w2, r1, r3, r1, w1, w3, w1, w1, w2, w2, w1, w2, r1, r1, r3, r2, w1, r1, r1, w3, w1, r3, w3, w1, r2], [r1, r1, r2, r2, r2, r2, r3, r1, r1, w3, w2, w1, w2, w1, w3, w2, r1, r2, r1, r1, r2, r3, w2, w1, w2, pp, r3, r2, r1, r1, r2, r2, r2, w3, w2, r1, w2, w1, w2, r3, r2, r2], [r1, r1, r2, r1, r1, r1, r1, r1, r2, r3, r1, r1, r3, r1, r2, r2, r1, r3, r1, r2, r2, r1, r3, r1, r3, r2, r1, r1, r1, r1, r1, r3, r1, w3, r1, r3, r2, w1, r1, r1, w2, r1], [r2, r1, r2, r1, r3, w3, r2, r2, w2, r1, r1, r1, r3, r1, r3, r2, w2, r1, r3, r2, w2, w2, r3, r1, r1, r2, r2, r1, r1, r1, r1, r2, w1, w3, r1, r1, r1, w2, w2, r1, r2, r2], [r2, r1, r1, r2, w3, w3, r1, r2, w2, r2, w3, r1, w1, w2, r2, w3, w2, r2, r2, r1, r1, w2, r1, r1, r3, r2, w2, w2, r1, r3, r2, w2, w1, r1, r1, w1, r1, r2, w2, w1, r1, r1], [r1, r1, r2, r3, r1, r3, r2, r2, r1, r2, r1, w3, w2, w3, r3, w2, w2, w3, r3, r3, r1, r1, r2, r3, r1, r1, w1, w3, w1, r3, r1, w3, r1, r2, w1, w2, w3, r3, w1, w3, w3, r3], [r3, w1, w3, r1, r3, w2, r1, r2, w2, r1, r3, r2, w1, r3, r3, r1, w1, r3, r3, r2, w2, w2, r3, w2, r1, r1, r2, w3, w2, r1, r1, r1, r3, r3, w1, w2, r1, r1, r1, w3, w2, r3], [r1, r3, w3, r1, r2, r3, r2, r3, r1, r3, w1, r3, r3, r1, r1, r1, r3, r1, r1, w3, w1, w2, w3, w3, w1, r1, r3, r1, r1, r3, r1, r3, r1, r1, r2, r1, r3, r2, w3, w1, w2, w3], [r1, r1, r2, r1, r2, r1, r2, r2, r1, r1, r1, r2, r2, r1, r1, r2, r3, r1, w3, w3, w2, r1, r1, w3, w1, r2, r1, r2, r1, r3, r1, r1, r2, r1, r3, r1, r1, r1, r2, w2, w3, r1] ], "elevation": [ ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "beach": { "players": {}, "background": b3, "map": [ [r1, r3, r2, r3, r2, r2, r4, r3, r3, r3, r1, r2, r2, r4, r3, r4, r2, r4, r3, r4, r2, r4, r4, w1, w1, w2, w1, w1, w1, r1, r3, r3, r4, r3, r4, r1, r3, r1, r2, r2, r2, r4, r4, r1, r2, r4, r2, r3, r4, r3, r4, r3, r4], [r3, r2, r1, r1, r2, r2, r4, r3, r4, r4, r4, r1, r1, r4, r4, w1, r3, r4, r4, r2, r2, r4, r3, r1, w1, w1, w1, w2, r4, r3, r3, r4, r1, r1, r3, r2, r4, r2, r2, r3, r1, r1, r2, r1, r2, r2, r3, r3, r4, r2, r4, r4, r4], [r2, r3, r4, r2, r1, r4, r4, r1, r2, r4, r3, r2, r4, r3, r4, w1, r2, r1, r3, r1, r2, r2, r3, r1, r3, r1, r4, r1, r3, r3, r2, r1, r1, r4, r2, r2, r2, r3, r4, r2, r3, w1, w1, w2, w2, r1, r3, r3, r2, r4, r2, r3, r4], [r1, r3, r2, r4, r1, r2, r1, r2, r4, r1, r1, r3, r1, r2, w2, w1, r4, r3, r4, r3, r1, r2, r4, r3, r3, r4, r1, r3, r3, r2, r2, r2, r2, r3, r3, r2, r4, r2, r1, r2, r2, r4, w1, w2, w2, w1, r1, r1, r2, r1, r3, r1, r3], [r1, r3, r3, r2, r4, r3, r1, r2, r3, r1, r3, r4, r4, r1, w1, w2, w2, r2, r1, r2, r4, r1, r1, r1, r2, r1, r1, r1, r3, r2, r4, r3, r2, r2, r3, r4, r1, r3, r4, r4, r1, r4, r2, w2, w1, w1, r2, r4, r3, r1, r3, r3, r4], [r4, r3, r3, r2, r2, r2, w2, w1, w2, r3, r1, r1, r1, r3, r2, w2, w1, r3, r4, r3, r3, r2, r4, r3, r2, r2, r1, r4, r4, r1, r2, r2, r2, r4, r2, w2, w1, w2, r4, r2, r3, r4, r1, r3, w1, w1, w1, r3, r1, r1, r4, r4, r4], [r4, r3, r3, r4, r3, w2, w2, w1, w1, w1, r4, r1, r1, r1, r3, w1, w1, r2, r3, r1, r1, r3, r3, r2, r2, r3, r3, r2, r4, r2, r3, r2, r1, r4, w2, w1, w1, w1, r4, r1, r1, r2, r3, r2, r1, w2, w1, r1, r3, r2, r3, r1, r1], [r2, r2, r4, r4, w2, w2, w2, w2, w1, w2, r1, r1, r3, r4, r4, r2, w1, w2, w2, w1, r4, r2, r4, r4, r3, r3, r1, r1, r2, r3, r4, r2, r3, r2, w1, w2, r3, r4, r1, r1, r4, r3, r1, r4, r1, w2, w1, r1, r2, r3, r3, r4, r1], [r3, r4, r3, w1, w1, w1, w1, r3, r1, r4, r4, r1, r3, r4, r2, r3, w2, w1, w1, w1, r1, r4, r1, r3, r3, w2, w1, w1, r1, r3, r2, r3, r2, r1, r3, r4, r3, r2, r3, r3, r3, r3, r2, r3, r2, r3, r2, r3, r1, r4, r2, r2, r2], [r2, r4, r3, r3, w2, w1, r3, r3, r3, r2, r2, r3, r1, r2, r4, r2, r3, w1, w1, r1, r2, r2, r4, r1, w1, w2, w1, w1, w1, r1, r4, r2, r2, r3, r2, r1, r4, r3, r3, r1, r2, r1, pp, r3, r4, r1, r2, r4, r4, r1, r4, r3, r2], [r1, r3, r1, r2, r2, r3, r3, r1, r4, r3, r1, r2, r4, r3, r4, r3, r4, r1, r4, r3, r2, r3, w1, w2, w1, w2, r1, r1, r2, r1, r2, r2, r2, r4, r2, r4, r4, r3, r4, p1, p2, p2, p3, r3, r1, r3, r4, r1, r4, r4, r2, r4, r2], [r2, r3, r2, r4, r2, r4, r2, r1, r1, r3, r3, pp, p3, r1, r1, r1, r2, r1, r2, r4, r2, r1, r1, w1, r4, r1, r4, r1, r3, r1, r4, r1, r3, r3, r3, r1, r4, r3, p3, p3, p3, p2, p3, r2, r1, r2, r3, r1, r2, r2, r3, r3, r4], [r1, r2, r2, r3, r3, r2, r2, r3, r4, r3, p2, p3, p2, p1, r3, r4, r1, r4, r2, r3, r4, r3, r1, r4, r1, r4, r2, r1, p3, p3, r3, r2, r2, p2, p2, p2, r4, p2, p2, p2, p2, p3, p3, r2, r3, r1, r1, r2, r4, r1, r4, r1, r4], [r1, r1, r1, r3, r1, r3, r3, r2, r1, r4, p2, p1, p2, p3, r4, r2, r2, r1, r1, r3, r1, r4, r3, r2, r4, r2, p2, p3, p3, p1, p1, r3, p3, p3, p3, p2, p2, p2, p1, p1, p3, p2, p1, r2, r1, r1, r3, r4, r4, r1, r4, r2, r3], [r1, r2, r1, r3, r1, r2, r4, r3, r1, r4, p3, p1, p3, p3, p1, r1, r1, r2, r3, r2, r2, r2, r4, r1, r2, p1, p2, p1, p1, p1, p1, p1, p1, p2, p1, p2, p3, p1, p2, p3, p2, r3, r4, r2, r3, r1, r2, r1, r2, r3, r3, r2, r1], [r2, r4, r2, r4, r3, r4, r2, r1, r3, r4, p2, p1, p1, p1, p3, p2, r4, r1, r4, r2, r2, r3, r2, r4, r2, p3, p3, p1, p2, p2, p1, p3, p2, p1, p3, p3, p1, p1, p2, p2, r3, r1, r4, r4, r3, r4, r2, r4, r4, r1, r2, r1, r4], [r4, r4, r3, r3, r3, r2, r4, r4, r4, r4, p1, p2, p1, p2, p2, p1, p3, p1, r4, r3, r3, r3, r1, r1, p2, p3, p2, p3, p1, p3, p3, p3, p2, p2, p1, p3, p1, p3, p3, r4, r1, r1, r2, r3, r3, r1, r3, r4, r4, r3, r2, r1, r4], [r1, r4, r2, r1, r2, r3, r2, r3, r4, r3, r4, p1, p2, p1, p1, p1, p1, p1, p1, p3, r2, r2, r4, p3, p3, p2, p3, p1, r4, p3, p3, p1, p3, r2, p2, p2, p2, p1, r2, r2, r1, r1, r3, r4, r1, r2, r2, r1, r1, r3, r4, r2, r2], [r4, r1, r4, r4, r1, r2, r4, r2, r2, r1, r2, p2, p1, p2, p3, p1, p2, p3, p3, p2, p3, p2, p3, p2, p3, p2, p3, r3, r3, r4, r3, r4, r1, r3, p3, p2, p2, p1, r3, r2, r4, r4, r3, r4, r3, r3, r3, r4, r3, r3, r4, r2, r2], [r3, r1, r1, r3, r2, r3, r2, r2, r2, r1, r2, p1, p1, p1, p3, p2, p2, p3, p1, p3, p2, p2, p2, p3, p1, r1, r3, r4, r3, r4, r2, r4, r2, p2, p3, p2, p2, r3, r3, r1, r4, r3, r2, r4, r4, r1, r2, r1, r3, r3, r3, r2, r2], [r4, r1, r4, r4, r1, r3, r1, r3, r3, r3, r1, r2, p3, p3, p1, p1, r1, r1, r3, p3, p3, p2, p1, p2, r1, r3, r3, r4, r3, r1, r4, r2, p2, p3, p3, p3, p2, r3, r3, r1, r1, r2, r1, r1, r4, r4, r3, r4, r3, r4, r4, r1, r3], [r2, r2, r4, r4, r4, r4, r1, r1, r1, r1, r1, r4, p1, p2, p3, p3, p3, r3, r4, r1, r2, r3, r3, r2, r1, r1, r1, r2, r3, r1, r4, r2, g3, g4, p2, p3, r3, r1, r3, r2, r1, r1, r3, r2, r2, r3, r1, r2, r3, r3, r3, r3, r4], [r2, r2, r3, r4, r4, r1, r2, r3, r4, r3, r2, r4, r2, p3, p2, p2, p3, r1, r1, r2, r2, r1, r3, r1, r2, r2, r2, r1, r2, g2, g1, g3, g4, g3, g4, p1, r2, r3, r1, r4, g1, r2, r4, r1, r4, r1, r3, r2, r2, r1, r2, r3, r2], [r2, r2, r4, r1, r2, r2, r2, r1, r3, r4, g2, g2, r3, r2, g3, p3, g4, g3, g1, r4, r1, r3, r4, r1, r1, r3, g1, g2, g3, g3, g2, g1, g2, g2, g2, g3, g2, r2, r4, g2, g2, g3, g2, g3, r1, r1, r1, r1, r3, r4, r2, r1, r4], [r4, r4, r3, r1, r2, r2, r2, r3, r3, g2, g3, g3, g2, g2, g4, g3, g2, g2, g2, g3, g3, g3, r3, r3, g1, g3, g3, g3, g3, g1, g2, g1, g3, g2, g1, g1, g2, g1, g2, g3, g1, g1, g1, g2, g1, g2, r4, r3, r2, r1, r1, r4, r1], [r3, r1, r1, r4, r4, r4, r1, r3, r1, g2, g3, g1, g2, g2, g3, g1, g2, s1, g3, g3, g3, g2, g3, g1, g2, g3, g1, g3, s2, s3, s2, s1, g3, g3, g3, g2, g1, g3, g3, g2, g1, g1, g3, g2, g1, g1, s1, r2, r3, r1, r4, r3, r2], [r4, r4, r4, r4, b2, b3, b3, s1, s2, s2, g2, g2, g1, g1, g3, g1, g1, s1, s3, s2, s2, g2, g2, g3, g2, s2, s1, s3, s2, s1, s3, s1, s2, s1, s3, s1, g1, g1, g2, g2, s2, s1, s2, s3, s3, s1, s1, r1, b1, b3, b1, r3, r2], [b1, b2, b3, b3, b2, b2, b1, s1, s1, s3, s2, s3, s3, s2, s1, s3, s1, s1, s2, s3, s1, s3, s3, s1, s1, s3, s3, s2, s1, s3, s1, s2, s3, s1, s2, s2, s3, s2, s2, s2, s3, s1, s3, s2, s2, s1, s2, b1, b1, b1, b3, b3, b1], [b2, b3, b3, b2, b1, b3, b2, b1, s2, s1, s2, s3, s2, s3, s1, s2, s1, s1, s2, s3, s2, s1, s3, s3, s1, s1, s3, s2, s1, s1, s1, s2, s3, s2, s2, s1, s1, s2, s3, s1, s1, s3, s3, s1, s3, s1, o1, b2, b1, b1, b2, b3, b2], [b3, b3, b1, b2, b2, b2, b2, b3, b3, o1, s3, s1, s2, s3, s2, s2, s1, s2, s2, s3, s1, s3, s1, s3, s3, s1, s1, s2, s3, s3, s3, s2, s1, s1, s2, s1, s1, s1, s2, s2, s2, s3, o2, o3, o2, o1, o1, b1, b3, b1, b2, b1, b3], [b1, b2, b1, b1, b3, b1, b3, b2, b3, b2, o2, o2, o2, o3, o2, o3, s2, s3, s1, o2, o1, s3, s3, s3, s3, o3, o2, o1, s3, s3, s2, s1, s1, s1, s2, s1, s3, s1, s3, s2, o3, o3, o2, o1, o3, o2, o3, b2, b3, b3, b3, b2, b2], [b1, b1, b3, b2, b3, b3, b1, b3, b3, b2, b1, b1, b1, o2, o1, o1, o1, o3, o1, o2, o2, o3, o2, o2, o3, o1, b2, o3, o3, o1, o3, o3, s3, s1, s3, s1, s3, s3, o3, o2, o2, b3, b1, o2, o1, o3, b2, b2, b3, b3, b1, b3, b1], [o1, o2, o2, o1, o2, o3, b3, b3, b2, b1, b1, b2, b3, o3, o3, o2, o1, b1, b2, b2, b3, b3, b3, b2, b1, b2, b1, b3, b2, b1, b1, o3, o3, o1, o2, o2, o1, o3, o1, b2, b1, b2, o1, o3, o2, o1, o2, b3, b1, b3, b3, b3, b3], [o3, s2, s2, s2, s3, o1, o1, b2, b2, b2, b2, b2, o1, o3, o3, o1, b1, b1, b3, b3, b3, b1, b3, b3, b3, b2, b3, b1, b3, b1, b1, b1, b3, o1, o2, o3, b1, b2, b2, b2, b1, o2, o2, s1, s1, s2, o1, b2, b3, b3, b3, b1, b2], [s1, s3, g1, g2, s3, s1, o1, b1, b1, b2, b2, b3, o2, o3, o1, o2, b3, b2, b1, b1, b1, b3, b1, b2, b2, b1, b3, b2, b2, b3, b2, b1, b1, b1, b3, b3, b1, b1, b1, b3, b3, o1, s2, s1, s2, s2, o3, b3, b1, b2, b1, b3, b3], [g1, g2, g1, g2, g2, s3, o2, b1, b1, b2, b2, o3, o2, o1, o2, b2, b2, b2, b3, b1, b2, b2, b3, b2, b3, b1, b2, b2, o3, o1, o3, o2, o1, b3, b1, b1, b1, b1, b2, b3, b1, o1, s1, s1, g2, s2, o2, b1, b3, b3, b1, b2, b1], [r4, r1, g1, g1, s2, s1, o3, b1, b1, b3, b2, o3, o1, o1, b1, b2, b3, b1, b2, b2, b3, b1, b1, b2, b3, b3, o1, o1, o2, s3, s1, s3, o2, o2, o3, b2, o1, o1, o3, b2, o3, s1, s1, g1, g1, s2, o1, b2, b3, b1, b1, b2, b1], [r2, r2, g1, s3, s3, s3, o3, b1, b1, b2, b3, o1, o3, o3, b2, b2, b2, b1, b1, b1, b3, b3, b2, b2, b2, o1, o3, s1, s2, s1, s1, s1, s2, s1, s2, o2, o3, s3, s2, o1, o1, s1, s1, s3, s2, s2, o3, b3, b3, b1, b1, b2, b2], [r2, s3, s3, s2, s3, o3, o3, b1, b2, b1, o2, o2, o2, o3, b2, b1, b1, b3, b1, b2, b3, b2, b1, b1, o3, o2, s2, s1, s2, s3, s2, s1, s2, s2, s3, s3, s2, s1, s2, s3, o2, o2, o2, o3, s3, s2, o1, b1, b1, b3, b3, b1, b2], [s1, s3, o3, o2, o2, o1, b1, b1, o2, o1, s3, s2, s1, o1, o3, o1, o1, b2, b2, b2, b1, b3, b1, b1, o1, s3, s1, s3, s3, g2, g2, g3, g3, s2, s2, s1, s2, s1, s1, s2, o2, o2, o3, o1, o3, o1, o3, b2, b2, b2, b1, b1, b3], [o3, o2, o2, b3, b3, b3, b3, o1, o1, s1, s1, s1, s3, s1, s2, s3, o1, o1, o2, b3, b2, b1, b3, b1, o2, s3, s3, s3, g2, g2, g1, g2, g2, g1, g3, g2, g2, g2, s1, s1, s2, o1, o3, b2, b3, b3, b3, b3, b3, b1, b1, b3, b2], [b1, b1, b1, b3, b3, b1, b1, o2, s2, s2, s2, g3, g3, s3, s2, s3, s3, s3, o1, o1, b3, b1, b2, b3, o1, s2, s3, g1, g3, g2, r4, r2, r2, g3, g1, g2, g3, g1, g2, s1, s2, s2, o2, o3, b2, b2, b3, b1, b1, b3, b1, b2, b1], [b3, b3, b3, b3, b1, b1, o2, o1, s2, s2, g3, g1, g3, s2, s1, s2, s2, s3, s3, o1, b3, b3, b2, b2, o2, s3, s3, g2, g2, r2, r4, r4, r2, r4, g2, r1, r3, g1, g2, g1, s1, s1, o1, o3, b3, b1, b2, b3, b2, b1, b1, b3, b1], [b2, b1, b3, b2, b2, b1, b2, s2, s3, g3, g3, g3, g2, g1, g2, s2, s3, s3, s3, o3, o1, o3, o2, b2, o3, s2, s1, g2, g3, r3, r1, b2, b1, r2, r3, r1, r4, r1, g1, g3, s2, s1, s3, o1, b1, b2, b3, b3, b1, b1, b3, b2, b2], [b2, b3, b3, b2, b1, b3, b3, s2, s1, g1, g3, r4, r2, g3, g3, g2, s3, s3, s3, s2, o1, o3, o2, o2, o1, s2, s2, g1, r4, r4, b2, b3, b2, b1, r2, g1, r1, r1, g2, g3, g2, s3, s3, o3, b2, b2, b3, b3, b2, b2, b1, b3, b2], [b2, b1, b3, b1, b2, b1, b2, s2, s1, s2, g3, r1, r3, r4, g3, g2, g2, s1, s1, s1, o3, o2, o1, o3, o3, s1, s2, g2, r3, b1, b2, b1, b3, b2, b1, g1, g3, g3, g3, g1, g1, s3, s2, o2, b2, b1, b3, b1, b1, b2, b1, b2, b2], [b3, b1, b1, b3, b1, b1, b3, s3, s1, s3, g2, r4, r1, r4, r4, g3, g2, s3, s3, s1, o1, o1, o2, o3, o1, s1, s1, s3, g1, b2, b3, g3, g3, b3, b2, g3, s2, s3, s3, s2, s3, s1, s1, o1, b1, b1, b3, b3, b1, b1, b1, b3, b1], [b2, b3, b2, b2, b2, b3, b2, s3, s1, g1, g3, r1, r4, r4, r4, g2, g1, s3, s1, s3, o3, b2, b2, o2, o2, s2, s3, s3, g2, g1, g1, g3, g2, g1, g2, s2, s3, s2, s3, s1, s2, s3, s1, o1, b3, b3, b1, b3, b3, b1, b1, b2, b2], [b1, b2, b2, b3, b3, b2, s2, s3, s2, g2, r3, r2, r2, r4, g1, g3, g3, s1, s1, s1, o2, b3, b3, b2, o1, o2, s3, s1, g2, g2, g2, g1, g2, g3, g2, s3, s1, o1, o3, o1, s2, s1, o3, b1, b2, b1, b2, b1, b3, b1, b1, b1, b2], [b1, b1, b2, b3, b2, b1, s2, s1, g3, g2, r4, r2, g2, g2, g3, g2, g1, s1, s3, o2, b1, b3, b3, b1, b2, o3, s3, s1, s1, g3, g2, g1, g1, g3, s3, s2, o2, o3, b2, o2, o1, o3, b3, b3, b3, o1, o3, o3, o1, o1, o3, b3, b1], [b2, b1, b1, b2, b1, b3, s2, s3, g3, g2, r3, r1, s2, s1, s3, g2, g2, s1, s2, o2, b2, b3, b2, b1, b3, o3, o2, s3, s3, s1, g2, g2, s1, s1, s3, s1, o3, b3, b3, b2, b2, b3, b1, b2, o3, o2, s1, s3, s1, s3, o1, o2, b1], [b2, b2, b3, b3, b2, b2, s1, s2, g2, s2, s1, s3, s3, s3, s2, s1, s1, s2, s3, o3, b2, b2, b1, b1, b1, b3, o3, o3, s3, s2, s1, s2, s1, s2, s1, o1, b2, b1, b1, b3, b2, b1, b1, o1, o3, s2, s3, s2, s3, s3, s2, o3, o2], [b1, b3, b2, b3, b2, b3, s1, s2, s1, s1, s1, s1, s2, s3, s3, s2, s1, s3, o1, b1, b2, b3, b1, b2, b1, b2, b3, o2, o2, s1, s3, s3, s2, o2, o2, o3, b2, b3, b2, b2, b2, b3, b3, o2, s1, s3, g1, g1, g3, s2, s3, s1, o3], [b3, b3, b2, b3, b2, b1, b3, s3, s3, s1, o3, o3, o3, o3, s3, s2, b2, b3, b1, b3, b2, b2, b1, b2, b2, b3, b1, b3, o2, o1, o2, o1, o3, o2, b3, b1, b1, b2, b3, b2, b3, b3, b1, o2, s3, s3, g3, r2, r3, g1, g1, s1, s2], [b2, b2, b3, b1, b1, b3, b1, b2, b1, b2, b1, b1, b2, b2, b1, b1, b2, b2, b2, b2, b2, b3, b3, b1, b1, b1, b3, b3, b3, b1, b2, b2, b3, b2, b1, b2, b1, b2, b1, b3, b3, b1, b2, o1, s3, s2, g2, r1, r1, r3, g2, g1, s2], [b3, b3, b3, b1, b3, b3, b2, b3, b2, b3, b2, b2, b1, b3, b3, b3, b2, b2, b1, b1, b3, b3, b2, b2, b3, b2, b3, b1, b2, b3, b3, b3, b2, b2, b3, b1, b2, b2, b1, b1, b2, b1, b2, o2, s3, s1, s2, g3, r1, r3, r4, g2, g2], [b1, b3, b1, b3, b1, b3, b2, b1, b2, b1, b2, b2, b3, b1, b3, b2, b2, b2, b3, b2, b2, b2, b3, b1, b3, b3, b1, b3, b3, b2, b2, b3, b2, b1, b1, b2, b1, b3, b2, b3, b3, b2, b1, b3, o3, s3, s3, g2, g2, r4, r3, r1, g2], [b1, b2, b1, b1, b1, b3, b3, b3, b3, b3, b2, b2, b3, b3, b2, b3, b1, b2, b3, b2, b3, b3, b3, b2, b3, b2, b1, b2, b1, b1, b3, b3, b2, b2, b1, b2, b3, b2, b1, b2, b1, b2, b1, b1, o1, s1, s2, g2, g2, r3, r2, g3, s2], [b3, b1, b1, b1, b3, b3, b1, b1, b3, b3, b2, b1, b1, b3, b2, b3, b3, b2, b3, b1, b1, b3, b1, b1, b3, b1, b2, b3, b1, b3, b2, b2, b3, b2, b2, b3, b1, b3, b2, b2, b2, b2, b3, b2, o2, s2, s2, s1, g1, g3, g1, s2, s3], [b2, b1, b3, b2, b1, b2, b1, b3, b1, b1, b3, b1, b2, b3, b2, b2, b2, b3, b2, b2, b1, b2, b2, b3, b2, b3, b3, b2, b2, b1, b1, b2, b3, b2, b1, b2, b3, b2, b2, b1, b1, b3, b1, b1, b2, o1, s3, s1, g2, g2, s1, s2, b3] ], "elevation": [ ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e4, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, "", "", "", e3, e3, e3, "", e3, e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", e3, e3, e3, e3, e3, e3, e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e4, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e3, e3, e3, e3, "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e4, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", e3, e3, e3, e3, e3, "", e3, e3, e3, e3, "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e3, e2, e2, e2, "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e2, "", "", "", "", e1, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e1, e1, "", "", e2, e2, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", e0, e0, e0, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", e0, e0, e0, e1, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, "", e0, e0, e0, e1, e1, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e0, e1, e1, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", e0, e0, e0, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e0, e0, e0, e0, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", e0, e0, e0, e1, e1, "", "", "", "", "", e1, "", "", e1, e1, e1, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e1, e1, "", "", e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, "", "", "", "", "", "", "", e1, "", "", e1, e1, e1, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e1, "", "", "", e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e1, "", "", "", "", e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, "", "", e1, e1, "", "", e1, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e1, e1, "", "", "", "", e1, e1, e0, e0, e0, e0, "", "", e0, e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e0, e0, e0, e1, "", "", "", "", e1, e1, e1, e0, e0, e0, e0, "", "", "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e0, e0, e1, e1, "", "", e1, e1, e1, e1, e1, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e0, e0, e0, e0, "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e0, e0, e1, e1, "", "", e0, e0, e0, e1, e1, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, e1, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e0, e0, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "abyss": { "hidden": True, "score": 0.005, "players": {}, "background": "black", "map": [ [bl, bl, bl, bl, bl, bl, pa, pa, pa, pa, bl, bl, bl, pa, pa, pa, pa, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, pa, a1, a1, a2, a1, pa, bl, pa, a1, a3, a3, a2, pa, bl, bl, bl, bl, bl], [bl, bl, bl, bl, pa, a3, a2, a2, a3, a2, a1, pa, a1, a2, a2, a2, a1, a2, pa, bl, bl, bl, bl], [bl, bl, bl, pa, a1, a3, a3, a3, a2, a3, a2, a3, a2, a1, a3, a3, a3, a2, a3, pa, bl, bl, bl], [bl, bl, pa, a2, a1, a2, a2, pa, pa, a1, a3, a3, a1, a1, pa, pa, a1, a2, a1, a1, pa, bl, bl], [bl, pa, a3, a1, a2, a1, pa, b1, b1, pa, a2, a1, a2, pa, l2, l1, pa, a2, a3, a1, a1, pa, bl], [pa, a1, a3, a2, a3, a2, pa, b3, b1, pa, a2, a1, a1, pa, l1, l3, pa, a3, a3, a3, a2, a3, pa], [pa, a1, a2, a3, a2, a2, pa, b1, b2, pa, a3, a3, a2, pa, l3, l2, pa, a2, a1, a2, a1, a1, pa], [bl, pa, a2, a3, a1, a1, pa, b2, b3, pa, a2, a2, a2, pa, l1, l3, pa, a2, a2, a3, a3, pa, bl], [bl, bl, pa, a3, a3, a2, a1, pa, pa, a1, a3, a2, a1, a2, pa, pa, a2, a2, a2, a2, pa, bl, bl], [bl, bl, bl, pa, a2, a1, a2, a2, a1, a1, a1, a3, a1, a3, a1, a3, a3, a3, a1, pa, bl, bl, bl], [bl, bl, bl, pa, a3, a2, a2, a2, a2, a3, a1, a2, a3, a2, a1, a2, a2, a2, a3, pa, bl, bl, bl], [bl, bl, bl, bl, pa, a3, a1, a1, a2, a3, a3, a3, a2, a2, a2, a3, a1, a2, pa, bl, bl, bl, bl], [bl, bl, bl, bl, bl, pa, pa, pa, pa, a3, a3, a3, a1, a2, pa, pa, pa, pa, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a2, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a3, a3, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a3, a1, a2, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a1, a2, a2, pa, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a3, a1, a1, a2, a3, a2, a1, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a3, a2, a1, a2, a3, a2, a2, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a1, a1, a1, pp, a2, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a3, a3, a1, a1, a3, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a1, a3, a1, pa, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, pa, pa, pa, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl] ], "elevation": [ ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", e3, e3, e3, e3, "", "", "", e3, e3, e3, e3, "", "", "", "", "", ""], ["", "", "", "", "", e3, e3, e3, e3, e3, e3, "", e3, e3, e3, e3, e3, e3, "", "", "", "", ""], ["", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", ""], ["", "", "", e3, e3, e3, e3, "", "", e3, e3, e3, e3, e3, "", "", e3, e3, e3, e3, "", "", ""], ["", "", e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, "", ""], ["", e3, e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, e3, ""], ["", e3, e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, e3, ""], ["", "", e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, "", ""], ["", "", "", e3, e3, e3, e3, "", "", e3, e3, e3, e3, e3, "", "", e3, e3, e3, e3, "", "", ""], ["", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", ""], ["", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", ""], ["", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "treasure": { "hidden": True, "score": 0.005, "players": {}, "background": b3, "map": [ [r1, r2, r2, r3, r2, r2, r2, r3, r1, r1, r3, r2, r1, r2, r2, r2, r3, r3, r3, r3, r1, r1, r2, r2, r1, r2, r3, r1, r3, r2, r1, r2, r2], [i1, i2, i1, r1, r2, i2, i2, i1, r2, r3, i2, i2, i1, r1, r2, i2, i2, i1, r3, r1, i2, i2, i1, r2, r1, i2, i2, i2, r1, r1, i2, i1, i1], [i2, t3, i2, r1, r1, i1, t5, i2, r3, r1, i2, t4, i1, r3, r2, i2, t3, i1, r1, r2, i2, t2, i1, r2, r1, i1, t5, i2, r2, r2, i2, t3, i1], [i1, i1, i1, r3, r2, i2, i2, i1, r3, r2, i1, i1, i1, r1, r2, i1, i2, i2, r1, r1, i2, i1, i1, r3, r2, i1, i1, i1, r2, r2, i2, i1, i1], [r1, r1, r1, r3, r3, r1, r2, r1, r2, r1, r3, r2, r3, r2, r2, r2, r1, r2, r1, r1, r1, r1, r3, r2, r2, r2, r3, r1, r1, r3, r2, r3, r2], [r2, r2, r3, r2, r3, r2, r1, r2, r3, r1, r1, r1, r3, r3, r2, r1, r1, r3, r1, r3, r1, r3, r3, r1, r3, r3, r3, r2, r2, r3, r2, r1, r3], [i2, i1, i2, r3, r2, i2, i1, i2, r1, r1, i2, i2, i1, r2, r1, i1, i2, i2, r2, r3, i2, i2, i2, r2, r1, i1, i1, i1, r2, r2, i1, i1, i1], [i1, t1, i1, r1, r3, i1, t2, i2, r2, r1, i2, t3, i1, r2, r2, i2, t2, i1, r2, r1, i1, t4, i1, r3, r3, i1, t3, i1, r2, r2, i1, t1, i2], [i2, i1, i2, r3, r3, i2, i2, i2, r1, r1, i2, i1, i1, r2, r3, i1, i1, i2, r1, r1, i2, i1, i2, r1, r2, i1, i1, i1, r2, r1, i2, i1, i2], [r1, r2, r1, r2, r3, r3, r3, r2, r2, r2, r1, r1, r2, r1, r3, r1, r1, r3, r1, r1, r3, r1, r1, r1, r1, r1, r3, r2, r2, r3, r3, r1, r2], [r1, r2, r2, r1, r2, r1, r1, r1, r1, r2, r2, r2, r3, r3, r3, s3, s2, s2, r1, r1, r3, r3, r3, r1, r1, r1, r3, r3, r1, r2, r3, r3, r3], [i1, i2, i1, r2, r2, i1, i2, i2, r3, r3, i2, i1, i2, r1, s1, s1, s1, s1, s2, r1, i1, i1, i1, r3, r3, i2, i2, i2, r2, r1, i1, i1, i1], [i2, t5, i1, r3, r1, i1, t1, i1, r3, r1, i1, t2, i2, r2, s2, s3, pp, s1, s1, r2, i2, t3, i1, r3, r1, i1, t2, i2, r1, r1, i1, t4, i2], [i1, i2, i1, r1, r3, i1, i2, i2, r2, r2, i1, i2, i1, r1, s2, s2, s3, s1, s1, r3, i1, i1, i2, r2, r1, i1, i1, i1, r2, r3, i2, i1, i2], [r2, r2, r3, r1, r3, r3, r2, r3, r2, r1, r3, r1, r3, r1, s1, s3, s1, s2, s1, r1, r3, r2, r1, r2, r1, r1, r2, r3, r3, r1, r1, r1, r3], [r3, r2, r1, r3, r2, r3, r3, r1, r1, r3, r2, r3, r3, r1, s1, s1, s2, s1, s1, r2, r1, r1, r1, r3, r2, r1, r3, r2, r2, r3, r3, r2, r1], [i2, i1, i2, r3, r1, i1, i1, i2, r3, r2, i1, i2, i1, r2, s3, s2, s3, s1, s3, r3, i1, i1, i1, r1, r3, i2, i1, i1, r3, r2, i1, i2, i2], [i2, t2, i1, r2, r3, i1, t3, i2, r2, r2, i2, t4, i1, r3, s2, s3, s1, s1, s3, r3, i2, t2, i1, r2, r3, i1, t1, i2, r1, r1, i1, t2, i2], [i2, i1, i2, r2, r2, i1, i2, i1, r1, r3, i1, i2, i1, r1, s1, s2, s3, s3, s2, r2, i1, i2, i2, r2, r2, i2, i1, i1, r3, r3, i1, i2, i2], [r3, r2, r2, r2, r2, r3, r1, r1, r2, r2, r1, r1, r3, r3, s1, s2, s2, s2, s2, r2, r1, r3, r2, r2, r2, r1, r3, r3, r1, r2, r2, r3, r2], [r3, r2, r3, r2, r2, r2, r3, r1, r2, r2, r3, r1, r3, r3, s1, s2, s2, s3, s3, r3, r3, r2, r2, r3, r3, r1, r2, r1, r3, r3, r1, r2, r3], [i1, i2, i2, r3, r2, i1, i2, i2, r2, r3, i1, i2, i1, r2, s2, s3, s3, s1, s2, r1, i1, i2, i1, r3, r2, i1, i2, i2, r1, r1, i2, i1, i2], [i1, t4, i1, r2, r1, i1, t5, i2, r2, r3, i1, t3, i1, r1, s2, s1, s1, s2, s3, r2, i2, t1, i2, r3, r1, i2, t4, i2, r2, r1, i1, t3, i2], [i1, i1, i2, r2, r3, i2, i2, i1, r3, r1, i2, i2, i2, r2, s3, s1, s3, s1, s1, r2, i2, i2, i1, r2, r1, i1, i2, i1, r3, r3, i2, i1, i2], [r3, r3, r1, r1, r1, r2, r2, r1, r1, r3, r3, r2, r1, r1, s3, s3, s3, s2, s1, r3, r1, r1, r3, r1, r3, r1, r2, r2, r3, r2, r1, r2, r2], [r3, r2, r2, r1, r3, r2, r1, r2, r1, r3, s3, s2, s2, s1, s3, s3, s2, s3, s3, s1, s3, s3, s1, r2, r3, r1, r2, r3, r2, r2, r1, r3, r3], [i1, i1, i2, r2, r1, i1, i1, i1, r1, s1, s3, s1, s3, s1, s3, s3, s1, s3, s1, s2, s1, s1, s1, s2, r1, i1, i2, i1, r1, r3, i1, i1, i1], [i2, t2, i1, r2, r1, i1, t3, i2, r3, s1, s2, s3, s2, s3, s3, s3, s1, s2, s3, s2, s2, s3, s2, s2, r1, i1, t5, i1, r3, r1, i2, t2, i2], [i1, i1, i1, r1, r1, i2, i2, i1, r3, s2, s1, s2, s3, s1, s2, s1, s1, s2, s2, s3, s3, s2, s2, s1, r2, i2, i1, i2, r3, r2, i2, i2, i1], [r2, r1, r2, r3, r2, r2, r1, r2, r3, s1, s2, s2, s1, s1, s2, s1, tb, s2, s1, s2, s2, s1, s2, s3, r1, r2, r3, r1, r1, r1, r2, r2, r1], [r2, r2, r1, r3, r2, r1, r1, r3, r1, s2, s3, s1, s1, s2, s2, s3, s3, s3, s2, s2, s3, s2, s1, s3, r2, r2, r1, r1, r2, r3, r2, r2, r1], [i1, i1, i2, r2, r3, i2, i2, i2, r1, s2, s2, s2, s2, s3, s1, s2, s1, s1, s3, s3, s2, s2, s2, s1, r3, i1, i2, i2, r2, r3, i1, i2, i1], [i2, t3, i1, r2, r1, i2, t4, i2, r2, s2, s3, s1, s1, s2, s3, s1, s1, s1, s3, s3, s2, s2, s3, s2, r1, i2, t3, i1, r1, r2, i1, t1, i2], [i1, i2, i2, r1, r1, i1, i2, i1, r3, s2, s1, s1, s3, s1, s3, s1, s3, s3, s1, s1, s1, s3, s1, s3, r2, i1, i2, i2, r2, r2, i2, i2, i1], [r2, r1, r2, r2, r1, r1, r2, r3, r3, r1, s1, s1, s3, s1, s3, s2, s2, s3, s1, s3, s2, s2, s3, r1, r2, r3, r3, r3, r2, r3, r1, r2, r2], [r2, r1, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r1, s2, s3, s2, s1, s1, r1, r2, r3, r3, r2, r2, r2, r2, r2, r3, r3, r1, r3, r3], [i1, i1, i2, r2, r2, i1, i1, i2, r1, r2, i2, i2, i2, r2, s2, s1, s3, s2, s3, r3, i1, i1, i2, r2, r1, i2, i1, i2, r2, r3, i1, i1, i2], [i1, t4, i1, r1, r3, i2, t5, i1, r3, r1, i1, t1, i1, r1, s2, s3, s2, s2, s2, r2, i1, t5, i2, r1, r2, i2, t2, i2, r3, r2, i1, t5, i1], [i2, i2, i1, r1, r1, i1, i2, i2, r1, r3, i2, i1, i1, r1, s3, s2, s1, s1, s1, r2, i2, i2, i1, r3, r1, i1, i1, i2, r1, r3, i1, i1, i2], [r2, r1, r3, r2, r2, r2, r1, r3, r3, r1, r1, r3, r1, r3, s1, s1, s2, s2, s3, r3, r1, r3, r2, r2, r1, r2, r2, r1, r1, r1, r1, r1, r2], [r3, r3, r2, r1, r3, r2, r2, r1, r3, r3, r1, r2, r2, r3, s3, s1, s1, s1, s2, r3, r2, r2, r3, r3, r3, r2, r2, r2, r1, r3, r2, r2, r1], [i1, i2, i1, r2, r1, i2, i1, i1, r1, r3, i2, i1, i1, r3, r1, s3, s1, s2, r1, r1, i2, i2, i2, r1, r1, i1, i1, i2, r2, r2, i1, i1, i2], [i1, t1, i2, r2, r1, i1, t3, i1, r3, r3, i1, t2, i1, r1, r1, r2, r1, r2, r1, r2, i1, t4, i1, r3, r2, i2, t1, i2, r3, r3, i2, t4, i1], [i2, i2, i2, r2, r2, i2, i2, i2, r3, r1, i2, i2, i1, r3, r1, r1, r3, r3, r1, r3, i2, i2, i1, r3, r2, i1, i1, i2, r3, r3, i1, i1, i1], [r2, r2, r3, r2, r2, r2, r2, r3, r2, r1, r1, r2, r1, r1, r3, r1, r2, r2, r2, r3, r3, r1, r1, r2, r1, r1, r3, r1, r3, r2, r1, r1, r1], [r2, r3, r3, r2, r3, r2, r1, r1, r2, r3, r3, r1, r3, r2, r3, r1, r3, r1, r2, r2, r1, r3, r3, r3, r2, r2, r1, r2, r3, r2, r3, r3, r2], [i1, i2, i2, r2, r2, i2, i1, i2, r1, r1, i2, i2, i2, r3, r1, i1, i2, i2, r3, r1, i1, i1, i2, r2, r1, i2, i1, i2, r2, r3, i2, i2, i1], [i1, t4, i1, r2, r1, i2, t1, i1, r3, r3, i1, t5, i2, r2, r3, i2, t3, i2, r1, r1, i1, t2, i1, r2, r2, i2, t3, i1, r2, r3, i2, t2, i2], [i1, i1, i1, r3, r3, i1, i2, i2, r1, r2, i1, i1, i1, r1, r2, i1, i2, i2, r3, r2, i2, i1, i2, r3, r2, i2, i1, i2, r2, r3, i2, i1, i1], [r3, r1, r3, r1, r2, r3, r1, r3, r1, r2, r3, r1, r1, r1, r2, r3, r2, r1, r1, r2, r2, r1, r3, r1, r3, r3, r3, r2, r2, r3, r2, r1, r2] ], "elevation": [ ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "mushroom": { "hidden": True, "score": 0.005, "players": {}, "background": r3, "map": [ [r2, r3, r3, r3, r1, r4, r2, r4, r3, r4, r4, r4, r4, r4, r4, r1, r3, r3, r3, r1, r3, r3, r3, r1, r3, r3, r3, r1, r4, r3, r3, r1, r1], [r2, r1, r3, r3, r4, r1, r3, r1, r1, r1, r4, r1, r1, r4, r3, r3, r1, r1, r4, r4, r1, r2, r2, r2, r1, r1, r2, r1, r4, r3, r4, r2, r4], [r1, r3, r2, r3, r4, r2, r2, r3, r2, r1, r2, r2, r2, r1, r2, r1, r2, r2, r1, r3, r3, r3, r2, r1, r3, r4, r2, r1, r4, r3, r4, r3, r2], [r4, r3, r4, r4, r4, r3, r4, r1, r3, r3, r3, r1, r2, r2, r1, r1, r1, r2, r3, r2, r1, r1, r3, r4, r3, r4, r1, r4, r4, r3, r2, r1, r3], [r4, r2, r3, r2, r1, r3, r1, r2, r4, r2, r4, r2, r2, r3, r2, r1, r4, r1, r4, r1, r3, r1, r4, r4, r2, r4, r3, r2, r2, r1, r2, r4, r2], [r4, r2, r3, r4, r1, r3, r3, b3, b3, b2, b1, r1, r2, r2, r3, r3, r2, r1, r3, r3, r2, r1, r1, r3, r2, r2, r2, r3, r1, r1, r3, r1, r4], [r1, r2, r3, r2, r2, r3, b2, b1, b3, b2, b3, b1, r4, r1, r4, r4, r3, r1, r4, r2, r4, r4, r1, r4, r4, r3, r3, r3, r3, r3, r4, r3, r3], [r1, r2, r3, r3, r1, b3, b3, b1, b1, b2, b2, b1, p1, p1, p3, p1, p3, p3, p1, p1, p3, r1, r2, r2, r1, r1, r4, r1, r4, r4, r2, r4, r1], [r4, r1, r3, r1, r4, b3, b1, b2, b2, b1, b3, b1, p2, p2, p2, p3, p1, p3, p2, p2, p2, p1, p1, r4, r1, r3, r4, r2, r2, r2, r2, r2, r4], [r4, r4, r3, r1, r2, b3, b2, b2, b2, b1, b1, p3, p1, p2, p3, p2, p2, p1, p3, p2, p2, p3, p2, p2, p1, r1, r1, r4, r1, r4, r1, r3, r3], [r3, r3, r4, r3, r3, r3, b1, b3, b1, p1, p1, p2, p1, p1, p2, p1, p1, p1, r1, r1, p1, p1, p3, p2, p3, pp, r1, r1, r1, r4, r3, r3, r3], [r4, r3, r3, r1, r4, r2, r4, p1, p3, p2, p3, p2, p2, p3, p2, p1, p3, p2, r2, r2, r1, p3, p3, p2, p3, p2, r3, r1, r1, r1, r1, r3, r1], [r1, r4, r1, r2, r2, r3, r4, p2, p1, p2, p2, p3, p1, p2, p2, p3, p3, p1, r4, r4, r2, r4, p2, p1, p2, p2, r4, r4, r3, r1, r2, r3, r4], [r3, r1, r4, r2, r2, r4, r4, p3, p3, p3, p2, p3, p1, p2, p1, p2, p1, p3, p3, p2, r4, r1, p2, p2, p2, r3, r4, r4, r3, r1, r4, r4, r2], [r3, r3, r4, r4, r2, r1, r3, p3, p1, p3, p2, p3, p3, p1, p2, p1, p1, p2, p1, p2, p3, p2, p2, p3, p3, r3, r2, r1, r2, r3, r1, r1, r4], [r3, r4, r2, r1, r3, r1, r1, r1, p3, p2, p2, p3, p1, p3, p3, p2, p3, p1, p1, p2, p3, p1, p2, p2, p3, r2, r1, r1, r2, r2, r3, r4, r2], [r3, r4, r2, r2, r2, r3, r1, r1, p1, p2, p2, r3, p2, p3, p2, p3, p2, p3, p3, p3, p2, p2, p2, p3, r2, r4, r3, r1, r4, r4, r4, r2, r2], [r1, r2, r3, r4, r3, r1, r1, r2, p1, p2, r2, r2, r1, p1, p3, p2, p3, p1, p2, p1, p3, p1, p1, p3, r3, r4, r2, r3, r4, r2, r2, r2, r1], [r2, r4, r2, r2, r2, r3, r1, r1, p3, p3, r2, r3, r2, p1, p3, p2, p2, p1, p3, p1, p2, p2, p3, p2, r3, r2, r1, r4, r1, r1, r1, r3, r2], [r4, r1, r4, r1, r2, r1, r4, p3, p2, p3, r3, r1, p3, p1, p2, p1, p2, p2, p3, p2, p3, p1, p3, p3, p3, r1, r3, r1, r3, r2, r4, r3, r4], [r4, r2, r3, r3, r3, r3, r4, p1, p2, p2, p3, p3, p1, p1, p1, p3, p1, p1, p1, p1, p3, p1, p3, p1, p2, p1, r4, r1, r2, r4, r3, r3, r1], [r2, r2, r4, r2, r1, r4, r3, r3, p3, p2, p1, p2, p2, p3, p2, p1, p1, p3, p2, p3, p3, p2, p2, p1, p1, p2, r4, r3, r3, r4, r2, r1, r2], [r4, r2, r2, r3, r1, r3, r4, r4, p2, p3, p2, p1, p2, p3, p1, p2, p3, p2, p3, p3, p3, p2, p1, p3, p2, p1, r1, r3, r3, r1, r4, r4, r4], [r1, r2, r4, r3, r3, r3, r3, r3, r3, p3, p3, p3, p3, p3, b1, b3, b1, b3, p2, p1, p3, p2, p1, p2, p3, r1, r4, r4, r4, r1, r4, r1, r4], [r1, r3, r1, r1, r4, r1, r3, r3, r1, r3, r3, p3, p2, b1, b3, b3, b2, b1, b2, b2, p2, p2, p1, r1, r4, r2, r1, r3, r1, r3, r4, r3, r1], [r1, r4, r2, r2, r2, r3, r1, r3, r3, r2, r2, r3, r1, b2, b1, b3, b3, b3, b1, b1, b3, r2, r3, r1, r3, r4, r4, r3, r4, r3, r1, r2, r3], [r4, r1, r1, r3, r4, r1, r4, r4, r3, r1, r1, r4, r3, r4, b1, b3, b2, b1, b3, b2, b1, r1, r2, r1, r3, r2, r2, r4, r4, r3, r4, r4, r4], [r1, r3, r4, r1, r3, r2, r4, r3, r3, r4, r4, r3, r4, b3, b3, b3, b1, b2, b2, r2, r3, r3, r4, r2, r1, r2, r2, r3, r4, r3, r3, r3, r3], [r4, r4, r3, r1, r2, r3, r3, r1, r3, r3, r2, r2, r2, b1, b1, b3, b3, b3, r1, r1, r1, r2, r2, r3, r4, r1, r4, r4, r3, r2, r1, r3, r3], [r1, r2, r4, r3, r1, r1, r2, r4, r2, r3, r1, r1, r4, r2, b3, b2, b1, r4, r3, r1, r2, r3, r1, r4, r1, r4, r1, r2, r4, r1, r2, r1, r4], [r1, r2, r1, r4, r4, r3, r1, r4, r3, r1, r1, r3, r3, r2, r4, r4, r4, r4, r2, r1, r1, r2, r3, r1, r2, r2, r4, r4, r3, r2, r2, r2, r3], [r3, r1, r1, r1, r1, r4, r2, r3, r1, r4, r3, r2, r4, r1, r2, r2, r4, r3, r3, r3, r4, r4, r1, r1, r4, r1, r3, r4, r1, r3, r4, r2, r3] ], "elevation": [ ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] ] }, "cursed": { "hidden": True, "score": 0.005, "players": {}, "background": sk, "map": [ [p3, v3, l3, l1, v4, l1, b3, v3, g1, sk, v3, r1, b1, l1, b1, g1, l2, sk, v2, l2, r4, b1, v1, v2, p2, v4, l3, r1, g3, l2, p1, r1, v2, r3, r2, l1, g4, w3, l3, l1, r3], [sk, w2, b2, g3, sk, v4, r2, v2, g4, b3, l2, r4, v2, g4, b3, p1, v4, l2, w3, r1, v2, p2, w1, w2, l3, r1, w2, v3, l3, w1, sk, sk, v3, sk, sk, p1, g4, sk, l2, w1, g4], [r4, p3, r4, b2, r4, v3, l2, g3, p1, l2, w3, r4, p3, v1, v1, p1, w3, w1, g3, r4, g2, l1, g2, p3, w3, l2, w1, v2, w1, r3, l1, r1, r3, l2, p1, b3, r3, r2, sk, sk, r4], [r4, l2, p1, b3, b3, b1, p1, v1, l1, g4, sk, l3, p1, b1, w3, g3, g3, l1, g1, w1, r3, r3, l2, r1, p1, r3, sk, l2, sk, v2, p2, p1, v2, b1, l3, b2, l2, v4, r3, r4, b3], [g4, v1, b1, sk, b3, r1, w3, p3, g4, sk, b2, r2, l1, v1, r1, b2, r1, sk, w1, l1, p1, r2, w1, p2, w2, g2, r3, l2, p2, r3, l1, r3, p1, l3, r3, g2, sk, l2, v4, v1, l3], [r3, r1, v1, l2, r3, b3, v3, w1, sk, g1, g3, w2, b3, l3, w1, p3, w3, r1, g3, l3, g3, w3, v2, g4, p1, g3, sk, g4, l3, b2, v2, r3, g4, g2, r1, w3, p1, r4, p2, w3, p3], [g1, v1, l2, b3, b3, w1, v2, b3, v4, l3, b1, l1, p1, r4, p2, l2, w1, p2, p1, l1, v4, sk, g2, v4, r2, v2, g2, v4, l3, b3, r3, p1, w2, r1, r1, g3, p3, r2, g4, r2, p3], [r2, l1, b2, r4, g3, w2, r4, l1, w2, w3, w2, b3, b2, p1, p3, v1, sk, l2, v3, sk, r2, p3, g1, b3, v1, b3, w3, v3, v1, l2, p3, v3, w1, b1, w2, w1, sk, b3, r4, r4, g1], [r1, b1, r4, l3, w1, v2, b2, v3, b2, g3, l2, p3, w1, g2, l1, w2, r1, v4, l3, g4, b1, p2, g4, g1, r3, g1, g3, l2, g3, l2, v4, v1, l1, r1, b1, r1, w2, v4, b3, w3, r2], [v1, l2, r2, v1, b3, w3, w2, v1, w3, l2, w2, v3, r4, b2, g3, g2, p2, w1, r1, p2, l2, v1, v1, g1, v1, r4, sk, p3, w3, l3, b3, sk, r4, g3, sk, w1, p2, p1, v4, w1, b2], [g1, v1, g3, w1, v4, g2, w1, v2, v4, r3, v2, g2, p1, l2, l2, l1, g4, g4, l3, g1, b2, p1, p1, b1, v4, b1, r2, p2, b3, w3, v3, sk, g2, v4, r2, l1, r4, b1, w3, v2, l3], [p1, v1, g2, l1, b2, g3, r1, r4, v3, sk, p1, v4, v1, r4, v2, v4, sk, r1, p1, r4, g1, g2, w1, l2, l1, l2, r2, g3, w1, r2, g3, r2, g3, p1, r1, l2, b2, r4, g1, l2, w1], [v4, b1, p3, w3, g1, g3, l1, g4, r3, p1, g4, p1, p2, sk, r3, l3, w1, r3, r4, r2, p1, v2, r1, v3, b3, v4, p2, g3, g3, r2, r3, l2, b2, b3, r1, l3, v3, g4, w2, b1, g4], [b2, l3, w2, g2, g1, v2, l1, r2, l2, sk, r2, p3, g1, w3, p2, g4, b2, w2, p1, p1, g2, l2, l2, r4, r1, r3, g2, r1, b1, r2, v4, w3, b3, b2, g2, g2, w3, v2, l2, g1, l2], [b2, p3, b3, r1, p1, v2, l3, p3, l2, r2, b2, v4, r3, w2, g2, v1, b2, v4, sk, g2, sk, p3, w2, l1, r2, b3, p3, w1, l3, p3, g3, r1, p3, g1, w2, r2, w2, g4, p3, l2, v3], [b2, l3, g3, b3, p3, w1, l2, g2, g3, b2, v2, b2, v1, g3, v3, v3, w3, v1, g2, v4, r2, r3, g4, r1, v3, l2, v4, g3, l1, l2, p1, r1, p3, p1, p1, w1, sk, g1, sk, l1, b2], [g1, g1, w2, l3, g2, b1, g3, l2, w3, b1, v1, r1, p3, r2, b3, r2, b2, v1, r2, w2, l2, v4, v3, r2, l2, g1, l1, l2, l2, v3, p1, p2, p1, v2, p1, l3, w1, b2, v1, r1, w1], [b2, sk, v2, p1, g2, w3, g3, p1, v4, l2, l2, p1, g1, b2, r1, r4, l1, w3, g2, w3, g3, r3, l1, l1, p3, r3, r4, g3, l3, g4, b2, l2, p1, v4, v3, l2, r3, sk, w3, l2, r2], [r3, l1, l2, g3, r2, l3, b2, l3, v1, l2, l1, p1, w3, v4, w1, b2, w3, p3, sk, r3, r3, l2, g2, g1, l1, b3, g2, p2, w3, b3, l2, l3, r1, w2, l1, l2, v4, l3, r3, w2, l2], [r2, w2, b2, r4, w3, l1, v3, p1, l2, v3, r4, l3, g1, p3, w2, w1, g4, p1, w3, sk, l2, b1, w1, v4, p2, v1, b2, r3, p1, sk, l2, g3, g2, g2, v2, w1, g2, v3, g2, g4, r2], [w2, w3, b2, v1, w1, r3, g4, b2, b3, v3, l2, v4, g4, b3, w2, v4, r1, r2, r3, v1, r1, sk, g4, r3, sk, b2, l3, r1, v1, r1, b2, g3, p1, g4, l2, r2, r4, g2, g4, p1, r4], [w2, l2, r3, g1, l3, v4, g1, v4, g2, l2, g3, l2, g4, g2, v1, l3, g2, r1, r2, b3, w2, v3, p3, p2, w2, g2, w3, b2, w1, g4, g3, l1, b3, v3, g4, r2, sk, b2, g3, l3, w1], [w1, r1, w2, g1, r2, p3, p3, v4, g2, r2, v3, r2, l2, r4, l3, l2, p1, b3, r3, b1, v2, w1, w3, l1, r4, w1, b2, p2, r1, v4, v1, b2, b1, g4, l1, v1, p3, w3, r1, p2, sk], [l2, l2, v3, w3, w2, v2, v4, g4, g1, l1, v3, p3, l1, p2, p1, w3, r3, w3, w2, l3, b3, w2, v2, sk, r4, r1, l2, b1, g3, w2, v2, r2, l2, b2, sk, p3, l3, w3, w2, r2, g1], [p2, l1, r3, sk, r4, b3, r4, v2, b2, b3, b1, v3, r1, r1, r4, w2, r4, w2, l3, l2, r4, v1, r1, w2, l2, g3, v4, g3, w2, g3, b2, w3, g1, w3, v1, w2, v3, r2, r4, b1, w3], [sk, r1, r3, b3, r1, sk, v4, l2, r3, r1, l1, g2, g1, v4, b2, w3, w3, v4, l1, v4, p2, p1, p1, p2, w2, l1, p2, sk, b1, w1, w3, r1, p2, l1, v3, v3, r2, g2, w2, w1, p1], [sk, l3, w3, r4, r1, v4, p3, r1, g3, p3, l2, v1, p2, v2, v2, w1, l2, r1, p2, b1, w2, l2, v1, l3, g4, v4, sk, g3, sk, v2, w3, b1, w1, l2, w2, r4, r1, l2, r1, v4, r3], [g1, w1, p3, b1, g2, w3, r2, b3, r1, w3, v4, v3, l2, l2, v2, v1, r4, v2, l1, r4, b2, sk, w3, l1, l2, l1, w1, b3, g2, l2, v3, p1, r2, l3, g3, p2, w1, l1, w2, v4, v3], [v1, g3, w2, b1, l3, v3, l2, g4, l2, b2, r4, g4, b3, g2, g2, p1, l2, r4, g1, g1, l3, r4, g4, p3, b2, v4, g4, p2, l1, l1, p2, l3, b3, b2, w1, l2, r1, r2, b1, w1, g4], [v1, g3, g1, b3, p3, b1, w3, v2, b2, p1, g1, v2, l2, v2, v3, v4, r1, p1, l1, r1, v4, v4, p1, g3, r2, r1, w2, p1, v4, r2, l2, sk, w3, b2, w1, sk, b3, b3, r1, w2, r4], [p1, p1, b3, sk, l2, v2, g4, l1, p3, l2, w1, p3, r3, l3, b3, l2, b3, r2, w1, p3, r1, l2, r4, b3, g1, b1, l2, b2, l1, sk, v3, v3, b3, g4, r3, v3, b1, l3, l2, v3, p3], [g3, v2, g2, v4, g4, p2, w2, r2, g1, w2, r1, g3, v1, w3, v1, g2, r3, p3, w3, p2, v3, g2, b3, l1, r1, l1, w3, g4, b3, l1, r4, l3, p2, l2, r1, p2, g2, r2, p2, w2, l1], [b3, g3, r4, b1, l1, l2, g4, g1, v1, r2, w1, v1, v4, sk, l3, r2, r3, p2, w2, v3, g4, l2, r1, p1, g4, w3, l2, l1, w1, v1, g3, r4, l3, l2, l3, v4, r3, w3, v3, g4, pp], [b2, v4, b1, r2, g2, v2, p1, r4, g4, l2, l2, r3, v3, l3, v4, w2, b3, l3, b2, w3, p3, l2, v1, r1, b3, g4, l2, g2, r2, b2, l2, p1, p3, v3, w2, p3, l3, r2, b2, l2, v4], [b2, v4, p3, w3, r2, sk, v4, l1, l1, g1, v2, b3, v1, l2, v1, g4, w1, l2, g4, v3, g1, g3, b2, g4, p2, v3, sk, b1, w2, w2, p1, v2, g2, r1, v2, l2, r4, v1, r4, b1, g2], [sk, l1, v3, l3, g3, l2, g3, w2, g2, r3, v1, l3, v3, g1, g1, v4, sk, p2, p3, l1, g1, r4, l3, r3, w3, w2, l1, v3, w1, g3, v3, p1, g4, r4, r2, l3, p3, p1, b2, l2, w3], [v1, b3, g1, p1, w1, l3, l2, l3, g2, v4, v1, p1, r3, v2, r3, v3, r1, v1, r4, g2, w1, v2, p1, l2, v4, v2, b2, l2, v1, g4, v2, r4, r2, l1, p1, w1, v4, l2, w3, l1, v3], [l2, b1, v4, b2, r1, l2, l1, w1, v4, g4, b3, b3, l3, p3, g4, p1, g1, r3, l1, v4, l3, r4, g2, l1, g4, l2, v4, r4, w2, b3, g2, l2, l1, g3, g1, l2, g1, g2, v3, v2, g1], [p3, w3, r4, p1, l2, b3, l2, g1, p1, v2, r4, r2, v2, g2, sk, p2, w1, p3, l3, g4, b1, g2, r3, l3, p1, l2, l2, l3, l3, g3, v4, r2, g1, r3, g2, p2, w3, w3, w3, r2, r3], [l1, w1, r3, v1, r1, v2, b1, b2, g3, r1, b1, g1, l3, g3, l1, b3, r4, l2, g1, r3, b3, g2, v2, b1, v3, l2, w2, l2, l2, p2, l2, w2, l3, r3, r3, p3, r3, v1, l2, v1, p1], ], "elevation": [ ["", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1], [e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, ""], [e1, "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", e1, e1, "", e1, e1, "", e1, "", e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1], [e1, e1, "", e1, e1, e1, "", e1, e1, "", e1, e1, "", e1, e1, "", "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1], ["", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, "", e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, "", "", "", e1, "", e1, e1, e1, e1, "", "", e1, e1, "", e1, "", e1, ""], ["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", e1, e1, "", "", e1, e1, e1, "", e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, "", "", e1, "", e1, ""], [e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, ""], [e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, "", "", "", e1, "", "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, "", e1, e1, e1, "", e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", "", e1, e1, e1], ["", e1, "", e1, e1, "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", e1, "", e1, "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1], ["", e1, "", e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, "", "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", "", e1, e1, e1, e1, "", e1, e1], [e1, e1, "", e1, "", "", e1, "", e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, ""], [e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", e1, "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", e1], [e1, "", e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, "", e1, e1, "", "", e1, "", "", e1, e1, e1, "", "", e1, e1], [e1, e1, "", e1, "", e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, "", e1, "", "", "", e1, e1, "", e1, e1, e1], ["", "", e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", "", e1, "", e1, e1, e1, e1, e1, e1], [e1, e1, e1, "", "", e1, "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", e1, "", e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, e1, "", "", "", e1, e1, "", e1, "", "", e1], [e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", e1], [e1, e1, e1, "", e1, e1, "", e1, "", e1, "", e1, "", "", e1, e1, "", e1, e1, e1, e1, e1, "", "", e1, "", e1, e1, e1, "", "", e1, e1, e1, "", e1, e1, e1, "", e1, e1], [e1, e1, e1, "", e1, "", "", e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, "", e1], [e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, "", e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, ""], ["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, ""], [e1, e1, e1, e1, e1, e1, "", e1, "", "", e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, "", "", e1, e1, e1, e1, e1], [e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, "", "", "", e1, e1, "", "", e1, e1, "", "", e1, e1, "", "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, ""], [e1, "", "", e1, "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], ["", "", e1, e1, e1, e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, ""], ["", e1, "", e1, "", "", e1, e1, "", e1, e1, "", e1, e1, e1, "", e1, "", e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, "", "", e1, "", e1, e1], [e1, "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1], [e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, "", e1, e1, e1, "", "", e1, e1, "", e1, e1, e1, e1, e1], [e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", "", e1, "", "", e1, e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, e1, e1, ""], [e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, e1, e1, "", "", e1, e1, "", "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", "", e1, e1, e1, "", "", e1, e1, e1], [e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, "", "", e1, e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", "", e1, "", "", e1, e1, ""], ["", e1, e1, "", e1, e1, e1, "", "", e1, e1, e1, e1, "", e1, "", e1, "", e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, "", e1, e1, "", e1, "", "", e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, ""], ] } }
useless_facts = ["Most American car horns honk in the key of F.", "The name Wendy was made up for the book 'Peter Pan.'", "Barbie's full name is Barbara Millicent Roberts.", "Every time you lick a stamp, you consume 1/10 of a calorie.", "The average person falls asleep in seven minutes.", "Studies show that if a cat falls off the seventh floor of a building it has about thirty percent less chance of surviving than a cat that falls off the twentieth floor. It supposedly takes about eight floors for the cat to realize what is occurring, relax and correct itself.", "Your stomach has to produce a new layer of mucus every 2 weeks otherwise it will digest itself.", "The citrus soda 7-UP was created in 1929; '7' was selected after the original 7-ounce containers and 'UP' for the direction of the bubbles.", "101 Dalmatians, Peter Pan, Lady and the Tramp, and Mulan are the only Disney cartoons where both parents are present and don't die throughout the movie.", "A pig's orgasm lasts for 30 minutes.", "'Stewardesses' is the longest word that is typed with only the left hand.", "To escape the grip of a crocodile's jaws, push your thumbs into its eyeballs - it will let you go instantly.", "Reindeer like to eat bananas.", "No word in the English language rhymes with month, orange, silver and purple.", "The word 'samba' means 'to rub navels together.'", "Mel Blanc (the voice of Bugs Bunny) was allergic to carrots.", "The electric chair was invented by a dentist.", "The very first bomb dropped by the Allies on Berlin during World War II Killed the only elephant in the Berlin Zoo.", "More people are killed annually by donkeys than airplane crashes.", "A 'jiffy' is a unit of time for 1/100th of a second.", "A whale's penis is called a dork.", "Because of the rotation of the earth, an object can be thrown farther if it is thrown west.", "The average person spends 6 months of their life sitting at red lights.", "In 1912 a law passed in Nebraska where drivers in the country at night were required to stop every 150 yards, send up a skyrocket, wait eight minutes for the road to clear before proceeding cautiously, all the while blowing their horn and shooting off flares.", "More Monopoly money is printed in a year, than real money throughout the world.", "Caesar salad has nothing to do with any of the Caesars. It was first concocted in a bar in Tijuana, Mexico, in the 1920's.", "One quarter of the bones in your body are in your feet.", "Crocodiles and alligators are surprisingly fast on land. Although they are rapid, they are not agile. So, if being chased by one, run in a zigzag line to lose him or her.", "Seattle’s Fremont Bridge rises up and down more than any drawbridge in the world.", "Right-handed people live, on average; nine years longer than left handed people.", "Ten percent of the Russian government's income comes from the sale of vodka.", "In the United States, a pound of potato chips costs two hundred times more than a pound of potatoes.", "A giraffe can go without water longer than a camel.", "A person cannot taste food unless it is mixed with saliva. For example, if a strong-tasting substance like salt is placed on a dry tongue, the taste buds will not be able to taste it. As soon as a drop of saliva is added and the salt is dissolved, however, a definite taste sensation results. This is true for all foods.", "Nearly 80% of all animals on earth have six legs.", "In the marriage ceremony of the ancient Inca Indians of Peru, the couple was considered officially wed when they took off their sandals and handed them to each other.", "Ninety percent of all species that have become extinct have been birds.", "There is approximately one chicken for every human being in the world.", "Most collect calls are made on father's day.", "The first automobile race ever seen in the United States was held in Chicago in 1895. The track ran from Chicago to Evanston, Illinois. The winner was J. Frank Duryea, whose average speed was 71/2 miles per hour.", "Each of us generates about 3.5 pounds of rubbish a day, most of it paper.", "Women manage the money and pay the bills in 75% of all Americans households.", "A rainbow can be seen only in the morning or late afternoon. It can occur only when the sun is 40 degrees or less above the horizon.", "It has NEVER rained in Calama, a town in the Atacama Desert of Chile.", "It costs more to buy a new car today in the United States than it cost Christopher Columbus to equip and undertake three voyages to and from the New World.", "The plastic things on the end of shoelaces are called aglets.", "An eighteenth-century German named Matthew Birchinger, known as 'the little man of Nuremberg,' played four musical instruments including the bagpipes, was an expert calligrapher, and was the most famous stage magician of his day. He performed tricks with the cup and balls that have never been explained. Yet Birchinger had no hands, legs, or thighs, and was less than 29 inches tall.", "Daylight Saving Time is not observed in most of the state of Arizona and parts of Indiana.", "Ants closely resemble human manners: When they wake, they stretch & appear to yawn in a human manner before taking up the tasks of the day.", "Bees have 5 eyes. There are 3 small eyes on the top of a bee's head and 2 larger ones in front.", "Count the number of cricket chirps in a 15-second period, add 37 to the total, and your result will be very close to the actual outdoor Fahrenheit temperature.", "One-fourth of the world's population lives on less than $200 a year. Ninety million people survive on less than $75 a year.", "Butterflies taste with their hind feet.", "Only female mosquito’s' bite and most are attracted to the color blue twice as much as to any other color.", "If one places a tiny amount of liquor on a scorpion, it will instantly go mad and sting itself to death.", "It is illegal to hunt camels in the state of Arizona.", "In eighteenth-century English gambling dens, there was an employee whose only job was to swallow the dice if there was a police raid.", "There are no clocks in Las Vegas gambling casinos.", "The human tongue tastes bitter things with the taste buds toward the back. Salty and pungent flavors are tasted in the middle of the tongue, sweet flavors at the tip!", "The first product to have a bar code was Wrigley’s gum.", "When you sneeze, air and particles travel through the nostrils at speeds over100 mph. During this time, all bodily functions stop, including your heart, contributing to the impossibility of keeping one's eyes open during a sneeze.", "Annual growth of WWW traffic is 314,000%", "%60 of all people using the Internet, use it for pornography.", "In 1778, fashionable women of Paris never went out in blustery weather without a lightning rod attached to their hats.", "Sex burns 360 calories per hour.", "A raisin dropped in a glass of fresh champagne will bounce up and down continually from the bottom of the glass to the top.", "Celery has negative calories! It takes more calories to eat a piece of celery than the celery has in it.", "The average lead pencil will draw a line 35 miles long or write approximately 50,000 English words. More than 2 billion pencils are manufactured each year in the United States. If these were laid end to end they would circle the world nine times.", "The pop you hear when you crack your knuckles is actually a bubble of gas burning.", "A literal translation of a standard traffic sign in China: 'Give large space to the festive dog that makes sport in the roadway.'", "You burn more calories sleeping than you do watching TV.", "Larry Lewis ran the 100-yard dash in 17.8 seconds in 1969, thereby setting a new world's record for runners in the 100-years-or-older class. He was 101.", "In a lifetime the average human produces enough quarts of spit to fill 2 swimming pools.", "It's against the law to doze off under a hair dryer in Florida/against the law to slap an old friend on the back in Georgia/against the law to Play hopscotch on a Sunday in Missouri.", "Barbie's measurements, if she were life-size, would be 39-29-33.", "The human heart creates enough pressure to squirt blood 30ft.", "One third of all cancers are sun related.", "THE MOST UNUSUAL CANNONBALL: On two occasions, Miss 'Rita Thunderbird' remained inside the cannon despite a lot of gunpowder encouragement to do otherwise. She performed in a gold lamé bikini and on one of the two occasions (1977) Miss Thunderbird remained lodged in the cannon, while her bra was shot across the Thames River.", "It has been estimated that humans use only 10% of their brain.", "Valentine Tapley from Pike County, Missouri grew chin whiskers attaining a length of twelve feet six inches from 1860 until his death 1910, protesting Abraham Lincoln's election to the presidency.", "Most Egyptians died by the time they were 30 about 300 years ago,", "For some time Frederic Chopin, the composer and pianist, wore a beard on only one side of his face, explaining: 'It does not matter, my audience sees only my right side.'", "1 in every 4 Americans has appeared someway or another on television.", "1 in 8 Americans has worked at a McDonalds restaurant.", "70% of all boats sold are used for fishing.", "Studies have shown that children laugh an average of 300 times/day and adults 17 times/day, making the average child more optimistic, curious, and creative than the adult.", "A pregnant goldfish is called a twit.", "The shortest war in history was between Zanzibar and England in 1896. Zanzibar surrendered after 38 minutes.", "You were born with 300 bones, but by the time you are an adult you will only have 206.", "If you go blind in one eye you only lose about one fifth of your vision but all your sense of depth.", "Women blink nearly twice as much as men.", "The strongest muscle (Relative to size) in the body is the tongue.", "A Boeing 747's wingspan is longer than the Wright brother's first flight.", "American Airlines saved $40,000 in 1987 by eliminating one olive from each salad served in first-class.", "Average life span of a major league baseball: 7 pitches.", "A palindrome is a sentence or group of sentences that reads the same backwards as it does forward: Ex: 'Red rum, sir, is murder.' 'Ma is as selfless as I am.' 'Nurse, I spy gypsies. Run!' 'A man, a plan, a canal - Panama.' 'He lived as a devil, eh?'", "The first CD pressed in the US was Bruce Springsteen's 'Born in the USA'", "In 1986 Congress & President Ronald Reagan signed Public Law 99-359, which changed Daylight Saving Time from the last Sunday in April to the first Sunday in April. It was estimated to save the nation about 300,000 barrels of oil each year by adding most of the month April to D.S.T.", "The thumbnail grows the slowest, the middle nail the fastest, nearly 4 times faster than toenails.", "The Human eyes never grow, but nose and ears never stop growing.", "The 57 on Heinz ketchup bottles represents the number of varieties of pickles the company once had.", "Tom Sawyer was the first novel written on a typewriter.", "If Texas were a country, its GNP would be the fifth largest of any country in the world.", "There are 1 million ants for every human in the world.", "Odds of being killed by lightening? 1 in 2million/killed in a car crash? 1 in 5,000/killed by falling out of bed? 1 in 2million/killed in a plane crash? 1 in 25 million.", "Since 1978, 37 people have died by Vending Machine's falling on them. 13 people are killed annually. All this while trying to shake merchandise out of them. 113 people have been injured.", "Half the foods eaten throughout the world today were developed by farmers in the Andes Mountains (including potatoes, maize, sweet potatoes, squash, all varieties of beans, peanuts, manioc, papayas, strawberries, mulberries and many others).", "The 'Golden Arches' of fast food chain McDonalds is more recognized worldwide than the religious cross of Christianity.", "Former basketball superstar Michael Jordan is the most recognized face in the world, more than the pope himself.", "The average talker sprays about 300 microscopic saliva droplets per minute, about 2.5 droplets per word.", "The Earth experiences 50,000 Earth quakes per year and is hit by Lightning 100 times a second.", "Every year 11,000 Americans injure themselves while trying out bizarre sexual positions.", "If we had the same mortality rate now as in 1900, more than half the people in the world today would not be alive.", "On average, Americans eat 18 acres of pizza everyday.", "Researchers at the Texas Department of Highways in Fort Worth determined the cow population of the U.S. burps some 50 million tons of valuable hydrocarbons into the atmosphere each year. The accumulated burps of ten average cows could keep a small house adequately heated and its stove operating for a year.", "During a severe windstorm or rainstorm the Empire State Building sways several feet to either side.", "In the last 3,500 years, there have been approximately 230 years of peace throughout the civilized world.", "The Black Death reduced the population of Europe by one third in the period from 1347 to 1351.", "The average person spends about two years on the phone in a lifetime.", "Length of beard an average man would grow if he never shaved 27.5 feet", "Over 60% of all those who marry get divorced.", "400-quarter pounders can be made from 1 cow.", "A full-loaded supertanker traveling at normal speed takes at least 20 minutes to stop.", "Coca-Cola was originally green.", "Men can read smaller print than women; women can hear better.", "Hong Kong holds the most Rolls Royce’s per capita.", "Average number of days a West German goes without washing his underwear: 7", "WWII fighter pilots in the South Pacific armed their airplanes while stationed with .50 caliber machine gun ammo belts measuring 27 feet before being loaded into the fuselage. If the pilots fired all their ammo at a target, he went through 'the whole 9 yards', hence the term.", "Average number of people airborne over the US any given hour: 61,000.", "Intelligent people have more zinc and copper in their hair.", "Iceland consumes more Coca-Cola per capita than any other nation.", "In the early 1940s, the FCC assigned television's Channel 1 to mobile services (like two-way radios in taxis) but did not re-number the other channel assignments.", "The San Francisco Cable cars are the only mobile National Monuments.", "Firehouses have circular stairways originating from the old days when the engines were pulled by horses. The horses were stabled on the ground floor and figured out how to walk up straight staircases.", "The Main Library at Indiana University sinks over an inch every year because when it was built, engineers failed to take into account the weight of all the books that would occupy the building.", "111,111,111 x 111,111,111 = 12,345,678,987,654,321", "Statues in parks: If the horse has both front legs in the air, the person died in battle; if the horse has one front leg in the air, the person died as a result of wounds received in battle; if the horse has all four legs on the ground, the person died of natural causes.", "The expression 'to get fired' comes from long ago Clans that wanted to get rid of unwanted people, so they would burn their houses instead of killing them, creating the term 'Got fired'.", "'I am.' is the shortest complete sentence in the English language.", "Hershey's Kisses are called that because the machine that makes them looks like it's kissing the conveyor belt.", "The phrase 'rule of thumb' is derived from an old English law, which stated that you couldn't beat your wife with anything wider than your thumb.", "The longest recorded flight of a chicken is thirteen seconds.", "The Eisenhower interstate system requires that one mile in every five must be straight in case of war or emergency, they could be used as airstrips.", "The name Jeep came from the abbreviation used in the army. G.P. for 'General Purpose' vehicle.", "The Pentagon, in Arlington, Virginia, has twice as many bathrooms as is necessary, because when it was built in the 1940s, the state of Virginia still had segregation laws requiring separate toilet facilities for blacks and whites.", "The cruise liner, Queen Elizabeth II, moves only six inches for each gallon of diesel that it burns.", "If you have three quarters, four dimes, and four pennies, you have $1.19, the largest amount of money in coins without being able to make change for a dollar.", "In Aspen Colorado, you can have a maximum income of $104,000 and still receive government subsidized housing.", "Honking of car horns for a couple that just got married is an old superstition to insure great sex.", "Dr. Kellogg introduced Kellogg's Corn Flakes in hopes that it would reduce masturbation.", "The sperm of a mouse is actually longer than the sperm of an elephant.", "In medieval France, unfaithful wives were made to chase a chicken through town naked.", "The Black Widow spider eats her mate during or after sex.", "Napoleon's penis was sold to an American Urologist for $40,000.", "Eating the heart of a male Partridge was the cure for impotence in ancient Babylon.", "A bull can inseminate 300 cows from one single ejaculation.", "When a Hawaiian woman wears a flower over her left ear, it means that she is not available.", "The 'save' icon on Microsoft Word shows a floppy disk with the shutter on backwards.", "The only nation whose name begins with an 'A', but doesn't end in an 'A' is Afghanistan.", "The following sentence: 'A rough-coated, dough-faced, thoughtful ploughman strode through the streets of Scarborough; after falling into a slough, he coughed and hiccoughed.' Contains the nine different pronunciations of 'ough' in the English Language.", "The verb 'cleave' is the only English word with two synonyms which are antonyms of each other: adhere and separate.", "The only 15-letter word that can be spelled without repeating a letter is uncopyrightable.", "The shape of plant collenchyma’s cells and the shape of the bubbles in beer foam are the same - they are orthotetrachidecahedrons.", "Emus and kangaroos cannot walk backwards, and are on the Australian coat of arms for that reason.", "Cats have over one hundred vocal sounds, while dogs only have about ten.", "Blueberry Jelly Bellies were created especially for Ronald Reagan.", "PEZ candy even comes in a Coffee flavor.", "The first song played on Armed Forces Radio during operation Desert Shield was 'Rock the Casba' by the Clash.", "Non-dairy creamer is flammable.", "The airplane Buddy Holly died in was the 'American Pie.' (Thus the name of the Don McLean song.)", "Each king in a deck of playing cards represents a great king from history. Spades - King David, Clubs - Alexander the Great, Hearts - Charlemagne, and Diamonds - Julius Caesar.", "Golf courses cover 4% of North America.", "The average person will accidentally eat just under a pound of insects every year.", "Until 1994, world maps and globes sold in Albania only had Albania on them.", "The value of Pi will be officially 'rounded down' to 3.14 from 3.14159265359 on December 31, 1999.", "The Great Wall of China is the only man-made structure visible from space.", "A piece of paper can be folded no more then 9 times.", "The amount of computer Memory required to run WordPerfect for Win95 is 8 times the amount needed aboard the space shuttle.", "The average North American will eat 35,000 cookies during their life span.", "Between 25% and 33% of the population sneeze when exposed to light.", "The most common name in world is Mohammed.", "Mount Olympus Mons on Mars is three times the size of Mount Everest.", "Most toilets flush in E flat.", "2,000 pounds of space dust and other space debris fall on the Earth every day.", "Each month, there is at least one report of UFOs from each province of Canada.", "40,000 Americans are injured by toilets each year.", "You can be fined up to $1,000 for whistling on Sunday in Salt Lake City, Utah.", "It takes about 142.18 licks to reach the center of a Tootsie pop.", "The serial number of the first MAC ever produced was 2001.", "It is illegal to eat oranges while bathing in California.", "If done perfectly, a rubix cube combination can be solved in 17 turns.", "The average American butt is 14.9 inches long.", "More bullets were fired in 'Starship Troopers' than any other movie ever made.", "60% of electrocutions occur while talking on the telephone during a thunderstorm.", "The name of the girl on the statue of liberty is Mother of Exiles.", "3.6 cans of Spam are consumed each second.", "There's a systematic lull in conversation every 7 minutes.", "The buzz from an electric razor in America plays in the key of B flat; Key of G in England.", "There are 1,575 steps from the ground floor to the top of the Empire State building.", "The world's record for keeping a Lifesaver in the mouth with the hole intact is 7 hrs 10 min.", "There are 293 ways to make change for a dollar.", "The world record for spitting a watermelon seed is 65 feet 4 inches.", "In the Philippine jungle, the yo-yo was first used as a weapon.", "Dueling is legal in Paraguay as long as both parties are registered blood donors.", "Texas is also the only state that is allowed to fly its state flag at the same height as the U.S. flag.", "The three most recognized Western names in China are Jesus Christ, Richard Nixon, & Elvis Presley.", "There is a town in Newfoundland, Canada called Dildo.", "The Boston University Bridge (on Commonwealth Avenue, Boston, Massachusetts) is the only place in the world where a boat can sail under a train driving under a car driving under an airplane.", "All 50 states are listed across the top of the Lincoln Memorial on the back of the $5 bill.", "In space, astronauts are unable to cry, because there is no gravity and the tears won't flow.", "Chewing gum while peeling onions will keep you from crying.", "There are more plastic flamingos in the U.S that there are real ones.", "The crack of a whip is actually a tiny sonic boom, since the tip breaks the sound barrier.", "Jupiter is bigger than all the other planets in our solar system combined.", "Hot water is heavier than cold.", "The common idea that only 10% of the brain is used it not true as it is impossible to determine the actual percentage because of the complexity of the brain.", "Lawn darts are illegal in Canada.", "There are more psychoanalysts per capita in Buenos Aires than any other place in the world.", "Between 2 and 3 jockeys are killed each year in horse racing.", "5,840 people with pillow related injuries checked into U.S. emergency rooms in 1992.", "The average woman consumes 6 lbs of lipstick in her lifetime.", "Some individuals express concern sharing their soap, rightly so, considering 75% of all people wash from top to bottom.", "Conception occurs most in the month of December.", "CBS' '60 Minutes' is the only TV show without a theme song/music.", "Half of all Americans live within 50 miles of their birthplace.", "'Obsession' is the most popular boat name.", "On average, Americans' favorite smell is banana.", "If one spells out numbers, they would have to count to One Thousand before coming across the letter 'A'.", "Honey is the only food which does not spoil.", "3.9% of all women do not wear underwear.", "This common everyday occurrence composed of 59% nitrogen, 21% hydrogen, and 9% dioxide is called a 'fart'.", "'Evaluation and Parameterization of Stability and Safety Performance Characteristics of Two and Three Wheeled Vehicular Toys for Riding.' Title of a $230,000 research project proposed by the Department of Health, Education and Welfare, to study the various ways children fall off bicycles.", "Babies are born without kneecaps. They don't appear until the child reaches 2-6 years of age.", "Meteorologists claim they're right 85% of the time (think about that one!)", "In 1980, a Las Vegas hospital suspended workers for betting on when patients would die.", "Los Angeles' full name 'El Pueblo de Nuestra Senora la Reina de Los Angeles de Porciuncula' is reduced to 3.63% of its size in the abbreviation 'L.A.'.", "If you went out into space, you would explode before you suffocated because there's no air pressure.", "The only real person to ever to appear on a pez dispenser was Betsy Ross.", "Mike Nesmith's (the guitarist of The Monkeys) mom invented White Out.", "Only 6 people in the whole world have died from moshing.", "241. In a test performed by Canadian scientists, using various different styles of music, it was determined that chickens lay the most eggs when pop music was played.", "The storage capacity of human brain exceeds 4 Terabytes.", "In Vermont, the ratio of cows to people is 10:1", "Any free-moving liquid in outer space will form itself into a sphere, because of its surface tension.", "The average American looks at eight houses before buying one.", "In the average lifetime, a person will walk the equivalent of 5 times around the equator.", "Koala is Aboriginal for 'no drink'.", "Shakespeare spelled his OWN name several different ways.", "The first contraceptive was crocodile dung used by the ancient Egyptians.", "A signature is called a John Hancock because he signed the Declaration of Independence. Only 2 people signed the declaration of independence on July 4. The Last person signed 2 years later.", "Arnold Schonberg suffered from triskaidecaphobia, the fear of the number 13. He died at 13 minutes from midnight on Friday the 13th.", "Mozart wrote the nursery rhyme 'twinkle, twinkle, little star' at the age of 5.", "Weatherman Willard Scott was the first original Ronald McDonald.", "Virginia Woolf wrote all her books standing.", "Einstein couldn't speak fluently until after his ninth birthday. His parents thought he was mentally retarded.", "Al Capone's business card said he was a used furniture dealer.", "Deborah Winger did the voice of E.T.", "Kelsey Grammar sings and plays the piano for the theme song of Fraiser.", "Thomas Edison, acclaimed inventor of the light bulb, was afraid of the dark.", "In England, the Speaker of the House is not allowed to speak.", "You can sail all the way around the world at latitude 60 degrees south.", "The earth weighs around 6,588,000,000,000,000,000,000,000,000 tons.", "Peanuts are one of the ingredients of dynamite.", "Porcupines can float in water.", "The average person's left hand does 56% of the typing.", "A shark is the only fish that can blink with both eyes.", "The longest one-syllable word in the English language is 'screeched.'", "All of the clocks in the movie 'Pulp Fiction' are stuck on 4:20, a national pot-smokers hour.", "'Dreamt' is the only English word that ends in the letters 'mt.'", "Almonds are a member of the peach family.", "Winston Churchill was born in a ladies' room during a dance.", "Maine is the only state whose name is just one syllable.", "There are only four words in the English language which end in 'dous': tremendous, horrendous, stupendous, and hazardous.", "Tigers not only have striped fur, they have striped skin!", "In most advertisements, including newspapers, the time displayed on a watch is 10:10.", "On the ground, a group of geese is a gaggle, in the sky it is a skein.", "To Ensure Promptness, one is expected to pay beyond the value of service – hence the later abbreviation: T.I.P.", "When the University of Nebraska Cornhuskers play football at home, the stadium becomes the state's third largest city.", "The characters Bert and Ernie on Sesame Street were named after Bert the cop and Ernie the taxi driver in Frank Capra's 'Its A Wonderful Life.'", "A dragonfly has a lifespan of 24 hours.", "A dime has 118 ridges around the edge.", "On an American one-dollar bill, there is an owl in the upper left-hand corner of the '1'encased in the 'shield' and a spider hidden in the front upper right-hand corner.", "The name for Oz in the 'Wizard of Oz' was thought up when the creator, Frank Baum, looked at his filing cabinet and saw A-N, and O-Z; hence the name 'OZ.'", "The microwave was invented after a researcher walked by a radar tube and a chocolate bar melted in his pocket.", "Mr. Rogers is an ordained minister.", "John Lennon's first girlfriend was named Thelma Pickles.", "There are 336 dimples on a regulation golf ball.", "The scene where Indiana Jones shoots the swordsman in Raider’s of the Lost Ark was Harrison Ford's idea so that he could take a bathroom break.", "A crocodile cannot stick its tongue out.", "A snail can sleep for three years.", "All polar bears are left-handed.", "China has more English speakers than the United States.", "Elephants are the only animals that can't jump.", "February 1865 is the only month in recorded history not to have a full moon.", "If the population of China walked past you in single file, the line would never end because of the rate of reproduction.", "If you yelled for 8 years, 7 months and 6 days, you will have produced enough sound energy to heat one cup of coffee.", "In the last 4000 years, no new animals have been domesticated.", "Leonardo Da Vinci invented the scissors.", "The word 'set' has more definitions than any other word in the English language.", "Nutmeg is extremely poisonous if injected intravenously.", "On average, people fear spiders more than they do death.", "One of the reasons marijuana is illegal today is because cotton growers in the 1930s lobbied against hemp farmers they saw it as competition.", "Shakespeare invented the word 'assassination' and 'bump'.", "Some lions mate over 50 times a day.", "Starfish haven't got brains.", "The ant always falls over on its right side when intoxicated.", "The name of all continents in the world end with the same letter that they start with.", "There are two credit cards for every person in the United States.", "The longest word comprised of one row on the keyboard is: TYPEWRITER", "You can't kill yourself by holding your breath. ", "The average person spends 12 weeks a year 'looking for things'.", "The symbol on the 'pound' key (#) is called an octothorpe.. ", "The dot over the letter 'i' is called a tittle. ", "Ingrown toenails are hereditary. ", "'Underground' is the only word in the English language that begins and ends with the letters 'und'", "The longest word in the English language, according to the Oxford English Dictionary, is: pneumonoultramicroscopicsilicovolcanoconiosis.. ", "The longest place-name still in use is: Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiakitnatahu, a New Zealand hill. ", "An ostrich's eye is bigger than its brain. ", "Alfred Hitchcock didn't have a belly button. It was eliminated when he was sewn up after surgery.", "Telly Savalas and Louis Armstrong died on their birthdays. ", "Donald Duck's middle name is Fauntleroy. ", "The muzzle of a lion is like a fingerprint - no two lions have the same pattern of whiskers. ", "Steely Dan got their name from a sexual device depicted in the book 'The Naked Lunch'. ", "The Ramses brand condom is named after the great pharoh Ramses II who fathered over 160 children.", "There is a seven letter word in the English language that contains ten words without rearranging any of its letters, 'therein': the, there, he, in, rein, her, here, ere, therein, herein. ", "A goldfish has a memory span of three seconds. ", "Cranberries are sorted for ripeness by bouncing them; a fully ripened cranberry can be dribbled like a basketball. ", "The male gypsy moth can 'smell' the virgin female gypsy moth from 1.8 miles away. ", "The letters KGB stand for Komitet Gosudarstvennoy Bezopasnosti. ", "The word 'dexter' whose meaning refers to the right hand is typed with only the left hand. ", "To 'testify' was based on men in the Roman court swearing to a statement made by swearing on their testicles. ", "Facetious and abstemious contain all the vowels in the correct order, as does arsenious, meaning 'containing arsenic.' ", "The word 'Checkmate' in chess comes from the Persian phrase 'Shah Mat,' which means 'the king is dead.'", "The first episode of 'Joanie Loves Chachi' was the highest rated American program in the history of Korean television, a country where 'Chachi' translates to 'penis'. ", "Rubber bands last longer when refrigerated. ", "The national anthem of Greece has 158 verses. No one in Greece has memorized all 158 verses. ", "Two-thirds of the world's eggplant is grown in New Jersey. ", "The giant squid has the largest eyes in the world.", "Giraffes have no vocal cords.", "The pupils of a goat's eyes are square.", "Van Gogh only sold one painting when he was alive.", "A standard slinky measures 87 feet when stretched out.", "The highest per capita Jell-O comsumption in the US is Des Moines.", "If a rooster can't fully extend its neck, it can't crow.", "There were always 56 curls in Shirley Temple's hair.", "The eyes of a donkey are positioned so that it can see all four feet at all times.", "Worcestershire sauce in essentially an Anchovy Ketchup.", "Rhode Island is the only state which the hammer throw is a legal high school sport.", "The average lifespan of an eyelash is five months.", "A spider has transparent blood.", "Every acre of American crops harvested contains 100 pounds of insects.", "Prince Charles is an avid collecter of toilet seats.", "The most common street name in the U.S. is Second Street.", "Tehran is the most expensive city on earth.", "The sweat drops drawn in cartoon comic strips are called pleuts.", "Babies are most likely to be born on Tuesdays.", "The HyperMart outside of Garland Texas has 58 check-outs.", "The Minneapolis phone book has 21 pages of Andersons.", "In the 1980's American migraines increased by 60%.", "Poland is the 'stolen car capital of the world'.", "Jefferson invented the dumbwaiter, the monetary system, and the folding attic ladder.", "The S in Harry S. Truman did not stand for anything.", "In Miconesia, coins are 12 feet across.", "A horse can look forward with one eye and back with the other.", "Shakespeare is quoted 33,150 times in the Oxford English dictionary.", "The word Pennsylvania is misspelled on the Liberty Bell.", "NBA superstar Michael Jordan was originally cut from his high school basketball team.", "You spend 7 years of your life in the bathroom.", "A family of 26 could go to the movies in Mexico city for the price of one in Tokyo.", "10,000 Dutch cows pass through the Amsterdam airport each year.", "Approximately every seven minutes of every day, someone in an aerobics class pulls their hamstring.", "Simplistic passwords contribute to over 80% of all computer password break-ins.", "The top 3 health-related searches on the Internet are (in this order): Depression, Allergies, & Cancer.", "Dentists have recommended that a toothbrush be kept at least 6 feet away from a toilet to avoid airborne particles resulting from the flush.", "Most dust particles in your house are made from dead skin.", "Venus is the only planet that rotates clockwise.", "Oak trees do not produce acorns until they are fifty years of age or older.", "The first owner of the Marlboro company died of lung cancer.", "All US Presidents have worn glasses; some just didn't like being seen wearing them in public.", "Mosquito repellents don't repel. They hide you. The spray blocks the mosquito's sensors so they don't know you're there.", "Walt Disney was afraid of mice.", "The site with the highest number of women visitors between the age of 35 and 44 years old: Alka-Seltzer.com", "The king of hearts is the only king without a mustache.", "Pearls melt in vinegar.", "It takes 3,000 cows to supply the NFL with enough leather for a year's supply of footballs.", "Thirty-five percent of people who use personal ads for dating are already married.", "The 3 most valuable brand names on earth are Marlboro, Coca-Cola, and Budweiser (in that order).", "Humans are the only primates that don't have pigment in the palms of their hands.", "Months that begin on a Sunday will always have a 'Friday the 13th'.", "The fingerprints of koala bears are virtually indistinguishable from those of humans, so much so that they can be easily confused at a crime scene.", "The mask worn by Michael Myers in the original 'Halloween' was actually a Captain Kirk mask painted white.", "The only two days of the year in which there are no professional sports games--MLB, NBA, NHL, or NFL--are the day before and the day after the Major League All-Star Game.", "Only one person in two billion will live to be 116 or older.", "When the French Academy was preparing its first dictionary, it defined 'crab' as, 'A small red fish, which walks backwards.' This definition was sent with a number of others to the naturalist Cuvier for his approval. The scientist wrote back, 'Your definition, gentlemen, would be perfect, only for three exceptions. The crab is not a fish, it is not red and it does not walk backwards.'", "Dr. Jack Kevorkian first patient has Alzheimer's disease.", "Fictional/horror writer Stephen King sleeps with a nearby light on to calm his fear of the dark.", "It's possible to lead a cow upstairs but not downstairs.", "It was discovered on a space mission that a frog can throw up. The frog throws up its stomach first, so the stomach is dangling out of its mouth. Then the frog uses its forearms to dig out all of the stomach's contents and then swallows the stomach back down.", "The very first song played on MTV was 'Video Killed The Radio Star' by the Buggles.", "William Marston engineered one of the earliest forms of the polygraph in the early 1900's. Later he went on to create the comic strip Wonder Woman, a story about a displaced Amazon princess who forces anyone caught in her magic lasso to tell the truth", "Americans travel 1,144,721,000 miles by air every day", "The the U.S. you dial '911'. In Stockholm, Sweden you dial 90000", "38% of American men say they love their cars more than women", "The U.S. military operates 234 golf courses", "100% of lottery winners do gain weight", "Bullet proof vests, fire escapes, windshield wipers, and laser printers were all invented by women", "A cat has 32 muscles in each ear.", "A duck's quack doesn't echo, and no one knows why.", "Cats urine glows under a black light.", "In every episode of Seinfeld there is a Superman somewhere.", "Lorne Greene had one of his nipples bitten off by an alligator while he was host of 'Lorne Greene's Wild Kingdom.'", "Pamela Anderson Lee is Canada's Centennial Baby, being the first baby born on the centennial anniversary of Canada's independence.", "Pinocchio is Italian for 'pine head.'", "When possums are playing 'possum', they are not 'playing.' They actually pass out from sheer terror.", "Who's that playing the piano on the 'Mad About You' theme? Paul Reiser himself.", "Winston Churchill was born in a ladies' room during a dance.", "Most lipstick contains fish scales!", "Donald Duck comics were banned from Finland because he doesn't wear pants!", "There are more than 10 million bricks in the Empire State Building!", "Camels have three eyelids to protect themselves from blowing sand!", "The placement of a donkey's eyes in its' heads enables it to see all four feet at all times!", "The average American/Canadian will eat about 11.9 pounds of cereal per year!", "Over 1000 birds a year die from smashing into windows!", "The state of Florida is bigger than England!", "Dolphins sleep with one eye open!", "In the White House, there are 13,092 knives, forks and spoons!", "Recycling one glass jar, saves enough energy to watch T.V for 3 hours!", "Owls are one of the only birds who can see the color blue!", "Honeybees have a type of hair on their eyes!", "A jellyfish is 95 percent water!", "In Bangladesh, kids as young as 15 can be jailed for cheating on their finals!", "The katydid bug hears through holes in its hind legs!", "Q is the only letter in the alphabet that does not appear in the name of any of the United States!", "166,875,000,000 pieces of mail are delivered each year in the US", "Bats always turn left when exiting a cave", "The praying mantis is the only insect that can turn its head", "Daffy Duck's middle name is 'Dumas'", "In Disney's Fantasia, the Sorcerer's name is 'Yensid' (Disney backwards.)", "In The Empire Strikes Back there is a potato hidden in the asteroid field", "Walt Disney holds the world record for the most Academy Awards won by one person, he has won twenty statuettes, and twelve other plaques and certificates", "James Bond's car had three different license plates in Goldfinger", "Canada makes up 6.67 percent of the Earth's land area", "South Dakota is the only U.S state which shares no letters with the name of it's capital", "The KGB is headquartered at No. 2 Felix Dzerzhinsky Square, Moscow", "The Vatican city registered 0 births in 1983", "Spain leads the world in cork production", "There are 1,792 steps in the Eiffel Tower", "There are 269 steps to the top of the Leaning Tower of Pisa", "Leonardo da Vinci could write with one hand while drawing with the other", "Rubber bands last longer when refrigerated.", "Peanuts are one of the ingredients of dynamite.", "The national anthem of Greece has 158 verses. No one in Greece has memorized all 158 verses.", "There are 293 ways to make change for a dollar.", "The average secretary’s left hand does 56% of the typing.", "A shark is the only fish that can blink with both eyes.", "There are more chickens than people in the world (at least before that chicken-flu thing).", "Two-thirds of the world’s eggplant is grown in New Jersey.", "The longest one-syllable word in the English language is 'screeched.'", "All of the clocks in the movie Pulp Fiction are stuck on 4:20.", "No word in the English language rhymes with month, orange, silver or purple.", "'Dreamt' is the only English word that ends in the letters 'mt'.", "All 50 states are listed across the top of the Lincoln Memorial on the back of the $5 bill.", "Almonds are members of the peach family.", "Winston Churchill was born in a ladies’ room during a dance.", "Maine is the only state whose name is just one syllable.", "There are only four words in the English language which end in 'dous': tremendous, horrendous, stupendous, and hazardous.", "Los Angeles’s full name is 'El Pueblo de Nuestra Senora la Reina de los Angeles de Porciuncula'. And can be abbreviated to 3.63% of its size, 'L.A.'", "A cat has 32 muscles in each ear.", "An ostrich’s eye is bigger than it’s brain.", "Tigers have striped skin, not just striped fur.", "In most advertisements, including newspapers, the time displayed on a watch is 10:10.", "Al Capone’s business card said he was a used furniture dealer.", "The only real person to be a Pez head was Betsy Ross.", "When the University of Nebraska Cornhuskers plays football at home, the stadium becomes the state’s third largest city.", "The characters Bert and Ernie on Sesame Street were named after Bert the cop and Ernie the taxi driver in Frank Capra’s 'Its A Wonderful Life'", "A dragonfly has a lifespan of 24 hours.", "A goldfish has a memory span of three seconds.", "A goldfish has a memory span of three seconds.", "A dime has 118 ridges around the edge.", "On an American one-dollar bill, there is an owl in the upper left-hand corner of the '1' encased in the 'shield' and a spider hidden in the front upper right-hand corner.", "It’s impossible to sneeze with your eyes open.", "The giant squid has the largest eyes in the world.", "Who’s that playing the piano on the 'Mad About You' theme? Paul Reiser himself.", "The male gypsy moth can 'smell' the virgin female gypsy moth from 1.8 miles away (pretty good trick).", "In England, the Speaker of the House is not allowed to speak.", "The name for Oz in the 'Wizard of Oz' was thought up when the creator, Frank Baum, looked at his filing cabinet and saw A-N, and O-Z, hence 'Oz.'", "The microwave was invented after a researcher walked by a radar tube and a chocolate bar melted in his pocket.", "Mr. Rogers is an ordained minister.", "John Lennon’s first girlfriend was named Thelma Pickles.", "The average person falls asleep in seven minutes.", "There are 336 dimples on a regulation golf ball.", "'Stewardesses' is the longest word that is typed with only the left hand.", "The 'pound' key on your keyboard (#) is called an octotroph.", "The only domestic animal not mentioned in the Bible is the cat.", "The 'dot' over the letter 'i' is called a tittle.", "Table tennis balls have been known to travel off the paddle at speeds up to 160 km/hr.", "Pepsi originally contained pepsin, thus the name.", "The original story from 'Tales of 1001 Arabian Nights' begins, 'Aladdin was a little Chinese boy.'", "Nutmeg is extremely poisonous if injected intravenously.", "Honey is the only natural food that is made without destroying any kind of life. What about milk you say? A cow has to eat grass to produce milk and grass are living.", "Hawaiian alphabet only has 12 letters: A, E, I, O, U, H, K, L, M, N, P, W", "Honey is the only food that does not spoil.", "And one single teaspoon of honey represents the life work of 12 bees.", "Flamingos only can eat with their heads upside down.", "Lighter was invented ten years before the match was.", "It’s physically impossible for a pig to look up at the sky.", "The first internet domain name to ever be registered is Symbolics.com on March 15th, 1985.", "Humans are born with 350 bones in their body, but when reaching adulthood, we only 260.", "There are 150 verses in Greek national anthem which making it the longest national anthem in the world.", "This is impossible to tickle yourself.", "A typical pencil can draw a line that is 35 miles long.", "Astronauts get taller in space due to the lack of gravity.", "The total surface area of human lungs is 750 square feet. That’s roughly the same area as on-side of a tennis court.", "Mosquitos have contributed to more deaths than any animals on earth.", "An octopus has 3 hearts, 9 brains & blue blood.", "The hair on a polar bear is actually not white but clear. They appear white because it reflects light.", "A chameleon can move its eyes in two different directions at the same time.", "Buttermilk does not contain any butter and actually low in fat.", "A giraffe can go longer without water than a camel can.", "Australia has the biggest camel population in the world.", "Snails can sleep up to 3 years.", "Methane gases produced by cow products as much pollution as cars do.", "The majority of the duct in your house is made up from your own dead skin.", "Most lipstick contains fish scales.", "Most ice-cream contains pig skins (Gelatin).", "The Philippine island of Luzon contains a lake that contains an island that contains a lake that contains another island.", "Hudson Bay Area in Canada had less gravity than rest of the world and scientists do not know why.", "Only one to two percent of the entire world population are natural redheads.", "Sloppy handwriting has doctors kills more than 7,000 people and injures more than 1.5million people annually due to getting the wrong medication.", "Putting sugar on a wound or cut will greatly reduce pain and shorten healing process.", "Real diamonds do not show up in X-ray.", "Due to extreme pressure and weather conditions, it literally rains diamonds on Neptune and Uranus.", "There are 7 different kinds of twins: Identical, Fraternal, Half-Identical, Mirror Image Twins, Mixed Chromosome Twins, Superfecundation and Superfetation.", "Before the 17th century, carrots were actually purple. They didn’t get their orange color until mutation occupied.", "If the sun is scaled down to the size of a white blood cell, the Milky Way would be equal the size of the United States.", "A grammatical pedantry syndrome is a form of OCD in which suffers feel the need to correct every grammatical error that they see.", "Scorpions can hold their breath underwater for up to 6 days.", "In zero gravity, a candle’s flame is round and blue.", "Only 8 percent of the world’s money exists in physical form, the rest is in computers.", "Crows are able to recognize human faces and even hold grudges against ones that they don’t like.", "Your cellphone carries up to ten times more bacteria than a toilet seat.", "Humans and bananas share about 50 percent of the same DNA.", "Humans have fewer chromosomes than a potato.", "An American Pharmacist named John Pemberton invented Coca-Cola who advertises it as a nerve tonic for curing headaches and fatigue.", "Statistically, you are more likely to die on the way to buy a lottery ticket than you are to win the lottery itself.", "The word checkmate comes from the Arabic which means 'the king is dead.'", "Hot water turns to ice faster than cool water. This is known as the Mpemba effect.", "Apollo 7 Mission was the first 'astronaut ice cream' flew in space. However, it was so unpopular among astronauts and was retired from the menu after only one trip into space.", "Apollo 8 astronauts were the first to celebrate Christmas in space.", "IV Is The Roman Numeral designation for 4 everywhere. However, on the clock face, 4 is displayed as 'IIII'.", "The Apple Macintosh had the signatures Of its design team engraved inside its case.", "Japan has the most vending machines per capita, a staggering 1:23.", "A study by University Chicago in 1915, it concluded that the easiest color to spot at a distance is the color yellow. Which is why the most popular color for taxi cabs are yellow.", "Japanese police declare murders that they cannot solve as suicides, in order to save faces and keep crime rate artificially low.", "The smallest poisonous frogs only 10 millimeters (0.393701 inch) in length.", "Farting helps to reduce blood pressure and is good for your overall health.", "In 1994, the US Air Force did research on creating a gay bomb (are informal names for theoretical non-lethal chemical weapon) which is a non-lethal bomb containing very strong human sexual pheromones that would make the enemy forces attracted to each other.", "There are around 1,584 people in the United States named 'Seven'.", "The classic heart shape that we all know was meant to be two hearts fused together.", "The water we drink is older than the sun. The sun is 4.6 billion years old.", "The water on our planet is very old. The water we have now is the same water that existed hundreds of millions of year ago. The next time you drink a glass of water, you could be about to sip on dinosaur pee.", "Meanwhile, about 40% of Americans think humans and dinosaurs existed at the same time.", "Nobody knows who named our planet 'Earth'.", "Michael Nicholson from Michigan. He has one bachelor’s degree, two associate’s degrees, 22 master’s degrees, three specialist degrees and one doctoral degree, making him the most credentialed person in history.", "Practicing a kill in your head will make you better at it, but only if you’re already good at it.", "If two identical twins have children with another pair of identical twins, then their children will genetically be full siblings.", "In Biertan village (located in Transylvania, Romania) the church had a 'divorce-reconciliation room.' Couples that wanted to get a divorce had to live in a room for two weeks with one small bed, one chair, one table, one plate and one spoon. In 300 years, they only had one divorce.", "Killing a panda in China is a seriously crime. It is punishable by death.", "December 4th is the National Cookie Day!", "Beards can slow the aging process by stopping water from leaving the skin, keeping it moisturized.", "A survey found that 33% of men and 43% of women claimed that they had fallen in love with someone they did not initially find attractive.", "Most people dream in color, but those who grow up watching television in black and white are more likely to dream in black and white.", "Mixing your drinks with diet soda can get you drunk about 18% faster than regular soda. Hummm…", "The number of H2O molecules in 10 drops of water is roughly equal to the total amount of stars in the universe.", "Octopuses have copper-based blood instead of iron-based blood, which is why their blood is blue rather than red.", "Also, they have three hearts and nine brains", "The hormones responsible for your growth are only produced when you sleep.", "You touch your face an average of once every three minutes. And you properly touched your face after you read it.", "People who sleep less than six hours a night are 4.2 times more likely to catch a cold compared those who get more than seven hours of sleep.", "Dogs can make about 100 different facial expressions.", "Iceland has no army as is often recognized as the most peaceful country in the world.", "Shigeru Miyamoto – maker of Super Mario Bros. and Donkey Kong – is not allowed to bike to work because his safety is too important to Nintendo.", "Every year, women lose approximately 1.73 billion bobby pins.", "Dolphins give each other 'names' – Specific sounds that they use to call friends and family.", "Chimpanzee babies like to play with dolls – They’ll make dolls out of sticks and rocks for themselves.", "Squirrels plant thousands of trees every year, simply by forgetting where they put their acorns.", "Koalas can sleep for up to 20 hours a day.", "The average woman will spend one full year of her life trying to decide what to wear.", "The average woman owns eight times more makeup than she actually uses.", "Rainbows that appear at night are called 'moonbows.'", "100 million years ago, crocodiles had long legs and could gallop after their prey.", "The real Top Gun school give a $5 fine to any staff member that quotes the movie."] tv_series=["12 Monkeys","19-2 (2014)","2 Broke Girls","24","60 Minutes Australia","60 Minutes US","8 Out of 10 Cats","A D The Bible Continues","A to Z","A Young Doctor's Notebook","About a Boy","Adventure Time","Air Crash Investigation - Mayday","Alaska: The Last Frontier","Alaskan Bush People","Ali G: Rezurection","Allegiance","Almost Human","Almost Royal","Alpha House","Ambassadors","America Declassified","America Unearthed","America's Got Talent","America's Next Top Model","American Crime","American Dad!","American Horror Story","American Idol","American Ninja Warrior","American Odyssey","American Pickers","American Restoration","Ancient Aliens","Anger Management","Another Period","Anthony Bourdain: Parts Unknown","Antiques Roadshow UK","Aqua TV Show Show","Aquarius (US)","Archer (2009)","Arctic Air","Arrow","At Midnight","Atlantis","Attack on Titan","Avengers Assemble (2013)","Awkward.","Axe Cop","Baby Daddy","Babylon","Bachelor in Paradise","Back in the Game","Backstrom","Bad Education","Bad Ink","Bad Judge","Bad Teacher","Ballers","Banished","Banshee","Bar Rescue","Bates Motel","Battle Creek","Beauty and the Beast (2012)","Being Human (US)","Being Mary Jane","Believe","Ben 10: Omniverse","Benched","Bering Sea Gold","Best Ink","Better Call Saul","Between","Big Brother (UK)","Big Brother US","Big School","Big Time in Hollywood, FL","Bitten","Black Box","Black Dynamite","Black Gold","Black Jesus","Black Mirror","Black Sails","Black-ish","Blue Bloods","Bluestone 42","Boardwalk Empire","Bob's Burgers","Bones","Bosch","Boston's Finest","Brain Games","Brew Dogs","Brickleberry","Broad City","Broadchurch","Brooklyn Nine-Nine","Bullseye","Californication","Call the Midwife","Castle (2009)","Casualty","Catastrophe","Catfish: The TV Show","Celebrity Juice","Charlie Brooker's Weekly Wipe","Chasing Life","Chasing Shadows","Chicago Fire","Chicago P.D.","Chickens","Childrens Hospital","China, IL","Chopped","Chozen","Citizen Khan","Clipped","Cockroaches","Comedy Bang! Bang!","Comedy Underground with Dave Attell","Comic Book Men","Community","Complications","Conan (2010)","Constantine","Continuum","Cops","Cosmos: A Spacetime Odyssey","Cougar Town","Covert Affairs","Cracked (2013)","Criminal Minds","Crisis","Cristela","Critical","Crossbones","Crossing Lines","CSI: Crime Scene Investigation","CSI: Cyber","Cuckoo","Curiosity","Da Vinci's Demons","Dads (2013)","Dallas (2012)","Dancing With the Stars","Danger 5","Dara O Briain's Science Club","Dark Matter","DCI Banks","Dead Boss","Deadliest Catch","Death in Paradise","Debbie Macomber's Cedar Cove","Defiance","Degrassi","Derek","Devious Maids","DIG","Doctor Who (2005)","Doctor Who Extra","Doll &amp; Em","Dominion","Downton Abbey","Dracula","Dragons' Den (Canada)","Drifters","Drop Dead Diva","Drugs, Inc.","Drunk History","Duck Dynasty","Duck Quacks Don't Echo","Eagleheart","EastEnders","Elementary","Empire","Enlisted","Episodes","ESPN 30 for 30","Extant","Eye Candy","Face Off","Faking It","Falling Skies","Family Guy","Fargo","Fast N' Loud","Fear Factor","Fear The Walking Dead","Fifth Gear","Finding Bigfoot","Finding Carter","Forever","Forever (US)","Fortitude","Foyle's War","Franklin &amp; Bash","Fresh Meat","Fresh Off the Boat","Friends With Better Lives","From Dusk Till Dawn: The Series","Galavant","Game of Thrones","Gang Related","Garfunkel and Oates","Geordie Shore","Get Out Alive (2013)","Getting On (US)","Ghost Adventures","Ghost Hunters","Girl Meets World","Girlfriends' Guide to Divorce","Girls","Glee","Gogglebox","Gold Rush","Good Witch","Gotham","Graceland","Gracepoint","Grand Designs","Gravity Falls","Grey's Anatomy","Grimm","Ground Floor","Growing Up Fisher","Halt and Catch Fire","Hannibal","HAPPYish","Happyland","Hard Knocks","Hardcore Pawn","Hart of Dixie","Have I Got News for You","Haven","Hawaii Five-0","Heartland (2007) (CA)","Helix","Hell on Wheels","Hell's Kitchen (US)","Hemlock Grove","Heroes of Cosplay","Heston Blumenthal: In Search of Perfection","Highway Thru Hell","Hinterland","Holby City","Homeland","Horizon","Hot In Cleveland","Hotel Hell","House of Cards (2013)","House of Lies","How I Met Your Mother","How It's Made","How to Get Away With Murder","How We Got to Now","Hulk and the Agents of S.M.A.S.H.","Humans","I Can Do That (US)","I Wanna Marry Harry","Ice Road Truckers","If Loving You Is Wrong","Impact Wrestling","Impastor","Impractical Jokers","In the Flesh","Ink Master","Inside Amy Schumer","Inside Comedy","Inside No. 9","Intelligence","Intruders (2014)","It's Always Sunny in Philadelphia","iZombie","Jamie's Comfort Food","Jane the Virgin","Jennifer Falls","Jimmy Kimmel Live","Jonathan Strange &amp; Mr Norrell","Justified","Keeping Up with the Kardashians","Kevin From Work","Key &amp; Peele","Killjoys","King of the Nerds","Kingdom","Kingdom (2014)","Kirstie","Kitchen Nightmares US","Kodiak","Kroll Show","Last Comic Standing","Last Man Standing (2011)","Last Week Tonight with John Oliver","Late Night with Seth Meyers","Late Show with David Letterman","Law &amp; Order: Special Victims Unit","Law &amp; Order: UK","Legends","Legit (2013)","Lewis","Life Below Zero","Line of Duty","Lip Sync Battle","Live at the Apollo","Lizard Lick Towing","Location, Location, Location","Longmire","Looking","Lost Girl","Lost in Transmission","Louie (2010)","Mad Men","Madam Secretary","Major Crimes","Major Lazer","Man Seeking Woman","Manhattan","Manhattan Love Story","Maron","Married","Marry Me!","Marvel's Agent Carter","Marvel's Agents of S.H.I.E.L.D.","Marvel's Daredevil","Masterchef (US)","MasterChef Australia","MasterChef Junior","Masters of Sex","Matador","Match of the Day","Melissa &amp; Joey","Men at Work","Merlin","Midsomer Murders","Mike &amp; Molly","Mike Tyson Mysteries","Mind Games","Mistresses (US)","Mixology","Mob City","Mock the Week","Modern Family","Mom","Moone Boy","Moonshiners","Motive","Mozart in the Jungle","Mr Selfridge","Mr. Pickles","Mr. Robot","Mulaney","Murder in the First","Murdoch Mysteries","My Kitchen Rules","My Kitchen Rules UK","My Little Pony: Friendship is Magic","My Mad Fat Diary","My Tattoo Addiction","MythBusters","Naked and Afraid","Nashville","Nathan for You","NCIS","NCIS: Los Angeles","NCIS: New Orleans","New Girl","New Tricks","Newsreaders","No Offence","Not Going Out","NTSF:SD:SUV::","Nurse Jackie","Odd Mom Out","Offspring","Olympus","Once Upon a Time (2011)","Once Upon a Time in Wonderland","One Big Happy","Opposite Worlds","Orange Is the New Black","Orphan Black","Our Girl","Outlander","Parenthood (2010)","Parks and Recreation","Pawn Stars","Pawnography","Peaky Blinders","Peep Show","Penn and Teller Fool Us","Penny Dreadful","Perception","Person of Interest","Pit Bulls and Parolees","Played","Playing House","Please Like Me","Plebs","Pokémon","Poldark","Portlandia","Power","Powers","Powers (US)","Pretty Little Liars","Project Runway","Project Runway All Stars","Proof","Proof (US)","Psych","Puberty Blues","QI","Railroad Alaska","Raising Hope","Rake (US)","Ray Donovan","Real Husbands of Hollywood","Real Time with Bill Maher","Reckless US","Rectify","Red Band Society","Red Dwarf","Regular Show","Reign","Remedy","Republic of Doyle","Restaurant: Impossible","Resurrection","Revenge","Review With Forrest Macneil","Revolution","Rick and Morty","Ridiculousness","Ripper Street","Rising Star","River Monsters","Rizzoli &amp; Isles","Rob Dyrdek's Fantasy Factory","Robot Chicken","Rogue","Rookie Blue","Royal Marines Commando School","Royal Pains","Rugby Super Rugby","Running Wild with Bears","RuPaul's Drag Race","Rush (US)","Salem","Sam &amp; Cat","Satisfaction (US)","Saturday Night Live","Saving Hope","Scandal (2012)","Schitt's Creek","Scorpion","Scott &amp; Bailey","Scream","Secrets and Lies (US)","See Dad Run","Seed","Selfie","Sense8","Serangoon Road","Sex Sent Me to the ER","Shameless (US)","Shark Tank","Sherlock","Siberia","Signed, Sealed, Delivered","Significant Mother","Silicon Valley","Single Ladies","Sirens (2014)","Slednecks","Sleepy Hollow","So You Think You Can Dance","So You Think You Can Dance US","Sons of Anarchy","Sons of Guns","Sons of Winter","South Park","Stalker","Star Wars Rebels","Star-Crossed","State of Affairs","Stitchers","Storage Wars","Strike Back","Suburgatory","Suits","SunTrap","Super Fun Night","Supernatural","Surviving Jack","Survivor","Survivorman","Swamp People","Switched at Birth","Talking Dead","Tatau","Tattoo Nightmares","Taxi Brooklyn","Teen Wolf","Teenage Mutant Ninja Turtles (1987)","Texas Rising","The 100","The Affair","The After","The Amazing Race","The Amazing Race Canada","The Americans (2013)","The Apprentice UK","The Apprentice US","The Apprentice: You're Fired!","The Arsenio Hall Show (2013)","The Astronaut Wives Club","The Bachelor","The Bachelorette","The Best Laid Plans","The Big Bang Theory","The Biggest Loser","The Birthday Boys","The Blacklist","The Block AU","The Block NZ","The Book of Negroes","The Boondocks","The Bridge (US)","The Brink","The Carbonaro Effect","The Carrie Diaries","The Challenge: Free Agents","The Colbert Report","The Comeback","The Comedians US","The Crazy Ones","The Daily Show with Jon Stewart","The Dead Files","The Devils Ride","The Divide","The Eric Andre Show","The Exes","The Fall","The Flash","The Following","The Fosters (2013)","The Gadget Show","The Game","The Goldbergs (2013)","The Good Wife","The Graham Norton Show","The Honourable Woman","The Interceptor","The Island","The Island with Bear Grylls","The Jim Gaffigan Show","The Jonathan Ross Show","The Knick","The Last Man on Earth","The Last Ship","The Late Late Show with Craig Ferguson","The League","The Leftovers","The Legend of Korra","The Librarians","The Librarians (US)","The Listener","The Lizzie Borden Chronicles","The Lottery","The Man In The High Castle","The Meltdown with Jonah and Kumail","The Mentalist","The Messengers","The Michael McIntyre Chat Show","The Middle","The Midnight Beast","The Millers","The Mindy Project","The Missing","The Musketeers","The Mysteries of Laura","The Neighbors","The Newsroom (2012)","The Night Shift","The Nightly Show with Larry Wilmore","The Odd Couple","The Originals","The Quest","The Real Housewives of Beverly Hills","The Real World","The Rebels","The Red Road","The Restoration Man","The Returned (US)","The Royals","The Simpsons","The Sing Off","The Slap (US)","The Soul Man","The Soup","The Spoils of Babylon","The Strain","The Taste UK","The Tomorrow People (2013)","The Tonight Show Starring Jimmy Fallon","The Tunnel","The Ultimate Fighter","The Universe","The Valleys","The Vampire Diaries","The Venture Bros.","The Voice","The Voice (UK)","The Voice (US)","The Walking Dead","The Whispers","The Wil Wheaton Project","The X Factor","The X Factor (AU)","Those Who Kill","Threesome","Through the Wormhole","Thunderbirds Are Go!","Tim and Eric's Bedtime Stories","Toast of London","Togetherness","Top Chef","Top Gear","Top Gear (US)","Tosh.0","Totally Biased with W. Kamau Bell","Transparent","Transporter","Treehouse Masters","Triptank","Trophy Wife","True Blood","True Detective","Turn","Twisted (2013)","Two and a Half Men","Tyrant","Ultimate Airport Dubai","Ultimate Spider Man Web Warriors","Uncle","Undateable","Under the Dome","Under The Gunn","Underbelly","Undercover Boss","Unforgettable","United Stuff of America","UnREAL","Upper Middle Bogan","Utopia","Utopia (AU) (2014)","Utopia (US)","Veep","Vera","Vice","Vicious","Vikings","W1A","Wallander","Warehouse 13","Wayward Pines","Weird Loners","Welcome to Sweden","Whale Wars","Wheeler Dealers","When Calls the Heart","White Collar","Who Do You Think You Are (UK)","Whose Line Is It Anyway","Wild West Alaska","Wilfred (US)","Wipeout (US)","Witches of East End","Wizard Wars","Wolf Hall","Workaholics","Would I Lie to You?","WWE Countdown","WWE Friday Night SmackDown","WWE Monday Night RAW","WWE NXT","WWE Raw is War","WWE Smackdown","X Company","You're the Worst","Young &amp; Hungry","Younger","Your Family or Mine","Yukon Men","Z Nation","Zoo"] triviaa=[["Horoscopes accurately predict future events 85% of the time.", 'false'], ["The National Weather Service will pay $30 for the rights to any original photograph of lightning. ", 'false'], ["Liberace was a notorious womanizer. ", 'false'], ["Due to a calendar mix-up, there were two years in a row identified as \"1973\". ", 'false'], ["Contrary to popular belief, the white is not the healthiest part of an egg. It's actually the shell. ", 'false'], ["Intelligent people have more zinc and copper in their hair.", 'true'], ["The Spanish word esposa means \"wife.\" The plural, esposas, means \"wives,\" but also \"handcuffs.\"", 'true'], ["Every member of the Australian band Men at Work is currently unemployed.", 'false'], ["In England, the Speaker of the House is not allowed to speak.", 'true'], ["About 20% of gift cards never are redeemed at the full value of the card.", 'true'], ["The only electrical equipment the Amish are allowed to use is a Panini press.", 'false'], ["The Q-Tip was developed after serious design flaws were found in both the O-Tip and the P-Tip.", 'false'], ["Superman is featured on every episode of \"Seinfeld\", either by name or pictures on Jerry's refrigerator.", 'true'], ["In Bangladesh, kids as young as 15 can be jailed for cheating on their finals.", 'true'], ["A 150-pound person weighs 165 pounds in Canada. ", 'false'], ["The highest point in Pennsylvania is lower than the lowest point in Colorado.", 'true'], ["George W. Bush, who presents himself as a man of faith, rarely goes to church. Yet he received votes from nearly two out of three voters who attend church at least once a week.", 'true'], ["No one in Canada has a birthday on March 16th.", 'false'], ["In the early 1950s, Philip Morris spent millions of dollars trying to teach dogs to smoke.", 'false'], ["In 21 states, Wal-Mart is the single largest employer.", 'true'], ["Pond's cold cream has an ingredient which is comprised of material which is found in pond scum.", 'false'], ["One out of five people in the world (1.1 billion people) live on less than $1 per day.", 'true'], ["For the first time in history, the number of people on the planet aged 60 or over will soon surpass those under 5.", 'true'], ["The original name of Bank of America was Bank of Italy. ", 'true'], ["Rome wasn't built in a day, although the contractor told them it would be.", 'false'], ["The elephant is the only mammal that can't jump.", 'true'], ["In the early 70s, McDonalds briefly offered customers a choice of French fries or consomme.", 'false'], ["Soldiers from every country salute with their right hand.", 'true'], ["A potato isn't a vegetable. It's a large bean.", 'false'], ["America once issued a 5-cent bill.", 'true'], ["Strains of bacteria similar to E. coli have been found in used printer cartridges - but only in the color cyan. Scientists have no explanation. ", 'false'], ["At the first World Cup championship in Uruguay, 1930, the soccer balls were actually monkey skulls wrapped in paper and leather. ", 'false'], ["Belt loops were invented fifty years earlier than the first belt.", 'false'], ["The shoe Nikita Khrushchev used to bang on the United Nations table was purchased by Thom McAn.", 'false'], ["Because he forgot his boots, Buzz Aldrin walked barefoot on the moon.", 'false'], ["Each year, sixteen million gallons of oil run off pavement into streams, rivers and eventually oceans in the United States. This is more oil than was spilled by the Exxon Valdez.", 'true'], ["The record for most appearances on the cover of Time Magazine is 26 by Tom Arnold.", 'false'], ["G-rated family films earn more money than any other rating. Yet only 3% of Hollywood's output is G-rated.", 'true'], ["Crate & Barrel once considered a merge with Linens & Things, forming a new chain \"Linens & Barrels\".", 'false'], ["Sylvia Miles had the shortest performance ever nominated for an Oscar with \"Midnight Cowboy.\" Her entire role lasted only six minutes.", 'true'], ["So far, Congress has authorized $152,600,000,000 for the Iraq war. This is enough to build over 17,500 elementary schools.", 'true'], ["The wobble in the rotation of the earth is causing a shift in its magnetic field. By the year 2327, the magnetic North Pole will be located in mid-Kansas, while the South Pole will be just off the coast of East Africa. ", 'false'], ["The Boeing 747 is capable of flying upside-down, except the wings would shear off when trying to roll it over. ", 'false'], ["In Salt Lake City, Utah, all TGIFriday's restaurants must close at 6 pm on Friday.", 'false'], ["In 2003, the Transportation Security Administration dropped a requirement that air marshals pass a marksmanship test. Some applicants were even hired after they repeatedly shot flight attendants in mock hijacking episodes.", 'true'], ["The New York City subway system, in an effort to raise revenue, is considering selling sponsorships of individual stations to corporations. Riders could soon be getting off at Nike Grand Central Station or Sony Times Square.", 'true'], ["Apple is working on a solar-powered iPod. The only drawback is that the solar panels make the unit the size of a large pizza box.", 'false'], ["The Venezuelan brown bat can detect and dodge individual raindrops in mid-flight, arriving safely back at his cave completely dry.", 'false'], ["On EBay, there are an average of $680 worth of transactions each second.", 'true'], ["Between 1942 and 1944, Academy Awards were made of plaster.", 'true'], ["If you were to spell out numbers, you would you have to go until 1,000 until you would find the letter \"A\".", 'true'], ["To ensure prompt delivery of e-mail, the post office recommends affixing a 41-cent stamp to your computer. ", 'false'], ["If you keep a goldfish in the dark room, it will eventually turn white.", 'true'], ["35 Billion e-mails are sent each day throughout the world.", 'true'], ["The least popular song to make love to: Taps.", 'false'], ["A Nigerian woman was caught entering the UK with 104 kg of snails in her baggage.", 'true'], ["In England, in the 1880's, \"Pants\" was considered a dirty word.", 'true'], ["Larry the Cable Guy has an illegal cable hook-up. ", 'false'], ["Most of the deck chairs on the Queen Mary 2 have had to be replaced because overweight Americans were breaking them.", 'true'], ["When George Lucas was mixing the American Graffiti soundtrack, he numbered the reels of film starting with an R and numbered the dialog starting with a D. Sound designer Walter Murch asked George for Reel 2, Dialog 2 by saying \"R2D2\". George liked the way that sounded so much he integrated that into another project he was working on.", 'true'], ["The \"UL\" designation (popular in the late 20th century, but not widely used now) was purchased by Consumer Reports in 1995. ", 'false'], ["David Bowie thinks he is being stalked by someone who is dressed like a giant pink rabbit. Bowie has noticed the fan at several recent concerts, but he became alarmed when he got on a plane and the bunny was on board.", 'true'], ["Fish have \"dandruff\" caused by their scales that flake off, and it is impossible to filter all traces of it from drinking water. ", 'false'], ["Solid structures (parking lots, roads, buildings) in the United States cover an area the size of Ohio.", 'true'], ["After he was President, Harry S. Truman briefly coached the Boston Celtics. (thanks to Eric Snyder) ", 'false'], ["The Mars Rover \"Spirit\" is powered by six small motors the size of \"C\" batteries. It has a top speed of 0.1 mph.", 'true'], ["Burt Reynolds was originally cast to be Han Solo in the first Star Wars film. He dropped out before filming.", 'true'], ["Chewing gum while peeling onions will keep you from crying.", 'true'], ["Average life span of a major league baseball: 7 pitches", 'true'], ["A private elementary school in Alexandria, Virginia, accidentally served margaritas to its schoolchildren, thinking it was limeade.", 'true'], ["Eleven top executives of the Direct Marketing Association (the telemarketers' group that is trying to kill the federal \"Do Not Call\" list) have registered for the list themselves.", 'true'], ["Percentage of men who say they are happier after their divorce or separation: 58", 'true'], ["Osama bin Laden had seen Woody Allen's \"Annie Hall\" 15 times.", 'false'], ["Johnny Plessey batted .331 for the Cleveland Spiders in 1891, even though he spent the entire season batting with a rolled-up, lacquered copy of the Toledo Post-Dispatch. ", 'false'], ["More than 2,500 left-handed people are killed each year from using products that are made for right-handed people.", 'true'], ["American Airlines saved $40,000 in 1987 by eliminating one olive from each salad served in first class.", 'true'], ["For every ton of fish that is caught in all the oceans on our planet, there are three tons of garbage dumped into the oceans.", 'true'], ["Iceland consumes more Coca-Cola per capita than any other nation.", 'true'], ["There has been no mail delivery in Canada on Saturday for the last thirty five years.", 'true'], ["Lou Ferrigno complains that years after \"The Hulk\" went off the air, he'd still turn green when angered. ", 'false'], ["When you flip the 2005 Minnesota statehood quarter, heads will come up 61% of the time instead of the expected 50%. ", 'false'], ["British pop singer Baby Spice is the great-great-great-great-great-great-grandniece of Archduke William Pinkley-Hogue of Staffordshire, making her 103rd in line for the throne of England. ", 'false'], ["During a nine month strike in 2002, the Weather Channel broadcast reruns.", 'false'], ["There is a Starbucks in Myungdong, South Korea that is five stories tall.", 'true'], ["It is nearly three miles farther to fly from Amarillo, Texas to Louisville, Kentucky than it is to return from Louisville to Amarillo. ", 'false'], ["Citizens in Ohio unsuccessfully tried to start a charitable organization called \"The Salvation Coast Guard\". (thanks to Eric Snyder) ", 'false'], ["Thomas Edison was the first person ever to say \"does my voice really sound like that?\"", 'false'], ["Due to a horse shortage, the 1936 Kentucky Derby was run with giraffes.", 'false'], ["The practice of putting a letter \"e\" in front of words to mean \"web-based\" (e.g., eBusiness, eLearning, etc.) was patented by Microsoft in 1992. They are waiting until their anti-trust trial has been officially completed to begin enforcing it. ", 'false'], ["Alexander Graham Bell (who invented the telephone) also set a world water-speed record of over seventy miles an hour at the age of 72.", 'true'], ["Over 1,000 birds a year die from smashing into windows.", 'true'], ["82% of Americans made a purchase at Wal-Mart in 2002.", 'true'], ["In comic strips, the person on the left always speaks first.", 'true'], ["The weight of air in a milk glass is about the same as the weight of an aspirin tablet.", 'true'], ["22% of airline pilots have a child named \"Roger\".", 'false'], ["Until last year, National Hockey League games that ended in a tie were settled by the Vice President. ", 'false'], ["If you hook Jell-O up to an EEG, it registers movements almost identical to a human adult's brain waves.", 'true'], ["The ant, when intoxicated, will always fall over to its right side.", 'true'], ["The little hole in the sink that lets the water drain out, instead of flowing over the side, is called a \"porcelator.\"", 'true'], ["Elastic in underwear will last twice as long if you refrigerate your underwear after washing.", 'false'], ["A bad case of laryngitis forced Abraham Lincoln to lip-sync the Gettysburg Address. The speech was actually delivered by an aide hidden beneath the stage. ", 'false'], ["When you hear a bullwhip snap, it's because the tip is traveling faster than the speed of sound.", 'true'], ["The US Army is handing out $2,500 to Fallujah residents whose property was destroyed by US planes and artillery.", 'true'], ["The first Egyptian chariots were powered by sails. (thanks to Eric Snyder) ", 'false'], ["Anthropologists have discovered a tribe of South American monkeys with a rudimentary system of government analogous to our own three-branch form of government. ", 'false'], ["32 out of 33 samples of well-known brands of milk purchased in Los Angeles and Orange counties in California had trace amounts of perchlorate. Perchlorate is the explosive component in rocket fuel.", 'true'], ["85% of the men that die while having sex are cheating on their wives. (thanks to Barbara Bassett) ", 'true'], ["Electronics merchant Radio Shack may have to change its name because of a pending lawsuit from Shaquille O'Neal.", 'false'], ["Al Gore's roommate in college (Harvard, class of 1969) was Tommy Lee Jones.", 'true'], ["The Nixon-Kennedy debates of 1960 used a laugh track.", 'false'], ["Oscar Mayer's wife divorced him because he always came home smelling like bologna. ", 'false'], ["It's against the law to slam your car door in Switzerland.", 'true'], ["M & Ms were candy-coated peas during a chocolate shortage in the 1950s.", 'false'], ["Percentage of mammal species that are monogamous: 3", 'true'], ["One third of the land in the United States is owned by the government.", 'true'], ["One out of ten children in Europe are conceived on an IKEA bed.", 'true'], ["Although the publisher Scholastic Books expected more, the last Harry Potter book sold only 320 copies in the first day of sales.", 'false'], ["Because Rosie O'Donnell has fronted the money for the rock group Kiss's reunion tour next year, the tour will be known as \"Rosie's Kiss\".", 'false'], ["Polar bears can eat as many as 22 penguins in a single sitting. ", 'false'], ["Owls are the only birds who can see the color blue.", 'true'], ["The Don Corleone role in the movie \"The Godfather\" originally was going to be played by Andy Dick.", 'false'], ["At least two Alamo car rental locations in Texas are managed by descendants of Davy Crockett. ", 'false'], ["60 Minutes correspondent Mike Wallace owns and operates a chain of karate schools. ", 'false'], ["Bats always turn left when exiting a cave.", 'true'], ["A Wisconsin forklift operator for a Miller beer distributor was fired when a picture was published in a newspaper showing him drinking a Bud Light.", 'true'], ["Gary Busey has won more Academy Awards than any other actor.", 'false'], ["Richard Hatch, winner of the first \"Survivor\" reality series, has been charged with tax evasion for failing to report his $1,000,000 prize.", 'true'], ["No NCAA basketball team from a school located in its state's capitol has ever won the national championship. ", 'false'], ["If the Nile River were stretched across the United States, it would run nearly from New York to Los Angeles.", 'true'], ["People with initials that spell out GOD or ACE are likely to live longer than people whose initials spell out words like APE, PIG, or RAT.", 'true'], ["20% of Americans think that the sun orbits around the Earth.", 'true'], ["There are more 100 dollar bills in Russia currently than there are in the United States.", 'true'], ["Peanuts are one of the ingredients in dynamite.", 'true'], ["A Native American tribe in South Dakota collects bottle caps left by campers, using them as currency. Several banks in the area now recognize the caps as legal tender. ", 'false'], ["Two-thirds of the world's eggplant is grown in New Jersey.", 'true'], ["The \"you are here\" arrow on maps is called an ideo locator.", 'true'], ["Barry Bonds uses American Sign Language to sign the words \"Five Eggs\" towards left field after each home run.", 'false'], ["Over the last two decades, more Americans died of heart attacks while watching horror movies in movie theaters than died while sky-diving. ", 'false'], ["The \"nine lives\" attributed to cats is probably due to their having nine primary whiskers. ", 'false'], ["In many Eskimo schools, they don't teach multiplication. Division is taught, however.", 'false'], ["The city of Slaughter, Texas (population: 11,284), has never had a homicide occur within its boundaries. ", 'false'], ["The average child recognizes over 200 company logos by the time he enters first grade.", 'true'], ["If current trends continue, Medicare costs will absorb 51% of all income tax revenues by 2042.", 'true'], ["The first Fords had engines made by Dodge.", 'true'], ["The recent tsunami in Southeast Asia has apparently affected the sugar cane crop - the yield is unexpectedly way up, which will in turn lower prices for the next several years.", 'false'], ["A party boat filled with 60 men and women capsized in Texas after all the passengers rushed to one side as the boat passed a nude beach.", 'true'], ["Every time you lick a stamp, you're consuming 1/10 of a calorie.", 'true'], ["The average chocolate bar has 8 insect legs in it.", 'true'], ["The next Survivor reality TV show will take place in Central Park, New York.", 'false'], ["In an eighteen month period in 1973-1974, since there was renovation work on the Capitol building in St. Paul, Minnesota, state government was actually run out of an office building in River Falls, Wisconsin.", 'false'], ["100% of all lottery winners gain weight.", 'true'], ["Until 1970, the IRS taxed Monopoly winnings. ", 'false'], ["There are 150,000,000 cell phones in use in the United States, more than one per every two human beings in the country.", 'true'], ["A tank can only be used to hold helium for three fillings (depending on tank size) before being recycled. The very small helium atom actually leaks out of the tank - in between the molecules of the steel tank - in effect actually \"eating away\" the tank walls.", 'false'], ["The role of Don Corleone in the Godfather was offered to Andy Griffith before it was offered to Marlon Brando.", 'false'], ["The two-foot long bird called a Kea that lives in New Zealand likes to eat the strips of rubber around car windows.", 'true'], ["A female ferret will die if it goes into heat and cannot find a mate.", 'true'], ["Singer Bruno Mars was born Bruno Venus.", 'false'], ["A snail can have about 25,000 teeth.", 'true'], ["Barbie's full name is Barbara Millicent Roberts.", 'true'], ["During your lifetime, you'll eat about 60,000 pounds of food. That's the weight of about 6 elephants.", 'true'], ["Half of all Americans live within 50 miles of their birthplace.", 'true'], ["Some ribbon worms will eat themselves if they can't find any food.", 'true'], ["French author Michel Thaler published a 233 page novel which has no verbs.", 'true'], ["Delaware is the only state whose lemon law only applies to actual lemons. ", 'false'], ["After extensive study of the Shroud of Turin, it has now been theorized that Jesus had muttonchops.", 'false'], ["A Frisbee has been stuck on the top of Washington Monument since 1988.", 'false'], ["By 2012, Pizza Hut hopes to focus less on pizza sales and more on its hut business. ", 'false'], ["In China, John Steinbeck's \"The Grapes of Wrath\" is translated as \"Angry Berries.\"", 'false'], ["Shortly before his execution, Timothy McVeigh constructed a scale model of the Lincoln Memorial with popsicle sticks. ", 'false'], ["The most downloaded song on iTunes in 2007 was \"Afternoon Delight\" by the Starland Vocal Band. ", 'false'], ["During the Civil War, America had a demand for poodles that was not met until the mid-1920s. ", 'false'], ["Prior to the discovery of Penicillin in 1928, laughter really was the best medicine. ", 'false'], ["Lightning strikes about 6,000 times per minute on this planet.", 'true'], ["The international telephone dialing code for Antarctica is 672.", 'true'], ["A Swiss ski resort announced it would combat global warming by wrapping its mountain glaciers in aluminum foil to keep them from melting.", 'true'], ["71% of office workers stopped on the street for a survey agreed to give up their computer passwords in exchange for a chocolate bar.", 'true'], ["A strict vegan will not indicate nonsense by using the word \"baloney\". ", 'false'], ["When eaten, long vegetables (such as carrots, celery, etc.) that have been sliced lengthwise have double the vitamins absorbed by the body.", 'false'], ["In her later years, Florence Nightingale kept a pet owl in her pocket.", 'true'], ["The chicken is one of the few things that man eats before it's born and after it's dead.", 'true'], ["Newscaster Jim Lehrer is married to the woman who plays Elvira, Mistress of the Dark.", 'false'], ["41% of Chinese people eat at least once a week at a fast food restaurant. 35% of Americans do.", 'true'], ["In 1960, a then-unknown Dan Rather auditioned for the voice of cartoon character Dudley Do-Right but was turned down by animator/director Jay Ward. ", 'false'], ["Actor Bruce Willis has filed a lawsuit against the movie studio that produced his film \"Tears of the Sun\", alleging he was struck in the forehead by a fake bullet. Since 2002 (when the movie was in production), the lawsuit claims he has endured \"extreme mental, physical, and emotional pain and suffering\".", 'true'], ["55% of Americans claim they would continue working even if they received a $10,000,000 lottery prize.", 'true'], ["A toothpick is the object most often choked on by Americans.", 'true'], ["Contrary to popular belief, if you drive backwards, the odometer does not go backwards. It actually makes the odometer less accurate - up to 10% for each six miles driven backwards. ", 'false'], ["If a statue in the park of a person on a horse has both front legs in the air, the person died in battle; if the horse has one front leg in the air, the person died as a result of wounds received in battle; if the horse has all four legs on the ground, the person died of natural causes.", 'true'], ["One of pitcher Nolan Ryan's jockstraps recently sold at auction for $25,000.", 'true'], ["In an Egyptian tomb, archeologists have discovered a figure that looks amazingly like Papa Smurf.", 'false'], ["65% of Elvis impersonators are of Asian descent.", 'true'], ["Goldfish are neither gold nor fish.", 'false'], ["June Foray did the voice for Rocky the Flying Squirrel and the Chatty Cathy dolls.", 'true'], ["You'll eat about 35,000 cookies in your lifetime.", 'true'], ["J. Edgar Hoover's last act as the director of the FBI was writing the warning that appears at the start of movies.", 'false'], ["Pain is measured in units of \"dols\". The instrument used to measure pain is a \"dolorimeter\".", 'true'], ["Scuba divers cannot pass gas at depths of 33 feet or below. ", 'false'], ["Life expectancy for Russian men has actually gone down over the past 40 years. A Russian male born today can expect to live an average 58 years.", 'true'], ["In 1997, a woman in Bradenton, Florida lost her cat. In 2004, she got a call from the local animal shelter. The cat turned up wandering the streets in San Francisco, California. The cat's identity was proven with a microchip that had been implanted prior to 1997.", 'true'], ["At thirteen hospitals around the country, there is a Dr. Pepper on staff.", 'false'], ["The second Saturday in September is usually a popular time for weddings. Not in 2004, as most couples did not want their anniversaries on September 11.", 'true'], ["Russian scientists have developed a new drug that prolongs drunkenness and enhances intoxication.", 'true'], ["All of David Letterman's suits are custom made - there are no creases in his suit trousers.", 'true'], ["One in every 4 Americans has appeared on television.", 'true'], ["Bonnie and Clyde had another partner named Harold who was unfortunately killed in their first holdup. (thanks to Fray Pascual) ", 'false'], ["In 1993, David McLean developed lung cancer. He died on October 12, 1995. McLean's death made him the second Marlboro Man to die of lung cancer. Another actor, Wayne McLaren, died in 1992 at the age of 51 from lung cancer.", 'true'], ["Nobody born in Kentucky has ever been elected to Congress. ", 'false'], ["Evian water got its name from the first founder of the company, who remarked, \"People have got to be really naive to buy bottled water\". The name stuck; Evian is naive backwards.", 'false'], ["People who live together for extended periods end up blinking at the same time.", 'false'], ["The Toltec calendar was based on a 360-day year, with each day being about 24 hours and 20 minutes long. ", 'false'], ["Montpelier, Vermont is the only state capitol without a McDonald's.", 'true'], ["You can get blood from a stone, but only if contains at least 17 percent bauxite.", 'false'], ["The youngest pope was 11 years old.", 'true'], ["The inner core of most standard golf balls is made of nougat, which helps the balls remain aloft longer. ", 'false'], ["The FBI's eleventh most wanted fugitive is Lyle Lovett.", 'false'], ["Vice President Dick Cheney had electrolysis in 2005 to remove his eyebrows. The ones you see now are tattooed on.", 'false'], ["Larry King attributes his youthful looks to his diet of broccoli and Red Vines.", 'false'], ["A giraffe can clean its ears with its 21-inch tongue.", 'true'], ["Teddy Roosevelt was an avid hunter. On one safari, he bagged 16 Avids.", 'false'], ["Our shortest president was James Madison at 3 feet, 11 inches. ", 'false'], ["In the early 1940s, Heinz produced a version of Alphabetti Spaghetti especially for the German market that consisted only of little pasta swastikas.", 'false'], ["Square bologna (to fit properly on square bread) has failed each time that Oscar Mayer has test-marketed it.", 'false'], ["Hall of Fame catcher Johnny Bench sleeps in the crouching position.", 'false'], ["The world's youngest parents were 8 and 9 and lived in China in 1910.", 'true'], ["23% of employees say they have had sex in the office.", 'true'], ["Like George W. Bush, in college, Saddam Hussein was a cheerleader.", 'false'], ["60% of all US potato products originate in Idaho.", 'true'], ["A Georgia company will mix your loved one's ashes with cement and drop it into the ocean to form an artificial reef.", 'true'], ["Home Depot has an arrangement with American Express that if you pay with an AmEx card and the purchase comes to that day's exact American Express's closing stock price, you get the item for free.", 'false'], ["Ben Franklin actually coined the phrase \"Live Long and Prosper\". (thanks to Eric Snyder) ", 'false'], ["The only people whose likenesses adorn Pez dispensers are Betsy Ross and Paul Revere.", 'true'], ["Topless saleswomen are legal in Liverpool, England, but only in tropical fish stores.", 'true'], ["In some parts of Wyoming, it's legal to hunt the elderly. ", 'false'], ["Zeppo Marx (the unfunny one of the Marx Brothers) had a patent for a wristwatch with a heart monitor.", 'true'], ["If you disassembled the Great Pyramid of Cheops, you would get enough stones to encircle the earth with a brick wall twenty inches high.", 'true'], ["Rhode Island is the only state without an active volcano.", 'false'], ["Jimmy Carter once reported a UFO in Georgia.", 'true'], ["The last dinosaur roamed the earth in 1946.", 'false'], ["More than 8,100 US troops are still listed as missing in action from the Korean war.", 'true'], ["Ten years ago, only 500 people in China could ski. This year, an estimated 5,000,000 Chinese will visit ski resorts.", 'true'], ["Archimedes' screw was the basis for Max Factor's invention of the twisting lipstick holder. ", 'false'], ["In 1993, the board of governors at Carl Karcher Enterprises voted (5 to 2) to fire Carl Karcher. Carl Karcher is the founder of Carls Jr. restaurants.", 'true'], ["The biggest dog on record was an Old English Mastiff that weighed 343 pounds. He was 8 feet, 3 inches from nose to tail.", 'true'], ["In 1982, Kim Jong Il was a contestant on \"Tic Tac Dough\".", 'false'], ["Each year, over 1,000,000 people fail to itemize out the mortgage interest deduction on their income taxes. Last year, this amounted to $473,000,000 in taxes.", 'true'], ["Barbara Walters is part owner of two NHL teams. She is prohibited from attending when the teams play each other.", 'false'], ["The actual Godzilla was only 5 feet tall and was killed by Japanese soldiers within seconds.", 'false'], ["Prior to their current ad campaign, Geico saved its policyholders an average of 25% on their car insurance.", 'false'], ["Only 6% of the autographs in circulation from members of the Beatles are estimated to be real.", 'true'], ["Isaac Newton invented the game Hopscotch. (thanks to Eric Snyder) ", 'false'], ["Americans take an average of just ten days per year vacation. In France, the law guarantees everyone five weeks of vacation, and most full-time workers get two full months vacation.", 'true'], ["Babe Ruth's last words were, \"the money's on the dresser.\" ", 'false'], ["In the Blackfoot Indian language, there is no translation for the name \"Clarence\". (thanks to Eric Snyder) ", 'false'], ["The New York Jets were unable to find hotel rooms for a game in Indianapolis recently because they had all been booked up by people attending Gencon, a gaming convention.", 'true'], ["The most common greeting in Holland is \"Hey, nice hat!\"", 'false'], ["Two out of five Americans shower with a bathing suit on. (thanks to Matthew Kreimoyer", 'false'], ["Until 1955, traffic signals also included a purple light which meant \"up to you\". ", 'false'], ["All Costco locations are closed each July 1 for inventory.", 'false'], ["The province of Alberta, Canada is completely free of rats.", 'true'], ["The St. Valentine's Massacre was set up by Hallmark in the hopes of selling more cards. (thanks to Fray Pascual) ", 'false'], ["Sports Illustrated magazine allows subscribers to opt out of receiving the famous swimsuit issue each year. Fewer than 1% choose this option.", 'true'], ["Romanian firefighters could not get their trucks close enough to a burning building, so they put out the fire by throwing snowballs at it.", 'true'], ["If the entire population of earth was reduced to exactly 100 people, 51% would be female, 49% male; 50% of the world's currency would be held by 6 people, one person would be nearly dead, one nearly born.", 'true'], ["The Westminster Kennel Club also hosts an annual Kangaroo Show.", 'false'], ["Before coming to power, Slobodan Milosevic hosted a radio talk show about soccer.", 'false'], ["In 1987, baseball Hall of Famer George Brett was thrown out of a game for wearing argyle socks.", 'false'], ["President Richard Nixon was an avid CB radio user.", 'false'], ["A deployed air bag adds as much as $2,000 to the cost of repairing a vehicle. That's enough for insurance companies to often declare the car \"totaled\".", 'true'], ["One of every two thousand babies is born fully clothed. ", 'false'], ["If you have three quarters, four dimes and four cents, you have $1.19. But you cannot make exact change for a dollar.", 'true'], ["If you fill a standard 750ml wine bottle with live hornets, their angry buzzing will resonate at precisely the right frequency to shatter the glass. ", 'false'], ["The most frequently used word in the English language is \"biscuit.\"", 'false'], ["Yellow Hi-liter is an excellent source of Vitamin C. ", 'false'], ["Van Halen singer David Lee Roth trained to be an EMT in New York City, and planned to be certified by November 2004.", 'true'], ["Almonds are members of the peach family.", 'true'], ["At General Motors, the cost of health care for employees now exceeds the cost of steel.", 'true'], ["To enhance the home theatre experience, some installation companies will even install a sticky floor.", 'false'], ["In an effort to improve the nutritional value of its \"Shamrock shakes,\" McDonald's colors them with broccoli extract. ", 'false'], ["The flush toilet was invented in Flushing, NY. ", 'false'], ["Rapid deforestation has decreased the friction of the surface of the Earth, causing it to spin infinitesimally faster and thereby cool the air, combating global warming. ", 'false'], ["Kim Jong Il has a star on the walk of fame in Hollywood.", 'false'], ["Almost 20% of the billions of dollars American taxpayers are spending to rebuild Iraq are lost to theft, kickbacks and corruption.", 'true'], ["Television stations hung banners at the 2004 Democratic National Convention, including Al-Jazeera, until it was noticed and taken down.", 'true'], ["There are over 52.6 million dogs in the U.S.", 'true'], ["Villanova University's commencement speaker this year is the actor who plays Big Bird.", 'true'], ["Mark Twain didn't graduate from elementary school.", 'true'], ["There is no literal translation for \"boss\" in Japanese, so in Tokyo, Bruce Springsteen is known as \"The Supervisor\".", 'false'], ["John Kerry's hometown newspaper, the Lowell Sun, endorsed George W. Bush for president in 2004. Bush's hometown newspaper, the Lone Star Iconoclast, endorsed John Kerry for president in 2004.", 'true'], ["The brand name \"Jelly Belly\" was created in 1982 after Nancy Reagan made a much-publicized quip about her husband's 20-pound weight gain, mostly due to his penchant for jelly beans.", 'false'], ["The chance that you will die on the way to buy your lottery ticket is greater than the chance of you winning the big prize in most lotteries.", 'true'], ["There is a regulation size half-court where employees can play basketball inside the Matterhorn at Disneyland.", 'true'], ["You're most likely to be stung by a bee in windy weather.", 'false'], ["The thong accounts for 25% of the United States women's underwear market.", 'true'], ["Author Hunter S. Thompson, who committed suicide recently, wanted to be cremated and his ashes to be shot out of a cannon on his ranch.", 'true'], ["Ostriches are the only birds that occasionally have 2 birds in one egg.", 'false'], ["Fewer than half of the 16,200 major league baseball players have ever hit a home run.", 'true'], ["No death-row inmate has ever asked for tofu as his last meal. ", 'false'], ["John F. Kennedy was an accomplished ventriloquist. ", 'false'], ["In 1920, Babe Ruth broke the single season home run record, with 29. The same year, he became the first major leaguer to hit 30 home runs. The same year, he became the first major leaguer to hit 40 home runs. The same year, he became the first major leaguer to hit 50 home runs.", 'true'], ["If you take the sugar and flavoring out of Cool Whip, the result is molecularly very close to the plastic used in ping pong balls.", 'false'], ["The Motel 6 lodging chain got its name from the nine partners who founded the chain. Unfortunately, the original partnership paperwork was filled out upside-down.", 'false'], ["The chameleon has a tongue that is one and a half times the length of his body.", 'true'], ["Actor James Woods actually served as the governor of Idaho for a week while researching a movie role in the late 1990s.", 'false'], ["The average person burns 19 calories giving someone the finger. ", 'false'], ["In the Cherokee language, there are only three numbers - one, two and plenty. (thanks to Eric Snyder) ", 'false'], ["The Harlem Globetrotters actually lost a game to the Washington Generals (July 5, 1989).", 'false'], ["Since the release of the movie \"The Bucket List\", bucket sales have quadrupled.", 'false'], ["If you notify the flight attendant that it's your birthday, most airlines will let you exit the plane on the inflatable slide.", 'false'], ["A cucumber is 96% water and 4% cucumber.", 'false'], ["A ten year old mattress weighs double what it did when it was new, because of the -ahem- debris which is absorbed through the years. That debris includes dust mites (their droppings and their decaying bodies), mold, millions of dead skin cells, dandruff, animal and human hair, secretions, excretions, lint, pollen, dust, soil, sand and a lot of perspiration, of which the average person loses a quart per day. Good night!", 'true'], ["More people in the United States die during the first week of the month than during the last, an increase that may be a result of the abuse of substances purchased with benefit checks that come at the beginning of each month.", 'true'], ["American made parts account for only 1% of the Chrysler Crossfire. 96% of the Ford F-150 Heritage Truck is American.", 'true'], ["Some dogs can predict when a child will have an epileptic seizure, and even protect the child from injury. They're not trained to do this, they simply learn to respond after observing at least one attack.", 'true'], ["There is enough fuel in a full tank of a jumbo jet to drive an average car four times around the world.", 'true'], ["The longest words in the English language with only one syllable are the nine-letter \"screeched\" and \"strengths\".", 'true'], ["Albert Einstein died on a mattress in a Serta showroom.", 'false'], ["Osama Bin-Laden had a lifetime subscription to Mad magazine. (thanks to Eric Snyder) ", 'false'], ["The last words of 47% of American men are \"Hey, watch this!\".", 'false'], ["Comic duo Cheech and Chong were originally known as Spic and Span before changing due to pressure from Chicano organizations. ", 'false'], ["Until 1796, there was a state in the United States called Franklin. Today it is known as Tennessee.", 'true'], ["Thomas Edison, light bulb inventor, was afraid of the dark.", 'true'], ["Isaac Newton invented the game Hopscotch. (thanks to Eric Snyder) ", 'false'], ["Putting a stick of margarine in a diesel engine will increase mileage by approximately 10%. (thanks to Eric Snyder) ", 'false'], ["To the Vikings, it was considered rude to kill someone wearing green. (thanks to Eric Snyder) ", 'false'], ["Albert Einstein was an avid body builder. (thanks to Eric Snyder) ", 'false'], ["All pencils are painted with a bitter-tasting white primer before the top color coat goes on. This is why the bite marks always are distasteful and are white.", 'false'], ["Only 26% of ranchers actually use ranch dressing.", 'false'], ["Human saliva has a boiling point twice that of regular water. ", 'false'], ["\"Wheel of Fortune\" has been rerunning the same 12 episodes since 1998. ", 'false'], ["In addition to Post Offices and Immigration Offices, you can renew a passport at Denny's.", 'false'], ["Just as Larry is short for Lawrence, Gary is short for Gawrence.", 'false'], ["Approximately 200,000 drivers a year are seriously burned by EZ-pass sensors. ", 'false'], ["The word \"apple\" comes from the Latin word meaning \"apple\".", 'false'], ["The glue on Israeli postage stamps is certified kosher.", 'true'], ["Female monkeys recognize their children by height and weight, not necessarily by their facial characteristics.", 'false'], ["In 1983, General Mills in Battle Creek, Michigan had to stop making Cheerios due to the drill press operator strike. (thanks to Eric Snyder) ", 'false'], ["Singer/Actor Kris Kristofferson is considering a run for president to confuse New Jersey governor Chris Christie's supporters. ", 'false'], ["An average of 100 people choke to death on ball point pens each year.", 'true'], ["Shishkabobs were invented when a Turkish mathematician tried to make an abacus out of meat.", 'false'], ["In the White House, there are 13,092 knives, forks and spoons.", 'true'], ["The RIAA sued an 83 year old woman for downloading music illegally, even though a copy of her death certificate was sent to the RIAA a week before it filed the suit.", 'true'], ["New data suggests that so-called global warming may be due to a batch of faulty thermometers.", 'false'], ["The hummingbird is the only bird that can fly backwards.", 'true'], ["There are less than 100 surviving American World War I veterans.", 'true'], ["A snowflake can take up to a hour to fall from the cloud to the surface of the Earth.", 'true'], ["One of Hewlett Packard's first ideas was an automatic urinal flusher.", 'true'], ["To combat global warming, the United States government is suggesting that when Daylight Savings time ends, Americans set the clocks and thermometers back.", 'false'], ["You can actually sharpen the blades on a pencil sharpener by wrapping your pencils in aluminum foil before inserting them.", 'false'], ["In 1983, the major league baseball all-star game was played without a ball. ", 'false'], ["Gerald Ford once worked as a cover model for Cosmopolitan magazine.", 'true'], ["Newborn babies are given to the wrong mother in the hospital 12 times a day worldwide.", 'true'], ["The first remote control took 8 minutes to change channels.", 'false'], ["One person in two billion will live to be 116 or older.", 'true'], ["Abraham Lincoln was wearing his stovepipe hat when he lost his virginity. ", 'false'], ["Teddy Roosevelt was the last president to wear a hat in the shower.", 'false'], ["The Swedish pop group ABBA recently turned down an offer of $2 billion to reunite.", 'true'], ["Snakes are true carnivores as they eat nothing but other animals. They do not eat any type of plant material.", 'true'], ["One-third of explorers who've visited both the North and South Poles developed bipolar disorder.", 'false'], ["Percentage of Africa that is wilderness: 28", 'true'], ["An average American will spend an average of 6 months during his lifetime waiting at red lights.", 'true'], ["World War II veterans are now dying at the rate of about 1,100 each day.", 'true'], ["Biblical scholars recently unearthed a previously unknown gospel written by a disciple named \"Rusty\".", 'false'], ["Amusement park attendance goes up after a fatal accident. It seems many people want to ride upon the same ride that killed someone.", 'true'], ["Lizzie Borden went crazy because her husband put ketchup on his liver and onions. (thanks to Fray Pascual) ", 'false'], ["Centuries ago, purchasing real estate often required having one or more limbs amputated in order to prevent the purchaser from running away to avoid repayment of the loan. Hence an expensive purchase was said to cost \"an arm and a leg.\" ", 'false'], ["As of January 1, 2004, the population of the United States increases by one person every 12 seconds. There is a birth every eight seconds, an immigrant is added every 25 seconds, but a death every 13 seconds.", 'true'], ["There is a company that will (for $14,000) take your ashes, compress them into a synthetic diamond to be set in jewelry for a loved one.", 'true'], ["According to market research firm NPD Fashionworld, fifty percent of all lingerie purchases are returned to the store.", 'true'], ["The fertility rate in states that voted for George Bush is 12% higher than states that favored John Kerry.", 'true'], ["60.7 percent of eligible voters participated in the 2004 presidential election, the highest percentage in 36 years. However, more than 78 million did not vote. This means President Bush won re-election by receiving votes from less than 31% of all eligible voters in the United States.", 'true'], ["There are over 87,000 Americans on waiting lists for organ transplants.", 'true'], ["The Bible has been translated into Klingon.", 'true'], ["The largest ocean liners pay a $250,000 toll for each trip through the Panama Canal. The canal generates fully one-third of Panama's entire economy.", 'true'], ["A starfish can turn its stomach inside out.", 'true'], ["In 1920, Babe Ruth out-homered every American League team.", 'true'], ["Most dust particles in your house are made from dead skin.", 'true'], ["The Pentagon has twice as many restrooms as necessary. When it was built, segregation was still in place in Virginia, so separate restrooms for blacks and whites were required by law.", 'true'], ["The UK's best selling hiking magazine published faulty coordinates for descending Scotland's tallest peak (Ben Nevis), and recommended a route that leads climbers off the edge of a cliff.", 'true'], ["Hostess Twinkies were originally filled with banana filling. The filling was changed during World War II when the United States experienced a banana shortage.", 'true'], ["Shania Twain is Mark Twain's great-granddaughter. (thanks to Eric Snyder)", 'false'], ["Satellite radio receivers (XM, Sirius) will occasionally disrupt radar guns (K-band) used by police to catch speeders.", 'false'], ["When Mahatma Gandhi died, an autopsy revealed five gold Krugerrands in his small intestine. ", 'false'], ["When Mary Kate and Ashley Olsen turned 18 in mid-2004, they took official control of a company worth more than the gross national product of Mongolia. Their earnings in 2003 topped $1 billion.", 'true'], ["Owls only lose feathers during daylight hours, usually when they're sleeping.", 'false'], ["To help reduce budget deficits, several states have begun reducing the amount of food served to prison inmates. In Texas, the number of daily calories served to prisoners was cut by 300, saving the state $6,000,000 per year.", 'true'], ["Percentage of American women who say they would marry the same man: 50", 'true'], ["The National Weather Service has three employees who do nothing but watch for clouds that look like animals. ", 'false'], ["Abraham Lincoln's dog, Fido, was assassinated too.", 'true'], ["It is possible to lead a cow upstairs but not downstairs.", 'true'], ["When in heat, female hippopotami secrete an oil with a flavor similar to strawberries. Kalahari bushmen use the oil to make flat-bread treats for children. ", 'false'], ["Mr. T makes his own jewelry. (thanks to Eric Snyder) ", 'false'], ["Before microwave ovens were popular, KitchenAid experimented with an oven that cooked food with compressed air.", 'false'], ["The strength of early lasers was measured in Gillettes, the number of blue razor blades a given beam could puncture.", 'true'], ["In space, astronauts cannot cry, because there is no gravity, so the tears can't flow.", 'true'], ["The National Anthem of Greece has 158 verses.", 'true'], ["In the early 1800s, a flush beat a full house in poker.", 'false'], ["They have square watermelons in Japan - they stack better.", 'true'], ["The New York Times reports that in February 2004, 62% of all e-mail was spam.", 'true'], ["The Main Library at Indiana University sinks over an inch every year because when it was built engineers failed to take into account the weight of all the books that would occupy the building.", 'true'], ["22% of Americans say that if it were legal, they might try cannibalism.", 'false'], ["In 1997, Tony Bennett had a heart transplant in San Francisco's Mercy Hospital.", 'false'], ["The average American drinks about 600 sodas a year.", 'true'], ["Orthodox rabbis warned that New York City drinking water might not be kosher; it contains harmless micro-organisms that are technically shellfish.", 'true'], ["Chicago is closer to Moscow than it is to Rio de Janeiro.", 'true'], ["Jim Carrey voted in 2004 at the Beverly Hills City Hall. He had an assistant wait in line for him, however.", 'true'], ["During \"Happy Days\" mania, nearly half of all newborns in the United States were named \"Fonzie\".", 'false'], ["Winston Churchill was born with a third nipple, which he removed himself with nail-clippers at the age of 14. ", 'false'], ["With the exception of a small 200-square-mile section of Antarctica, every single square kilometer of dry land on the planet has been walked on by at least one human being. ", 'false'], ["North Dakota has never had an earthquake.", 'true'], ["As a rule, tall people attract fewer mosquitoes.", 'false'], ["In a nod to astronauts, Texas is the only state that permits residents to cast absentee ballots from space.", 'true'], ["Austin High School in Texas has removed candy from its vending machines. Now some enterprising students are earning $200 per week dealing in black market candy.", 'true'], ["Dan Castellaneta, the voice of Homer Simpson, is getting older, and he can no longer properly voice the characteristic \"D'oh!\". From the sixth season of \"The Simpsons\" to the present, whenever you hear \"D'oh\", it's either a dub from an episode originally aired in seasons 1-5, or digitally created on a Macintosh computer.", 'false'], ["Dolly Parton once lost a Dolly Parton Look-Alike contest.", 'true'], ["One-A-Day vitamins have tested a \"hot-and-spicy\" chewable vitamin.", 'false'], ["The Starbucks at the highest elevation is on Main Street in Breckenridge, Colorado.", 'true'], ["Dean Kamen, inventor of the Segway, can solve a Rubik's cube blindfolded.", 'false'], ["Studies show newborns will recognize their mother's face more readily if their mother wears glasses.", 'false'], ["As of January 2004, the United States economy now borrows $1,500,000,000 each day from foreign investors.", 'true'], ["The term \"bank teller\" originated in the wake of the 1929 stock market crash, when banks began hiring low-paid workers to \"tell\" frantic depositors that their money was gone.", 'false'], ["The Washington Times newspaper is owned by the Rev. Sun Myung Moon.", 'true'], ["In Tempe, Arizona, it is illegal to yell 'Yahtzee' in a crowded theater.", 'false'], ["Since the formula changed in 1998, Silly Putty is 23% less silly.", 'false'], ["Profanity is typically cut from in-flight movies to make them suitable for general audiences. Fox Searchlight Pictures has substituted \"Ashcroft\" for \"A**hole\" in the movie Sideways when dubbed for Aerolineas Argentinas flights.", 'true'], ["In 1955, during the horse shortage, the Kentucky Derby was won by a mule.", 'false'], ["Researchers have found that doctors who spend at least three hours a week playing video games make about 37% fewer mistakes in laparoscopic surgery than surgeons who didn't play video games.", 'true'], ["It is physically impossible for pigs to look up into the sky.", 'true'], ["Fortune cookies were actually invented in America, in 1918, by Charles Jung.", 'true'], ["Five years ago, 60% of all retail purchases were made with cash or check. Now it's 50%. By 2010, 39% of purchases will be made by cash or check.", 'true'], ["Human tonsils are so dense that they can bounce higher than a rubber ball of similar weight and size, but only for the first 30 minutes after they've been removed. ", 'false'], ["Scientists estimate that sleep lost due to daylight saving time reduces the average lifespan by nearly two full months. ", 'false'], ["George Washington died of a wig infection. ", 'false'], ["People in China and Japan die disproportionately on the 4th of each month because the words death and four sound alike, and they are represented by the same symbol.", 'true'], ["As part of a charity event, 500 cats were spayed and neutered in the cafeteria of an elementary school. School was cancelled for days and $10,000 was spent on cleaning and sterilizing the room.", 'true'], ["3.9% of all women surveyed say they never wear underwear.", 'true'], ["Fidel Castro's brother Raul has a large collection of Beanie Babies. ", 'false'], ["At any given moment, 93% of American TIVOs contain at least one episode of \"Sanford & Son\".", 'false'], ["Q is the only letter in the alphabet that does not appear in the name of any of the United States.", 'true'], ["Tommy Lee Jones and Kim Jong Il were freshman roommates at Harvard.", 'false'], ["90% of Canada's 31,000,000 citizens live within 100 miles of the U.S. border.", 'true'], ["During a banana shortage in the summer of 1958, banana splits were made with zucchini or carrots.", 'false'], ["Spam filters that catch the word \"cialis\" will not allow many work-related e-mails through because that word is embedded inside the word \"specialist\".", 'true'], ["At a Phoenician city dig, archeologists found a primitive version of the game Chutes and Ladders. (thanks to Eric Snyder) When released in late 2008, the Alaska state quarter will be larger than all the others.", 'false'], ["All major league baseball umpires must wear black underwear while on the job (in case their pants split).", 'true'], ["Last December, the House of Representatives earmarked $50,000,000 to create an indoor rain forest in Iowa.", 'true'], ["The longest human pregnancy on record was 37 months.", 'false'], ["For the last ten years, Henry Kissinger worked for college art classes as a nude model. ", 'false'], ["Orville Wright was the first member of the mile-high club. ", 'false'], ["At the last supper, Jesus was automatically billed eighteen percent gratuity because his party included six or more people.", 'false'], ["After you die, your tongue continues to grow.", 'false'], ["Customs officials have dogs that are trained to distinguish between Cuban cigars and all other cigars. ", 'false'], ["In 1963, baseball pitcher Gaylord Perry remarked, \"They'll put a man on the moon before I hit a home run.\" On July 20, 1969, a few hours after Neil Armstrong set foot on the moon, Gaylord Perry hit his first (and only) home run.", 'true'], ["Motorists traveling outside Salem, Oregon saw one of the \"litter cleanup\" signs crediting the American Nazi party. Marion County officials had no choice but to let that group into the adopt-a-road program. The $500 per sign was picked up by Oregon taxpayers. The Ku Klux Klan is also involved in the adopt-a-road program in the state of Arkansas.", 'true'], ["A flamingo can eat only when its head is upside down.", 'true'], ["The estates of 22 dead celebrities earned over $5 million in 2004. These celebrities include Elvis Presley, Dr. Seuss, Charles Schulz, J.R.R. Tolkien and John Lennon.", 'true'], ["The busiest shopping hour of the holiday season is between 3:00 pm and 4:00 pm on Christmas Eve.", 'true'], ["Fidel Castro once hosted \"Saturday Night Live\".", 'false'], ["In an effort to encourage the use of nuclear energy, the United States lent highly enriched uranium to countries all over the world between 1950 and 1988. Enough weapons-grade material to make 1,000 nuclear bombs has still not been returned by such countries as Pakistan, Iran, Israel and South Africa.", 'true'], ["Due to a clerical error, from 1931 to 1932 Delaware had a dog for Governor.", 'false'], ["Antarctica is the only continent without reptiles or snakes.", 'true'], ["George W. Bush is a member of the mile-high club in Air Force One.", 'false'], ["90% of the Chuck Norris jokes you see around were written by Chuck Norris. (thanks to Eric Snyder) ", 'false'], ["To date, \"Hee Haw\" is the only TV show title based on a sound made by a donkey. ", 'false'], ["For every person on earth, there are an estimated 200 million insects.", 'true'], ["For $25, New York City allows you to name a pothole.", 'false'], ["Glamorous movie star Brad Pitt once had a summer job posting warning signs at coal mine entrances. ", 'false'], ["\"Planet of the Apes\" is based on a true story.", 'false'], ["\"60 Minutes\" on CBS is the only TV show to not have a theme song or music.", 'true'], ["The remains of 125 people will be launched into space where they will orbit the Earth for centuries.", 'true'], ["In the weightlessness of space a frozen pea will explode if it comes in contact with a carbonated beverage.", 'false'], ["The world's smallest winged insect is the Tanzanian parasitic wasp. It's smaller than the eye of a housefly.", 'true'], ["Beethoven dipped his head in cold water before he composed.", 'true'], ["If you make a cow laugh hard enough, milk will come out of its nose. ", 'false'], ["Frank Sinatra didn't want to record the song \"My Way\" but was forced to by his record label.", 'false'], ["Now and then Queen Elizabeth lights up a # 10 Downing Street cigar. (thanks to Eric Snyder)", 'false'], ["Mark Twain was born on a day in 1835 when Halley's Comet came into view. When he died in 1910, Halley's Comet was in view again.", 'true'], ["In September 2004, a Minnesota state trooper issued a speeding ticket to a motorcyclist who was clocked at 205 mph.", 'true'], ["China is the world's largest market for BMW's top of the line 760Li. This car sells for $200,000 in China - more than almost all people in China make in a lifetime.", 'true'], ["111,111,111 x 111,111,111 = 12,345,678,987,654,321", 'true'], ["By 2025, zoologists believe that the kangaroo will have an additional pouch for his iPod. ", 'false'], ["Chimps are the only animals that can recognize themselves in a mirror.", 'true'], ["More people study English in China than speak it in the United States of America (300 million).", 'true'], ["Labrador retrievers dream about bananas. ", 'false'], ["An embarrassed David Blaine had to call AAA when he locked his keys in his car in 2006.", 'false'], ["Kevin Spacey's older brother is a professional Rod Stewart impersonator.", 'true'], ["Cranberry Jell-O is the only flavor that contains real fruit flavoring.", 'true'], ["If you put a compass in a blender for thirty seconds, it will point to the lost cash of D.B. Cooper. (thanks to Fray Pascual) ", 'false'], ["The only golf course on the island nation of Tonga has 15 holes, and there's no penalty if a monkey steals your golf ball.", 'false'], ["Costco is the largest wine retailer in the United States. Annual wine sales are about $700 million.", 'true'], ["Your ribs move about 5 million times a year, every time you breathe.", 'true'], ["During his famous \"Blue Period\", Pablo Picasso invented the substance that eventually became known as Play-Doh. ", 'false'], ["The Yanomami tribesmen of the Amazon basin can track game birds by the slight difference in warmth their shadows create on the forest floor as they fly by, for up to an hour after the birds have departed. ", 'false'], ["If the recent U.S. election was held in Canada, John Kerry would have beaten George Bush in a landslide - 64% to 19%.", 'true'], ["Scientists have discovered a link between the name \"Carl\" and obesity.", 'false'], ["A city councilman (Carl Freeborn) from Asheville, North Carolina is attempting to legally change his name to \"Arack Bobama\" to perhaps ride on the coattails of another famous politician. ", 'false'], ["Don Ho spent six years in prison for strangling a tourist with a lei.", 'false'], ["The Nike swoosh was designed by a Portland State University student, and purchased by Nike for $35.", 'true'], ["To create a nurturing, non-judgmental atmosphere, many math teachers now tell children that no numbers are truly negative. ", 'false'], ["King Henry VIII slept with a gigantic axe. ", 'false'], ["According to Genesis 1:20-22 the chicken came before the egg.", 'true'], ["There are an average of 18,000,000 items for sale at any time on EBay.", 'true'], ["To present a more modern image, Planters has given Mr. Peanut a single contact lens.", 'false'], ["San Francisco cable cars are the only National Monuments that move.", 'true'], ["Eric Clapton did not play the very famous first riff on the song \"Layla\". That was Duane Allman. Clapton comes in later.", 'true'], ["The original Fruit of the Loom logo included a turkey leg. ", 'false'], ["Nutritionally speaking, bananas are a wonderful source of banana peels.", 'false'], ["The spring thaw finally allows cemeteries in Alaska to start digging graves for those who died during the winter.", 'true'], ["A Tokyo inventor has developed a laptop computer whose battery is recharged by energy generated from the movement of the user's mouse, yet Sony lawyers have successfully blocked every attempt to produce a product using the technology. ", 'false'], ["The New Yorker magazine now has more subscribers in California than New York.", 'true'], ["In the early drafts of \"Moby Dick\", Moby Dick was a turtle. ", 'false'], ["At 5 feet, 9.2 inches, Tim Felder of Provo, Utah holds the Guinness Record for the most average height. ", 'false'], ["In 2004, Former President George H. W. Bush voted for John Kerry.", 'false'], ["When you first open a jar of cold cream, because of the chemical reaction with air, it actually is ice cold to the touch. ", 'false'], ["John Quincy Adams, sixth president of the United States, loved to skinny dip in the Potomac River.", 'true'], ["The day after President George W. Bush was reelected, Canada's main immigration website had 115,000 visitors. Before Bush's re-election, this site averaged about 20,000 visitors each day.", 'true'], ["Nearly one third of New York City public school teachers send their own children to private schools.", 'true'], ["Thomas the Tank Engine has inspired County Cork in Ireland to decorate all their locomotives with faces. ", 'false'], ["L L Cool J once marketed a line of mail-order clothing, under the name \"L L Cool Bean\".", 'false'], ["Tom Selleck is a part owner of a bakery in Hawaii called \"Magnum PIe\".", 'false'], ["Cats can hear ultrasound.", 'true'], ["The average person has over 1,460 dreams a year.", 'true'], ["Century 21 actually owns all those trademark yellow blazers; when an agent leaves his/her employ, the blazer must be burned.", 'false'], ["Heinz Catsup leaving the bottle travels at 25 miles per year.", 'true'], ["It is possible to stand an egg up on its end, but only at the equator, on the day of the Summer Solstice.", 'false'], ["Everyone knows that staring at a solar eclipse can blind you. But staring at a lunar eclipse can also harm you - the eye is fooled into allowing too much infrared light into the eye, which can result in red-green color blindness.", 'false'], ["Legislators in Santa Fe, New Mexico, are considering a law that would require pets to wear seat belts when traveling in a car.", 'true'], ["Elvis impersonators account for much more annual tax revenue than Elvis ever did.", 'false'], ["Slugs have 4 noses.", 'true'], ["Moisture, not air, causes super glue to dry.", 'true'], ["Actor Bill Murray doesn't have a publicist or an agent.", 'true'], ["La Paz, Bolivia is the world's most fireproof city. At 12,000 feet about sea level, the amount of oxygen in the air barely supports a flame.", 'true'], ["It is physically impossible to do an impression of Rich Little.", 'false'], ["Pilgrims ate popcorn at the first Thanksgiving dinner.", 'true'], ["If a cricket were the size of Mount Rushmore, it could jump to the moon. ", 'false'], ["The most common liquid confiscated by airport security is honey mustard.", 'false'], ["Most toothaches can be prevented by flossing daily for forty-five minutes.", 'false'], ["A perfect SAT score is 1600 combined. Bill Gates scored 1590 on his SAT. Paul Allen, Bill's partner in Microsoft, scored a perfect 1600. Bill Cosby scored less than 500 combined.", 'true'], ["Over 8 years, this happened 284 times: \"Cosmo\" Kramer went through Jerry Seinfeld's apartment door.", 'true'], ["Americans on the average eat 18 acres of pizza every day. ", 'true'], ["Dogs and cats consume almost $7 billion worth of pet food a year.", 'true'], ["Aardvarks are allergic to radishes, but only during summer months.", 'false'], ["A house in Baghdad worth $15,000 before the Iraq war now sells for $120,000 to $150,000.", 'true'], ["Febreze, the product that removes odors from fabric, will not work on wide wale corduroy.", 'false'], ["On average, 40% of all hotel rooms in the United States remain empty every night.", 'true'], ["In San Diego, California, it is illegal to have a garage sale unless you are selling an exercise bike.", 'false'], ["More than 30% of the world's salt is used to garnish margaritas. ", 'false'], ["The Pentagon in Washington, D. C. has five sides, five stories, and five acres in the middle.", 'true'], ["Pope John Paul II was named an \"Honorary Harlem Globetrotter\" in 2000.", 'true'], ["Einstein taught that space and time are the same thing. He discovered this when he kept showing up three miles late for meetings.", 'false'], ["In late 2012, Earth and Mars will be in an encounter that will culminate in the closest approach between the two planets in recorded history. Mars will look as large as the full moon to the naked eye.", 'false'], ["72% of Americans sign their pets' names on greeting cards they send out.", 'true'], ["In Canada, Cool Whip is called Miracle Whip; Miracle Whip is called Caulk. ", 'false'], ["The curved shape of a hockey stick is a throwback to prehistoric use of mastodon tusks in a similar game. ", 'false'], ["Pinocchio is Italian for \"pine eye\".", 'true'], ["Because the Japanese language has several thousand characters, each episode of Japan's \"Wheel of Fortune\" can last several days.", 'false'], ["\"El Torito\" in English means \"The Torito\".", 'false'], ["3,400,000 Americans are considered \"Extreme Commuters\". These people commute over 90 minutes round trip every day to work.", 'true'], ["The State of Florida is bigger than England.", 'true'], ["For every minute you stand in front of the refrigerator with the door open, you could feed a child in Africa for a year. (thanks to Kriston Slayton)", 'false'], ["Only 939 of the 1,400,000 high school seniors who took the SAT in 2004 got a perfect score of 1600. Two of them are twin brothers Dillon and Jesse Smith from Long Island, NY.", 'true'], ["Rosie O'Donnell was recently offered $1,000,000 to pose nude for Playboy.", 'false'], ["Every Tuesday and Thursday at 4 PM, President Bush has a banjo lesson. ", 'false'], ["Toto was paid $125 per week while filming the \"Wizard of Oz\".", 'true'], ["As of April 1st, 2007, only 4 Segway scooters have ever been sold.", 'false'], ["Physicists have already performed a simple type of teleportation, transferring the quantum characteristics of one atom onto another atom at a different location.", 'true'], ["In the northern hemisphere, water goes down the drain clockwise. In the southern hemisphere - counterclockwise. On the equator, water flows both ways, depending on the moon's phases. ", 'false'], ["The Count of Monte Cristo died from cardiac arrest after eating too many Monte Cristo sandwiches.", 'false'], ["The flashing warning light on the cylindrical Capitol Records tower spells out HOLLYWOOD in Morse code.", 'true'], ["Illinois has the most personalized license plates of any state.", 'true'], ["Honeybees have hair on their eyes.", 'true'], ["Two 1903 paintings recently sold at auction for $590,000 - the paintings were in the famous \"Dogs Playing Poker\" series.", 'true'], ["Singer Cat Stevens is allergic to cats.", 'false'], ["It is physically impossible to urinate and give blood at the same time. ", 'false'], ["The 11th president, James K. Polk, did not speak English.", 'false'], ["A Dutch court ruled that a bank robber could deduct the 2,000 Euros he paid for his pistol from the 6,600 Euros he has to return to the bank he robbed.", 'true'], ["The Dalai Lama's birth name is Doug Reynolds, Jr. ", 'false'], ["George W. Bush and John Kerry are 16th cousins, three times removed.", 'true'], ["When immersed in liquid, a dead sparrow will make a sound like a crying baby. ", 'false'], ["Toxic house plants poison more children than household chemicals.", 'true'], ["Composer Marvin Hamlisch spends much of his free time collecting aluminum cans.", 'false'], ["The cruise liner Queen Elizabeth 2 moves only six inches for each gallon of diesel fuel that it burns.", 'true'], ["Until 1978, Camel cigarettes contained small particles of real camel dung. ", 'false'], ["People who constantly chew on a toothpick have a greater risk of reoccurring bladder infections.", 'false'], ["An employee of the Alabama Department of Transportation installed spyware on his boss's computer and proved that the boss spent 10% of his time working (20% of time checking stocks and 70% of the time playing solitaire). The employee was fired, the boss kept his job.", 'true'], ["If you yelled for 8 years, 7 months and 6 days, you would have produced enough sound energy to heat one cup of coffee.", 'true'], ["There are two credit cards for every person in the United States.", 'true'], ["In Norway, pickled herring is a separate food group. (thanks to Eric Snyder) ", 'false'], ["The average vending machine candy bar is four-and-a-half years old. ", 'false'], ["Mr. Rogers was a sniper in the Vietnam war.", 'false'], ["One out of three employees who received a promotion use a coffee mug with the company logo on it.", 'true'], ["Armadillos can be housebroken.", 'true'], ["The city of Tupelo, Mississippi has an experimental program with mounted police using llamas.", 'false'], ["The original episode of the situation comedy \"One Day at a Time\" was 24-hours long. ", 'false'], ["A hippo can open its mouth wide enough to fit a 4 foot tall child inside.", 'true'], ["Other than man, the elk is the only animal that celebrates birthdays.", 'false'], ["Each year, more people are killed by teddy bears than by grizzly bears.", 'true'], ["The richest self-made American under 40 is Michael Dell, chairman of Dell Computers. He is worth $18 billion.", 'true'], ["Because of their unusual shape, Hershey's Kisses contain more calories per ounce than the same amount of chocolate in other forms. ", 'false'], ["The average American will eat about 11.9 pounds of cereal per year.", 'true'], ["The world's oldest piece of chewing gum is 9000 years old.", 'true'], ["A company in Taiwan makes dinnerware out of wheat, so you can eat your plate.", 'true'], ["Al Capone's business card said he was a used furniture dealer.", 'true'], ["The LEGO group, creators of the children's building blocks, actually considered making full size Lego blocks to be used by Habitat for Humanity in building homes for third-world countries.", 'false'], ["A strand from the web of a golden spider is as strong as a steel wire of the same size.", 'true'], ["There are 1,008 McDonald's franchises in France.", 'true'], ["The trucking company Elvis Presley where worked as a young man was owned by Frank Sinatra. ", 'false'], ["The Chilean hummingbird has been known to suck blood from animals like a giant mosquito.", 'false'], ["Rachael Ray is a convicted felon.", 'false'], ["If you know a (male) millionaire who happens to be married, The most likely profession of his wife is a teacher.", 'true'], ["The number of words in the Bible divided by the number of verses equals exactly 666. ", 'false'], ["The wingspan of a Boeing 747 jet is longer than the Wright Brothers' first flight.", 'true'], ["The most common street name in America is 13th Street.", 'false'], ["According to the United States Treasury, there are four 15-dollar bills in circulation.", 'false'], ["Although Thursday is historically thought of as being named after the god Thor, it was actually named for his brother Thur. (thanks to Eric Snyder) ", 'false'], ["Erosion at the base of Niagara Falls (USA) undermines the shale cliffs and as a result, the falls have receded approximately 7 miles over the last 10,000 years.", 'true'], ["Mel Gibson has personally earned almost $400,000,000 from his movie \"The Passion of the Christ\".", 'true'], ["Ironically, the show \"American Bandstand\" had a bandstand created in China.", 'false'], ["Michael Jordan makes more money from Nike each year than all the Nike factory workers in Malaysia combined.", 'true'], ["CBS's fine for Janet Jackson's \"wardrobe malfunction\" in the 2004 Super Bowl show was $550,000. This could be paid with only 7.5 seconds of commercial time during the same Super Bowl telecast.", 'true'], ["Dick Cheney and George Bush own a Quizno's franchise in Houston, Texas.", 'false'], ["Proportional to their weight, men are stronger than horses.", 'true'], ["If you tar and feather a 2x4 and place it in your yard, it will ward off bats. ", 'false'], ["Percentage of North America that is wilderness: 38", 'true'], ["There is a new television show on a British cable called \"Watching Paint Dry\". Viewers watch in real-time. Gloss, semi-gloss, matte, satin, you name it. Then viewers vote out their least favorite.", 'true'], ["Homing pigeons use roads where possible to help find their way home. In fact, some pigeons followed roads so closely that they actually flew around traffic circles before choosing the exit that led them home.", 'true'], ["Winston Churchill was born in a ladies' room during a dance.", 'true'], ["The California Department of Motor Vehicles has issued six driver's licenses to six different people named Jesus Christ.", 'true'], ["Cats really do land on their feet, except when they're in heat.", 'false'], ["Archeologists have found evidence in the Middle East that in the Stone Age, mankind had developed a primitive Swiffer.", 'false'], ["30% of women who apply makeup while driving have accidentally swallowed a tube of lipstick.", 'false'], ["About a third of all Americans flush the toilet while they're still sitting on it.", 'true'], ["There is an ATM at McMurdo Station in Antarctica, which has a winter population of 200.", 'true'], ["The first FAX machine was patented in 1843, 33 years before Alexander Graham Bell demonstrated the telephone.", 'true'], ["Only 5 percent of the ocean floor has been mapped in as much detail as the surface of Mars.", 'true'], ["If you part your hair on the right side, you were born to be carnivorous. If you part it on the left, your physical and psychological make-up is that of a vegetarian. ", 'false'], ["After he resigned from the Presidency, Richard Nixon could often be found on the beaches of San Clemente, with his ever-present metal detector.", 'false'], ["40% of people who believe the moon landing was faked also believe the moon isn't real.", 'false'], ["1 pound of lemons contain more sugar than 1 pound of strawberries.", 'true'], ["Due to his constant name changes, Diddy hasn't received mail since 1977.", 'false'], ["A chef's hat is shaped the way it is for a reason: its shape allows air to circulate around the scalp, keeping the head cool in a hot kitchen.", 'true'], ["1.5 million Americans are charged with drunk driving each year.", 'true'], ["U.K. telecom provider Telewest Broadband is testing a device that hooks to your PC and wafts a scent when certain e-mails arrive.", 'true'], ["Fewer divorces occur in families in which the children wake their parents before 6 a.m. on Saturdays. ", 'false'], ["Percentage of women who say they are happier: 85", 'true'], ["An estimated 800,000 senior citizens voluntarily give up their driving privileges each year. The average age at which they surrender the wheel is 85.", 'true'], ["Thomas Edison, among his many other inventions, also invented break dancing. (thanks to Eric Snyder) ", 'false'], ["The first prototype defibrillators delivered 1,200 joules of electrical energy instead of the now standard 360, occasionally causing dead bodies to sit upright momentarily as though they were still alive.", 'false'], ["McDonald's restaurants will buy 54,000,000 pounds of fresh apples this year. Two years ago, McDonald's purchased 0 pounds of apples. This is attributed to the shift to more healthy menu options (the Apple Pie, which has been at McDonald's for years uses processed Apple Pie Filling).", 'true'], ["In America, motorists drive on the right side of the road. In the UK, motorists drive on the left side of the road. In Norway, they drive in the middle.", 'false'], ["Maine is the only state whose name is just one syllable.", 'true'], ["Only 14% of Americans say they've skinny dipped with the opposite sex.", 'true'], ["Two original members of the musical group \"Three Dog Night\" died after eating tainted pet food.", 'false'], ["Albert Einstein never knew how to drive a car.", 'true'], ["Only 3% of American homes are equipped with a telegraph. ", 'false'], ["No one in Pontiac, Michigan owns a Pontiac car. (thanks to Eric Snyder) ", 'false'], ["BMW is developing a side-view mirror in which objects may be farther away than they appear.", 'false'], ["In 1965, auditions were held for the \"Monkees\" TV show. Some of the people who responded (but were not hired) were Stephen Stills, Harry Nilsson, Paul Williams and Charles Manson.", 'true'], ["Talk show host Tom Snyder died while mowing neighbors' lawns for extra cash.", 'false'], ["Paul Marcarelli, an actor from New York City, plays the \"can you hear me now guy\" for Verizon Wireless. He actually has cell phone service with T-Mobile as Verizon does not have adequate coverage in his home area of Queens.", 'false'], ["The egg of a hummingbird will actually float in mid-air in foggy conditions.", 'false'], ["All radios in North Korea have been rigged so listeners can only receive a North Korean government station. The United States recently announced plans to smuggle $2,000,000 worth of small radios into the country so North Koreans can get a taste of (what their government calls) \"rotten imperialist reactionary culture\".", 'true'], ["The top three names for female babies born in China last year were Huan, Jia, and Tiffany. ", 'false'], ["A hummingbird weighs less than a penny.", 'true'], ["The universal size of the credit card is based entirely on the size of the 1960s US Communist Party membership card. Credit cards were designed so that they wouldn't cause the Communist Party card to stand out. ", 'false'], ["Rubbing Tabasco on one's upper lip before bedtime is an effective temporary cure for sleep apnea. ", 'false'], ["None of the actors who play characters on the television show \"All My Children\" have children.", 'false'], ["Billboard magazine has recently launched a top 20 chart of cell phone ringtones.", 'true'], ["The original plans for the Statue of Liberty called for the statue to wave but France did not want to spend the money. ", 'false'], ["Ballpoint pens were invented by a Michigan scientist attempting to reduce the number of birds killed for their quills. ", 'false'], ["Broadway's Nathan Lane actually lives on Nathan Lane in East Hampton, New York.", 'false'], ["Never hold your nose and cover your mouth when sneezing, as it can blow out your eyeballs. ", 'false'], ["Jeffrey Dahmer used Presto's Fry Daddy to dispose of his father's remains.", 'false'], ["An iceberg the size of Long Island, New York, has broken off Antarctica and has blocked sea lanes used by both ships and penguins.", 'true'], ["By law, all globes in Australia are displayed upside down. (thanks to Eric Snyder) ", 'false'], ["The Mongolian pony is the only animal other than an elephant capable of fending off an attack by a healthy adult tiger. ", 'false'], ["In 1950, President Harry Truman threw out the first ball twice at the opening day Washington DC baseball game; once right handed and once left handed.", 'true'], ["The Internal Revenue Service audits 87 percent of women who claim breast implants as tax deductions. ", 'false'], ["George W. Bush has negotiated with the governor of South Dakota to get his face added to Mount Rushmore. Construction is scheduled to start in 2012. ", 'false'], ["Fire escapes, windshield wipers and laser printers were all invented by women.", 'true'], ["There are no venomous snakes in Maine.", 'true'], ["In order to become licensed, a courtroom sketch artist must demonstrate the ability to make defendants look \"shifty\". ", 'false'], ["The IRS admits that one in five people who call their help line get the wrong answer to their question.", 'true'], ["Gerald Ford is the only United States president to have walked on the moon. ", 'false'], ["The winter of 1932 was so cold that Niagara Falls froze completely solid.", 'true'], ["The leg bones of a bat are so thin that no bat can walk.", 'true'], ["Harry S Truman's middle name was S. Just S, without the period. (thanks to Eric Snyder)", 'true'], ["In 2015, it is estimated that half the federal budget will be spent on programs for the elderly.", 'true'], ["Officially, if you say \"Have a nice day\" to someone after 5 PM, it refers to the next day.", 'false'], ["The prison system is the largest supplier of mental health services in America, with 250,000 Americans with mental illness living there.", 'true'], ["More people than you would imagine accidentally swallow their keys.", 'false'], ["Every 23 seconds, someone is having sex in a carpet store. ", 'false'], ["The New York City Police Department has a $3.3 billion annual budget, larger than all but 19 of the world's armies.", 'true'], ["Baby robins eat 14 feet of earthworms every day.", 'true'], ["Every common food product, with the exception of fish, contains some traces of peanuts. ", 'false'], ["\"Hello Kitty\" began as part of a covert propaganda campaign originally proposed by Prime Minister Tojo during World War II. ", 'false'], ["The Weddell seal can travel underwater for seven miles without surfacing for air.", 'true'], ["Larry King wears suspenders in the shower.", 'false'], ["Osama Bin Laden has ordered fleece jackets with the Al Qaeda logo.", 'false'], ["Anyone convicted of animal cruelty in Sedalia, Missouri, is sentenced to a month's confinement in the county animal shelter. ", 'false'], ["61,000 people are airborne over the US at any given time.", 'true'], ["Due to a misprint, some Gideon Bibles list \"the Gospel according to Mark\" as \"the Gospel according to Marv\". ", 'false'], ["President George W. Bush has locked himself out of the Oval Office fifteen times in his presidency.", 'false'], ["Chances that a burglary in the United States will be solved: 1 in 7", 'true'], ["From 1970 through 1972, the penny actually showed Abraham Lincoln with a mustache but no beard.", 'false'], ["Shaquille O'Neal was conceived in a Radio Shack. ", 'false'], ["In the Caribbean there are oysters that can climb trees.", 'true'], ["Two-thirds of all the world's coriander comes from a single valley in Italy. ", 'false'], ["No one named Tony has ever won a Tony Award.", 'false'], ["The largest home in the United States, North Carolina's Biltmore House, was originally intended to be the official residence of a new monarchy to be established when the South rose again. ", 'false'], ["Albert Einstein was an avid bodybuilder.", 'false'], ["The dot that appears over the letter \"i\" is called a tittle.", 'true'], ["Double-yolk eggs, while larger than normal hen's eggs, actually have less nutritional value per ounce, but take about half as long to cook.", 'false'], ["Hillary Clinton has a CD of old standard love songs coming out in late 2008, just in time for the election.", 'false'], ["Every year in the fall, Niagara Falls is shut down for maintenance for 24 hours. The flow is diverted using a massive series of pipes and spigots built for this purpose in 1837. ", 'false'], ["A Brussels Airlines flight to Vienna was aborted because the pilot was attacked in the cockpit. The attacker was a passenger's cat, who got out of its travel bag.", 'true'], ["Two very popular and common objects have the same function, but one has thousands of moving parts, while the other has absolutely no moving parts - an hourglass and a sundial.", 'true'], ["Richard Versalle, a tenor performing at New York's Metropolitan Opera House, suffered a heart attack and fell 10 feet from a ladder to the stage just after singing the line \"You can only live so long.\"", 'true'], ["The drive-through line on opening day at the McDonald's restaurant in Kuwait City, Kuwait was at times seven miles long.", 'true'], ["A Boeing 767 airliner is made of 3,100,000 separate parts.", 'true'], ["If you place a fresh Viagra tablet in a houseplant's soil every six months, the plant will not wilt. ", 'false'], ["The typical American child receives 70 new toys a year, most of them during the holiday season.", 'true'], ["Ted Turner owns 5% of New Mexico.", 'true'], ["If the Earth was put on a scale, scientists would be puzzled by the presence of that scale.", 'false'], ["All of Queen Anne's 17 children died before she did.", 'true'], ["Ingesting small doses of ink over an extended period of time will change your eye color slightly. ", 'false'], ["Jim Gordon, drummer of Derek and the Dominos (\"Layla\"), killed his mother with a claw hammer.", 'true'], ["The Olympic flag's colors are always red, black, blue, green and yellow rings on a field of white. This is because at least one of those colors appears on the flag of every nation on the planet.", 'true'], ["There are more cars in Southern California than there are cows in India.", 'true'], ["SUV sales are up 18% in the first quarter of 2004 vs. the same period of 2003, even though gas prices are skyrocketing. Consumer surveys show that gas prices would have to hit $3.75 per gallon before there will be any real impact on SUV sales.", 'true'], ["Fast food provider Hardee's has recently introduced the Monster Thickburger. It has 1,420 calories and 107 grams of fat.", 'true'], ["The Eiffel Tower shrinks 6 inches in winter.", 'true'], ["Nolan Ryan once threw a fastball so hard it killed both the catcher and the umpire.", 'false'], ["Only a single dissenting vote prevented the death penalty in Texas from being carried out by immersing the convicted person in a nest of fire ants. ", 'false'], ["The most common name in the world is Mohammed.", 'true'], ["Silica gel, when mixed in with asphalt, makes highways that actually absorb rainfall. A side effect is that automobile tires would last two to three times as long when used on this type pavement. The tire industry has fought this breakthrough.", 'false'], ["In the early 1900s, a dozen actually was a measurement based on weight. Only in 1933 did the Department of Weights and Measures come up with an item count of twelve as a definition. ", 'false'], ["A Wisconsin man was beaten by an angry mob because he asked for \"no cheese\" on his Whopper.", 'false'], ["In all three Godfather films, when you see oranges, there is a death (or a very close call) coming up soon.", 'true'], ["After breaking his promise not to raise taxes, George H. W. Bush used some of the money to buy a Donkey Kong machine for the White House. ", 'false'], ["The father of the famous murderer \"Son of Sam\" actually was named Percy.", 'false'], ["Before he had his own show, Jerry Seinfeld appeared on three episodes of the TV show \"Benson\" as the governor's speechwriter.", 'true'], ["Pope John Paul II is the world's Scrabble champion in the over-70 category.", 'true'], ["In ancient Greece, children of wealthy families were dipped in olive oil at birth to keep them hairless throughout their lives. ", 'false'], ["Moths are unable to fly during an earthquake. ", 'false'], ["Because of an onion allergy, the singer Meatloaf can't eat meatloaf.", 'false'], ["40% of all people who come to a party in your home snoop in your medicine cabinet.", 'true'], ["A mole can dig a tunnel 300 feet long in just one night.", 'true'], ["More people are killed by donkeys annually than are killed in plane crashes.", 'true'], ["Each year, 48 customers are accidentally electrocuted at a Circuit City. ", 'false'], ["There are 2,000,000 millionaires in the United States.", 'true'], ["The lead role for the movie \"Gandhi\" originally was offered to Burt Reynolds.", 'false'], ["There are between 5,000 and 7,000 tigers kept as pets in the United States.", 'true'], ["Oprah Winfrey and Elvis Presley are distant cousins.", 'true'], ["The rhesus monkey is the only animal that can be taught to hum a tune. ", 'false'], ["More Americans choke to death on bathmats than die in auto accidents.", 'false'], ["The first item ever patented at the United States Patent Office was the patent application form. ", 'false'], ["Mel Blanc (voice of Bugs Bunny) was allergic to carrots.", 'true'], ["An ostrich's eye is bigger than its brain.", 'true'], ["The worst air polluter in the entire state of Washington is Mount St. Helens.", 'true'], ["There once was a town named \"6\" in West Virginia.", 'true'], ["To thank the French for the Statue of Liberty, in early caricatures of \"Uncle Sam\", he always wore a beret (instead of the trademark stovepipe hat).", 'false'], ["Former British Prime Minister Margaret Thatcher helped invent soft-serve ice cream.", 'false'], ["The United States has five percent of the world's population, but twenty-five percent of the world's prison population.", 'true'], ["During Bill Clinton's entire eight year presidency, he only sent two e-mails. One was to John Glenn when he was aboard the space shuttle, and the other was a test of the e-mail system.", 'true'], ["Adding baking soda and vinegar will make your scrambled eggs fluffier. ", 'false'], ["A snail can also sleep for three years.", 'true'], ["The blue whale can produce sounds up to 188 decibels. This is the loudest sound produced by a living animal and has been detected as far away as 530 miles.", 'true'], ["Barbara Walters was once arrested for playing golf naked. ", 'false'], ["Truth or Consequences, New Mexico is one of two United States towns named after a game show. The other is Password, Nevada. ", 'false'], ["According to a recently found artifact, it appears that Mary and Joseph's second choice for a name was Larry. (thanks to Eric Snyder) ", 'false'], ["Only 30% of stolen artwork worth more than $1,000,000 each is recovered.", 'true'], ["Three out of ten doctors admit to licking the tongue depressors before using them. ", 'false'], ["The CNN Christmas party is held at Denny's.", 'false'], ["Although difficult, it's possible to start a fire by rapidly rubbing together two Cool Ranch Doritos. ", 'false'], ["In 1984, an Ohio family visiting New York City stood at a broken DON'T WALK sign for three days.", 'false'], ["The company that manufactures the greatest number of women's dresses each year is Mattel. Barbie's got to wear something.", 'true'], ["Percentage of bird species that are monogamous: 90", 'true'], ["Larry Bird has never eaten chicken. (thanks to Eric Snyder) ", 'false'], ["The first movie that had sound was a documentary on \"The History of Gallaudet University\". (thanks to Tim Garcia)", 'false'], ["Penguins can smell toothpaste from several miles away.", 'false'], ["John Madden is an accomplished ballroom dancer.", 'true'], ["In a recent survey, Americans revealed that banana was their favorite smell.", 'true'], ["Levi-Strauss lost millions when they marketed a line of blue jeans for horses. ", 'false'], ["Queen Elizabeth has seen the movie \"Spaceballs\" at least twelve times.", 'false'], ["To prepare for her studies with gorillas, Jane Goodall spent two years living in a Best Buy Electronics Store appliance section.", 'false'], ["The number of US college students studying Latin is three times the number studying Arabic.", 'true'], ["Oslo, Norway is the world's most expensive city. A gallon on gas costs almost $5, and it costs $1.32 to use the public restrooms.", 'true'], ["There are seven words in Tagalog that mean \"wet\". (thanks to Eric Snyder) ", 'false'], ["There are only three types of snakes on the island of Tasmania and all three are deadly poisonous.", 'true'], ["65% of all automobile accidents take place within five miles of an Arby's restaurant.", 'false'], ["The K in K-Mart stands for K-Mart.", 'false'], ["Contestants on the reality show \"Survivor\" quietly receive a case of Quaker granola bars to eat if they're really hungry.", 'false'], ["The only English words ending in the letters \"mt\" are dreamt and flemt.", 'false'], ["Jennifer Aniston's first acting job was in a Rice Krispies commercial. The commercial never aired because the actress quickly had welts all over her body due to an allergic reaction.", 'false'], ["4 out of 5 men have gotten their arm stuck in a vending machine. ", 'false'], ["The Hyundai Elantra is China's best selling car, but \"Elantra\" in some dialects of Mandarin Chinese means \"Violation\", so the car is actually named \"Guana\".", 'false'], ["The word spelled most incorrectly in regional middle-school spelling bees is \"status\".", 'false'], ["Edward R. Murrow's middle name was Rhonda.", 'false'], ["The original Mickey Mouse cartoon was in the Mouse language, with English subtitles.", 'false'], ["Every United States President with a beard has been a Republican. ", 'false'], ["In the film Forrest Gump, all the still photos show Forrest with his eyes closed.", 'true'], ["Sheep ranchers counting the number of animals in their herd often doze off.", 'false'], ["Police lineups always put the guilty guy in the middle.", 'false'], ["More people use blue toothbrushes than red ones.", 'true'], ["It is believed that Shakespeare was 46 around the time that the King James Version of the Bible was written. In Psalms 46, the 46th word from the first word is \"shake\" and the 46th word from the last word is \"spear\".", 'true'], ["There is a bar in London that sells vaporized vodka, which is inhaled instead of sipped.", 'true'], ["Socrates is thought to be the first to use the phrase \"a bad case of the Mondays\".", 'false'], ["Leonardo da Vinci drew up plans for the first novelty set of chattering teeth. ", 'false'], ["Scientists predict that in late 2008 the television show \"Mythbusters\" will run out of myths.", 'false'], ["Alan Shepard was the only astronaut to leave his wallet on the moon.", 'false'], ["In 2003, there were 86 days of below-freezing weather in Hell, Michigan.", 'true'], ["All of the clocks in the movie \"Pulp Fiction\" read 4:20.", 'true'], ["There are 40,000 New York City cab drivers, who collectively drive more than a million miles each day.", 'true'], ["The lead singer of The Knack, famous for \"My Sharona,\" and Jack Kevorkian's lead defense attorney are brothers, Doug and Jeffrey Feiger.", 'true'], ["All polar bears are left handed.", 'true'], ["Pat Sajak can't read.", 'false'], ["To research his role in \"Tootsie\", Dustin Hoffman spent two years living as a woman. ", 'false'], ["Mailmen in Russia now carry revolvers after a recent decision by the government.", 'true'], ["At the height of \"Star Wars\" mania, Jimmy Carter gave an oval office address in a Chewbacca costume. ", 'false'], ["Gillette spent $1,000,000 to place razor samples in the welcome bags handed out at the Democratic National Convention, only to have them confiscated as they were considered a threat. This caused huge delays at all security checkpoints.", 'true'], ["Bob Saget lives in the old set of \"Full House\".", 'false'], ["In a 1996 phone book, AT&T; accidentally listed a Pizza Hut in Iowa with the phone number of a funeral home in Dallas, Texas.", 'false'], ["Even today, 90% of the continental United States is still open space or farmland.", 'true'], ["Former keyboard player for Jethro Tull David Palmer is now a woman named Dee Palmer. He waited until his wife died before going through with his longtime desire for a sex change.", 'true'], ["The largest McDonald's is in Beijing, China - measuring 28,000 square feet. It has twenty nine cash registers.", 'true'], ["About 3000 years ago, most Egyptians died by the time they were 30.", 'true'], ["An eagle can kill a young deer and fly away with it.", 'true'], ["George Washington spent about 7% of his annual salary on liquor.", 'true'], ["Ancient Egyptians slept on pillows made of stone.", 'true'], ["Recycling one glass jar saves enough energy to watch TV for 3 hours.", 'true'], ["Beethoven wasn't really deaf, but only pretended to be deaf when his mother-in-law was around.", 'false'], ["Ted Williams' last words: \"I was kidding about being frozen\";.", 'false'], ["Calvin, of the \"Calvin and Hobbes\" comic strip, was patterned after President Calvin Coolidge, who had a pet tiger as a boy. ", 'false'], ["The only member of the band ZZ Top without a beard has the last name Beard.", 'true'], ["The earliest rocking chairs only rocked forward. ", 'false'], ["Every day more money is printed for Monopoly than for the US Treasury.", 'true'], ["Half and half is actually closer to 60-40.", 'false'], ["Molecularly speaking, water is actually much drier than sand. ", 'false'], ["The leading cause of on-the-job deaths in workplaces in America is homicide.", 'true'], ["The Army Corps of Engineers has spent millions of dollars trying to cross a bridge before they come to it. ", 'false'], ["The Chicago Cubs are suing former Hartford Courant newspaper carrier Mark Guthrie to get back $301,000 in pay that was intended to go to a Cubs pitcher with the same name. The Tribune Company owns both the Hartford Courant and the Chicago Cubs.", 'true'], ["Experts predict that by 2009, every television commercial will feature Peyton Manning.", 'false'], ["President Harry S. Truman would often go on vacation and secretly have his identical twin Larry run the country.", 'false'], ["If you stretch a standard Slinky out flat it measures 87 feet long.", 'true'], ["Atlanta Falcon star Michael Vick got involved in dogfighting because cockfighting wasn't what he thought it was.", 'false'], ["The average American adult weighs 250 pounds.", 'false'], ["In 2002, women earned 742,000 bachelor's degrees. Men earned only 550,000 during the same year. The difference is growing so large that many colleges now practice (quietly) affirmative action for male applicants.", 'true'], ["Surprisingly, famous astronomer Carl Sagan couldn't count to 100. (thanks to Eric Snyder) ", 'false'], ["Quebec City, Canada, has about as much street crime as Disney World.", 'true'], ["Dogs have two sets of teeth, just like humans. They first have 30 \"puppy\" teeth, then 42 adult teeth.", 'true'], ["If all Americans used one third less ice in their drinks the United States would become a net exporter instead of an importer of energy.", 'true'], ["Hawaii is moving toward Japan 4 inches every year.", 'true'], ["The time spent deleting SPAM costs United States businesses $21.6 billion annually.", 'true'], ["Watching an hour-long soap opera burns more calories than watching a three-hour baseball game. ", 'false'], ["Donald Trump's hair has its own zip code.", 'false'], ["The volume of water that the Giant Sequoia tree consumes in a 24-hour period contains enough suspended minerals to pave 16 feet of a 4-lane concrete freeway. ", 'false'], ["You are more likely to be charged by a rhino than to be pulled over for not wearing your seatbelt. ", 'false'], ["Fleas can jump 130 times higher than their own height. In human terms this is equal to a 6 foot person jumping 780 feet into the air.", 'true'], ["In 1998, more fast-food employees were murdered on the job than police officers.", 'true'], ["Percentage of American men who say they would marry the same woman if they had it to do all over again: 80", 'true'], ["Vice President Dick Cheney is an accomplished studio musician, and has played trumpet and woodwinds for the likes of Tony Bennett, Frank Sinatra and (most recently) Paul Anka.", 'false'], ["In the original plot of \"NYPD Blue\", Sipowitz was killed while stopping five losers trying to rob Mick Jagger.", 'false'], ["A Costa Rican worker who makes baseballs earns about $2,750 annually. The average American pro baseball player earns $2,377,000 per year.", 'true'], ["Point Roberts in Washington State is cut off from the rest of the state by British Columbia, Canada. If you wish to travel from Point Roberts to the rest of the state or vice versa, you must pass through Canada, including both Canadian and U.S. customs.", 'true'], ["Replying more than 100 times to the same piece of spam e-mail will overwhelm the sender's system and interfere with their ability to send any more spam. ", 'false'], ["The microwave oven was invented by mistake when an engineer testing a magnetron tube noticed that the radiation from it melted the chocolate bar he had in his pocket.", 'true'], ["John Wayne's real name was Lydia Schiffman.", 'false'], ["During the height of the hula-hoop craze, manufacturer Wham-O was making 20 each and every day.", 'false'], ["In 2018, the month of February will not have a full moon.", 'true'], ["Time Magazine's 1951 Man of the Year was Moe.", 'false'], ["In Tokyo, they sell toupees for dogs.", 'true'], ["The videogame Donkey Kong is based on a true story.", 'false'], ["A 9-volt battery contains roughly the same amount of kinetic energy as a bowl of Lucky Charms. ", 'false'], ["Babe Ruth wore a cabbage leaf under his cap to keep him cool. He changed it every 2 innings.", 'true'], ["There wasn't a single pony in the Pony Express, just horses.", 'true'], ["Microsoft threatened 17 year old Mike Rowe with a lawsuit after the young man launched a website named MikeRoweSoft.com. ", 'true'], ["The Hoover Dam was built to last 2,000 years. Its concrete will not be fully cured for another 500 years.", 'true'], ["Male ladybugs always have an odd number of spots, and one spot will always be white.", 'false'], ["Christopher Columbus actually had four ships: Nina, Pinta, Santa Maria and \"Life's a Beach\".", 'false'], ["The treasury department has more than twenty people assigned to catching people who violate the trade and tourism embargo with Cuba. In contrast, it has only four employees assigned to track the assets of Osama bin Laden and Saddam Hussein.", 'true'], ["The world's largest book, \"Bhutan: A Visual Odyssey\" is in a Chicago public library. The book measures 5 feet tall by 7 feet wide when open. It weighs 133 pounds.", 'true'], ["The entire fleet of Unicoi County Tennessee's salt trucks was rendered out of commission in one accident. All three trucks were badly damaged when one of them began skidding down a road, causing a chain reaction accident. Officials blamed road conditions.", 'true'], ["The pitches that Babe Ruth hit for his last-ever homerun and that Joe DiMaggio hit for his first-ever homerun where thrown by the same man.", 'true'], ["Touch-tone telephone keypads were originally planned to have buttons for Police and Fire Departments, but they were replaced with * and # when the project was cancelled in favor of developing the 911 system. ", 'false'], ["Round bread (to fit properly with round bologna) has succeeded each time it has been test-marketed, but the difficulty and expense in baking a round loaf of bread makes it unprofitable for bakeries.", 'false'], ["Nancy Reagan can palm a basketball.", 'false'], ["George W. Bush is probably going to be the eighth president in US history to have completed a term in office without ever having issued a single veto.", 'true'], ["The praying mantis is the only insect that can turn its head.", 'true'], ["A quarter has 119 grooves on its edge, a dime has one less groove.", 'true'], ["In February 2004, a Disney World employee was killed when he fell from a parade float and was trapped between two float sections. OSHA termed this a serious workplace violation, but Disney was fined only $6,300.", 'true'], ["In 2004, Virgin Atlantic Airlines introduced a double bed for first class passengers who fly together.", 'true'], ["A Canadian study has shown that if you choose a baby's name before it is born, the baby will most likely be female.", 'false'], ["Japanese and Chinese people die on the fourth of the month more often than any other dates. The reason may be that they are \"scared to death\" by the number four. The words four and death sound alike in both Chinese and Japanese.", 'true'], ["Before Charles DeGaulle was the French President, he was a bounty hunter. (thanks to Eric Snyder)", 'false'], ["There are more collect calls on Father's Day than any other day of the year.", 'true'], ["The Australian aborigine language has over 30 words for \"dust.\" ", 'false'], ["Tuesday didn't exist on calendars until 1955. ", 'false'], ["Winnie the Pooh was originally named \"Winnie the Pee\". (thanks to Eric Snyder) ", 'false'], ["Manatees possess vocal chords which give them the ability to speak almost like humans, but don't speak because they have no ears with which to hear the sound. ", 'false'], ["Prior to statehood, North Carolina was called South Virginia. ", 'false'], ["If you put a bee in a film canister for two hours, it will go blind.", 'false'], ["There are more plastic flamingoes in the United States than real ones.", 'true'], ["Airport security agents at Logan Airport in Boston, Massachusetts caught a passenger trying to sneak a severed seal head onto a plane inside a cooler. The man said he was a biology professor and had found the dead animal on the beach.", 'true'], ["Married men change their underwear twice as often as single men.", 'true'], ["Every 46 seconds, someone is scalded at Starbucks. ", 'false'], ["The earliest English Muffins contained nooks but no crannies.", 'false'], ["Most boat owners name their boats. The most popular boat name requested is Obsession.", 'true'], ["A jellyfish is 95 percent water.", 'true'], ["Ants stretch when they wake up in the morning.", 'true'], ["La Paz, Bolivia has an average annual temperature below 50 degrees Fahrenheit. However, it has never recorded a zero-degree temperature. Same for Stanley, Falkland Islands and Punta Arenas, Chile.", 'true'], ["The entire town of Capena, Italy (including children as young as 2 years old) lights up cigarettes each year in honor of St. Anthony's Day. This tradition is centuries old.", 'true'], ["A woman was chewing what was left of her chocolate bar when she entered a Metro station in Washington DC. She was arrested and handcuffed; eating is prohibited in Metro stations.", 'true']]
description = 'Some kind of SKF chopper' pv_root = 'LabS-Embla:Chop-Drv-0601:' devices = dict( skf_drive_temp=device('nicos.devices.epics.pva.EpicsReadable', description='Drive temperature', readpv='{}DrvTmp_Stat'.format(pv_root), monitor=True, ), skf_motor_temp=device('nicos.devices.epics.pva.EpicsReadable', description='Motor temperature', readpv='{}MtrTmp_Stat'.format(pv_root), monitor=True, ), skf_pos_v13=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosV13_Stat'.format(pv_root), monitor=True, ), skf_pos_v24=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosV24_Stat'.format(pv_root), monitor=True, ), skf_pos_w13=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosW13_Stat'.format(pv_root), monitor=True, ), skf_pos_w24=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosW24_Stat'.format(pv_root), monitor=True, ), skf_pos_Z12=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosZ12_Stat'.format(pv_root), monitor=True, ), skf_status=device('nicos.devices.epics.pva.EpicsStringReadable', description='The chopper status.', readpv='{}Chop_Stat'.format(pv_root), monitor=True, ), skf_control=device('nicos.devices.epics.pva.EpicsMappedMoveable', description='Used to start and stop the chopper.', readpv='{}Cmd'.format(pv_root), writepv='{}Cmd'.format(pv_root), requires={'level': 'user'}, mapping={'Clear chopper': 8, 'Start chopper': 6, 'Async start': 5, 'Stop chopper': 3, 'Reset chopper': 1, }, ), skf_speed=device('nicos.devices.epics.pva.EpicsAnalogMoveable', description='The current speed.', requires={'level': 'user'}, readpv='{}Spd_Stat'.format(pv_root), writepv='{}Spd_SP'.format(pv_root), abslimits=(0.0, 77), monitor=True, ), )
class BaseSelector: def __init__(self): pass def select_model(self, X, y, total_time, learners=None, metric=None, save_directory=None): """ Find the best model with its hyperparameters from the autotf's model zool Parameters ---------- X: array-like or sparse matrix y: the target classes total_time: the training time metric: the eay to evaluate the model save_directory: the path to save the """ return "the best model object" def fit(self, X, y): """ Train with the best model """ pass def predict(self, X): """ Predict with the best model """ def best_score(self): """ Return the best score such as cross-validation accuracy or f1. :return: """ return "best score" def show_models(self): """ Display the models which the selector has found. :return: """ pass
# # 5. Алфавитный переводчик номера телефона. Многие компании используют телефонные # # номера наподобие 555-GET-FOOD, чтобы клиентам было легче запоминать эти номера. # # На стандартном телефоне буквам алфавита поставлены в соответствие числа следующим # # образом: А,В и С=2 ; D,Е и F=З. phone_num = input('nnn-XXX-XXXX. Где n- # цифра, X - буквы: ') def main(): print("'x' can be either a letter or a number.") phone_num = input('Enter a phone number in the format xxx-xxx-xxxx: ') print(phone_num) print("Phone number alphabet:", phone_num) print("Phone number: ", end="") print_number_alphabet(phone_num) def print_number_alphabet(num_phone): for ch in num_phone: if ch.islower(): ch = ch.upper() if ch.isdigit(): print(ch, end='') elif ch == '-': print('-', end='') elif ch == 'A' or ch == 'B' or ch == 'C': print('2', end='') elif ch == 'D' or ch == 'E' or ch == 'F': print('3', end='') elif ch == 'G' or ch == 'H' or ch == 'I': print('4', end='') elif ch == 'J' or ch == 'K' or ch == 'L' \ or ch == 'V': print('5', end='') elif ch == 'M' or ch == 'N' or ch == 'O' \ or ch == 'U': print('6', end='') elif ch == 'P' or ch == 'Q' or ch == 'R' \ or ch == 'S' or ch == 'T': print('7', end='') elif ch == 'W' or ch == 'X' or ch == 'Y' \ or ch == 'Z': print('8', end='') else: print('-', end='') main()
# Given a list x of length n, a number to be inserted into the list and a position where to insert the number # return the new list # e.g given [2, 3, 6, 7], num=8 and position=2, return [2, 3, 8, 6, 7] # for more info on this quiz, go to this url: http://www.programmr.com/insertion-specified-position-array-0 def insert_into_list(arr, num, position): b = arr[:position] + [num] + arr[position:] return b if __name__ == "__main__": print(insert_into_list([1, 2, 3, 4], 5, 4))
"""This module contains exceptions defined for Rhasspy Desktop Satellite.""" class RDSatelliteServerError(Exception): """Base class for exceptions raised by Rhasspy Desktop Satellite code. By catching this exception type, you catch all exceptions that are defined by the Hermes Audio Server code.""" class ConfigurationFileNotFoundError(RDSatelliteServerError): """Raised when the configuration file is not found.""" def __init__(self, filename): """Initialize the exception with a string representing the filename.""" self.filename = filename class NoDefaultAudioDeviceError(RDSatelliteServerError): """Raised when there's no default audio device available.""" def __init__(self, inout): """Initialize the exception with a string representing input or output. """ self.inout = inout class UnsupportedPlatformError(RDSatelliteServerError): """Raised when the platform Rhasspy Desktop Satellite is running on is not supported.""" def __init__(self, platform): """Initialize the exception with a string representing the platform.""" self.platform = platform
#!/usr/bin/env python # -*- coding: utf-8 -*- """ python系统内的异常 +-- Exception +-- StopIteration +-- StopAsyncIteration +-- ArithmeticError | +-- FloatingPointError | +-- OverflowError | +-- ZeroDivisionError +-- AssertionError +-- AttributeError +-- BufferError +-- EOFError +-- ImportError | +-- ModuleNotFoundError +-- LookupError | +-- IndexError | +-- KeyError +-- MemoryError +-- NameError | +-- UnboundLocalError +-- OSError | +-- BlockingIOError | +-- ChildProcessError | +-- ConnectionError | | +-- BrokenPipeError | | +-- ConnectionAbortedError | | +-- ConnectionRefusedError | | +-- ConnectionResetError | +-- FileExistsError | +-- FileNotFoundError | +-- InterruptedError | +-- IsADirectoryError | +-- NotADirectoryError | +-- PermissionError | +-- ProcessLookupError | +-- TimeoutError +-- ReferenceError +-- RuntimeError | +-- NotImplementedError | +-- RecursionError +-- SyntaxError | +-- IndentationError | +-- TabError +-- SystemError +-- TypeError +-- ValueError | +-- UnicodeError | +-- UnicodeDecodeError | +-- UnicodeEncodeError | +-- UnicodeTranslateError +-- Warning +-- DeprecationWarning +-- PendingDeprecationWarning +-- RuntimeWarning +-- SyntaxWarning +-- UserWarning +-- FutureWarning +-- ImportWarning +-- UnicodeWarning +-- BytesWarning +-- ResourceWarning """ class ConfigFileNotFoundError(FileNotFoundError): """ The config file not found. """ class RequireArgumentError(Exception): """ Require some argument """ class FatalError(): """Fatal Error, the program need shutdown imediately""" class NotIntegerError(ValueError): """Need input is a integer""" class NotFloatError(ValueError): """Need input is a float""" class OutOfRangeError(ValueError): """The input required a range""" class OutOfChoiceError(ValueError): """The parameter is out of given choice""" class NotSupportedWarning(UserWarning): """This feature is not supported, program will ignore it.""" class UnDefinedError(): """UndefinedError, lately we will talk about it. """ class GuessFailed(Warning): """ Your function do some guess operation but cause a failed, this is a warning. """
# Implementor class drawing_api: def draw_circle(self, x, y, radius): pass # ConcreteImplementor 1/2 class drawing_api1(drawing_api): def draw_circle(self, x, y, radius): print('API1.circle at %f:%f radius %f' % (x, y, radius)) # ConcreteImplementor 2/2 class drawing_api2(drawing_api): def draw_circle(self, x, y, radius): print('API2.circle at %f:%f radius %f' % (x, y, radius)) # Abstraction class Shape: def draw(self): pass def resize_by_percentage(self, pct): pass # Refined Abstraction class CircleShape(Shape): def __init__(self, x, y, radius, drawing_api): self.x = x self.y = y self.radius = radius self.drawing_api = drawing_api def draw(self): self.drawing_api.draw_circle(self.x, self.y, self.radius) def resize_by_percentage(self, pct): self.radius *= pct # Client if __name__ == '__main__': shapes = [ CircleShape(1, 2, 3, drawing_api1()), CircleShape(5, 7, 11, drawing_api2()) ] for shape in shapes: shape.resize_by_percentage(2.5) shape.draw()
class Solution: # @param {integer} k # @param {integer} n # @return {integer[][]} def combinationSum3(self, k, n): nums = range(1, 10) self.results = [] self.combination(nums, n, k, 0, []) return self.results def combination(self, nums, target, k, start, result): if k <= 0 : return elif k == 1: for i in nums: if i == target: self.results.append([i]) elif k == 2: end = len(nums) - 1 while start < end: s = nums[start] + nums[end] if s == target: result.append(nums[start]) result.append(nums[end]) self.results.append(result[:]) result.pop() result.pop() start += 1 elif s < target: start += 1 else: #s > target end -= 1 else: for i in range(start, len(nums)-1): t = target - nums[i] if t >= nums[i+1]: result.append(nums[i]) self.combination(nums, t, k -1, i + 1, result ) result.pop() else: break
X = int(input()) Y = int(input()) soma = 0 if X > Y: troca = Y Y = X X = troca sam = X while sam <= Y: if sam%13 != 0: soma = soma + sam sam += 1 print(soma)
pMMO_dna_seq = 'ATGAAAACTATTAAAGATAGAATTGCTAAATGGTCTGCTATTGGTTTGTTGTCTGCTGTTGCTGCTACTGCTTTTTATGCTCCATCTGCTTCTGCTCATGGTGAAAAATCTCAAGCTGCTTTTATGAGAATGAGGACTATTCATTGGTATGACTTATCTTGGTCTAAGGAAAAGGTTAAAATAAACGAAACTGTTGAGATTAAAGGTAAATTTCATGTTTTTGAAGGTTGGCCTGAAACTGTTGATGAACCTGATGTTGCTTTTTTGAATGTTGGTATGCCTGGTCCTGTTTTTATTAGAAAAGAATCTTATATTGGTGGTCAATTGGTTCCAAGATCTGTTAGATTGGAAATTGGTAAAACTTATGATTTTAGAGTTGTTTTGAAAGCTAGAAGACCTGGTGATTGGCATGTTCATACTATGATGAATGTTCAAGGTGGTGGTCCAATTATTGGTCCTGGTAAATGGATTACTGTTGAAGGTTCTATGTCTGAATTTAGAAATCCTGTTACTACTTTGACTGGTCAAACTGTTGATTTGGAAAATTATAATGAAGGTAATACTTATTTCTGGCACGCTTTTTGGTTCGCAATAGGCGTTGCCTGGATTGGATATTGGTCGAGGAGACCTATCTTCATACCAAGGTTATTGATGGTTGATGCTGGTAGAGCTGATGAATTGGTTTCTGCTACTGATAGAAAAGTTGCTATGGGTTTTTTGGCTGCTACTATTTTGATTGTTGTTATGGCTATGTCTTCTGCTAATTCTAAATATCCAATTACTATTCCATTGCAAGCTGGTACTATGAGAGGTATGAAACCATTGGAATTGCCTGCTCCAACTGTTTCTGTTAAAGTTGAAGATGCTACTTATAGAGTTCCTGGTAGAGCTATGAGAATGAAATTGACTATTACTAATCATGGTAATTCTCCAATTAGATTGGGTGAATTTTATACTGCTTCTGTTAGATTTTTGGATTCTGATGTTTATAAAGATACTACTGGTTATCCTGAAGATTTGTTGGCTGAAGATGGTTTGTCTGTTTCTGATAATTCTCCATTGGCTCCTGGTGAAACTAGAACTGTTGATGTTACTGCTTCTGATGCTGCTTGGGAAGTTTATAGATTGTCTGATATTATTTATGATCCTGATTCTAGATTTGCTGGTTTGTTGTTTTTTTTTGATGCTACTGGTAATAGACAAGTTGTTCAAATTGATGCTCCATTGATTCCATCTTTTATGTAAATGGTGAGCAAGGGCGAGGAGCTGTTCACCGGGGTGGTGCCCATCCTGGTCGAGCTGGACGGCGACGTAAACGGCCACAAGTTCAGCGTGTCCGGCGAGGGCGAGGGCGATGCCACCTACGGCAAGCTGACCCTGAAGCTGATCTGCACCACCGGCAAGCTGCCCGTGCCCTGGCCCACCCTCGTGACCACCCTGGGCTACGGCCTGCAGTGCTTCGCCCGCTACCCCGACCACATGAAGCAGCACGACTTCTTCAAGTCCGCCATGCCCGAAGGCTACGTCCAGGAGCGCACCATCTTCTTCAAGGACGACGGCAACTACAAGACCCGCGCCGAGGTGAAGTTCGAGGGCGACACCCTGGTGAACCGCATCGAGCTGAAGGGCATCGACTTCAAGGAGGACGGCAACATCCTGGGGCACAAGCTGGAGTACAACTACAACAGCCACAACGTCTATATCACCGCCGACAAGCAGAAGAACGGCATCAAGGCCAACTTCAAGATCCGCCACAACATCGAGGACGGCGGCGTGCAGCTCGCCGACCACTACCAGCAGAACACCCCCATCGGCGACGGCCCCGTGCTGCTGCCCGACAACCACTACCTGAGCTACCAGTCCAAGCTGAGCAAAGACCCCAACGAGAAGCGCGATCACATGGTCCTGCTGGAGTTCGTGACCGCCGCCGGGATCACTCTCGGCATGGACGAGCTGTACAAGTAATTACTTGTACAGCTCGTCCATGCCGAGAGTGATCCCGGCGGCGGTCACGAACTCCAGCAGGACCATGTGATCGCGCTTCTCGTTGGGGTCTTTGCTCAGCTTGGACTGGTAGCTCAGGTAGTGGTTGTCGGGCAGCAGCACGGGGCCGTCGCCGATGGGGGTGTTCTGCTGGTAGTGGTCGGCGAGCTGCACGCCGCCGTCCTCGATGTTGTGGCGGATCTTGAAGTTGGCCTTGATGCCGTTCTTCTGCTTGTCGGCGGTGATATAGACGTTGTGGCTGTTGTAGTTGTACTCCAGCTTGTGCCCCAGGATGTTGCCGTCCTCCTTGAAGTCGATGCCCTTCAGCTCGATGCGGTTCACCAGGGTGTCGCCCTCGAACTTCACCTCGGCGCGGGTCTTGTAGTTGCCGTCGTCCTTGAAGAAGATGGTGCGCTCCTGGACGTAGCCTTCGGGCATGGCGGACTTGAAGAAGTCGTGCTGCTTCATGTGGTCGGGGTAGCGGGCGAAGCACTGCAGGCCGTAGCCCAGGGTGGTCACGAGGGTGGGCCAGGGCACGGGCAGCTTGCCGGTGGTGCAGATCAGCTTCAGGGTCAGCTTGCCGTAGGTGGCATCGCCCTCGCCCTCGCCGGACACGCTGAACTTGTGGCCGTTTACGTCGCCGTCCAGCTCGACCAGGATGGGCACCACCCCGGTGAACAGCTCCTCGCCCTTGCTCACCATTTACATAAAAGATGGAATCAATGGAGCATCAATTTGAACAACTTGTCTATTACCAGTAGCATCAAAAAAAAACAACAAACCAGCAAATCTAGAATCAGGATCATAAATAATATCAGACAATCTATAAACTTCCCAAGCAGCATCAGAAGCAGTAACATCAACAGTTCTAGTTTCACCAGGAGCCAATGGAGAATTATCAGAAACAGACAAACCATCTTCAGCCAACAAATCTTCAGGATAACCAGTAGTATCTTTATAAACATCAGAATCCAAAAATCTAACAGAAGCAGTATAAAATTCACCCAATCTAATTGGAGAATTACCATGATTAGTAATAGTCAATTTCATTCTCATAGCTCTACCAGGAACTCTATAAGTAGCATCTTCAACTTTAACAGAAACAGTTGGAGCAGGCAATTCCAATGGTTTCATACCTCTCATAGTACCAGCTTGCAATGGAATAGTAATTGGATATTTAGAATTAGCAGAAGACATAGCCATAACAACAATCAAAATAGTAGCAGCCAAAAAACCCATAGCAACTTTTCTATCAGTAGCAGAAACCAATTCATCAGCTCTACCAGCATCAACCATCAATAACCTTGGTATGAAGATAGGTCTCCTCGACCAATATCCAATCCAGGCAACGCCTATTGCGAACCAAAAAGCGTGCCAGAAATAAGTATTACCTTCATTATAATTTTCCAAATCAACAGTTTGACCAGTCAAAGTAGTAACAGGATTTCTAAATTCAGACATAGAACCTTCAACAGTAATCCATTTACCAGGACCAATAATTGGACCACCACCTTGAACATTCATCATAGTATGAACATGCCAATCACCAGGTCTTCTAGCTTTCAAAACAACTCTAAAATCATAAGTTTTACCAATTTCCAATCTAACAGATCTTGGAACCAATTGACCACCAATATAAGATTCTTTTCTAATAAAAACAGGACCAGGCATACCAACATTCAAAAAAGCAACATCAGGTTCATCAACAGTTTCAGGCCAACCTTCAAAAACATGAAATTTACCTTTAATCTCAACAGTTTCGTTTATTTTAACCTTTTCCTTAGACCAAGATAAGTCATACCAATGAATAGTCCTCATTCTCATAAAAGCAGCTTGAGATTTTTCACCATGAGCAGAAGCAGATGGAGCATAAAAAGCAGTAGCAGCAACAGCAGACAACAAACCAATAGCAGACCATTTAGCAATTCTATCTTTAATAGTTTTCATTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTATGAAACTACTCTTACCATTATTGACACTCGTTGCTGTTGCTAAGGCCATGTCTGCTGCTCAATCTGCTGTTAGATCTCATGCTGAAGCTGTTCAAGTTTCTAGAACTATTGATTGGATGGCTTTGTTTGTTGTTTTTTTTGTTATTGTTGGTTCTTATCATATTCATGCTATGTTGACTATGGGTGATTGGGATTTTTGGTCTGATTGGAAAGATAGAAGATTGTGGGTTACTGTTACTCCAATTGTTTTGGTTACTTTTCCTGCTGCTGTTCAATCTTATTTGTGGGAAAGATATAGATTGCCATGGGGTGCTACTGTTTGTGTTTTGGGTTTGTTGTTGGGTGAATGGATTAATAGATATTTTAATTTTTGGGGTTGGACTTATTTTCCAATTAATTTTGTTTTTCCTGCTTCTTTGGTTCCTGGTGCTATTATTTTGGATACTGTTTTGATGTTGTCTGGTTCTTATTTGTTTACTGCTATTGTTGGTGCTATGGGTTGGGGTTTGATTTTTTATCCTGGTAATTGGCCAATTATTGCTCCATTGCATGTTCCTGTTGAAAATAATGGTATGTTGATGTCTATTGCTGATATTCAAGGTTATAATTATGTTAGAACTGGTACTCCTGAATATATTAGAATGGTTGAAAAAGGTACTTTGAGAACTTTTGGTAAAGATGTTGCGCCCGTTTCAGCTTTTTTTTCTGCGTTCATGTCTATATTGATATATTTTATGTGGCATTTCATTGGTAGATGGTTTTCTAATGAAAGATTTTTGCAATCTACTTAATTAAGTAGATTGCAAAAATCTTTCATTAGAAAACCATCTACCAATGAAATGCCACATAAAATATATCAATATAGACATGAACGCAGAAAAAAAAGCTGAAACGGGCGCAACATCTTTACCAAAAGTTCTCAAAGTACCTTTTTCAACCATTCTAATATATTCAGGAGTACCAGTTCTAACATAATTATAACCTTGAATATCAGCAATAGACATCAACATACCATTATTTTCAACAGGAACATGCAATGGAGCAATAATTGGCCAATTACCAGGATAAAAAATCAAACCCCAACCCATAGCACCAACAATAGCAGTAAACAAATAAGAACCAGACAACATCAAAACAGTATCCAAAATAATAGCACCAGGAACCAAAGAAGCAGGAAAAACAAAATTAATTGGAAAATAAGTCCAACCCCAAAAATTAAAATATCTATTAATCCATTCACCCAACAACAAACCCAAAACACAAACAGTAGCACCCCATGGCAATCTATATCTTTCCCACAAATAAGATTGAACAGCAGCAGGAAAAGTAACCAAAACAATTGGAGTAACAGTAACCCACAATCTTCTATCTTTCCAATCAGACCAAAAATCCCAATCACCCATAGTCAACATAGCATGAATATGATAAGAACCAACAATAACAAAAAAAACAACAAACAAAGCCATCCAATCAATAGTTCTAGAAACTTGAACAGCTTCAGCATGAGATCTAACAGCAGATTGAGCAGCAGACATGGCCTTAGCAACAGCAACGAGTGTCAATAATGGTAAGAGTAGTTTCATATGAAACTACTCTTACCATTATTGACACTCGTTGCTGTTGCTAAGGCCATGGCTGCTACTACTATTGGTGGTGCTGCTGCTGCTGAAGCTCCATTGTTAGATAAGAAATGGTTGACATTTGCTTTGGCTATATACACTGTTTTTTATTTGTGGGTTAGATGGTATGAGGGGGTTTATGGCTGGTCTGCTGGTTTGGATTCTTTCGCTCCGGAGTTTGAAACTTATTGGATGAATTTCTTGTATACGGAGATTGTTTTGGAAATTGTTACTGCTTCTATTTTGTGGGGTTACTTATGGAAAACTAGAGATAGAAATTTGGCTGCTTTGACTCCAAGAGAAGAATTGAGAAGAAATTTTACTCATTTGGTATGGTTGGTTGCTTATGCTTGGGCTATTTACTGGGGTGCTTCTTATTTTACTGAACAAGATGGTACTTGGCACCAAACAATAGTTAGGGACACTGATTTTACACCTTCTCATATTATTGAATTCTATTTGTCTTACCCAATTTATATTATTACTGGGTTTGCTGCTTTTATTTATGCTAAAACTAGATTGCCATTTTTTGCTAAAGGTATTTCTTTGCCATATTTGGTTTTGGTTGTTGGTCCATTTATGATTTTGCCAAATGTTGGTTTGAATGAATGGGGTCATACTTTTTGGTTTATGGAAGAATTGTTTGTTGCTCCATTGCATTATGGTTTTGTTATTTTCGGTTGGTTGGCTTTGGCTGTTATGGGTACTTTGACTCAAACTTTTTATAGATTTGCTCAAGGTGGTTTGGGTCAATCTTTGTGTGAAGCTGTTGATGAAGGTTTGATTGCTAAATAATTATTTAGCAATCAAACCTTCATCAACAGCTTCACACAAAGATTGACCCAAACCACCTTGAGCAAATCTATAAAAAGTTTGAGTCAAAGTACCCATAACAGCCAAAGCCAACCAACCGAAAATAACAAAACCATAATGCAATGGAGCAACAAACAATTCTTCCATAAACCAAAAAGTATGACCCCATTCATTCAAACCAACATTTGGCAAAATCATAAATGGACCAACAACCAAAACCAAATATGGCAAAGAAATACCTTTAGCAAAAAATGGCAATCTAGTTTTAGCATAAATAAAAGCAGCAAACCCAGTAATAATATAAATTGGGTAAGACAAATAGAATTCAATAATATGAGAAGGTGTAAAATCAGTGTCCCTAACTATTGTTTGGTGCCAAGTACCATCTTGTTCAGTAAAATAAGAAGCACCCCAGTAAATAGCCCAAGCATAAGCAACCAACCATACCAAATGAGTAAAATTTCTTCTCAATTCTTCTCTTGGAGTCAAAGCAGCCAAATTTCTATCTCTAGTTTTCCATAAGTAACCCCACAAAATAGAAGCAGTAACAATTTCCAAAACAATCTCCGTATACAAGAAATTCATCCAATAAGTTTCAAACTCCGGAGCGAAAGAATCCAAACCAGCAGACCAGCCATAAACCCCCTCATACCATCTAACCCACAAATAAAAAACAGTGTATATAGCCAAAGCAAATGTCAACCATTTCTTATCTAACAATGGAGCTTCAGCAGCAGCAGCACCACCAATAGTAGTAGCAGCCATGGCCTTAGCAACAGCAACGAGTGTCAATAATGGTAAGAGTAGTTTCAT' pMMO_rna_seq = 'UUAAGUAGAUUGCAAAAAUCUUUCAUUAGAAAACCAUCUACCAAUGAAAUGCCACAUAAAAUAUAUCAAUAUAGACAUGAACGCAGAAAAAAAAGCUGAAACGGGCGCAACAUCUUUACCAAAAGUUCUCAAAGUACCUUUUUCAACCAUUCUAAUAUAUUCAGGAGUACCAGUUCUAACAUAAUUAUAACCUUGAAUAUCAGCAAUAGACAUCAACAUACCAUUAUUUUCAACAGGAACAUGCAAUGGAGCAAUAAUUGGCCAAUUACCAGGAUAAAAAAUCAAACCCCAACCCAUAGCACCAACAAUAGCAGUAAACAAAUAAGAACCAGACAACAUCAAAACAGUAUCCAAAAUAAUAGCACCAGGAACCAAAGAAGCAGGAAAAACAAAAUUAAUUGGAAAAUAAGUCCAACCCCAAAAAUUAAAAUAUCUAUUAAUCCAUUCACCCAACAACAAACCCAAAACACAAACAGUAGCACCCCAUGGCAAUCUAUAUCUUUCCCACAAAUAAGAUUGAACAGCAGCAGGAAAAGUAACCAAAACAAUUGGAGUAACAGUAACCCACAAUCUUCUAUCUUUCCAAUCAGACCAAAAAUCCCAAUCACCCAUAGUCAACAUAGCAUGAAUAUGAUAAGAACCAACAAUAACAAAAAAAACAACAAACAAAGCCAUCCAAUCAAUAGUUCUAGAAACUUGAACAGCUUCAGCAUGAGAUCUAACAGCAGAUUGAGCAGCAGACAUGGCCUUAGCAACAGCAACGAGUGUCAAUAAUGGUAAGAGUAGUUUCAUUUACUUGUACAGCUCGUCCAUGCCGAGAGUGAUCCCGGCGGCGGUCACGAACUCCAGCAGGACCAUGUGAUCGCGCUUCUCGUUGGGGUCUUUGCUCAGCUUGGACUGGUAGCUCAGGUAGUGGUUGUCGGGCAGCAGCACGGGGCCGUCGCCGAUGGGGGUGUUCUGCUGGUAGUGGUCGGCGAGCUGCACGCCGCCGUCCUCGAUGUUGUGGCGGAUCUUGAAGUUGGCCUUGAUGCCGUUCUUCUGCUUGUCGGCGGUGAUAUAGACGUUGUGGCUGUUGUAGUUGUACUCCAGCUUGUGCCCCAGGAUGUUGCCGUCCUCCUUGAAGUCGAUGCCCUUCAGCUCGAUGCGGUUCACCAGGGUGUCGCCCUCGAACUUCACCUCGGCGCGGGUCUUGUAGUUGCCGUCGUCCUUGAAGAAGAUGGUGCGCUCCUGGACGUAGCCUUCGGGCAUGGCGGACUUGAAGAAGUCGUGCUGCUUCAUGUGGUCGGGGUAGCGGGCGAAGCACUGCAGGCCGUAGCCCAGGGUGGUCACGAGGGUGGGCCAGGGCACGGGCAGCUUGCCGGUGGUGCAGAUCAGCUUCAGGGUCAGCUUGCCGUAGGUGGCAUCGCCCUCGCCCUCGCCGGACACGCUGAACUUGUGGCCGUUUACGUCGCCGUCCAGCUCGACCAGGAUGGGCACCACCCCGGUGAACAGCUCCUCGCCCUUGCUCACCAUUUACAUAAAAGAUGGAAUCAAUGGAGCAUCAAUUUGAACAACUUGUCUAUUACCAGUAGCAUCAAAAAAAAACAACAAACCAGCAAAUCUAGAAUCAGGAUCAUAAAUAAUAUCAGACAAUCUAUAAACUUCCCAAGCAGCAUCAGAAGCAGUAACAUCAACAGUUCUAGUUUCACCAGGAGCCAAUGGAGAAUUAUCAGAAACAGACAAACCAUCUUCAGCCAACAAAUCUUCAGGAUAACCAGUAGUAUCUUUAUAAACAUCAGAAUCCAAAAAUCUAACAGAAGCAGUAUAAAAUUCACCCAAUCUAAUUGGAGAAUUACCAUGAUUAGUAAUAGUCAAUUUCAUUCUCAUAGCUCUACCAGGAACUCUAUAAGUAGCAUCUUCAACUUUAACAGAAACAGUUGGAGCAGGCAAUUCCAAUGGUUUCAUACCUCUCAUAGUACCAGCUUGCAAUGGAAUAGUAAUUGGAUAUUUAGAAUUAGCAGAAGACAUAGCCAUAACAACAAUCAAAAUAGUAGCAGCCAAAAAACCCAUAGCAACUUUUCUAUCAGUAGCAGAAACCAAUUCAUCAGCUCUACCAGCAUCAACCAUCAAUAACCUUGGUAUGAAGAUAGGUCUCCUCGACCAAUAUCCAAUCCAGGCAACGCCUAUUGCGAACCAAAAAGCGUGCCAGAAAUAAGUAUUACCUUCAUUAUAAUUUUCCAAAUCAACAGUUUGACCAGUCAAAGUAGUAACAGGAUUUCUAAAUUCAGACAUAGAACCUUCAACAGUAAUCCAUUUACCAGGACCAAUAAUUGGACCACCACCUUGAACAUUCAUCAUAGUAUGAACAUGCCAAUCACCAGGUCUUCUAGCUUUCAAAACAACUCUAAAAUCAUAAGUUUUACCAAUUUCCAAUCUAACAGAUCUUGGAACCAAUUGACCACCAAUAUAAGAUUCUUUUCUAAUAAAAACAGGACCAGGCAUACCAACAUUCAAAAAAGCAACAUCAGGUUCAUCAACAGUUUCAGGCCAACCUUCAAAAACAUGAAAUUUACCUUUAAUCUCAACAGUUUCGUUUAUUUUAACCUUUUCCUUAGACCAAGAUAAGUCAUACCAAUGAAUAGUCCUCAUUCUCAUAAAAGCAGCUUGAGAUUUUUCACCAUGAGCAGAAGCAGAUGGAGCAUAAAAAGCAGUAGCAGCAACAGCAGACAACAAACCAAUAGCAGACCAUUUAGCAAUUCUAUCUUUAAUAGUUUUCAUUUAUUUAGCAAUCAAACCUUCAUCAACAGCUUCACACAAAGAUUGACCCAAACCACCUUGAGCAAAUCUAUAAAAAGUUUGAGUCAAAGUACCCAUAACAGCCAAAGCCAACCAACCGAAAAUAACAAAACCAUAAUGCAAUGGAGCAACAAACAAUUCUUCCAUAAACCAAAAAGUAUGACCCCAUUCAUUCAAACCAACAUUUGGCAAAAUCAUAAAUGGACCAACAACCAAAACCAAAUAUGGCAAAGAAAUACCUUUAGCAAAAAAUGGCAAUCUAGUUUUAGCAUAAAUAAAAGCAGCAAACCCAGUAAUAAUAUAAAUUGGGUAAGACAAAUAGAAUUCAAUAAUAUGAGAAGGUGUAAAAUCAGUGUCCCUAACUAUUGUUUGGUGCCAAGUACCAUCUUGUUCAGUAAAAUAAGAAGCACCCCAGUAAAUAGCCCAAGCAUAAGCAACCAACCAUACCAAAUGAGUAAAAUUUCUUCUCAAUUCUUCUCUUGGAGUCAAAGCAGCCAAAUUUCUAUCUCUAGUUUUCCAUAAGUAACCCCACAAAAUAGAAGCAGUAACAAUUUCCAAAACAAUCUCCGUAUACAAGAAAUUCAUCCAAUAAGUUUCAAACUCCGGAGCGAAAGAAUCCAAACCAGCAGACCAGCCAUAAACCCCCUCAUACCAUCUAACCCACAAAUAAAAAACAGUGUAUAUAGCCAAAGCAAAUGUCAACCAUUUCUUAUCUAACAAUGGAGCUUCAGCAGCAGCAGCACCACCAAUAGUAGUAGCAGCCAUGGCCUUAGCAACAGCAACGAGUGUCAAUAAUGGUAAGAGUAGUUUCAU' pMMO_aa_seq = 'MKLLLPLLTLVAVAKAMAATTIGGAAAAEAPLLDKKWLTFALAIYTVFYLWVRWYEGVYGWSAGLDSFAPEFETYWMNFLYTEIVLEIVTASILWGYLWKTRDRNLAALTPREELRRNFTHLVWLVAYAWAIYWGASYFTEQDGTWHQTIVRDTDFTPSHIIEFYLSYPIYIITGFAAFIYAKTRLPFFAKGISLPYLVLVVGPFMILPNVGLNEWGHTFWFMEELFVAPLHYGFVIFGWLALAVMGTLTQTFYRFAQGGLGQSLCEAVDEGLIAKMKTIKDRIAKWSAIGLLSAVAATAFYAPSASAHGEKSQAAFMRMRTIHWYDLSWSKEKVKINETVEIKGKFHVFEGWPETVDEPDVAFLNVGMPGPVFIRKESYIGGQLVPRSVRLEIGKTYDFRVVLKARRPGDWHVHTMMNVQGGGPIIGPGKWITVEGSMSEFRNPVTTLTGQTVDLENYNEGNTYFWHAFWFAIGVAWIGYWSRRPIFIPRLLMVDAGRADELVSATDRKVAMGFLAATILIVVMAMSSANSKYPITIPLQAGTMRGMKPLELPAPTVSVKVEDATYRVPGRAMRMKLTITNHGNSPIRLGEFYTASVRFLDSDVYKDTTGYPEDLLAEDGLSVSDNSPLAPGETRTVDVTASDAAWEVYRLSDIIYDPDSRFAGLLFFFDATGNRQVVQIDAPLIPSFMMVSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKLICTTGKLPVPWPTLVTTLGYGLQCFARYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYITADKQKNGIKANFKIRHNIEDGGVQLADHYQQNTPIGDGPVLLPDNHYLSYQSKLSKDPNEKRDHMVLLEFVTAAGITLGMDELYKMKLLLPLLTLVAVAKAMSAAQSAVRSHAEAVQVSRTIDWMALFVVFFVIVGSYHIHAMLTMGDWDFWSDWKDRRLWVTVTPIVLVTFPAAVQSYLWERYRLPWGATVCVLGLLLGEWINRYFNFWGWTYFPINFVFPASLVPGAIILDTVLMLSGSYLFTAIVGAMGWGLIFYPGNWPIIAPLHVPVENNGMLMSIADIQGYNYVRTGTPEYIRMVEKGTLRTFGKDVAPVSAFFSAFMSILIYFMWHFIGRWFSNERFLQST' hemo_dna_seq = 'ATGGGTGCTTTTACTGAAAAACAAGAGGCTTTGGTTTCTTCTAGCTTTGAAGCTTTTAAAGCTAACATTCCACAATATTCTGTTGTTTTTTATACTTCTATTTTGGAAAAAGCTCCTGCTGCTAAAGATTTGTTTTCTTTTTTGTCTAATGGTGTTGATCCATCTAATCCAAAATTGACTGGTCATGCTGAAAAATTGTTTGGTTTGGTTAGAGATTCTGCTGGTCAATTGAAAGCTAATGGTACTGTTGTTGCTGATGCTGCTTTGGGTTCTATTCATGCTCAAAAAGCTATTACTGATCCACAATTTGTTGTTGTTAAAGAAGCTTTGTTGAAAACTATTAAAGAAGCTGTTGGTGATAAATGGTCTGATGAATTGTCTTCTGCTTGGGAAGTTGCTTATGATGAATTGGCTGCTGCTATTAAAAAAGCTTTTAAAAGCTTTTTTAATAGCAGCAGCCAATTCATCATAAGCAACTTCCCAAGCAGAAGACAATTCATCAGACCATTTATCACCAACAGCTTCTTTAATAGTTTTCAACAAAGCTTCTTTAACAACAACAAATTGTGGATCAGTAATAGCTTTTTGAGCATGAATAGAACCCAAAGCAGCATCAGCAACAACAGTACCATTAGCTTTCAATTGACCAGCAGAATCTCTAACCAAACCAAACAATTTTTCAGCATGACCAGTCAATTTTGGATTAGATGGATCAACACCATTAGACAAAAAAGAAAACAAATCTTTAGCAGCAGGAGCTTTTTCCAAAATAGAAGTATAAAAAACAACAGAATATTGTGGAATGTTAGCTTTAAAAGCTTCAAAGCTAGAAGAAACCAAAGCCTCTTGTTTTTCAGTAAAAGCACCCATATGCTTCCAAGATTCTGGTGGGAATACTGCTGATAGCCTAACGTTCATGATCAAAATTTAACTGTTCTAACCCCTACTTGACAGGCAATATATAAACAGAAGGAAGCTGCCCTGTCTTAAACCTTTTTTTTTATCATCATTATTAGCTTACTTTCATAATTGCGACTGGTTCCAATTGACAAGCTTTTGATTTTAACGACTTTTAACGACAACTTGAGAAGATCAAAAAACAACTAATTATTCGAAACGATGGCTATCCCCGAAGAGTTTGATATCCTAGTTCTAGGTGGTGGATCCAGTGGATCCTGTATTGCCGGAAGATTGGCAAACTTGGACCACTCCTTGAAAGTACTTTCAAGGAGTGGTCCAAGTTTGCCAATCTTCCGGCAATACAGGATCCACTGGATCCACCACCTAGAACTAGGATATCAAACTCTTCGGGGATAGCCATCGTTTCGAATAATTAGTTGTTTTTTGATCTTCTCAAGTTGTCGTTAAAAGTCGTTAAAATCAAAAGCTTGTCAATTGGAACCAGTCGCAATTATGAAAGTAAGCTAATAATGATGATAAAAAAAAAGGTTTAAGACAGGGCAGCTTCCTTCTGTTTATATATTGCCTGTCAAGTAGGGGTTAGAACAGTTAAATTTTGATCATGAACGTTAGGCTATCAGCAGTATTCCCACCAGAATCTTGGAAGCATACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGT' hemo_rna_seq = 'AAAAGCUUUUUUAAUAGCAGCAGCCAAUUCAUCAUAAGCAACUUCCCAAGCAGAAGACAAUUCAUCAGACCAUUUAUCACCAACAGCUUCUUUAAUAGUUUUCAACAAAGCUUCUUUAACAACAACAAAUUGUGGAUCAGUAAUAGCUUUUUGAGCAUGAAUAGAACCCAAAGCAGCAUCAGCAACAACAGUACCAUUAGCUUUCAAUUGACCAGCAGAAUCUCUAACCAAACCAAACAAUUUUUCAGCAUGACCAGUCAAUUUUGGAUUAGAUGGAUCAACACCAUUAGACAAAAAAGAAAACAAAUCUUUAGCAGCAGGAGCUUUUUCCAAAAUAGAAGUAUAAAAAACAACAGAAUAUUGUGGAAUGUUAGCUUUAAAAGCUUCAAAGCUAGAAGAAACCAAAGCCUCUUGUUUUUCAGUAAAAGCACCCAU' hemo_aa_seq = 'MGAFTEKQEALVSSSFEAFKANIPQYSVVFYTSILEKAPAAKDLFSFLSNGVDPSNPKLTGHAEKLFGLVRDSAGQLKANGTVVADAALGSIHAQKAITDPQFVVVKEALLKTIKEAVGDKWSDELSSAWEVAYDELAAAIKKAF'
"""MEF Eline Exceptions.""" class MEFELineException(Exception): """MEF Eline Base Exception.""" class EVCException(MEFELineException): """EVC Exception.""" class ValidationException(EVCException): """Exception for validation errors.""" class FlowModException(MEFELineException): """Exception for FlowMod errors.""" class InvalidPath(MEFELineException): """Exception for invalid path."""
# Copyright (c) 2021 homuler # # Use of this source code is governed by an MIT-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/MIT. """Proto compiler Macro for generating C# source files corresponding to .proto files """ def csharp_proto_src(name, proto_src, deps): """Generate C# source code for *.proto Args: name: target name deps: label list of dependent targets proto_src: target .proto file path """ base_name = proto_src.split("/")[-1] csharp_out = _camelize(base_name.split(".")[0]) + ".cs" outdir = "$(GENDIR)" native.genrule( name = name, srcs = deps + [ "@com_google_protobuf//:well_known_protos", ], outs = [csharp_out], cmd = """ mkdir -p {outdir} $(location @com_google_protobuf//:protoc) \ --proto_path=. \ --proto_path={outdir} \ --proto_path=$$(pwd)/external/com_google_protobuf/src \ --proto_path=$$(pwd)/external/com_google_mediapipe \ --csharp_out={outdir} {} mv {outdir}/{outfile} $$(dirname $(location {outfile})) """.format(proto_src, outdir = outdir, outfile = csharp_out), tools = [ "@com_google_protobuf//:protoc", ], ) def _camelize(str): res = "" need_capitalize = True for s in str.elems(): if not s.isalnum(): need_capitalize = True continue if need_capitalize: res += s.capitalize() else: res += s need_capitalize = s.isdigit() return res def _replace_suffix(string, old, new): """Returns a string with an old suffix replaced by a new suffix.""" return string.endswith(old) and string[:-len(old)] + new or string
c = int(input('digite o primeiro numero: ')) b = int(input('digite o segundo numero: ')) a = int(input('digite o terceiro numero: ')) cores= {'vermelho': '\033[0;31m', 'azul' : '\033[1;34m', 'zero': '\033[m' } # qual o maior maior = a if b > c and b > a: maior = b if c > b and c > a: maior = c print('O maior valor foi {}{}{}'.format(cores['azul'],maior,cores['zero'])) # qual o menor menor = c if a < b and a < c: menor = a if b < a and b < c: menor = b print('O menor valor foi {}{}{}'.format(cores['vermelho'],menor,cores['zero']))
# coding=utf-8 common_mysql_config = { 'user': 'root', 'passwd': '', 'host': '127.0.0.1', 'db': 'autotrade', 'connect_timeout': 3600, 'charset': 'utf8' } yongjinbao_config = {"account": "帐号", "password": "加密后的密码"} guangfa_config = {"username": "加密的客户号", "password": "加密的密码"} yinghe_config = {"inputaccount": "客户号", "trdpwd": "加密后的密码"} huatai_config = {"userName": "用户名", "servicePwd": "通讯密码", "trdpwd": "加密后的密码"} xueqiu_config = { "username": "邮箱", "account": "手机号", "password": "加密后的密码", "portfolio_code": "组合代码(例:ZH818559)", "portfolio_market": "交易市场(例:us 或者 cn 或者 hk)" } global_config = { "response_format": { "int": [ "current_amount", "enable_amount", "entrust_amount", "成交数量", "撤单数量", "委托数量", "股份可用", "买入冻结", "买出冻结", "当前持仓", "股份余额" ], "float": [ "current_balance", "enable_balance", "fetch_balance", "market_value", "asset_balance", "av_buy_price", "cost_price", "income_balance", "market_value", "entrust_price", "business_amount", "business_price", "business_balance", "fare1", "occur_balance", "farex", "fare0", "occur_amount", "post_balance", "fare2", "fare3", "资金余额", "可用资金", "参考市值", "总资产", "股份参考盈亏", "委托价格", "参考盈亏", "参考市价", "参考市值" ] } } yjb_config = { "login_page": "https://jy.yongjinbao.com.cn/winner_gj/gjzq/", "login_api": "https://jy.yongjinbao.com.cn/winner_gj/gjzq/exchange.action", "verify_code_api": "https://jy.yongjinbao.com.cn/winner_gj/gjzq/user/extraCode.jsp", "prefix": "https://jy.yongjinbao.com.cn/winner_gj/gjzq/stock/exchange.action", "logout_api": "https://jy.yongjinbao.com.cn/winner_gj/gjzq/stock/exchange.action?function_id=20&login_type=stock", "login": { "function_id": 200, "login_type": "stock", "version": 200, "identity_type": "", "remember_me": "", "input_content": 1, "content_type": 0, "loginPasswordType": "B64", "disk_serial_id": "ST3250820AS", "cpuid": "-41315-FA76141D", "machinecode": "-41315-FA76141D" }, "buy": { "service_type": "stock", "request_id": "buystock_302" }, "sell": { "service_type": "stock", "request_id": "sellstock_302" }, "position": { "request_id": "mystock_403" }, "balance": { "request_id": "mystock_405" }, "entrust": { "request_id": "trust_401", "sort_direction": 1, "deliver_type": "", "service_type": "stock" }, "cancel_entrust": { "request_id": "chedan_304" }, "current_deal": { "request_id": "bargain_402", "sort_direction": 1, "service_type": "stock" }, "ipo_enable_amount": { "request_id": "buystock_300" }, "exchangetype4stock": { "service_type": "stock", "function_id": "105" }, "account4stock": { "service_type": "stock", "function_id": "407", "window_id": "StockMarketTrade" } } yh_config = { "login_page": "https://www.chinastock.com.cn/trade/webtrade/login.jsp", "login_api": "https://www.chinastock.com.cn/trade/LoginServlet?ajaxFlag=mainlogin", "heart_beat": "https://www.chinastock.com.cn/trade/AjaxServlet?ajaxFlag=heartbeat", "unlock": "https://www.chinastock.com.cn/trade/AjaxServlet?ajaxFlag=unlockscreen", "trade_api": "https://www.chinastock.com.cn/trade/AjaxServlet", "trade_info_page": "https://www.chinastock.com.cn/trade/webtrade/tradeindex.jsp", "verify_code_api": "https://www.chinastock.com.cn/trade/webtrade/verifyCodeImage.jsp", "prefix": "https://www.chinastock.com.cn", "logout_api": "https://www.chinastock.com.cn/trade/webtrade/commons/keepalive.jsp?type=go", "login": { "logintype_rzrq": 0, "orgid": "", "inputtype": "C", "identifytype": 0, "isonlytrade": 1, "trdpwdjtws": "", "Authplain9320": "", "Authsign9321": "", "certdata9322": "", "ftype": "bsn" }, "position": { "service_jsp": "/trade/webtrade/stock/stock_zjgf_query.jsp", "service_type": 1 }, "balance": { "service_jsp": "/trade/webtrade/stock/stock_zjgf_query.jsp", "service_type": 2 }, "entrust": { "service_jsp": "/trade/webtrade/stock/stock_wt_query.jsp" }, "buy": { "marktype": "", "ajaxFlag": "wt" }, "sell": { "ajaxFlag": "wt" }, "fundpurchase": { "ajaxFlag": "wt", "bsflag": 3 }, "fundredemption": { "ajaxFlag": "wt", "bsflag": 4 }, "fundsubscribe": { "ajaxFlag": "wt", "bsflag": 5 }, "fundsplit": { "ajaxFlag": "wt", "bsflag": 85 }, "fundmerge": { "ajaxFlag": "wt", "bsflag": 86 }, "cancel_entrust": { "ajaxFlag": "stock_cancel" }, "current_deal": { "service_jsp": "/trade/webtrade/stock/stock_cj_query.jsp" }, "account4stock": { "service_jsp": "/trade/webtrade/zhgl/holderQuery.jsp" } } xq_config = { "login_api": "https://xueqiu.com/user/login", "prefix": "https://xueqiu.com/user/login", "portfolio_url": "https://xueqiu.com/p/", "search_stock_url": "https://xueqiu.com/stock/p/search.json", "rebalance_url": "https://xueqiu.com/cubes/rebalancing/create.json", "history_url": "https://xueqiu.com/cubes/rebalancing/history.json", "referer": "https://xueqiu.com/p/update?action=holdings&symbol=%s" } ht_config = { "login_page": "https://service.htsc.com.cn/service/login.jsp", "login_api": "https://service.htsc.com.cn/service/loginAction.do?method=login", "trade_info_page": "https://service.htsc.com.cn/service/flashbusiness_new3.jsp?etfCode=", "verify_code_api": "https://service.htsc.com.cn/service/pic/verifyCodeImage.jsp", "prefix": "https://tradegw.htsc.com.cn", "logout_api": "https://service.htsc.com.cn/service/login.jsp?logout=yes", "login": { "loginEvent": 1, "topath": "null", "accountType": 1, "userType": "jy", "hddInfo": "ST3250820AS" }, "position": { "cssweb_type": "GET_STOCK_POSITION", "function_id": 403, "exchange_type": "", "stock_account": "", "stock_code": "", "query_direction": "", "query_mode": 0, "request_num": 100, "position_str": "" }, "balance": { "cssweb_type": "GET_FUNDS", "function_id": 405, "identity_type": "", "money_type": "" }, "entrust": { "cssweb_type": "GET_CANCEL_LIST", "function_id": 401, "exchange_type": "", "stock_account": "", "stock_code": "", "query_direction": "", "sort_direction": 0, "request_num": 100, "position_str": "" }, "buy": { "cssweb_type": "STOCK_BUY", "function_id": 302, "exchange_type": "", "stock_account": "", "stock_code": "", "query_direction": "", "sort_direction": 0, "request_num": 100, "identity_type": "", "entrust_bs": 1 }, "sell": { "cssweb_type": "STOCK_SALE", "function_id": 302, "exchange_type": "", "stock_account": "", "stock_code": "", "query_direction": "", "sort_direction": 0, "request_num": 100, "identity_type": "", "entrust_bs": 2 }, "cancel_entrust": { "cssweb_type": "STOCK_CANCEL", "function_id": 304, "exchange_type": "", "stock_code": "", "identity_type": "", "entrust_bs": 2, "batch_flag": 0 }, "exchangebill": { "cssweb_type": "GET_EXCHANGEBILL", "request_num": 100, "end_date": "", "start_date": "", "exchange_type": "", "stock_code": "", "deliver_type": 1, "query_direction": "", "function_id": 308, "stock_account": "", "position_str": "" } } gf_config = { "login_api": "https://trade.gf.com.cn/login", "login_page": "https://trade.gf.com.cn/", "verify_code_api": "https://trade.gf.com.cn/yzm.jpgx", "prefix": "https://trade.gf.com.cn/entry", "logout_api": "https://trade.gf.com.cn/entry", "login": { "authtype": 2, "disknum": "1SVEYNFA915146", "loginType": 2, "origin": "web" }, "balance": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "queryAssert" }, "position": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "queryCC", "request_num": 500, "start": 0, "limit": 10 }, "entrust": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "queryDRWT", "action_in": 1, "request_num": 100, "query_direction": 0, "start": 0, "limit": 10 }, "cancel_entrust": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "cancel", "exchange_type": 1, "batch_flag": 0 }, "accountinfo": { "classname": "com.gf.etrade.control.FrameWorkControl", "method": "getMainJS" }, "buy": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "entrust", "entrust_bs": 1 }, "sell": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "entrust", "entrust_bs": 2 }, "cnjj_apply": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "CNJJSS", "entrust_bs": 1 }, "cnjj_redeem": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "CNJJSS", "entrust_bs": 2 }, "fundsubscribe": { "classname": "com.gf.etrade.control.SHLOFFundControl", "method": "assetSecuprtTrade", "entrust_bs": 1 }, "fundpurchase": { "classname": "com.gf.etrade.control.SHLOFFundControl", "method": "assetSecuprtTrade", "entrust_bs": 1 }, "fundredemption": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "doDZJYEntrust", "entrust_bs": 2 }, "fundmerge": { "classname": "com.gf.etrade.control.SHLOFFundControl", "method": "assetSecuprtTrade", "entrust_bs": "" }, "fundsplit": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "doDZJYEntrust", "entrust_bs": "" }, "nxbQueryPrice": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "nxbQueryPrice" }, "nxbentrust": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "nxbentrust" }, "nxbQueryDeliver": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "nxbQueryDeliver" }, "nxbQueryHisDeliver": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "nxbQueryHisDeliver" }, "nxbQueryEntrust": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "nxbQueryEntrust" }, "queryOfStkCodes": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "queryOfStkCodes" }, "queryNXBOfStock": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "queryNXBOfStock" }, "nxbentrustcancel": { "classname": "com.gf.etrade.control.NXBUF2Control", "method": "nxbentrustcancel" }, "exchangebill": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "queryDeliver", "request_num": 50, "query_direction": 0, "start_date": "", "end_date": "", "deliver_type": 1 }, "queryStockInfo": { "classname": "com.gf.etrade.control.StockUF2Control", "method": "getStockHQ" } }
""" A website requires the users to input username and password to register. Write a program to check the validity of password input by users. """ """Question 18 Level 3 Question: A website requires the users to input username and password to register. Write a program to check the validity of password input by users. Following are the criteria for checking the password: 1. At least 1 letter between [a-z] 2. At least 1 number between [0-9] 1. At least 1 letter between [A-Z] 3. At least 1 character from [$#@] 4. Minimum length of transaction password: 6 5. Maximum length of transaction password: 12 Your program should accept a sequence of comma separated passwords and will check them according to the above criteria. Passwords that match the criteria are to be printed, each separated by a comma. Example If the following passwords are given as input to the program: ABd1234@1,a F1#,2w3E*,2We3345 Then, the output of the program should be: ABd1234@1 Hints: In case of input data being supplied to the question, it should be assumed to be a console input. """
class ACCOUNTS(): def __init__(self): self.CodeChef = { "username": "username", "password": "password" } self.Hackerrank = { "username": "username", "password": "password", "tracks": ["python"] # Available (add as per your requirements): # Languages: "java", "python", "c", "cpp", "ruby", "shell", "sql", "fp", # Domians: "algorithms", "data-structures", "mathematics", "ai", "databases", "regex" # "tutorials" } def getAccounts(self): return vars(self)
# TODO: implement a page_parser that uses nlp and stats to get a good read of a file. class page_parser(object): """ a multi purpose parser that can read these file types """ def __init__(self): pass
# Source and destination file names. test_source = "data/math.txt" test_destination = "math_output_html.html" # Keyword parameters passed to publish_file. reader_name = "standalone" parser_name = "rst" writer_name = "html" # Extra setting settings_overrides['math_output'] = 'HTML' settings_overrides['stylesheet_path'] = ( '../docutils/writers/html4css1/html4css1.css, ' '../docutils/writers/html4css1/math.css ')
''' Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements initialized in nums1 and nums2 are m and n respectively. You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2. Example: Input: nums1 = [1,2,3,0,0,0], m = 3 nums2 = [2,5,6], n = 3 Output: [1,2,2,3,5,6] ''' class Solution(object): def merge(self, nums1, m, nums2, n): """ :type nums1: List[int] :type m: int :type nums2: List[int] :type n: int :rtype: void Do not return anything, modify nums1 in-place instead. """ while m > 0 and n > 0: if nums1[m-1] >= nums2[n-1]: nums1[m+n-1] = nums1[m-1] m -= 1 else: nums1[m+n-1] = nums2[n-1] n -= 1 if n > 0: nums1[:n] = nums2[:n]
def test_valid(cldf_dataset, cldf_logger): assert cldf_dataset.validate(log=cldf_logger) def test_parameters(cldf_dataset): assert len(list(cldf_dataset["ParameterTable"])) == 100 def test_languages(cldf_dataset): assert len(list(cldf_dataset["LanguageTable"])) > 4000
description = 'setup for the status monitor' group = 'special' _expcolumn = Column( Block('Experiment', [ BlockRow( # Field(name='Proposal', key='exp/proposal', width=7), # Field(name='Title', key='exp/title', width=20, # istext=True, maxlen=20), Field(name='Current status', key='exp/action', width=40, istext=True, maxlen=40), Field(name='Data file', key='exp/lastpoint'), ), ], ), ) _sampletable = Column( Block('Sample table', [ BlockRow( Field(dev='omgs'), ), BlockRow( Field(dev='tths'), ), ], ), ) _instrument = Column( Block('Instrument', [ BlockRow( Field(dev='wav'), ), BlockRow( Field(dev='slits'), ), BlockRow( Field(dev='mon'), Field(name='Resosteps', key='adet/resosteps'), Field(name='Step', key='adet/value[0]'), ), ], ), ) _frm = Column( Block('FRM II', [ BlockRow( Field(dev='ReactorPower'), ), ], ), Block('SPODI', [ BlockRow( Field(name='O2', dev='o2_nguide'), Field(name='O2 part', dev='o2part_nguide'), ), BlockRow( Field(name='p1 N-Guide', dev='p1_nguide'), Field(name='p2 N-Guide', dev='p2_nguide'), Field(name='p3 N-Guide', dev='p3_nguide'), ), ], ), ) # generic CCR-stuff ccrs = [] ccrsupps = [] ccrplots = [] _ccrnrs = [6,] + list(range(10, 22 + 1)) for i in _ccrnrs: ccrs.append( Block('CCR%d-Pulse tube' % i, [ BlockRow( Field(dev='t_ccr%d_c' % i, name='Coldhead'), Field(dev='t_ccr%d_d' % i, name='Regulation'), Field(dev='t_ccr%d_b' % i, name='Sample'), ), BlockRow( Field(key='t_ccr%d/setpoint' % i, name='Setpoint'), Field(key='t_ccr%d/p' % i, name='P', width=7), Field(key='t_ccr%d/i' % i, name='I', width=7), Field(key='t_ccr%d/d' % i, name='D', width=6), ), ], setups='ccr%d and not cci3he0*' % i, ), ) ccrsupps.append( Block('CCR%d' % i, [ BlockRow( Field(dev='T_ccr%d_A' % i, name='A'), Field(dev='T_ccr%d_B' % i, name='B'), Field(dev='T_ccr%d_C' % i, name='C'), Field(dev='T_ccr%d_D' % i, name='D'), ), BlockRow( Field(key='t_ccr%d/setpoint' % i, name='SetP.', width=6), Field(key='t_ccr%d/p' % i, name='P', width=4), Field(key='t_ccr%d/i' % i, name='I', width=4), Field(key='t_ccr%d/d' % i, name='D', width=3), ), BlockRow( Field(dev='ccr%d_p1' % i, name='P1'), Field(dev='ccr%d_p2' % i, name='P2'), ), ], setups='ccr%d' % i, ), ) _cryo = Column(*ccrs) _cryosup = Column(*ccrsupps) _htf = Column( Block('HTF', [ BlockRow( Field(dev='T'), Field(name='Power', key='T/heaterpower'), ), ], setups='htf*', ), ) _magnet = Column( Block('Magnet', [ BlockRow( Field(dev='B'), ), ], setups='ccm*', ), ) _sc = Column( Block('Sample Changer', [ BlockRow( Field(dev='sams'), ), ], setups='samplechanger', ), ) _e = Column( Block('E field', [ BlockRow( Field(dev='E'), ), ], setups='efield', ), ) _tension = Column( Block('Tension rack', [ BlockRow( Field(dev='teload'), Field(dev='tepos'), Field(dev='teext'), Field(dev='topos'), Field(dev='tomom'), ), ], setups='tensile', ), ) _nps =[1,2,3,10,11,12] _npblocks = [] for i in _nps: _npblocks.append( Block('Newport', [ BlockRow( Field(dev='sth_rsc%02d' % i), ), ], setups='rsc%02d' % i, ), ) _rsc = Column(*_npblocks) devices = dict( Monitor = device('nicos.services.monitor.html.Monitor', title = 'SPODI status monitor', loglevel = 'info', interval = 10, filename = '/spodicontrol/webroot/index.html', cache = 'spodictrl.spodi.frm2', font = 'Luxi Sans', valuefont = 'Consolas', prefix = 'nicos/', padding = 0, fontsize = 24, layout = [ Row(_expcolumn), Row(_frm, _instrument, _sampletable), Row(_htf,), Row(_cryosup), Row(_tension), Row(_magnet, _e,), Row(_sc, _rsc), ], noexpired = True, ), )
"""Bazel rules and macros for running tsec over a ng_module or ts_library.""" load("@npm//@bazel/typescript/internal:ts_config.bzl", "TsConfigInfo") load("@build_bazel_rules_nodejs//:providers.bzl", "DeclarationInfo") load("@npm//tsec:index.bzl", _tsec_test = "tsec_test") TsecTsconfigInfo = provider(fields = ["src", "exemption", "deps"]) def _tsec_config_impl(ctx): deps = [] # Gather all extended tsconfig files. if ctx.files.deps: deps.extend(ctx.files.deps) for d in ctx.attr.deps: # Gather all files from extended ts_config targets. if TsConfigInfo in d: deps.extend(d[TsConfigInfo].deps) # Gather all files from extended tsec_config targets. if TsecTsconfigInfo in d: deps.append(d[TsecTsconfigInfo].src) if d[TsecTsconfigInfo].exemption: deps.append(d[TsecTsconfigInfo].exemption) deps.extend(d[TsecTsconfigInfo].deps) src = ctx.file.src return [ # We need $(rootpath tsec_config_target) to get the path # of the top-level config file as the argument for tsec # binary. Only `src` should be stored in the DefaultInfo # provider. DefaultInfo(files = depset([src])), TsecTsconfigInfo( src = src, exemption = ctx.file.exemption, deps = deps, ), ] tsec_config = rule( implementation = _tsec_config_impl, attrs = { "src": attr.label( mandatory = True, allow_single_file = [".json"], doc = """The single tsconfig used for running tsec.""", ), "deps": attr.label_list( allow_files = [".json"], doc = """Any configs extended by `src`.""", ), "exemption": attr.label( allow_single_file = [".json"], doc = """The exemption list used by `src`.""", ), }, doc = """Compute all transitive dependencies of a tsec_test config. """, ) TsLibInfo = provider(fields = ["srcs", "deps"]) def _capture_tsec_deps_aspect_impl(target, ctx): """Forward `srcs` and `deps` of `ts_library` and `ng_module` macros to `_tsec_test`.""" return [TsLibInfo(srcs = ctx.rule.attr.srcs, deps = ctx.rule.attr.deps)] _capture_tsec_deps_aspect = aspect( implementation = _capture_tsec_deps_aspect_impl, ) def _all_transitive_deps_impl(ctx): files = [] if TsecTsconfigInfo not in ctx.attr.tsconfig: fail("`tsconfig` must be a tsec_config target") tsec_tsconfig_info = ctx.attr.tsconfig[TsecTsconfigInfo] files.append(tsec_tsconfig_info.src) if tsec_tsconfig_info.exemption: files.append(tsec_tsconfig_info.exemption) files.extend(tsec_tsconfig_info.deps) if TsLibInfo not in ctx.attr.ts_target: fail("`target` must be a ts_library or ng_module target") ts_target_info = ctx.attr.ts_target[TsLibInfo] for s in ts_target_info.srcs: if hasattr(s, "files"): files.extend(s.files.to_list()) for d in ts_target_info.deps: if DeclarationInfo in d: files.extend(d[DeclarationInfo].transitive_declarations.to_list()) if hasattr(d, "files"): files.extend(d.files.to_list()) return [DefaultInfo(files = depset(files))] _all_transitive_deps = rule( implementation = _all_transitive_deps_impl, attrs = { "tsconfig": attr.label(), "ts_target": attr.label(aspects = [_capture_tsec_deps_aspect]), }, doc = """Expand all transitive dependencies needed to run `_tsec_test`.""", ) def tsec_test(name, target, tsconfig): """Run tsec over a ts_library or ng_module target to check its compatibility with Trusted Types. This rule DOES NOT check transitive dependencies. Args: name: name of the tsec test target: the ts_library or ng_module target to be checked tsconfig: the tsec_config target used for configuring tsec """ all_transitive_deps_name = "%s_all_transitive_deps" % name _all_transitive_deps( name = all_transitive_deps_name, testonly = True, tsconfig = tsconfig, ts_target = target, tags = ["tsec"], ) _tsec_test( name = name, data = [tsconfig, all_transitive_deps_name], tags = ["tsec"], templated_args = ["-p", "$(rootpath %s)" % tsconfig], )
def shellSort(alist): gap = len(alist) // 2 while gap > 0: for i in range(gap, len(alist)): val = alist[i] j = i while j >= gap and alist[j - gap] > val: alist[j] = alist[j - gap] j -= gap alist[j] = val gap //= 2
############################################################################# # # # Module of BFA that manages server statistics in realtime # # ############################################################################# """ This module implements the real-time logging of in-game statistics specifically for one current bf checkpoint. Dependencies: None note:: Author(s): Mitch last-check: 08.07.2021 """ # noinspection PyUnusedLocal def __preload__(forClient: bool = True): pass # noinspection PyUnusedLocal def __postload__(forClient: bool = True): pass class RealTimeCP: """ A control point that exists on a map can have a corresponding real time control point to track it. :param Id: Refractor id of this control point. :param team: Team the control point is currently controlled by. note:: Author(s): Mitch, henk """ def __init__(self, Id: int = None, team: int = None): self.Id = Id self.team = team
#!/usr/bin/env python3 def foo(): a = 10 # infer that b is an int b = a assert b == 10 print(b) if __name__ == "__main__": foo()
""" Faça um programa que pergunte a hora aousuário e, baseando-se na hora descrita, exiba a saudação apropriada. """ x=1 while x!=0: #Entra no try caso seja digitado um numero inteiro try: horas=int(input('Que horas são? ')) if horas>=0 and horas<=11: print('Bom dia!') x-=1 elif horas>=12 and horas<=17: print('Boa tarde!') x-=1 elif horas>=13 and horas<=23: print('Boa noite!') x-=1 #Caso o numero seja superior a 23 ou inferior a 0 entra no else e repete o programa else: print("Digite uma hora entre 0 e 23.") #Entra no except e repete o codigo caso o caracter digitado não seja um numero inteiro except: print("Digite apenas o numero correspondente a hora.")
x="There are %d types of people."%10 binary="binary" do_not="don't" y="Those who know %s and those who %s."%(binary,do_not) print(x) print(y) print("I said: '%s'."%y) hilarious=False joke_evaluation="Isn't that joke so funny?! %r" print (joke_evaluation % hilarious) w="This is the left side of ..." e="a string with a right side" print (w+e)
# -*- coding: utf-8 -*- # ----------------------------------------------------------------------------- # Copyright (c) Spyder Project Contributors # # Licensed under the terms of the MIT License # (see LICENSE.txt for details) # ----------------------------------------------------------------------------- ANSI_COLORS = { 'emacs': { 'black': '#000000', 'red': '#800000', 'green': '#005100', 'yellow': '#abab67', 'blue': '#151d51', 'magenta': '#510051', 'cyan': '#105151', 'white': '#ffffff', 'brightBlack': '#555555', 'brightRed': '#c80000', 'brightGreen': '#00aa00', 'brightYellow': '#cbcb7b', 'brightBlue': '#3c51e8', 'brightMagenta': '#900090', 'brightCyan': '#20a7a7', 'brightWhite': '#ffffff' }, 'idle': { 'black': '#ffffff', 'red': '#8a0000', 'green': '#008a00', 'yellow': '#8a4000', 'blue': '#00008a', 'magenta': '#5a005a', 'cyan': '#105151', 'white': '#ffffff', 'brightBlack': '#555555', 'brightRed': '#dd0000', 'brightGreen': '#00aa00', 'brightYellow': '#ff7700', 'brightBlue': '#0000ff', 'brightMagenta': '#900090', 'brightCyan': '#20a7a7', 'brightWhite': '#ffffff' }, 'monokai': { 'black': '#48483e', 'red': '#dc2566', 'green': '#8fc029', 'yellow': '#d4c96e', 'blue': '#55bcce', 'magenta': '#9358fe', 'cyan': '#56b7a5', 'white': '#f8f8f2', 'brightBlack': '#76715e', 'brightRed': '#fa2772', 'brightGreen': '#a7e22e', 'brightYellow': '#e7db75', 'brightBlue': '#66d9ee', 'brightMagenta': '#ae82ff', 'brightCyan': '#66efd5', 'brightWhite': '#f9f8f5' }, 'pydev': { 'black': '#ffffff', 'red': '#800000', 'green': '#00aa00', 'yellow': '#ffff99', 'blue': '#0000ff', 'magenta': '#900090', 'cyan': '#007f7f', 'white': '#efefef', 'brightBlack': '#c0c0c0', 'brightRed': '#c10000', 'brightGreen': '#00cc00', 'brightYellow': '#fff569', 'brightBlue': '#015aff', 'brightMagenta': '#bf00bf', 'brightCyan': '#00a5a5', 'brightWhite': '#ffffff' }, 'scintilla': { 'black': '#ffffff', 'red': '#800000', 'green': '#007f00', 'yellow': '#ffff99', 'blue': '#00007f', 'magenta': '#7f007f', 'cyan': '#007f7f', 'white': '#efefef', 'brightBlack': '#adadad', 'brightRed': '#c10000', 'brightGreen': '#00ab00', 'brightYellow': '#fff569', 'brightBlue': '#0000ff', 'brightMagenta': '#be00be', 'brightCyan': '#00a5a5', 'brightWhite': '#ffffff' }, 'spyder': { 'black': '#ffffff', 'red': '#800000', 'green': '#00aa00', 'yellow': '#ffff99', 'blue': '#0000ff', 'magenta': '#900090', 'cyan': '#27b5ac', 'white': '#efefef', 'brightBlack': '#adadad', 'brightRed': '#c10000', 'brightGreen': '#00c800', 'brightYellow': '#fff569', 'brightBlue': '#0a37ff', 'brightMagenta': '#d500d5', 'brightCyan': '#2dd0c5', 'brightWhite': '#ffffff' }, 'spyder/dark': { 'black': '#19232D', 'red': '#c80000', 'green': '#11a642', 'yellow': '#c5bb29', 'blue': '#558eff', 'magenta': '#aa00aa', 'cyan': '#20b3a7', 'white': '#ffffff', 'brightBlack': '#4b4b4b', 'brightRed': '#ef0000', 'brightGreen': '#13c24b', 'brightYellow': '#e6e13f', 'brightBlue': '#4395ff', 'brightMagenta': '#da00da', 'brightCyan': '#23cbbd', 'brightWhite': '#ffffff' }, 'zenburn': { 'black': '#3F3F3F', 'red': '#705050', 'green': '#60B48A', 'yellow': '#DFAF8F', 'blue': '#506070', 'magenta': '#DC8CC3', 'cyan': '#8CD0D3', 'white': '#DCDCCC', 'brightBlack': '#709080', 'brightRed': '#DCA3A3', 'brightGreen': '#C3BF9F', 'brightYellow': '#F0DFAF', 'brightBlue': '#94BFF3', 'brightMagenta': '#EC93D3', 'brightCyan': '#93E0E3', 'brightWhite': '#DCDCCC' }, 'solarized/light': { 'black': '#fdf6e3', 'red': '#dc322f', 'green': '#859900', 'yellow': '#b58900', 'blue': '#268bd2', 'magenta': '#6c71c4', 'cyan': '#2aa198', 'white': '#93a1a1', 'brightBlack': '#657b83', 'brightRed': '#dc322f', 'brightGreen': '#859900', 'brightYellow': '#b58900', 'brightBlue': '#268bd2', 'brightMagenta': '#6c71c4', 'brightCyan': '#2aa198', 'brightWhite': '#fdf6e3' }, 'solarized/dark': { 'black': '#002b36', 'red': '#dc322f', 'green': '#859900', 'yellow': '#b58900', 'blue': '#268bd2', 'magenta': '#6c71c4', 'cyan': '#2aa198', 'white': '#93a1a1', 'brightBlack': '#657b83', 'brightRed': '#dc322f', 'brightGreen': '#859900', 'brightYellow': '#b58900', 'brightBlue': '#268bd2', 'brightMagenta': '#6c71c4', 'brightCyan': '#2aa198', 'brightWhite': '#fdf6e3' }, 'inkpot': { 'black': '#1f1f27', 'red': '#CD5200', 'green': '#9DCD00', 'yellow': '#cd8b00', 'blue': '#87cefa', 'magenta': '#8b8bff', 'cyan': '#87FAE5', 'white': '#93a1a1', 'brightBlack': '#313131', 'brightRed': '#CD2300', 'brightGreen': '#C0CD00', 'brightYellow': '#ffcd8b', 'brightBlue': '#B9E1FA', 'brightMagenta': '#A3A3FF', 'brightCyan': '#B8FAEE', 'brightWhite': '#cfbfad' }, 'minimal': { 'black': '#ffffff', 'red': '#D22D72', 'green': '#568C3B', 'yellow': '#8A8A0F', 'blue': '#257FAD', 'magenta': '#5D5DB1', 'cyan': '#2D8F6F', 'white': '#7EA2B4', 'brightBlack': '#5A7B8C', 'brightRed': '#D22D72', 'brightGreen': '#568C3B', 'brightYellow': '#8A8A0F', 'brightBlue': '#257FAD', 'brightMagenta': '#5D5DB1', 'brightCyan': '#2D8F6F', 'brightWhite': '#EBF8FF' }, 'nightlion': { 'black': '#4c4c4c', 'red': '#bb0000', 'green': '#5fde8f', 'yellow': '#f3f167', 'blue': '#276bd8', 'magenta': '#bb00bb', 'cyan': '#00dadf', 'white': '#bbbbbb', 'brightBlack': '#555555', 'brightRed': '#ff5555', 'brightGreen': '#55ff55', 'brightYellow': '#ffff55', 'brightBlue': '#5555ff', 'brightMagenta': '#ff55ff', 'brightCyan': '#55ffff', 'brightWhite': '#ffffff' }, 'notepad++': { 'black': '#ffffff', 'red': '#CC342B', 'green': '#198844', 'yellow': '#FBA922', 'blue': '#3971ED', 'magenta': '#A36AC7', 'cyan': '#3971ED', 'white': '#C5C8C6', 'brightBlack': '#969896', 'brightRed': '#CC342B', 'brightGreen': '#198844', 'brightYellow': '#FBA922', 'brightBlue': '#3971ED', 'brightMagenta': '#A36AC7', 'brightCyan': '#3971ED', 'brightWhite': '#FFFFFF' }, 'oblivion': { 'black': '#1D1F21', 'red': '#CC6666', 'green': '#B5BD68', 'yellow': '#F0C674', 'blue': '#81A2BE', 'magenta': '#B294BB', 'cyan': '#8ABEB7', 'white': '#C5C8C6', 'brightBlack': '#969896', 'brightRed': '#CC6666', 'brightGreen': '#B5BD68', 'brightYellow': '#F0C674', 'brightBlue': '#81A2BE', 'brightMagenta': '#B294BB', 'brightCyan': '#8ABEB7', 'brightWhite': '#FFFFFF' }, 'obsidian': { 'black': '#232C31', 'red': '#2A5491', 'green': '#237986', 'yellow': '#A03B1E', 'blue': '#484D79', 'magenta': '#C59820', 'cyan': '#B02F30', 'white': '#9EA7A6', 'brightBlack': '#3F4944', 'brightRed': '#2A5491', 'brightGreen': '#237986', 'brightYellow': '#A03B1E', 'brightBlue': '#484D79', 'brightMagenta': '#C59820', 'brightCyan': '#B02F30', 'brightWhite': '#B5D8F6' }, 'pastel': { 'black': '#000000', 'red': '#c37372', 'green': '#72c373', 'yellow': '#c2c372', 'blue': '#7372c3', 'magenta': '#c372c2', 'cyan': '#72c2c3', 'white': '#d9d9d9', 'brightBlack': '#323232', 'brightRed': '#dbaaaa', 'brightGreen': '#aadbaa', 'brightYellow': '#dadbaa', 'brightBlue': '#aaaadb', 'brightMagenta': '#dbaada', 'brightCyan': '#aadadb', 'brightWhite': '#ffffff' }, 'retta': { 'black': '#000000', 'red': '#A54242', 'green': '#8C9440', 'yellow': '#de935f', 'blue': '#5F819D', 'magenta': '#85678F', 'cyan': '#5E8D87', 'white': '#969896', 'brightBlack': '#373b41', 'brightRed': '#cc6666', 'brightGreen': '#b5bd68', 'brightYellow': '#f0c674', 'brightBlue': '#81a2be', 'brightMagenta': '#b294bb', 'brightCyan': '#8abeb7', 'brightWhite': '#c5c8c6' }, 'roboticket': { 'black': '#f5f5f5', 'red': '#E64569', 'green': '#89D287', 'yellow': '#DAB752', 'blue': '#439ECF', 'magenta': '#D961DC', 'cyan': '#64AAAF', 'white': '#B3B3B3', 'brightBlack': '#535353', 'brightRed': '#E4859A', 'brightGreen': '#A2CCA1', 'brightYellow': '#E1E387', 'brightBlue': '#6FBBE2', 'brightMagenta': '#E586E7', 'brightCyan': '#96DCDA', 'brightWhite': '#DEDEDE' }, 'sublime-monokai/extended': { 'black': '#222222', 'red': '#dc2566', 'green': '#8fc029', 'yellow': '#d4c96e', 'blue': '#55bcce', 'magenta': '#9358fe', 'cyan': '#56b7a5', 'white': '#f8f8f2', 'brightBlack': '#76715e', 'brightRed': '#fa2772', 'brightGreen': '#a7e22e', 'brightYellow': '#e7db75', 'brightBlue': '#66d9ee', 'brightMagenta': '#ae82ff', 'brightCyan': '#66efd5', 'brightWhite': '#f9f8f5' }, 'vibrant-ink': { 'black': '#191919', 'red': '#d00e18', 'green': '#138034', 'yellow': '#ffcb3e', 'blue': '#006bb3', 'magenta': '#6b2775', 'cyan': '#384564', 'white': '#ededed', 'brightBlack': '#5d504a', 'brightRed': '#f07e18', 'brightGreen': '#b1d130', 'brightYellow': '#fff120', 'brightBlue': '#4fc2fd', 'brightMagenta': '#de0071', 'brightCyan': '#5d504a', 'brightWhite': '#ffffff' } }
def printVal(state, name): val = state[name] print("%s:" % state.fuzzy_names[name], val) def print_all(state): printVal(state, "var_default") printVal(state, "var_default_override") printVal(state, "var_default_override_twice") printVal(state, "var_default_override_twice_and_cli") def register(mf): mf.register_defaults({ "var_default": 1, "var_default_override": 2, "var_default_override_twice": 3, "var_default_override_twice_and_cli": 4 }) mf.register_event('print_all', print_all, unique=False)
# -*- coding: utf-8 -* """ some rule """ class MaxTruncation(object): """MaxTruncation:超长截断规则 """ KEEP_HEAD = 0 # 从头开始到最大长度截断 KEEP_TAIL = 1 # 从头开始到max_len-1的位置截断,末尾补上最后一个id(词或字) KEEP_BOTH_HEAD_TAIL = 2 # 保留头和尾两个位置,然后按keep_head方式截断 class EmbeddingType(object): """EmbeddingType:文本数据需要转换的embedding类型:no_emb , ernie_emb """ NONE_EMBEDDING = 0 # 不需要emb ERNIE_EMBEDDING = 1 # 用ernie生成emb FLUID_EMBEDDING = 2 # 使用fluid的op生成emb class FluidDataType(object): """ FluidDataType data struct wrapper """ def __init__(self, shape, dtype, lod_level, name=None): self.shape = shape self.dtype = dtype self.lod_level = lod_level self.name = name class WordPieceType(object): """字词混合切分模式下,每个token的type""" SINGLE_TOKEN = 0 # 单个字 WORD_START = 1 # 词首字符 WORD_INCLUDE = 2 # 词中间字符 class DataShape(object): """DataShape:输入的数据类型 """ STRING = "string" # string INT = "int" # int64 FLOAT = "float" # float32 class InstanceName(object): """InstanceName:一些常用的命名 """ RECORD_ID = "id" RECORD_EMB = "emb" SRC_IDS = "src_ids" WORDSEG_IDS = "wordseg_ids" MASK_IDS = "mask_ids" LOSS_MASK = "loss_mask" SEQ_LENS = "seq_lens" SENTENCE_IDS = "sent_ids" POS_IDS = "pos_ids" TASK_IDS = "task_ids" PHONETIC_A_IDS = "phonetic_a_ids" PHONETIC_B_IDS = "phonetic_b_ids" GLYPH_A_IDS = "glyph_a_ids" GLYPH_B_IDS = "glyph_b_ids" GLYPH_C_IDS = "glyph_c_ids" GLYPH_D_IDS = "glyph_d_ids" REL_POS_IDS="rel_pos_ids" DEEP_IDS = "deep_ids" BEG_IDS = "beg_ids" END_IDS = "end_ids" #生成训练相关key TGT_LABEL = "tgt_label" TGT_POS = "tgt_pos" #生成解码相关key TGT_SRC_IDS = "tgt_src_ids" TGT_POS_IDS = "tgt_pos_ids" INIT_SCORES = "init_scores" PARENT_IDX = "parent_idx" TGT_MASK_IDS = 'tgt_mask_ids' DATA_IDS = 'data_ids' #多轮对话相关key ROLE_IDS = "role_ids" TURN_IDS = "turn_ids" TGT_PHONETIC_A_IDS = "tgt_phonetic_a_ids" TGT_PHONETIC_B_IDS = "tgt_phonetic_b_ids" TGT_GLYPH_A_IDS = "tgt_glyph_a_ids" TGT_GLYPH_B_IDS = "tgt_glyph_b_ids" TGT_GLYPH_C_IDS = "tgt_glyph_c_ids" TGT_GLYPH_D_IDS = "tgt_glyph_d_ids" # seq2seq的label域相关key TRAIN_LABEL_SRC_IDS = "train_label_src_ids" TRAIN_LABEL_MASK_IDS = "train_label_mask_ids" TRAIN_LABEL_SEQ_LENS = "train_label_seq_lens" INFER_LABEL_SRC_IDS = "infer_label_src_ids" INFER_LABEL_MASK_IDS = "infer_label_mask_ids" INFER_LABEL_SEQ_LENS = "infer_label_seq_lens" # term rank 相关的key TERM_POS = "term_pos" TERM_TOKENS_NUMS = "term_tokens_nums" TERM_INDEX = "term_index" TERM_PAIRS = "term_pairs" TERM_DIFFS = "term_diffs" SEQUENCE_EMB = "sequence_output" # 词级别的embedding POOLED_EMB = "pooled_output" # 句子级别的embedding TARGET_FEED = "target_feed" # 保存模型时需要的入参:表示模型预测时需要输入的变量,tensor 或者variable类型 TARGET_FEED_NAMES = "target_feed_name" # 保存模型时需要的入参:表示模型预测时需要输入的变量名称和顺序 TARGET_PREDICTS = "target_predicts" # 保存模型时需要的入参:表示预测时最终输出的结果 PREDICT_RESULT = "predict_result" # 训练过程中需要传递的预测结果 STUDENT_PREDICT_RESULT = "student_predict_result" # 训练过程中需要传递的预测结果 TEACHER_PREDICT_RESULT = "teacher_predict_result" # 训练过程中需要传递的预测结果 LABEL = "label" # label TEACHER_CE_LOSS = "teacher_ce_loss" STUDENT_CE_LOSS = "student_ce_loss" DISTILL_LOSS = "distill_loss" PRED_LOSS = "pred_loss" LOSS = "loss" # loss # CRF_EMISSION = "crf_emission" # crf_emission TRAINING = "training" # 训练过程 EVALUATE = "evaluate" # 评估过程 TEST = "test" # 测试过程 SAVE_INFERENCE = "save_inference" # 保存inference model的过程 INFERENCE = "inference" # 预测过程 STEP = "steps" SPEED = "speed" TIME_COST = "time_cost" GPU_ID = "gpu_id" FILE_CHECKPOINTS = "checkpoints" FILE_INFERENCE_MODEL = "inference_model" TYPE_PY_READER = "py_reader" TYPE_DATA_LOADER = "data_loader" # ERNIE-VIL相关key IMAGE_PIXEL_IDS = "image_pixel_ids" IMAGE_POSITION = "image_position" IMAGE_TAG_IDS = "image_tag_ids" TEXT_INDEX = "text_index" IMAGE_INDEX = "image_index" POS_INDEX = "pos_index" # ERNIE-Layout相关key POS_2D_IDS = "pos_2d_ids" SEGMENT_IDS = "segment_ids" # DynaBERT相关key HIDDEN_LAYERS = "hidden_layers" LOGIT = "logit" # prompt相关key LABEL_MAP_IDS = "label_map_ids" LABEL_TEXT_IDS = "label_text_ids" BATCH_SIZE = "batch_size" MAX_SEQ_LEN = "max_seq_len" class FieldLength(object): """一个field在序列化成field_id_list的时候,占的长度是多少 """ CUSTOM_TEXT_FIELD = 3 ERNIE_TEXT_FIELD = 6 SINGLE_SCALAR_FIELD = 1 ARRAY_SCALAR_FIELD = 2 BASIC_TEXT_FIELD = 2 GENERATE_LABEL_FIELD = 6 ERNIE_TERM_RANK_TEXT_FIELD = 9 ERNIT_TERM_RANK_LABEL_FIELD = 4 # ERNIE-VIL RELATED VARIABLES ERNIEVIL_IMAGE_PIXEL_FIELD = 1 ERNIEVIL_IMAGE_TAGS_FIELD = 1 # ERNIE-Layout RELATED VARIABLES ERNIE_LAYOUT_SEQLABEL_FIELD = 10 class FleetMode(object): """Fleet模式 """ NO_FLEET = "NO_FLEET" CPU_MODE = "CPU" GPU_MODE = "GPU" class UploadModelType(object): """模型上传的类型""" UPLOAD_HDFS_IMMEDIATE = "immediate" # 实时上传到HDFS UPLOAD_HDFS_LAST_TIME = "last_time" # 训练结束之后由paddlecloud平台进行集中上传 class StoreModelType(object): """模型保存方式的类型""" STORE_HDFS = "hadoop" # 保存到hadoop集群上 STORE_IREPO = "irepo" # 保存到irepo模型仓库中 class EncryptType(object): """模型加密的方式""" ENCRYPT_NONE = None # 不加密 ENCRYPT_MEMORY = "memory" # 内存加密 ENCRYPT_FILE = "file" # 文件加密 class InferenceRetcode(object): """ 预测服务返回码 """ RET_OK = 200 LOAD_JSON_FAILED = 201 MISSING_FIELD = 202 class GraphMode(object): """图模式 """ #动态图 DYGRAPH = "dynamic" #静态图 STATIC = "static"
class AbstractException(Exception): """Abstract exception for project""" def __init__(self, code, message): """ Constructor :param int code: error code :param str message: error message """ self._code = code self._message = message @property def code(self): """ Getter code :rtype: int """ return self._code @property def message(self): # pragma no cover """ Getter message :rtype: str """ return self._message
""" https://leetcode.com/problems/rectangle-overlap/ A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bottom-left corner, and (x2, y2) are the coordinates of its top-right corner. Two rectangles overlap if the area of their intersection is positive. To be clear, two rectangles that only touch at the corner or edges do not overlap. Given two (axis-aligned) rectangles, return whether they overlap. Example 1: Input: rec1 = [0,0,2,2], rec2 = [1,1,3,3] Output: true Example 2: Input: rec1 = [0,0,1,1], rec2 = [1,0,2,1] Output: false Notes: Both rectangles rec1 and rec2 are lists of 4 integers. All coordinates in rectangles will be between -10^9 and 10^9. """ # time complexity: O(1), space complexity: O(1) # The two solutions are both interesting. class Solution: def isRectangleOverlap(self, rec1: List[int], rec2: List[int]) -> bool: # solution 1 # return not (rec1[0] >= rec2[2] or rec1[2] <= rec2[0] or rec1[1] >= rec2[3] or rec1[3] <= rec2[1]) # solution 2 def intersect(p_left, p_right, q_left, q_right): return min(p_right, q_right) > max(q_left, p_left) return intersect(rec1[0], rec1[2], rec2[0], rec2[2]) and intersect(rec1[1], rec1[3], rec2[1], rec2[3])
class Node(): def __init__(self,data): self.data=data self.ref=None class LinkedList(): def __init__(self): self.head=None def Print_ll(self): n=self.head if n is None: print("LinkedList is empty") else: while n is not None: print(n.data) n=n.ref ll=LinkedList() ll.Print_ll()
#!/usr/bin/env python3 #encoding=utf-8 #------------------------------------------------ # Usage: python3 3-desc-state-inst.py # Description: descriptor for attribute intercept #------------------------------------------------ class InstState: # Using instance state, (object) in 2.X def __get__(self, instance, owner): print('InstState get') # Assume set by client class return instance._X * 10 def __set__(self, instance, value): print('InstState set') instance._X = value # Client class class CalcAttrs: X = InstState() # Descriptor class attr Y = 3 # Class attr def __init__(self): self._X = 2 # Instance attr self.Z = 4 # Instance attr if __name__ == '__main__': obj = CalcAttrs() print(obj.X, obj.Y, obj.Z) # X is computed, others are not obj.X = 5 # X assignment is intercepted CalcAttrs.Y = 6 # Y reassigned in class obj.Z = 7 # Z assigned in instance print(obj.X, obj.Y, obj.Z) obj2 = CalcAttrs() # But X differs now, like Z! print(obj2.X, obj2.Y, obj2.Z)
bind = "0.0.0.0:5000" backlog = 2048 workers = 1 worker_class = "sync" threads = 16 spew = False reload = True loglevel = "debug"
for t in range(int(input())): n=int(input()) if n%2==0: print(int(n/2-1)) else: print(int(n//2))
value1 = int(input()); value2 = value1//100 if value1 % 2==0 and value2 % 2==0: print("Even") elif value1 % 2==0 and value2 % 2==1: print("Even Odd") elif value1 % 2==1 and value2 % 2==1: print("Odd") elif value1 % 2==1 and value2 % 2==0: print("Odd Even")
# Задача 4. Вариант 7. # Напишите программу, которая выводит имя, под которым скрывается Мария Луиза Чеччарелли. Дополнительно необходимо вывести область интересов указанной личности, место рождения, годы рождения и смерти (если человек умер), вычислить возраст на данный момент (или момент смерти). Для хранения всех необходимых данных требуется использовать переменные. После вывода информации программа должна дожидаться пока пользователь нажмет Enter для выхода. # Зорин Д.И. # 11.04.2016 name = "Мария Луиза Чеччарелли" birthplace = "Рим, Италия" date1 = 1931 date2 = 2016 age = date2 - date1 interest = "Киноиндустрия" print(name+"- наиболее известена как Моника Витти- итальянская актриса") print("Место рождения: "+birthplace) print("Год рождения: ", date1) print("Возраст: ", age) print("Область интересов: "+interest) input("\n\nДля выхода нажми ENTER")
""" VARIÁVEIS DE CONFIGURAÇÃO DO BOT True PARA ATIVAR E False PARA DESATIVAR """ escrever_nos_campos = True # PREENCHE OS CAMPOS COM AS RESPOSTAS modo_de_aprendizado = False # APRENDE NOVAS RESPOSTAS SALVANDO AS RESPOSTAS DOS OUTROS JOGADORES clica_botao_avaliar_respostas = True # CLICA NO BOTÃO "AVALIAR" clica_botao_estou_pronto = True # CLICA NO BOTÃO "ESTOU PRONTO"
class Solution: def lemonadeChange(self, bills: List[int]) -> bool: money = [0, 0, 0] for x in bills: if x == 5: money[0] += 1 if x == 10: if money[0] >= 1: money[1] += 1 money[0] -= 1 else: return False if x == 20: if money[1] >= 1 and money[0] >= 1: money[2] += 1 money[1] -= 1 money[0] -= 1 elif money[0] >= 3: money[2] += 1 money[0] -= 3 else: return False return True
config = {} with open("config.txt", "r") as f: lines = f.readlines() for line in lines: key, value = line.split("=") value = value.replace("\n", "") config[key] = value print(f"Added key {key} with value {value}") user_key = input("Which key would you like to see? ") if user_key not in config: print(f"I don't know the key {user_key}") else: val = config[user_key] print(f"Current value for {user_key}:{val}") next_step = input("Would you like to change?[y/n]") if next_step == "y": new_val = input("What is the new value? ") config[user_key] = new_val with open("config.txt", "w") as f: for key, value in config.items(): l = f"{key}={value}\n" f.write(l)
# A little bit of molecular biology # Codons are non-overlapping triplets of nucleotides. # ATG CCC CTG GTA ... - this corresponds to four codons; spaces added for emphasis # The start codon is 'ATG' # Stop codons can be 'TGA' , 'TAA', or 'TAG', but they must be 'in frame' with the start codon. The first stop codon usually determines the end of the gene. # In other words: # 'ATGCCTGA...' - here TGA is not a stop codon, because the T is part of CCT # 'ATGCCTTGA...' - here TGA is a stop codon because it is in frame (i.e. a multiple of 3 nucleic acids from ATG) # The gene is start codon to stop codon, inclusive # Example" # dna - GGCATGAAAGTCAGGGCAGAGCCATCTATTTGAGCTTAC # gene - ATGAAAGTCAGGGCAGAGCCATCTATTTGA #dna ='GGCATGAAAGTCAGGGCAGAGCCATCTATTGCTTACATTTGCTTCTGACACAACTGTGTTCACTAGCAACCTCAAACAGACACCATGGTGCACCTGACTCCTGAGGAGAAGTCTGCCGTTACTGCCCTGTGGGGCAAGGTGAACGTGGATGAAGTTGGTGGTGAGGCCCTGGGCAGGTTGGTATCAAGGTTACAAGACAGGTTTAAGGAGACCAATAGAAACTGGGCATGTGGAGACAGAGAAGACTCTTGGGTTTCTGATAGGCACTGACTCTCTCTGCCTATTGGTCTATTTTCCCACCCTTAGGCTGCTGGTGGTCTACCCTTGGACCCAGAGGTTCTTTGAGTCCTTTGGGGATCTGTCCACTCCTGATGCTGTTATGGGCAACCCTAAGGTGAAGGCTCATGGCAAGAAAGTGCTCGGTGCCTTTAGTGATGGCCTGGCTCACCTGGACAACCTCAAGGGCACCTTTGCCACACTGAGTGAGCTGCACTGTGACAAGCTGCACGTGGATCCTGAGAACTTCAGGGTGAGTCTATGGGACCCTTGATGTTTTCTTTCCCCTTCTTTTCTATGGTTAAGTTCATGTCATAGGAAGGGGAGAAGTAACAGGGTACAGTTTAGAATGGGAAACAGACGAATGATT' dna = 'GGGATGTTTGGGCCCTACGGGCCCTGATCGGCT' def startCodonIndex(seq): # input: list of CAPs characters corresponding to DNA sequence # output: index of first letter of start codon; return -1 if none are found start_idx = seq.find('ATG') return start_idx def stopCodonIndex(seq, start_codon): # input: list of CAPs characters corresponding to DNA sequence and index of start codon # output: index of first stop codon; return -1 if none are found stop_idx = -1 codon_length = 3 search_start = start_codon + codon_length search_stop = len(seq) for i in range(search_start, search_stop, codon_length): codon = seq[i: i+codon_length] if codon == "TAA" or codon == "TGA" or codon == "TAG": stop_idx = i break return stop_idx def codingDNA(seq): # input: list of CAPs characters corresponding to DNA # output: coding sequence only, including start and stop codons start_idx = startCodonIndex(seq) stop_idx = stopCodonIndex(seq, start_idx) codon_length = 3 new_seq = dna[start_idx: stop_idx + codon_length] return new_seq def numCodons(seq): # calculate the number of codons in the gene # input: coding DNA sequence # output: number of codons codon_length = 3 num_codons = len(seq) / codon_length # You don't need to run this line in python 2 because # of integer division. num_codons = int(num_codons) return num_codons def transcription(seq): # Transcription: (A->U), (T->A), (C->G), (G->C) # input: DNA coding squence # ouput: RNA sequence rna_seq='' for base in seq: if base == "A": rna_seq += "U" if base == "T": rna_seq += "A" if base == "C": rna_seq += "G" if base == "G": rna_seq += "C" return rna_seq # calling the functions # It would be more accurate to calculate the number of codons from coding_dna codons = numCodons(dna) start = startCodonIndex(dna) stop = stopCodonIndex(dna, start) coding_dna = codingDNA(dna) coding_rna = transcription(coding_dna) print(("DNA: {}".format(dna))) print(("CODONS: {}".format(codons))) print(("START: {}".format(start))) print(("STOP: {}".format(stop))) print(("CODING DNA: {}".format(coding_dna))) print(("TRANSCRIBED RNA: {}".format(coding_rna)))
#生成器的创建,区分迭代器、生成器、推导式、生成器表达式 l_01 = [x for x in range(10)] #列表推导式 print(l_01) l_02 = (x for x in range(10)) #列表生成器表达式 print(l_02) class Fib: def __init__(self): self.prev = 0 self.curr = 1 def __iter__(self): #Fib是迭代对象, 因为Fib实现了__iter__方法 -->类/对象 return self def __next__(self): #Fib是迭代器, 因为Fib实现了__next__方法 -->类/对象 value = self.curr self.curr += self.prev self.prev = value return value def fib(): prev, curr = 0, 1 while True: yield curr #fib()是生成器,yield是关键字,生成器是一种特殊的迭代器 -->函数 prev, curr = curr, curr + prev def islice(fib, start, end): for i in range(start, end): yield next(fib) f = fib() l_03 = list(islice(f, 0, 10)) print(l_03) #yield print('--------------------') y = 0 def g(): global y print('1') for i in range(0, 10): yield i y = 5 + i print(y) func_g = g() print(func_g.__next__()) #等价于next(func_g) print(func_g.__next__()) print(func_g.__next__()) print(func_g.send(10)) print(func_g.__next__())