From 399e771c4f3f18906a79474546a2f82489aa3c86 Mon Sep 17 00:00:00 2001 From: Morgan Date: Thu, 16 Jan 2020 23:55:33 -0500 Subject: [PATCH] Beta 23 --- .gitignore | 4 + console/quadplay-ide.js | 6 +- console/quadplay-load.js | 21 +- console/quadplay-runtime.js | 4 + console/quadplay.css | 3 - doc/joy-con.jpg | Bin 0 -> 8243 bytes doc/manual.md.html | 219 +- doc/markdeep.min.js | 4890 +++++++++++++++++++++++++- doc/slate.css | 102 +- doc/sn30-pro.jpg | Bin 0 -> 11625 bytes doc/sn30.jpg | Bin 0 -> 10539 bytes doc/thrustmaster.jpg | Bin 0 -> 11263 bytes doc/xbox360.jpg | Bin 0 -> 9575 bytes doc/xboxone.jpg | Bin 0 -> 9710 bytes doc/zero2.jpg | Bin 0 -> 12090 bytes sprites/ninja-black-32x32.png | Bin 1898 -> 1898 bytes sprites/ninja-idle-64x64.png | Bin 0 -> 24242 bytes sprites/ninja-idle-64x64.sprite.json | 17 + sprites/ninja-pink-32x32.png | Bin 0 -> 1764 bytes sprites/ninja-pink-32x32.sprite.json | 23 + sprites/ninja-purple-32x32.png | Bin 1814 -> 1774 bytes sprites/ninja-white-32x32.png | Bin 1916 -> 1919 bytes sprites/ninja-yellow-32x32.png | Bin 1819 -> 1819 bytes 23 files changed, 5128 insertions(+), 161 deletions(-) create mode 100644 .gitignore create mode 100644 doc/joy-con.jpg create mode 100644 doc/sn30-pro.jpg create mode 100644 doc/sn30.jpg create mode 100644 doc/thrustmaster.jpg create mode 100644 doc/xbox360.jpg create mode 100644 doc/xboxone.jpg create mode 100644 doc/zero2.jpg create mode 100644 sprites/ninja-idle-64x64.png create mode 100644 sprites/ninja-idle-64x64.sprite.json create mode 100644 sprites/ninja-pink-32x32.png create mode 100644 sprites/ninja-pink-32x32.sprite.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..6ebaf144 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +__pycache__/ +*.py[cod] +*~ +#* diff --git a/console/quadplay-ide.js b/console/quadplay-ide.js index 46038e3d..b6483ea6 100644 --- a/console/quadplay-ide.js +++ b/console/quadplay-ide.js @@ -443,8 +443,10 @@ function onSlowButton() { } // Allows a framerate to be specified so that the slow button can re-use the logic. +// // isLaunchGame = "has this been triggered by QRuntime.launchGame()" -function onPlayButton(slow, isLaunchGame) { +// args = array of arguments to pass to the new program +function onPlayButton(slow, isLaunchGame, args) { if (isSafari && ! isMobile) { unlockAudio(); } testPost(); @@ -2097,7 +2099,7 @@ function mainLoopStep() { } else if (e.launchGame !== undefined) { loadGameIntoIDE(e.launchGame, function () { onResize(); - onPlayButton(false, true); + onPlayButton(false, true, e.args); }); } else { // Runtime error diff --git a/console/quadplay-load.js b/console/quadplay-load.js index f113fb82..ca2bf65d 100644 --- a/console/quadplay-load.js +++ b/console/quadplay-load.js @@ -455,11 +455,13 @@ function loadFont(name, json, jsonURL) { const shadowSize = parseInt(json.shadowSize || 1); packFont(font, borderSize, shadowSize, json.baseline, json.charSize, Object.freeze({x: json.letterSpacing.x, y: json.letterSpacing.y}), srcMask); - - resourceStats.spritePixels += font._data.width * font._data.height; - ++resourceStats.spritesheets; - resourceStats.maxSpritesheetWidth = Math.max(resourceStats.maxSpritesheetWidth, font._data.width); - resourceStats.maxSpritesheetHeight = Math.max(resourceStats.maxSpritesheetHeight, font._data.height); + + if (name[0] !== '_') { + resourceStats.spritePixels += font._data.width * font._data.height; + ++resourceStats.spritesheets; + resourceStats.maxSpritesheetWidth = Math.max(resourceStats.maxSpritesheetWidth, font._data.width); + resourceStats.maxSpritesheetHeight = Math.max(resourceStats.maxSpritesheetHeight, font._data.height); + } Object.freeze(font); }, loadFailureCallback, loadWarningCallback, forceReload); @@ -586,7 +588,7 @@ function loadSpritesheet(name, json, jsonURL, callback, noForce) { region.size.y = Math.min(image.height - region.pos.y, region.size.y); const cacheName = json.url + JSON.stringify(region); - if (! alreadyCountedSpritePixels[cacheName]) { + if (! alreadyCountedSpritePixels[cacheName] && name[0] !== '_') { alreadyCountedSpritePixels[cacheName] = true; resourceStats.spritePixels += region.size.x * region.size.y; ++resourceStats.spritesheets; @@ -808,7 +810,7 @@ function loadSpritesheet(name, json, jsonURL, callback, noForce) { const soundCache = {}; function loadSound(name, json, jsonURL) { - ++resourceStats.sounds; + if (name[0] !== '_') { ++resourceStats.sounds; } const forceReload = computeForceReloadFlag(json.url); let sound; @@ -1055,7 +1057,10 @@ function addCodeToSourceStats(code, scriptURL) { // Remove blank lines code = code.replace(/\n\s*\n/g, '\n'); - resourceStats.sourceStatements += Math.max(0, (code.split(';').length - 1) + (code.split('\n').length - 1) - 1); + // Ignore statements from system files + if (scriptURL.replace(/^.*\//, '')[0] !== '_') { + resourceStats.sourceStatements += Math.max(0, (code.split(';').length - 1) + (code.split('\n').length - 1) - 1); + } } diff --git a/console/quadplay-runtime.js b/console/quadplay-runtime.js index 2490822f..7b1ffaa0 100644 --- a/console/quadplay-runtime.js +++ b/console/quadplay-runtime.js @@ -3930,6 +3930,10 @@ function drawText(font, str, P, color, shadow, outline, xAlign, yAlign, z, wrapW font = font.font; } + if (font === undefined) { + throw new Error('drawText() requires a font'); + } + if (P === undefined) { throw new Error('drawText() requires a pos'); } diff --git a/console/quadplay.css b/console/quadplay.css index 1be6dbde..e73b9812 100644 --- a/console/quadplay.css +++ b/console/quadplay.css @@ -670,9 +670,6 @@ body.EmulatorUI .virtualController { } canvas#screen { - top: 0px; - left: 0px; - position: absolute; background: #000; z-index: 30; } diff --git a/doc/joy-con.jpg b/doc/joy-con.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27832862f8176d47291d07a40a033af6adf999cc GIT binary patch literal 8243 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 +
![](../console/xbox_controller.png style="border:none; image-rendering:auto" width=50%) ![](../console/gamepad.png style="border:none; image-rendering:auto" width=50%) ![](../console/keyboard.png style="border:none; image-rendering:auto" width=75%) -
- -Note that when using a dual-stick console controller, the unused parts of player 1's -_physical_ controller are mapped as alternate controls for the player 2 (`pad[1]`) _virtual_ -controller. This makes it easy to test two-player games using a single controller. -It also allows for single-player games with dual-stick controls -using either both halves of the keyboard or controller 1. + + +
+Physical controllers give the best experience. We have tested: + + + + + + + + + + + + + + + + + + +
![](sn30-pro.jpg)
[8BitDo SN30 Pro](https://amzn.to/35XGEl9) SN or Classic edition
![](sn30.jpg)
[8BitDo SN30](https://amzn.to/38ay83F)
![](zero2.jpg)
[8BitDo Zero 2](https://amzn.to/2Ny5nWN)

![](xboxone.jpg)
[Microsoft Xbox One Wired Controller](https://amzn.to/36Y7CdR)
![](xboxone.jpg)
[Microsoft Xbox One Wireless Controller for Windows 10](https://amzn.to/35U36vz)
![](xbox360.jpg)
[Microsoft Xbox 360 Wired Controller](https://www.microsoft.com/accessories/en-ww/products/gaming/xbox-360-controller-for-windows/52a-00004) (which works on all operating systems)

![](joy-con.jpg)
[Nintendo Joy-Con](https://amzn.to/30recqP)
![](thrustmaster.jpg)
[Thrustmaster T-Flight HOTAS X Flight Stick](https://amzn.to/2Tvf8J4)
+ +8BitDo controllers work in wired, wireless, and +[XPad](https://support.8bitdo.com/xpad.html) mode. + +On MacOS, Xbox wired controllers require a free, +[open source driver](https://github.com/d235j/360Controller-n). Xbox wireless controllers +do not work on Mac. + +Left and right Joy-Cons work individually in horizontal mode. They cannot be joined as on +Switch. + +PlayStation, Stadia, and +[Thrustmaster T-Flight HOTAS 4](https://amzn.to/35WJVB6), +[Nintendo Switch Pro Controller](https://www.amazon.com/Nintendo-Switch-Pro-Controller/dp/B01NAWKYZ0/), +[Logitech](https://www.logitechg.com/en-ca/products/gamepads/f310-gamepad.html) controllers, +as well as all controllers on mobile are intended to work but I have not tested them. +Please let me know if you are using them successfully. + +All browsers have controller support, but Chrome seems to support the most different controllers +and the rumble feature. + +When using a dual-stick console controller, the unused parts +of player 1's _physical_ controller are mapped as alternate controls +for the player 2 (`pad[1]`) _virtual_ controller. This makes it easy +to test two-player games using a single controller. It also allows +for single-player games with dual-stick controls using either both +halves of the keyboard or controller 1. Input | Player 1 Key| Player 2 Key| XboxOne | Playstation4| SNES | Switch_Pro @@ -780,6 +780,23 @@ ⓟ | 4 or P | 0 | ☰ | Options | Start | +After launching a quadplay game, you must press a button on the +controller for the web browser to allow access to it. quadplay will +automatically detect the controller and change to appropriate button +prompts for most standard devices, including Xbox, PlayStation, +Switch, Stadia, and Thrustmaster controllers. If your device is not +mapped correctly, just enter the pause menu on any game and select +"Set Controls". + +I've found that the easiest Bluetooth controller to pair on MacOS is a +Switch JoyCon. Turn on Bluetooth on your Mac and open the Bluetooth +preferences. Hold the controller horizontally and hold the tiny sync +button [you have to take off the black wrist strap holder +temporarily to access this button]. You'll see the controller appear on your Mac. +Click on its name and select "connect". When you want to re-pair the controller with your +Switch, just slide it back onto the Switch and it will sync. + + ### Resolution The emulator screen tries to maintain an integer multiple of the @@ -815,26 +832,32 @@ Some physical handhelds that may be capable of running quadplay✜ games include: - - 1280 x 720 [GPD Win 2](http://gpd.hk/gdpwin2) = full-res quadplay✜ 3X scaling - - 480 x 320 [Odroid-Go Advance](https://www.hardkernel.com/shop/odroid-go-advance/) = full-res quadplay✜ 1X scaling; bad fit - - 320 x 240 [PocketGo V2](https://www.bittboy.com/collections/pocketgo/products/new-pocketgo-v2) = 1/2-res quadplay✜ 1X scaling; bad fit + - 1280x720 [GPD Win 2](http://gpd.hk/gdpwin2), Windows and Linux = full-res quadplay✜ 3x scaling + - 1280x720 [DragonBox Pyra](https://pyra-handheld.com/boards/pages/pyra/), Linux = full-res quadplay✜ 3x scaling + - 480x320 [Odroid-Go Advance](https://www.hardkernel.com/shop/odroid-go-advance/), Linux = full-res quadplay✜ 1x scaling; poor fit + + +The Smach Z prototype has a 1920x1080 screen that would support +quadplay✜ 4x scaling as a poor fit, and the Alienware UFO prototype has +a 1920x1200 screen that would support quadplay✜ 5x scaling. Neither +product has shipped. For reference when importing assets or designing games inspired by previous work, here are the resolutions of classic and retro machines: - - 480 × 272 PlayStation Portable - - 400 x 240 Playdate - - 320 x 200 VGA, including Amiga 500 and Commodore 64 - - 280 x 192 Apple II - - 256 x 240 NES and TurboGrafx-16 - - 256 x 192 Nintendo DS and Sega Master System - - 256 x 224 SNES - - 240 x 160 Gameboy Advance - - 240 x 136 TIC-80 - - 160 x 192 Atari 2600 - - 160 x 144 Gameboy Color and Sega Game Gear - - 160 x 102 Atari Lynx - - 128 x 128 Pico 8 + - 480×272 PlayStation Portable + - 400x240 Playdate + - 320x200 VGA, including Amiga 500 and Commodore 64 + - 280x192 Apple II + - 256x240 NES and TurboGrafx-16 + - 256x192 Nintendo DS and Sega Master System + - 256x224 SNES + - 240x160 Gameboy Advance + - 240x136 TIC-80 + - 160x192 Atari 2600 + - 160x144 Gameboy Color and Sega Game Gear + - 160x102 Atari Lynx + - 128x128 Pico 8 @@ -3661,7 +3684,8 @@ ![`quad://sprites/ninja-black-32x32.sprite.json`](../sprites/ninja-black-32x32.png) ![`quad://sprites/ninja-red-32x32.sprite.json`](../sprites/ninja-red-32x32.png) ![`quad://sprites/ninja-yellow-32x32.sprite.json`](../sprites/ninja-yellow-32x32.png) ![`quad://sprites/ninja-blue-32x32.sprite.json`](../sprites/ninja-blue-32x32.png) ![`quad://sprites/ninja-purple-32x32.sprite.json`](../sprites/ninja-purple-32x32.png) ![`quad://sprites/ninja-white-32x32.sprite.json`](../sprites/ninja-white-32x32.png) -![`quad://sprites/ninja-bow-32x32.sprite.json`](../sprites/ninja-bow-32x32.png) ![`quad://sprites/ninja-sword-32x32.sprite.json`](../sprites/ninja-sword-32x32.png) +![`quad://sprites/ninja-pink-32x32.sprite.json`](../sprites/ninja-pink-32x32.png) ![`quad://sprites/ninja-bow-32x32.sprite.json`](../sprites/ninja-bow-32x32.png) +![`quad://sprites/ninja-sword-32x32.sprite.json`](../sprites/ninja-sword-32x32.png) ![`quad://sprites/ninja-idle-64x64.sprite.json`](../sprites/ninja-idle-64x64.png) ### Dawnlike @@ -5766,18 +5790,18 @@ ===================================================================================== The API is mostly complete. I'm focusing on bug fixes and minor tweaks -to improve convenience. Only some minor helpers, primarily for AI -and physics tasks, will be added before the 1.0 release. +to improve convenience. Only some minor helpers, primarily for AI, +will be added before the 1.0 release. The physics API is the newest, and thus the least stable (in both API and implementation) part of quadplay. -Expect rasterization rules for triangles to change slightly +Expect rasterization alignment rules for triangles to change slightly in order to better align for subpixel cases. The current sprite, map, -disk, line, and rectangle rendering alignment is final. I will add separate -functions for watertight triangle and line rasterization, which give -different results than what is typically useful for individual -primitives. +disk, line, and rectangle rendering alignment is final. I will add +separate functions for watertight triangle and line rasterization, +which give different results than what is typically useful for +individual primitives. The `makeSpline()` function using `"continue"` mode will change to be a third-order curve outside of the bounds instead of a line. @@ -5790,7 +5814,7 @@ arguments has not yet been determined. The Library tab of the launcher program is currently hard-coded to the -three built-in games. During the beta period this will change to show +four built-in games. During the beta period this will change to show any game that has been loaded by URL until the user explicitly "forgets" it. @@ -5808,7 +5832,7 @@ The package manager is not implemented and may actually be removed instead of being implemented, depending on the needs that arise in the -beta. You can load relative URLs for scripts and assets right now, so +beta. You can load relative URLs for scripts and assets right now. So, the need for packages isn't urgent as you can reuse across projects already. What packages will provide are namespaces as well as assets bundled together with a script. @@ -5833,20 +5857,13 @@ quantization to clean up the alpha channel and then use a separate compression program on the output. -The *entity system* is an optional high-level feature. You -can us it as is, extend it, or replace it with your own. It isn't intended -to be the ultimate high-level scene graph, just a convenience for quick -prototypes. - -Recent Chrome and Safari give the best *performance*. Firefox is the -slowest, mostly due to rendering. I recommend targeting 12 ms instead -of 16 ms for your frame budget to account for this. As JavaScript +Recent Safari and Firefox builds give the best *performance*. Of the +the three, Chrome is the slowest, mostly due to rendering. The order +of these changes frequently. I recommend targeting 13 ms instead of 16 ms for +your frame budget to account for browser overhead. As JavaScript compilers improve, you may see slight improvements from the browser itself. -Performance and the overall experience on mobile and embedded -(Raspberry Pi, Jetson Nano) will improve throughout the beta period. - Change Log @@ -5854,6 +5871,17 @@ Changes for both the specification and implementation in each release. +2020 Jan 16: Beta update 23 + +- No longer count quadplay OS resources against the game's limit +- Corrected the emulator screen position to remain centered during resizing +- Added more information on physical controllers +- Improved manual document layout on mobile phones in portrait mode +- Added `ninja-pink-32x32.sprite.json` +- Added `ninja-idle-64x64.sprite.json` +- Adjusted ninja colors + + 2020 Jan 14: Beta update 22 - Implemented game frame rate throttling to 60 Hz on high refresh rate monitors @@ -6252,7 +6280,6 @@ border: 1px solid #666; float:right; } - manual✜ ",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},r]}]}}),e.h("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}|\t)",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}),e.h("matlab",function(e){var t="('|\\.')+",r={r:0,c:[{b:t}]};return{k:{keyword:"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while",built_in:"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell "},i:'(//|"|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function",e:"$",c:[e.UTM,{cN:"params",v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}]}]},{cN:"built_in",b:/true|false/,r:0,starts:r},{b:"[a-zA-Z][a-zA-Z_0-9]*"+t,r:0},{cN:"number",b:e.CNR,r:0,starts:r},{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{b:/\]|}|\)/,r:0,starts:r},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}],starts:r},e.C("^\\s*\\%\\{\\s*$","^\\s*\\%\\}\\s*$"),e.C("\\%","$")]}}),e.h("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},r={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:r,l:a,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:a,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}),e.h("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],o=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=o,a.c=o,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:o}}),e.h("php",function(e){var t={b:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php","php3","php4","php5","php6","php7"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,n]}}),e.h("plaintext",function(e){return{g:!0}}),e.h("python",function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},n={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[e.BE,r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[e.BE,r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[e.BE,r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[e.BE,r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[e.BE,a]},{b:/(fr|rf|f)"/,e:/"/,c:[e.BE,a]},e.ASM,e.QSM]},i={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},o={cN:"params",b:/\(/,e:/\)/,c:["self",r,i,n]};return a.c=[n,i,r],{aliases:["py","gyp","ipython"],k:t,i:/(<\/|->|\?)|=>/,c:[r,i,n,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,o,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}}),e.h("pyxlscript",function(e){var t={keyword:"\u230a \u230b \u2308 \u2309 | \u2016 \u220a \u2208 bitor pad joy bitxor bitand and because at local in if then for return while mod preservingTransform|10 else continue let|2 const break not with assert debugWatch debugPrint|4 while continue or nil|2 pi nan infinity true false preservingTransform \u2205"},r={cN:"subst",b:/\{/,e:/\}/,k:t},a={cN:"string",c:[e.BE],v:[{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)"/,e:/"/,c:[e.BE,r]},e.QSM]},n={cN:"section",r:10,v:[{b:/^[^\n]+?\\n(-|\u2500|\u2014|\u2501|\u23af|=|\u2550|\u268c){5,}/}]},i={cN:"number",r:0,v:[{b:/[+-]?[\u221e\u03b5\u03c0\xbd\u2153\u2154\xbc\xbe\u2155\u2156\u2157\u2158\u2159\u2150\u215b\u2151\u2152`]/},{b:/#[0-7a-fA-F]+/},{b:/[+-]?(\d*\.)?\d+(%|deg|\xb0)?/},{b:/[\u2080\u2081\u2082\u2083\u2084\u2085\u2086\u2087\u2088\u2089\u2070\xb9\xb2\xb3\u2074\u2075\u2076\u2077\u2078\u2079]/}]},o={cN:"params",b:/\(/,e:/\)/,c:[i,a]};return r.c=[a,i],{aliases:["pyxlscript"],k:t,i:/(<\/|->|\?)|=>|@|\$/,c:[n,i,a,e.CLCM,e.CBCM,{v:[{cN:"function",bK:"def"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,o,{b:/->/,eW:!0,k:"None"}]}]}}),e.h("r",function(e){var t="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:t,l:t,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}}),e.h("ruby",function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},n={b:"#<",e:">"},i=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],o={cN:"subst",b:"#\\{",e:"}",k:r},s={cN:"string",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},c={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},l=[s,n,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(i)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),c].concat(i)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[s,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[n,{cN:"regexp",c:[e.BE,o],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(i),r:0}].concat(i);o.c=l,c.c=l;var d="[>?]>",u="[\\w#]+\\(\\w+\\):\\d+:\\d+>",p="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",m=[{b:/^\s*=>/,starts:{e:"$",c:l}},{cN:"meta",b:"^("+d+"|"+u+"|"+p+")",starts:{e:"$",c:l}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:i.concat(m).concat(l)}}),e.h("rust",function(e){var t="([ui](8|16|32|64|128|size)|f(32|64))?",r="alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield move default",a="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!";return{aliases:["rs"],k:{keyword:r,literal:"true false Some None Ok Err",built_in:a},l:e.IR+"!?",i:""}]}}),e.h("scheme",function(e){var t="[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",r="(\\-|\\+)?\\d+([./]\\d+)?",a=r+"[+\\-]"+r+"i",n={"builtin-name":"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"},i={cN:"meta",b:"^#!",e:"$"},o={cN:"literal",b:"(#t|#f|#\\\\"+t+"|#\\\\.)"},s={cN:"number",v:[{b:r,r:0},{b:a,r:0},{b:"#b[0-1]+(/[0-1]+)?"},{b:"#o[0-7]+(/[0-7]+)?"},{b:"#x[0-9a-f]+(/[0-9a-f]+)?"}]},c=e.QSM,l=[e.C(";","$",{r:0}),e.C("#\\|","\\|#")],d={b:t,r:0},u={cN:"symbol",b:"'"+t},p={eW:!0,r:0},m={v:[{b:/'/},{b:"`"}],c:[{b:"\\(",e:"\\)",c:["self",o,c,s,d,u]}]},g={cN:"name",b:t,l:t,k:n},b={b:/lambda/,eW:!0,rB:!0,c:[g,{b:/\(/,e:/\)/,endsParent:!0,c:[d]}]},f={v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}],c:[b,g,p]};return p.c=[o,s,c,d,u,m,f].concat(l),{i:/\S/,c:[i,s,c,u,m,f].concat(l)}}),e.h("shell",function(e){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}}),e.h("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek", -literal:"true false null unknown",built_in:"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t,e.HCM]},e.CBCM,t,e.HCM]}}),e.h("swift",function(e){var t={keyword:"#available #colorLiteral #column #else #elseif #endif #file #fileLiteral #function #if #imageLiteral #line #selector #sourceLocation _ __COLUMN__ __FILE__ __FUNCTION__ __LINE__ Any as as! as? associatedtype associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},r={cN:"type",b:"\\b[A-Z][\\w\xc0-\u02b8']*",r:0},a=e.C("/\\*","\\*/",{c:["self"]}),n={cN:"subst",b:/\\\(/,e:"\\)",k:t,c:[]},i={cN:"string",c:[e.BE,n],v:[{b:/"""/,e:/"""/},{b:/"/,e:/"/}]},o={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0};return n.c=[o],{k:t,c:[i,e.CLCM,a,r,o,{cN:"function",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{b://},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:t,c:["self",o,i,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:t,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{cN:"meta",b:"(@discardableResult|@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@objcMembers|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)"},{bK:"import",e:/$/,c:[e.CLCM,a]}]}}),e.h("tex",function(e){var t={cN:"tag",b:/\\/,r:0,c:[{cN:"name",v:[{b:/[a-zA-Z\u0430-\u044f\u0410-\u044f]+[*]?/},{b:/[^a-zA-Z\u0430-\u044f\u0410-\u044f0-9]/}],starts:{eW:!0,r:0,c:[{cN:"string",v:[{b:/\[/,e:/\]/},{b:/\{/,e:/\}/}]},{b:/\s*=\s*/,eW:!0,r:0,c:[{cN:"number",b:/-?\d*\.?\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?/}]}]}}]};return{c:[t,{cN:"formula",c:[t],r:0,v:[{b:/\$\$/,e:/\$\$/},{b:/\$/,e:/\$/}]},e.C("%","$",{r:0})]}}),e.h("typescript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract as from extends async await",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void Promise"},a={cN:"meta",b:"@"+t},n={b:"\\(",e:/\)/,k:r,c:["self",e.QSM,e.ASM,e.NM]},i={cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM,a,n]};return{aliases:["ts"],k:r,c:[{cN:"meta",b:/^\s*['"]use strict['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+e.IR+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:e.IR},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:["self",e.CLCM,e.CBCM]}]}]}],r:0},{cN:"function",b:"function",e:/[\{;]/,eE:!0,k:r,c:["self",e.inherit(e.TM,{b:t}),i],i:/%/,r:0},{bK:"constructor",e:/\{/,eE:!0,c:["self",i]},{b:/module\./,k:{built_in:"module"},r:0},{bK:"module",e:/\{/,eE:!0},{bK:"interface",e:/\{/,eE:!0,k:"interface extends"},{b:/\$[(.]/},{b:"\\."+e.IR,r:0},a,n]}}),e.h("yaml",function(e){var t="true false yes no null",r="^[ \\-]*",a="[a-zA-Z_][\\w\\-]*",n={cN:"attr",v:[{b:r+a+":"},{b:r+'"'+a+'":'},{b:r+"'"+a+"':"}]},i={cN:"template-variable",v:[{b:"{{",e:"}}"},{b:"%{",e:"}"}]},o={cN:"string",r:0,v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/\S+/}],c:[e.BE,i]};return{cI:!0,aliases:["yml","YAML","yaml"],c:[n,{cN:"meta",b:"^---s*$",r:10},{cN:"string",b:"[\\|>] *$",rE:!0,c:o.c,e:n.v[0].b},{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0,r:0},{cN:"type",b:"!"+e.UIR},{cN:"type",b:"!!"+e.UIR},{cN:"meta",b:"&"+e.UIR+"$"},{cN:"meta",b:"\\*"+e.UIR+"$"},{cN:"bullet",b:"^ *-",r:0},e.HCM,{bK:t,k:{literal:t}},e.CNM,o]}}),e});var U="Menlo,Consolas,monospace",O=105.1316178/t(U)+"px",F=e("style",'body{max-width:680px;margin:auto;padding:20px;text-align:justify;line-height:140%; -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;color:#222;font-family:Palatino,Georgia,"Times New Roman",serif}'),P=e("style",'@media print{*{-webkit-print-color-adjust:exact;text-shadow:none !important}}body{counter-reset: h1 h2 h3 h4 h5 h6 paragraph}@page{margin:0;size:auto}#mdContextMenu{position:absolute;background:#383838;cursor:default;border:1px solid #999;color:#fff;padding:4px 0px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,"Helvetica Neue",sans-serif;font-size:85%;font-weight:600;border-radius:4px;box-shadow:0px 3px 10px rgba(0,0,0,35%)}#mdContextMenu div{padding:0px 20px}#mdContextMenu div:hover{background:#1659d1}.md code,.md pre{font-family:'+U+";font-size:"+O+';text-align:left;line-height:140%}.md div.title{font-size:26px;font-weight:800;line-height:120%;text-align:center}.md div.afterTitles{height:10px}.md div.subtitle{text-align:center}.md .image{display:inline-block}.md img{max-width:100%;page-break-inside:avoid}.md li{text-align:left;text-indent:0}.md pre.listing {width:100%;tab-size:4;-moz-tab-size:4;-o-tab-size:4;counter-reset:line;overflow-x:auto;resize:horizontal}.md pre.listing .linenumbers span.line:before{width:30px;margin-left:-28px;font-size:80%;text-align:right;counter-increment:line;content:counter(line);display:inline-block;padding-right:13px;margin-right:8px;color:#ccc}.md div.tilde{margin:20px 0 -10px;text-align:center}.md .imagecaption,.md .tablecaption,.md .listingcaption{display:inline-block;margin:7px 5px 12px;text-align:justify;font-style:italic}.md img.pixel{image-rendering:-moz-crisp-edges;image-rendering:pixelated}.md blockquote.fancyquote{margin:25px 0 25px;text-align:left;line-height:160%}.md blockquote.fancyquote::before{content:"\u201c";color:#DDD;font-family:Times New Roman;font-size:45px;line-height:0;margin-right:6px;vertical-align:-0.3em}.md span.fancyquote{font-size:118%;color:#777;font-style:italic}.md span.fancyquote::after{content:"\u201d";font-style:normal;color:#DDD;font-family:Times New Roman;font-size:45px;line-height:0;margin-left:6px;vertical-align:-0.3em}.md blockquote.fancyquote .author{width:100%;margin-top:10px;display:inline-block;text-align:right}.md small{font-size:60%}.md big{font-size:150%}.md div.title,contents,.md .tocHeader,.md h1,.md h2,.md h3,.md h4,.md h5,.md h6,.md .shortTOC,.md .mediumTOC,.nonumberh1,.nonumberh2,.nonumberh3,.nonumberh4,.nonumberh5,.nonumberh6{font-family:Verdana,Helvetica,Arial,sans-serif;margin:13.4px 0 13.4px;padding:15px 0 3px;border-top:none;clear:both}.md .tocTop {display:none}.md h1,.md h2,.md h3,.md h4,.md h5,.md h6,.md .nonumberh1,.md .nonumberh2,.md .nonumberh3,.md .nonumberh4,.md .nonumberh5,.md .nonumberh6{page-break-after:avoid;break-after:avoid}.md svg.diagram{display:block;font-family:'+U+";font-size:"+O+";text-align:center;stroke-linecap:round;stroke-width:"+D+'px;page-break-inside:avoid;stroke:#000;fill:#000}.md svg.diagram .opendot{fill:#fff}.md svg.diagram .shadeddot{fill:#CCC}.md svg.diagram .dotteddot{stroke:#000;stroke-dasharray:4;fill:none}.md svg.diagram text{stroke:none}@media print{@page{margin:1in 5mm;transform: scale(150%)}}@media print{.md .pagebreak{page-break-after:always;visibility:hidden}}.md a{font-family:Georgia,Palatino,\'Times New Roman\'}.md h1,.md .tocHeader,.md .nonumberh1{border-bottom:3px solid;font-size:20px;font-weight:bold;}.md h1,.md .nonumberh1{counter-reset: h2 h3 h4 h5 h6}.md h2,.md .nonumberh2{counter-reset: h3 h4 h5 h6;border-bottom:2px solid #999;color:#555;font-weight:bold;font-size:18px;}.md h3,.md h4,.md h5,.md h6,.md .nonumberh3,.md .nonumberh4,.md .nonumberh5,.md .nonumberh6{font-family:Verdana,Helvetica,Arial,sans-serif;color:#555;font-size:16px;}.md h3{counter-reset:h4 h5 h6}.md h4{counter-reset:h5 h6}.md h5{counter-reset:h6}.md div.table{margin:16px 0 16px 0}.md table{border-collapse:collapse;line-height:140%;page-break-inside:avoid}.md table.table{margin:auto}.md table.calendar{width:100%;margin:auto;font-size:11px;font-family:Verdana,Helvetica,Arial,sans-serif}.md table.calendar th{font-size:16px}.md .today{background:#ECF8FA}.md .calendar .parenthesized{color:#999;font-style:italic}.md table.table th{color:#FFF;background-color:#AAA;border:1px solid #888;padding:8px 15px 8px 15px}.md table.table td{padding:5px 15px 5px 15px;border:1px solid #888}.md table.table tr:nth-child(even){background:#EEE}.md pre.tilde{border-top: 1px solid #CCC;border-bottom: 1px solid #CCC;padding: 5px 0 5px 20px;margin:0 0 0 0;background:#FCFCFC;page-break-inside:avoid}.md a.target{width:0px;height:0px;visibility:hidden;font-size:0px;display:inline-block}.md a:link, .md a:visited{color:#38A;text-decoration:none}.md a:link:hover{text-decoration:underline}.md dt{font-weight:700}.md dl>dd{margin-top:-8px; margin-bottom:8px}.md dl>table{margin:35px 0 30px}.md code{page-break-inside:avoid;} @media print{.md .listing code{white-space:pre-wrap}}.md .endnote{font-size:13px;line-height:15px;padding-left:10px;text-indent:-10px}.md .bib{padding-left:80px;text-indent:-80px;text-align:left}.markdeepFooter{font-size:9px;text-align:right;padding-top:80px;color:#999}.md .mediumTOC{float:right;font-size:12px;line-height:15px;border-left:1px solid #CCC;padding-left:15px;margin:15px 0px 15px 25px}.md .mediumTOC .level1{font-weight:600}.md .longTOC .level1{font-weight:600;display:block;padding-top:12px;margin:0 0 -20px}.md .shortTOC{text-align:center;font-weight:bold;margin-top:15px;font-size:14px}.md .admonition{position:relative;margin:1em 0;padding:.4rem 1rem;border-radius:.2rem;border-left:2.5rem solid rgba(68,138,255,.4);background-color:rgba(68,138,255,.15);}.md .admonition-title{font-weight:bold;border-bottom:solid 1px rgba(68,138,255,.4);padding-bottom:4px;margin-bottom:4px;margin-left: -1rem;padding-left:1rem;margin-right:-1rem;border-color:rgba(68,138,255,.4)}.md .admonition.tip{border-left:2.5rem solid rgba(50,255,90,.4);background-color:rgba(50,255,90,.15)}.md .admonition.tip::before{content:"\\24d8";font-weight:bold;font-size:150%;position:relative;top:3px;color:rgba(26,128,46,.8);left:-2.95rem;display:block;width:0;height:0}.md .admonition.tip>.admonition-title{border-color:rgba(50,255,90,.4)}.md .admonition.warn,.md .admonition.warning{border-left:2.5rem solid rgba(255,145,0,.4);background-color:rgba(255,145,0,.15)}.md .admonition.warn::before,.md .admonition.warning::before{content:"\\26A0";font-weight:bold;font-size:150%;position:relative;top:2px;color:rgba(128,73,0,.8);left:-2.95rem;display:block;width:0;height:0}.md .admonition.warn>.admonition-title,.md .admonition.warning>.admonition-title{border-color:rgba(255,145,0,.4)}.md .admonition.error{border-left: 2.5rem solid rgba(255,23,68,.4);background-color:rgba(255,23,68,.15)}.md .admonition.error>.admonition-title{border-color:rgba(255,23,68,.4)}.md .admonition.error::before{content: "\\2612";font-family:"Arial";font-size:200%;position:relative;color:rgba(128,12,34,.8);top:-2px;left:-3rem;display:block;width:0;height:0}.md .admonition p:last-child{margin-bottom:0}.md li.checked,.md li.unchecked{list-style:none;overflow:visible;text-indent:-1.2em}.md li.checked:before,.md li.unchecked:before{content:"\\2611";display:block;float:left;width:1em;font-size:120%}.md li.unchecked:before{content:"\\2610"}'),J='',W={keyword:{table:"tableau",figure:"figure",p:"liste",diagram:"diagramme",contents:"Table des mati\xe8res",sec:"sec",section:"section",subsection:"paragraphe",chapter:"chapitre",Monday:"lundi",Tuesday:"mardi",Wednesday:"mercredi",Thursday:"jeudi",Friday:"vendredi",Saturday:"samedi",Sunday:"dimanche",January:"Janvier",February:"F\xe9vrier",March:"Mars",April:"Avril",May:"Mai",June:"Juin",July:"Julliet",August:"Ao\xfbt",September:"Septembre",October:"Octobre",November:"Novembre",December:"D\xe9cembre",jan:"janv",feb:"f\xe9vr",mar:"mars",apr:"avril",may:"mai",jun:"juin",jul:"juil",aug:"ao\xfbt",sep:"sept",oct:"oct",nov:"nov",dec:"d\xe9c","“":"« ","&rtquo;":" »"}},V={keyword:{table:"lentel\u0117",figure:"paveiksl\u0117lis",p:"s\u0105ra\u0161as",diagram:"diagrama",contents:"Turinys",sec:"sk",section:"skyrius",subsection:"poskyris",chapter:"skyrius",Monday:"pirmadienis",Tuesday:"antradienis",Wednesday:"tre\u010diadienis",Thursday:"ketvirtadienis",Friday:"penktadienis",Saturday:"\u0161e\u0161tadienis",Sunday:"sekmadienis",January:"Sausis",February:"Vasaris",March:"Kovas",April:"Balandis",May:"Gegu\u017e\u0117",June:"Bir\u017eelis",July:"Liepa",August:"Rugpj\u016btis",September:"Rugs\u0117jis",October:"Spalis",November:"Lapkritis",December:"Gruodis",jan:"saus",feb:"vas",mar:"kov",apr:"bal",may:"geg",jun:"bir\u017e",jul:"liep",aug:"rugpj",sep:"rugs",oct:"spal",nov:"lapkr",dec:"gruod","“":"„","&rtquo;":"“"}},Z={keyword:{table:"\u0442\u0430\u0431\u043b\u0438\u0446\u0430",figure:"\u0444\u0438\u0433\u0443\u0440\u0430",p:"\u0441\u043f\u0438\u0441\u044a\u043a",diagram:"\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u0430",contents:"c\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",sec:"\u0441\u0435\u043a",section:"\u0440\u0430\u0437\u0434\u0435\u043b",subsection:"\u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b",chapter:"\u0433\u043b\u0430\u0432\u0430",Monday:"\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",Tuesday:"\u0432\u0442\u043e\u0440\u043d\u0438\u043a",Wednesday:"\u0441\u0440\u044f\u0434\u0430",Thursday:"\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",Friday:"\u043f\u0435\u0442\u044a\u043a",Saturday:"\u0441\u044a\u0431\u043e\u0442\u0430",Sunday:"\u043d\u0435\u0434\u0435\u043b\u044f",January:"\u044f\u043d\u0443\u0430\u0440\u0438",February:"\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",March:"\u043c\u0430\u0440\u0442",April:"\u0430\u043f\u0440\u0438\u043b",May:"\u043c\u0430\u0439",June:"\u044e\u043d\u0438",July:"\u044e\u043b\u0438",August:"\u0430\u0432\u0433\u0443\u0441\u0442",September:"\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",October:"\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",November:"\u043d\u043e\u0435\u043c\u0432\u0440\u0438",December:"\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438",jan:"\u044f\u043d",feb:"\u0444\u0435\u0432\u0440",mar:"\u043c\u0430\u0440\u0442",apr:"\u0430\u043f\u0440",may:"\u043c\u0430\u0439",jun:"\u044e\u043d\u0438",jul:"\u044e\u043b\u0438",aug:"\u0430\u0432\u0433",sep:"\u0441\u0435\u043f\u0442",oct:"\u043e\u043a\u0442",nov:"\u043d\u043e\u0435\u043c",dec:"\u0434\u0435\u043a","“":"„","”":"”"}},H={keyword:{table:"tabela",figure:"figura",p:"lista",diagram:"diagrama",contents:"conte\xfado",sec:"sec",section:"sec\xe7\xe3o",subsection:"subsec\xe7\xe3o",chapter:"cap\xedtulo",Monday:"Segunda-feira",Tuesday:"Ter\xe7a-feira",Wednesday:"Quarta-feira",Thursday:"Quinta-feira",Friday:"Sexta-feira",Saturday:"S\xe1bado",Sunday:"Domingo",January:"Janeiro",February:"Fevereiro",March:"Mar\xe7o",April:"Abril",May:"Maio",June:"Junho",July:"Julho",August:"Agosto",September:"Setembro",October:"Outubro",November:"Novembro",December:"Dezembro",jan:"jan",feb:"fev",mar:"mar",apr:"abr",may:"mai",jun:"jun",jul:"jul",aug:"ago",sep:"set",oct:"oct",nov:"nov",dec:"dez","“":"«","&rtquo;":"»"}},G={keyword:{table:"Tabulka",figure:"Obr\xe1zek",p:"Seznam",diagram:"Diagram",contents:"Obsah",sec:"kap.",section:"kapitola",subsection:"podkapitola",chapter:"kapitola",Monday:"pond\u011bl\xed",Tuesday:"\xfater\xfd",Wednesday:"st\u0159eda",Thursday:"\u010dtvrtek",Friday:"p\xe1tek",Saturday:"sobota",Sunday:"ned\u011ble",January:"leden",February:"\xfanor",March:"b\u0159ezen",April:"duben",May:"kv\u011bten",June:"\u010derven",July:"\u010dervenec",August:"srpen",September:"z\xe1\u0159\xed",October:"\u0159\xedjen",November:"listopad",December:"prosinec",jan:"led",feb:"\xfano",mar:"b\u0159e",apr:"dub",may:"kv\u011b",jun:"\u010dvn",jul:"\u010dvc",aug:"srp",sep:"z\xe1\u0159",oct:"\u0159\xedj",nov:"lis",dec:"pro","“":"„","”":"“"}},K={keyword:{table:"tabella",figure:"figura",p:"lista",diagram:"diagramma",contents:"indice",sec:"sez",section:"sezione",subsection:"paragrafo",chapter:"capitolo",Monday:"luned\xec",Tuesday:"marted\xec",Wednesday:"mercoled\xec",Thursday:"gioved\xec",Friday:"venerd\xec",Saturday:"sabato",Sunday:"domenica",January:"Gennaio",February:"Febbraio",March:"Marzo",April:"Aprile",May:"Maggio",June:"Giugno",July:"Luglio",August:"Agosto",September:"Settembre",October:"Ottobre",November:"Novembre",December:"Dicembre",jan:"gen",feb:"feb",mar:"mar",apr:"apr",may:"mag",jun:"giu",jul:"lug",aug:"ago",sep:"set",oct:"ott",nov:"nov",dec:"dic","“":"“","&rtquo;":"”"}},Q={keyword:{table:"\u0442\u0430\u0431\u043b\u0438\u0446\u0430",figure:"\u0440\u0438\u0441\u0443\u043d\u043e\u043a",p:"\u043b\u0438\u0441\u0442\u0438\u043d\u0433",diagram:"\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430",contents:"\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",sec:"\u0441\u0435\u043a",section:"\u0440\u0430\u0437\u0434\u0435\u043b",subsection:"\u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b",chapter:"\u0433\u043b\u0430\u0432\u0430",Monday:"\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a",Tuesday:"\u0432\u0442\u043e\u0440\u043d\u0438\u043a",Wednesday:"\u0441\u0440\u0435\u0434\u0430",Thursday:"\u0447\u0435\u0442\u0432\u0435\u0440\u0433",Friday:"\u043f\u044f\u0442\u043d\u0438\u0446\u0430",Saturday:"\u0441\u0443\u0431\u0431\u043e\u0442\u0430",Sunday:"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435",January:"\u044f\u043d\u0432\u0430\u0440\u044cr",February:"\u0444\u0435\u0432\u0440\u0430\u043b\u044c",March:"\u043c\u0430\u0440\u0442",April:"\u0430\u043f\u0440\u0435\u043b\u044c",May:"\u043c\u0430\u0439",June:"\u0438\u044e\u043d\u044c",July:"\u0438\u044e\u043b\u044c",August:"\u0430\u0432\u0433\u0443\u0441\u0442",September:"\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",October:"\u043e\u043a\u0442\u044f\u0431\u0440\u044c",November:"\u043d\u043e\u044f\u0431\u0440\u044c",December:"\u0434\u0435\u043a\u0430\u0431\u0440\u044c",jan:"\u044f\u043d\u0432",feb:"\u0444\u0435\u0432\u0440",mar:"\u043c\u0430\u0440\u0442",apr:"\u0430\u043f\u0440",may:"\u043c\u0430\u0439",jun:"\u0438\u044e\u043d\u044c",jul:"\u0438\u044e\u043b\u044c",aug:"\u0430\u0432\u0433",sep:"\u0441\u0435\u043d\u0442",oct:"\u043e\u043a\u0442",nov:"\u043d\u043e\u044f\u0431\u0440\u044c",dec:"\u0434\u0435\u043a","“":"\xab","”":"\xbb"}},X={keyword:{table:"tabela",figure:"ilustracja",p:"wykaz",diagram:"diagram",contents:"Spis tre\u015bci",sec:"rozdz.",section:"rozdzia\u0142",subsection:"podrozdzia\u0142",chapter:"kapitu\u0142a",Monday:"Poniedzia\u0142ek",Tuesday:"Wtorek",Wednesday:"\u015aroda",Thursday:"Czwartek",Friday:"Pi\u0105tek",Saturday:"Sobota",Sunday:"Niedziela",January:"Stycze\u0144",February:"Luty",March:"Marzec",April:"Kwiecie\u0144",May:"Maj",June:"Czerwiec",July:"Lipiec",August:"Sierpie\u0144",September:"Wrzesie\u0144",October:"Pa\u017adziernik",November:"Listopad",December:"Grudzie\u0144",jan:"sty",feb:"lut",mar:"mar",apr:"kwi",may:"maj",jun:"cze",jul:"lip",aug:"sie",sep:"wrz",oct:"pa\u017a",nov:"lis",dec:"gru","“":"„","”":"”"}},Y={keyword:{table:"t\xe1bl\xe1zat",figure:"\xe1bra",p:"lista",diagram:"diagramm",contents:"Tartalomjegyz\xe9k",sec:"fej",section:"fejezet",subsection:"alfejezet",chapter:"fejezet",Monday:"h\xe9tf\u0151",Tuesday:"kedd",Wednesday:"szerda",Thursday:"cs\xfct\xf6rt\xf6k",Friday:"p\xe9ntek",Saturday:"szombat",Sunday:"vas\xe1rnap",January:"janu\xe1r",February:"febru\xe1r",March:"m\xe1rcius",April:"\xe1prilis",May:"m\xe1jus",June:"j\xfanius",July:"j\xfalius",August:"augusztus",September:"szeptember",October:"okt\xf3ber",November:"november",December:"december",jan:"jan",feb:"febr",mar:"m\xe1rc",apr:"\xe1pr",may:"m\xe1j",jun:"j\xfan",jul:"j\xfal",aug:"aug",sep:"szept",oct:"okt",nov:"nov",dec:"dec","“":"„","”":"”"}},ee={keyword:{table:"\u8868",figure:"\u56f3",p:"\u4e00\u89a7",diagram:"\u56f3",contents:"\u76ee\u6b21",sec:"\u7bc0",section:"\u7bc0",subsection:"\u9805",chapter:"\u7ae0",Monday:"\u6708",Tuesday:"\u706b",Wednesday:"\u6c34",Thursday:"\u6728",Friday:"\u91d1",Saturday:"\u571f",Sunday:"\u65e5",January:"1\u6708",February:"2\u6708",March:"3\u6708",April:"4\u6708",May:"5\u6708",June:"6\u6708",July:"7\u6708",August:"8\u6708",September:"9\u6708",October:"10\u6708",November:"11\u6708",December:"12\u6708",jan:"1\u6708",feb:"2\u6708",mar:"3\u6708",apr:"4\u6708",may:"5\u6708",jun:"6\u6708",jul:"7\u6708",aug:"8\u6708",sep:"9\u6708",oct:"10\u6708",nov:"11\u6708",dec:"12\u6708","“":"\u300c","”":"\u300d"}},te={keyword:{table:"Tabelle",figure:"Abbildung",p:"Auflistung",diagram:"Diagramm",contents:"Inhaltsverzeichnis",sec:"Kap",section:"Kapitel",subsection:"Unterabschnitt",chapter:"Kapitel",Monday:"Montag",Tuesday:"Dienstag",Wednesday:"Mittwoch",Thursday:"Donnerstag",Friday:"Freitag",Saturday:"Samstag",Sunday:"Sonntag",January:"Januar",February:"Februar",March:"M\xe4rz",April:"April",May:"Mai",June:"Juni",July:"Juli",August:"August",September:"September",October:"Oktober",November:"November",December:"Dezember",jan:"Jan",feb:"Feb",mar:"M\xe4r",apr:"Apr",may:"Mai",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Okt",nov:"Nov",dec:"Dez","“":"„","”":"“"}},re={keyword:{table:"Tabla",figure:"Figura",p:"Listado",diagram:"Diagrama",contents:"Tabla de Contenidos",sec:"sec",section:"Secci\xf3n",subsection:"Subsecci\xf3n",chapter:"Cap\xedtulo",Monday:"Lunes",Tuesday:"Martes",Wednesday:"Mi\xe9rcoles",Thursday:"Jueves",Friday:"Viernes",Saturday:"S\xe1bado",Sunday:"Domingo",January:"Enero",February:"Febrero",March:"Marzo",April:"Abril",May:"Mayo",June:"Junio",July:"Julio",August:"Agosto",September:"Septiembre",October:"Octubre",November:"Noviembre",December:"Diciembre",jan:"ene",feb:"feb",mar:"mar",apr:"abr",may:"may",jun:"jun",jul:"jul",aug:"ago",sep:"sept",oct:"oct",nov:"nov",dec:"dic","“":"« ","&rtquo;":" »"}},ae={keyword:{table:"tabell",figure:"figur",p:"lista",diagram:"diagram",contents:"Inneh\xe5llsf\xf6rteckning",sec:"sek",section:"sektion",subsection:"sektion",chapter:"kapitel",Monday:"m\xe5ndag",Tuesday:"tisdag",Wednesday:"onsdag",Thursday:"torsdag",Friday:"fredag",Saturday:"l\xf6rdag",Sunday:"s\xf6ndag",January:"januari",February:"februari",March:"mars",April:"april",May:"maj",June:"juni",July:"juli",August:"augusti",September:"september",October:"oktober",November:"november",December:"december",jan:"jan",feb:"feb",mar:"mar",apr:"apr",may:"maj",jun:"jun",jul:"jul",aug:"aug",sep:"sep",oct:"okt",nov:"nov",dec:"dec","“":"”","”":"”"}},ne={mode:"markdeep",detectMath:!0,lang:{keyword:{}},tocStyle:"auto",hideEmptyWeekends:!0,showLabels:!1,q:!0,definitionStyle:"auto",linkAPIDefinitions:!1,scrollThreshold:90,captionAbove:{diagram:!1,image:!1,table:!1,p:!1}},ie={en:{keyword:{}},ru:Q,fr:W,pl:X,bg:Z,de:te,hu:Y,sv:ae,pt:H,ja:ee,it:K,lt:V,cz:G,es:re};[].slice.call(document.getElementsByTagName("meta")).forEach(function(e){var t=e.getAttribute("lang");if(t){var r=ie[t];r&&(ne.lang=r)}});var oe=Math.max,se=Math.min,ce=Math.abs,le=Math.sign||function(e){return+e===e?0===e?e:e>0?1:-1:NaN},de="";if(!window.alreadyProcessedMarkdeep){window.alreadyProcessedMarkdeep=!0;var ue=window.location.href.search(/\?.*noformat.*/i)!==-1;window.markdeep=Object.freeze({format:x,formatDiagram:N,stylesheet:function(){return P+l()+de}});var pe=''+"$$NC{\\n}{\\hat{n}}NC{\\thetai}{\\theta_\\mathrm{i}}NC{\\thetao}{\\theta_\\mathrm{o}}NC{\\d}[1]{\\mathrm{d}#1}NC{\\w}{\\hat{\\omega}}NC{\\wi}{\\w_\\mathrm{i}}NC{\\wo}{\\w_\\mathrm{o}}NC{\\wh}{\\w_\\mathrm{h}}NC{\\Li}{L_\\mathrm{i}}NC{\\Lo}{L_\\mathrm{o}}NC{\\Le}{L_\\mathrm{e}}NC{\\Lr}{L_\\mathrm{r}}NC{\\Lt}{L_\\mathrm{t}}NC{\\O}{\\mathrm{O}}NC{\\degrees}{{^{\\large\\circ}}}NC{\\T}{\\mathsf{T}}NC{\\mathset}[1]{\\mathbb{#1}}NC{\\Real}{\\mathset{R}}NC{\\Integer}{\\mathset{Z}}NC{\\Boolean}{\\mathset{B}}NC{\\Complex}{\\mathset{C}}NC{\\un}[1]{\\,\\mathrm{#1}}$$\n".rp(/NC/g,"\\newcommand")+"\n",me="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.6/MathJax.js?config=TeX-AMS-MML_HTMLorMML",ge=r("mode");switch(ge){case"script":return;case"html":case"doxygen":A(document.getElementsByClassName("diagram")).concat(A(document.getElementsByTagName("diagram"))).forEach(function(e){var t=o(e.innerHTML);t=t.rp(/(:?^[ \t]*\n)|(:?\n[ \t]*)$/g,""),"doxygen"===ge&&(t=t.rp(RegExp("\u2013","g"),"--"),t=t.rp(RegExp("\u2014","g"),"---"),t=t.rp(/(.*)<\/a>/g,"$1")),e.outerHTML='
'+N(C(t),"")+"
"});var be=!1;return A(document.getElementsByClassName("markdeep")).concat(A(document.getElementsByTagName("markdeep"))).forEach(function(e){var t=document.createElement("div"),r=x(C(o(e.innerHTML)),!0);be=be||S(r),t.innerHTML=r,e.parentNode.replaceChild(t,e)}),document.head.innerHTML=window.markdeep.stylesheet()+document.head.innerHTML+(be?pe:""),void E()}if(!ue){A(document.getElementsByTagName("script")).forEach(function(e){M(e.src)&&e.parentNode.removeChild(e)});const fe=parseInt(r("scrollThreshold"));document.addEventListener("scroll",function(){const e=document.body,t=e.classList,r="scrolled";e.scrollTop>fe?t.add(r):t.remove(r)}),document.body.style.visibility="hidden"}var he=d(document.body);if(ue){he=he.rp(/"},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},u,r,{bK:"class interface",e:/[{;=]/,i:/[^\s:,]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{cN:"meta",b:"^\\s*\\[",eB:!0,e:"\\]",eE:!0,c:[{cN:"meta-string",b:/"/,e:/"/}]},{bK:"new return throw await else",r:0},{cN:"function",b:"("+d+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/\s*[{;=]/,eE:!0,k:t,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,r:0,c:[u,r,e.CBCM]},e.CLCM,e.CBCM]}]}}),e.registerLanguage("css",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:t,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}}),e.registerLanguage("glsl",function(e){return{k:{keyword:"break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly",type:"atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBufferiimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void",built_in:"gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentInputVectors gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexOutputVectors gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffset gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_GlobalInvocationID gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_LocalInvocationID gl_LocalInvocationIndex gl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_NumSamples gl_NumWorkGroups gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrix gl_TextureMatrixInverse gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_WorkGroupID gl_WorkGroupSize gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual groupMemoryBarrier imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageSize imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLevels textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow",literal:"true false"},i:'"',c:[e.CLCM,e.CBCM,e.CNM,{cN:"meta",b:"#",e:"$"}]}}),e.registerLanguage("go",function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:"|<-"}]}}),e.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}}),e.registerLanguage("java",function(e){var t="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=t+"(<"+t+"(\\s*,\\s*"+t+")*>)?",a="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",n="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",i={cN:"number",b:n,r:0};return{aliases:["jsp"],k:a,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+r+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},i,{cN:"meta",b:"@[A-Za-z]+"}]}}),e.registerLanguage("javascript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise" +},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:r,c:[]},i={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,i,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:r,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,i,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:t+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:t,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+t+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:t},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:s}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:t}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:s}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}}),e.registerLanguage("json",function(e){var t={literal:"true false null"},r=[e.QSM,e.CNM],a={e:",",eW:!0,eE:!0,c:r,k:t},n={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(a,{b:/:/})],i:"\\S"},i={b:"\\[",e:"\\]",c:[e.inherit(a)],i:"\\S"};return r.splice(r.length,0,n,i),{c:r,k:t,i:"\\S"}}),e.registerLanguage("kotlin",function(e){var t={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual trait volatile transient native default",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},r={cN:"keyword",b:/\b(break|continue|return|this)\b/,starts:{c:[{cN:"symbol",b:/@\w+/}]}},a={cN:"symbol",b:e.UIR+"@"},n={cN:"subst",b:"\\${",e:"}",c:[e.ASM,e.CNM]},i={cN:"variable",b:"\\$"+e.UIR},s={cN:"string",v:[{b:'"""',e:'"""',c:[i,n]},{b:"'",e:"'",i:/\n/,c:[e.BE]},{b:'"',e:'"',i:/\n/,c:[e.BE,i,n]}]},o={cN:"meta",b:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UIR+")?"},c={cN:"meta",b:"@"+e.UIR,c:[{b:/\(/,e:/\)/,c:[e.inherit(s,{cN:"meta-string"})]}]},l="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",u={cN:"number",b:l,r:0};return{aliases:["kt"],k:t,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,r,a,o,c,{cN:"function",bK:"fun",e:"[(]|$",rB:!0,eE:!0,k:t,i:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,r:5,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"type",b://,k:"reified",r:0},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:t,r:0,c:[{b:/:/,e:/[=,\/]/,eW:!0,c:[{cN:"type",b:e.UIR},e.CLCM,e.CBCM],r:0},e.CLCM,e.CBCM,o,c,s,e.CNM]},e.CBCM]},{cN:"class",bK:"class interface trait",e:/[:\{(]|$/,eE:!0,i:"extends implements",c:[{bK:"public protected internal private constructor"},e.UTM,{cN:"type",b://,eB:!0,eE:!0,r:0},{cN:"type",b:/[,:]\s*/,e:/[<\(,]|$/,eB:!0,rE:!0},o,c]},s,{cN:"meta",b:"^#!/usr/bin/env",e:"$",i:"\n"},u]}}),e.registerLanguage("lisp",function(e){var t="[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",r="\\|[^]*?\\|",a="(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",n={cN:"meta",b:"^#!",e:"$"},i={cN:"literal",b:"\\b(t{1}|nil)\\b"},s={cN:"number",v:[{b:a,r:0},{b:"#(b|B)[0-1]+(/[0-1]+)?"},{b:"#(o|O)[0-7]+(/[0-7]+)?"},{b:"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?"},{b:"#(c|C)\\("+a+" +"+a,e:"\\)"}]},o=e.inherit(e.QSM,{i:null}),c=e.C(";","$",{r:0}),l={b:"\\*",e:"\\*"},u={cN:"symbol",b:"[:&]"+t},d={b:t,r:0},b={b:r},p={b:"\\(",e:"\\)",c:["self",i,o,s,d]},m={c:[s,o,l,u,p,d],v:[{b:"['`]\\(",e:"\\)"},{b:"\\(quote ",e:"\\)",k:{name:"quote"}},{b:"'"+r}]},g={v:[{b:"'"+t},{b:"#'"+t+"(::"+t+")*"}]},f={b:"\\(\\s*",e:"\\)"},_={eW:!0,r:0};return f.c=[{cN:"name",v:[{b:t},{b:r}]},_],_.c=[m,g,f,i,s,o,c,l,u,b,d],{i:/\S/,c:[s,n,i,o,c,m,g,f,d]}}),e.registerLanguage("lua",function(e){var t="\\[=*\\[",r="\\]=*\\]",a={b:t,e:r,c:["self"]},n=[e.C("--(?!"+t+")","$"),e.C("--"+t,r,{c:[a],r:10})];return{l:e.UIR,k:{literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstringmodule next pairs pcall print rawequal rawget rawset require select setfenvsetmetatable tonumber tostring type unpack xpcall arg selfcoroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},c:n.concat([{cN:"function",bK:"function",e:"\\)",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{cN:"params",b:"\\(",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:"string",b:t,e:r,c:[a],r:5}])}}),e.registerLanguage("makefile",function(e){var t={cN:"variable",v:[{b:"\\$\\("+e.UIR+"\\)",c:[e.BE]},{b:/\$[@%`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},e.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"meta",b:/<\?xml/,e:/\?>/,r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0},{b:'b"',e:'"',skip:!0},{b:"b'",e:"'",skip:!0},e.inherit(e.ASM,{i:null,cN:null,c:null,skip:!0}),e.inherit(e.QSM,{i:null,cN:null,c:null,skip:!0})]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[r],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[r],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},r]}]}}),e.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}),e.registerLanguage("matlab",function(e){var t="('|\\.')+",r={r:0,c:[{b:t}]};return{k:{keyword:"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while",built_in:"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell "},i:'(//|"|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function",e:"$",c:[e.UTM,{cN:"params",v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}]}]},{cN:"built_in",b:/true|false/,r:0,starts:r},{b:"[a-zA-Z][a-zA-Z_0-9]*"+t,r:0},{cN:"number",b:e.CNR,r:0,starts:r},{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{b:/\]|}|\)/,r:0,starts:r},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}],starts:r},e.C("^\\s*\\%\\{\\s*$","^\\s*\\%\\}\\s*$"),e.C("\\%","$")]}}),e.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},r={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:r,l:a,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:a,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}),e.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],s=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=s,a.c=s,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:s}}),e.registerLanguage("php",function(e){var t={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php","php3","php4","php5","php6","php7"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,n]}}),e.registerLanguage("plaintext",function(e){return{disableAutodetect:!0}}),e.registerLanguage("python",function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},n={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[e.BE,r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[e.BE,r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[e.BE,r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[e.BE,r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[e.BE,a]},{b:/(fr|rf|f)"/,e:/"/,c:[e.BE,a]},e.ASM,e.QSM]},i={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},s={cN:"params",b:/\(/,e:/\)/,c:["self",r,i,n]};return a.c=[n,i,r],{aliases:["py","gyp","ipython"],k:t,i:/(<\/|->|\?)|=>/,c:[r,i,n,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,s,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}}),e.registerLanguage("pyxlscript",function(e){var t={keyword:"⌊ ⌋ ⌈ ⌉ | ‖ ∊ ∈ bitor pad joy bitxor bitand and because at local in if then for return while mod preservingTransform|10 else continue let|2 const break not with assert debugWatch debugPrint|4 while continue or nil|2 pi nan infinity true false preservingTransform ∅"},r={cN:"subst",b:/\{/,e:/\}/,k:t},a={cN:"string",c:[e.BE],v:[{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)"/,e:/"/,c:[e.BE,r]},e.QSM]},n={cN:"section",r:10,v:[{b:/^[^\n]+?\\n(-|─|—|━|⎯|=|═|⚌){5,}/}]},i={cN:"number",r:0,v:[{b:/[+-]?[∞επ½⅓⅔¼¾⅕⅖⅗⅘⅙⅐⅛⅑⅒`]/},{b:/#[0-7a-fA-F]+/},{b:/[+-]?(\d*\.)?\d+(%|deg|°)?/},{b:/[₀₁₂₃₄₅₆₇₈₉⁰¹²³⁴⁵⁶⁷⁸⁹]/}]},s={cN:"params",b:/\(/,e:/\)/,c:[i,a]};return r.c=[a,i],{aliases:["pyxlscript"],k:t,i:/(<\/|->|\?)|=>|@|\$/,c:[n,i,a,e.CLCM,e.CBCM,{v:[{cN:"function",bK:"def"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,s,{b:/->/,eW:!0,k:"None"}]}]}}),e.registerLanguage("r",function(e){var t="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:t,l:t,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}}),e.registerLanguage("ruby",function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},n={b:"#<",e:">"},i=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},o={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},c={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},l=[o,n,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(i)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),c].concat(i)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[o,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[n,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(i),r:0}].concat(i);s.c=l,c.c=l;var u="[>?]>",d="[\\w#]+\\(\\w+\\):\\d+:\\d+>",b="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",p=[{b:/^\s*=>/,starts:{e:"$",c:l}},{cN:"meta",b:"^("+u+"|"+d+"|"+b+")",starts:{e:"$",c:l}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:i.concat(p).concat(l)}}),e.registerLanguage("rust",function(e){var t="([ui](8|16|32|64|128|size)|f(32|64))?",r="alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield move default",a="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!";return{aliases:["rs"],k:{keyword:r,literal:"true false Some None Ok Err",built_in:a},l:e.IR+"!?",i:""}]}}),e.registerLanguage("scheme",function(e){var t="[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",r="(\\-|\\+)?\\d+([./]\\d+)?",a=r+"[+\\-]"+r+"i",n={"builtin-name":"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"},i={cN:"meta",b:"^#!",e:"$"},s={cN:"literal",b:"(#t|#f|#\\\\"+t+"|#\\\\.)"},o={cN:"number",v:[{b:r,r:0},{b:a,r:0},{b:"#b[0-1]+(/[0-1]+)?"},{b:"#o[0-7]+(/[0-7]+)?"},{b:"#x[0-9a-f]+(/[0-9a-f]+)?"}]},c=e.QSM,l=[e.C(";","$",{r:0}),e.C("#\\|","\\|#")],u={b:t,r:0},d={cN:"symbol",b:"'"+t},b={eW:!0,r:0},p={v:[{b:/'/},{b:"`"}],c:[{b:"\\(",e:"\\)",c:["self",s,c,o,u,d]}]},m={cN:"name",b:t,l:t,k:n},g={b:/lambda/,eW:!0,rB:!0,c:[m,{b:/\(/,e:/\)/,endsParent:!0,c:[u]}]},f={v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}],c:[g,m,b]};return b.c=[s,o,c,u,d,p,f].concat(l),{i:/\S/,c:[i,o,c,d,p,f].concat(l)}}),e.registerLanguage("shell",function(e){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}}),e.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek", +literal:"true false null unknown",built_in:"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t,e.HCM]},e.CBCM,t,e.HCM]}}),e.registerLanguage("swift",function(e){var t={keyword:"#available #colorLiteral #column #else #elseif #endif #file #fileLiteral #function #if #imageLiteral #line #selector #sourceLocation _ __COLUMN__ __FILE__ __FUNCTION__ __LINE__ Any as as! as? associatedtype associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},r={cN:"type",b:"\\b[A-Z][\\wÀ-ʸ']*",r:0},a=e.C("/\\*","\\*/",{c:["self"]}),n={cN:"subst",b:/\\\(/,e:"\\)",k:t,c:[]},i={cN:"string",c:[e.BE,n],v:[{b:/"""/,e:/"""/},{b:/"/,e:/"/}]},s={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0};return n.c=[s],{k:t,c:[i,e.CLCM,a,r,s,{cN:"function",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{b://},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:t,c:["self",s,i,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:t,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{cN:"meta",b:"(@discardableResult|@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@objcMembers|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)"},{bK:"import",e:/$/,c:[e.CLCM,a]}]}}),e.registerLanguage("tex",function(e){var t={cN:"tag",b:/\\/,r:0,c:[{cN:"name",v:[{b:/[a-zA-Zа-яА-я]+[*]?/},{b:/[^a-zA-Zа-яА-я0-9]/}],starts:{eW:!0,r:0,c:[{cN:"string",v:[{b:/\[/,e:/\]/},{b:/\{/,e:/\}/}]},{b:/\s*=\s*/,eW:!0,r:0,c:[{cN:"number",b:/-?\d*\.?\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?/}]}]}}]};return{c:[t,{cN:"formula",c:[t],r:0,v:[{b:/\$\$/,e:/\$\$/},{b:/\$/,e:/\$/}]},e.C("%","$",{r:0})]}}),e.registerLanguage("typescript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract as from extends async await",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void Promise"},a={cN:"meta",b:"@"+t},n={b:"\\(",e:/\)/,k:r,c:["self",e.QSM,e.ASM,e.NM]},i={cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM,a,n]};return{aliases:["ts"],k:r,c:[{cN:"meta",b:/^\s*['"]use strict['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+e.IR+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:e.IR},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:["self",e.CLCM,e.CBCM]}]}]}],r:0},{cN:"function",b:"function",e:/[\{;]/,eE:!0,k:r,c:["self",e.inherit(e.TM,{b:t}),i],i:/%/,r:0},{bK:"constructor",e:/\{/,eE:!0,c:["self",i]},{b:/module\./,k:{built_in:"module"},r:0},{bK:"module",e:/\{/,eE:!0},{bK:"interface",e:/\{/,eE:!0,k:"interface extends"},{b:/\$[(.]/},{b:"\\."+e.IR,r:0},a,n]}}),e.registerLanguage("yaml",function(e){var t="true false yes no null",r="^[ \\-]*",a="[a-zA-Z_][\\w\\-]*",n={cN:"attr",v:[{b:r+a+":"},{b:r+'"'+a+'":'},{b:r+"'"+a+"':"}]},i={cN:"template-variable",v:[{b:"{{",e:"}}"},{b:"%{",e:"}"}]},s={cN:"string",r:0,v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/\S+/}],c:[e.BE,i]};return{cI:!0,aliases:["yml","YAML","yaml"],c:[n,{cN:"meta",b:"^---s*$",r:10},{cN:"string",b:"[\\|>] *$",rE:!0,c:s.c,e:n.v[0].b},{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0,r:0},{cN:"type",b:"!"+e.UIR},{cN:"type",b:"!!"+e.UIR},{cN:"meta",b:"&"+e.UIR+"$"},{cN:"meta",b:"\\*"+e.UIR+"$"},{cN:"bullet",b:"^ *-",r:0},e.HCM,{bK:t,k:{literal:t}},e.CNM,s]}}),e}); + +// Lucida Console on Windows has capital V's that look like lower case, so don't use it +var codeFontStack = "Menlo,Consolas,monospace"; +var codeFontSize = 105.1316178 / measureFontSize(codeFontStack) + 'px'; + +var BODY_STYLESHEET = entag('style', 'body{max-width:680px;' + + 'margin:auto;' + + 'padding:20px;' + + 'text-align:justify;' + + 'line-height:140%; ' + + '-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;' + + 'color:#222;' + + 'font-family:Palatino,Georgia,"Times New Roman",serif}'); + +/** You can embed your own stylesheet AFTER the '; + +// Language options: +var FRENCH = { + keyword: { + table: 'tableau', + figure: 'figure', + listing: 'liste', + diagram: 'diagramme', + contents: 'Table des matières', + + sec: 'sec', + section: 'section', + subsection: 'paragraphe', + chapter: 'chapitre', + + Monday: 'lundi', + Tuesday: 'mardi', + Wednesday: 'mercredi', + Thursday: 'jeudi', + Friday: 'vendredi', + Saturday: 'samedi', + Sunday: 'dimanche', + + January: 'Janvier', + February: 'Février', + March: 'Mars', + April: 'Avril', + May: 'Mai', + June: 'Juin', + July: 'Julliet', + August: 'Août', + September: 'Septembre', + October: 'Octobre', + November: 'Novembre', + December: 'Décembre', + + jan: 'janv', + feb: 'févr', + mar: 'mars', + apr: 'avril', + may: 'mai', + jun: 'juin', + jul: 'juil', + aug: 'août', + sep: 'sept', + oct: 'oct', + nov: 'nov', + dec: 'déc', + + '“': '« ', + '&rtquo;': ' »' + } +}; + +// Translated by "Warmist" +var LITHUANIAN = { + keyword: { + table: 'lentelė', + figure: 'paveikslėlis', + listing: 'sąrašas', + diagram: 'diagrama', + contents: 'Turinys', + + sec: 'sk', + section: 'skyrius', + subsection: 'poskyris', + chapter: 'skyrius', + + Monday: 'pirmadienis', + Tuesday: 'antradienis', + Wednesday: 'trečiadienis', + Thursday: 'ketvirtadienis', + Friday: 'penktadienis', + Saturday: 'šeštadienis', + Sunday: 'sekmadienis', + + January: 'Sausis', + February: 'Vasaris', + March: 'Kovas', + April: 'Balandis', + May: 'Gegužė', + June: 'Birželis', + July: 'Liepa', + August: 'Rugpjūtis', + September: 'Rugsėjis', + October: 'Spalis', + November: 'Lapkritis', + December: 'Gruodis', + + jan: 'saus', + feb: 'vas', + mar: 'kov', + apr: 'bal', + may: 'geg', + jun: 'birž', + jul: 'liep', + aug: 'rugpj', + sep: 'rugs', + oct: 'spal', + nov: 'lapkr', + dec: 'gruod', + + '“': '„', + '&rtquo;': '“' + } +}; + + +// Translated by Zdravko Velinov +var BULGARIAN = { + keyword: { + table: 'таблица', + figure: 'фигура', + listing: 'списък', + diagram: 'диаграма', + + contents: 'cъдържание', + + sec: 'сек', + section: 'раздел', + subsection: 'подраздел', + chapter: 'глава', + + Monday: 'понеделник', + Tuesday: 'вторник', + Wednesday: 'сряда', + Thursday: 'четвъртък', + Friday: 'петък', + Saturday: 'събота', + Sunday: 'неделя', + + January: 'януари', + February: 'февруари', + March: 'март', + April: 'април', + May: 'май', + June: 'юни', + July: 'юли', + August: 'август', + September: 'септември', + October: 'октомври', + November: 'ноември', + December: 'декември', + + jan: 'ян', + feb: 'февр', + mar: 'март', + apr: 'апр', + may: 'май', + jun: 'юни', + jul: 'юли', + aug: 'авг', + sep: 'септ', + oct: 'окт', + nov: 'ноем', + dec: 'дек', + + '“': '„', + '”': '”' + } +}; + + +// Translated by Tiago Antão +var PORTUGUESE = { + keyword: { + table: 'tabela', + figure: 'figura', + listing: 'lista', + diagram: 'diagrama', + contents: 'conteúdo', + + sec: 'sec', + section: 'secção', + subsection: 'subsecção', + chapter: 'capítulo', + + Monday: 'Segunda-feira', + Tuesday: 'Terça-feira', + Wednesday: 'Quarta-feira', + Thursday: 'Quinta-feira', + Friday: 'Sexta-feira', + Saturday: 'Sábado', + Sunday: 'Domingo', + + January: 'Janeiro', + February: 'Fevereiro', + March: 'Março', + April: 'Abril', + May: 'Maio', + June: 'Junho', + July: 'Julho', + August: 'Agosto', + September: 'Setembro', + October: 'Outubro', + November: 'Novembro', + December: 'Dezembro', + + jan: 'jan', + feb: 'fev', + mar: 'mar', + apr: 'abr', + may: 'mai', + jun: 'jun', + jul: 'jul', + aug: 'ago', + sep: 'set', + oct: 'oct', + nov: 'nov', + dec: 'dez', + + '“': '«', + '&rtquo;': '»' + } +}; + + +// Translated by Jan Toušek +var CZECH = { + keyword: { + table: 'Tabulka', + figure: 'Obrázek', + listing: 'Seznam', + diagram: 'Diagram', + + contents: 'Obsah', + + sec: 'kap.', // Abbreviation for section + section: 'kapitola', + subsection:'podkapitola', + chapter: 'kapitola', + + Monday: 'pondělí', + Tuesday: 'úterý', + Wednesday: 'středa', + Thursday: 'čtvrtek', + Friday: 'pátek', + Saturday: 'sobota', + Sunday: 'neděle', + + January: 'leden', + February: 'únor', + March: 'březen', + April: 'duben', + May: 'květen', + June: 'červen', + July: 'červenec', + August: 'srpen', + September: 'září', + October: 'říjen', + November: 'listopad', + December: 'prosinec', + + jan: 'led', + feb: 'úno', + mar: 'bře', + apr: 'dub', + may: 'kvě', + jun: 'čvn', + jul: 'čvc', + aug: 'srp', + sep: 'zář', + oct: 'říj', + nov: 'lis', + dec: 'pro', + + '“': '„', + '”': '“' + } +}; + + +var ITALIAN = { + keyword: { + table: 'tabella', + figure: 'figura', + listing: 'lista', + diagram: 'diagramma', + contents: 'indice', + + sec: 'sez', + section: 'sezione', + subsection: 'paragrafo', + chapter: 'capitolo', + + Monday: 'lunedì', + Tuesday: 'martedì', + Wednesday: 'mercoledì', + Thursday: 'giovedì', + Friday: 'venerdì', + Saturday: 'sabato', + Sunday: 'domenica', + + January: 'Gennaio', + February: 'Febbraio', + March: 'Marzo', + April: 'Aprile', + May: 'Maggio', + June: 'Giugno', + July: 'Luglio', + August: 'Agosto', + September: 'Settembre', + October: 'Ottobre', + November: 'Novembre', + December: 'Dicembre', + + jan: 'gen', + feb: 'feb', + mar: 'mar', + apr: 'apr', + may: 'mag', + jun: 'giu', + jul: 'lug', + aug: 'ago', + sep: 'set', + oct: 'ott', + nov: 'nov', + dec: 'dic', + + '“': '“', + '&rtquo;': '”' + } +}; + +var RUSSIAN = { + keyword: { + table: 'таблица', + figure: 'рисунок', + listing: 'листинг', + diagram: 'диаграмма', + + contents: 'Содержание', + + sec: 'сек', + section: 'раздел', + subsection: 'подраздел', + chapter: 'глава', + + Monday: 'понедельник', + Tuesday: 'вторник', + Wednesday: 'среда', + Thursday: 'четверг', + Friday: 'пятница', + Saturday: 'суббота', + Sunday: 'воскресенье', + + January: 'январьr', + February: 'февраль', + March: 'март', + April: 'апрель', + May: 'май', + June: 'июнь', + July: 'июль', + August: 'август', + September: 'сентябрь', + October: 'октябрь', + November: 'ноябрь', + December: 'декабрь', + + jan: 'янв', + feb: 'февр', + mar: 'март', + apr: 'апр', + may: 'май', + jun: 'июнь', + jul: 'июль', + aug: 'авг', + sep: 'сент', + oct: 'окт', + nov: 'ноябрь', + dec: 'дек', + + '“': '«', + '”': '»' + } +}; + +// Translated by Dariusz Kuśnierek +var POLISH = { + keyword: { + table: 'tabela', + figure: 'ilustracja', + listing: 'wykaz', + diagram: 'diagram', + contents: 'Spis treści', + + sec: 'rozdz.', + section: 'rozdział', + subsection: 'podrozdział', + chapter: 'kapituła', + + Monday: 'Poniedziałek', + Tuesday: 'Wtorek', + Wednesday: 'Środa', + Thursday: 'Czwartek', + Friday: 'Piątek', + Saturday: 'Sobota', + Sunday: 'Niedziela', + + January: 'Styczeń', + February: 'Luty', + March: 'Marzec', + April: 'Kwiecień', + May: 'Maj', + June: 'Czerwiec', + July: 'Lipiec', + August: 'Sierpień', + September: 'Wrzesień', + October: 'Październik', + November: 'Listopad', + December: 'Grudzień', + + jan: 'sty', + feb: 'lut', + mar: 'mar', + apr: 'kwi', + may: 'maj', + jun: 'cze', + jul: 'lip', + aug: 'sie', + sep: 'wrz', + oct: 'paź', + nov: 'lis', + dec: 'gru', + + '“': '„', + '”': '”' + } +}; + +// Translated by Sandor Berczi +var HUNGARIAN = { + keyword: { + table: 'táblázat', + figure: 'ábra', + listing: 'lista', + diagram: 'diagramm', + + contents: 'Tartalomjegyzék', + + sec: 'fej', // Abbreviation for section + section: 'fejezet', + subsection:'alfejezet', + chapter: 'fejezet', + + Monday: 'hétfő', + Tuesday: 'kedd', + Wednesday: 'szerda', + Thursday: 'csütörtök', + Friday: 'péntek', + Saturday: 'szombat', + Sunday: 'vasárnap', + + January: 'január', + February: 'február', + March: 'március', + April: 'április', + May: 'május', + June: 'június', + July: 'július', + August: 'augusztus', + September: 'szeptember', + October: 'október', + November: 'november', + December: 'december', + + jan: 'jan', + feb: 'febr', + mar: 'márc', + apr: 'ápr', + may: 'máj', + jun: 'jún', + jul: 'júl', + aug: 'aug', + sep: 'szept', + oct: 'okt', + nov: 'nov', + dec: 'dec', + + '“': '„', + '”': '”' + } +}; + +// Translated by Takashi Masuyama +var JAPANESE = { + keyword: { + table: '表', + figure: '図', + listing: '一覧', + diagram: '図', + contents: '目次', + + sec: '節', + section: '節', + subsection: '項', + chapter: '章', + + Monday: '月', + Tuesday: '火', + Wednesday: '水', + Thursday: '木', + Friday: '金', + Saturday: '土', + Sunday: '日', + + January: '1月', + February: '2月', + March: '3月', + April: '4月', + May: '5月', + June: '6月', + July: '7月', + August: '8月', + September: '9月', + October: '10月', + November: '11月', + December: '12月', + + jan: '1月', + feb: '2月', + mar: '3月', + apr: '4月', + may: '5月', + jun: '6月', + jul: '7月', + aug: '8月', + sep: '9月', + oct: '10月', + nov: '11月', + dec: '12月', + + '“': '「', + '”': '」' + } +}; + +// Translated by Sandor Berczi +var GERMAN = { + keyword: { + table: 'Tabelle', + figure: 'Abbildung', + listing: 'Auflistung', + diagram: 'Diagramm', + + contents: 'Inhaltsverzeichnis', + + sec: 'Kap', + section: 'Kapitel', + subsection:'Unterabschnitt', + chapter: 'Kapitel', + + Monday: 'Montag', + Tuesday: 'Dienstag', + Wednesday: 'Mittwoch', + Thursday: 'Donnerstag', + Friday: 'Freitag', + Saturday: 'Samstag', + Sunday: 'Sonntag', + + January: 'Januar', + February: 'Februar', + March: 'März', + April: 'April', + May: 'Mai', + June: 'Juni', + July: 'Juli', + August: 'August', + September: 'September', + October: 'Oktober', + November: 'November', + December: 'Dezember', + + jan: 'Jan', + feb: 'Feb', + mar: 'Mär', + apr: 'Apr', + may: 'Mai', + jun: 'Jun', + jul: 'Jul', + aug: 'Aug', + sep: 'Sep', + oct: 'Okt', + nov: 'Nov', + dec: 'Dez', + + '“': '„', + '”': '“' + } +}; + +// Translated by Marcelo Arroyo +var SPANISH = { + keyword: { + table: 'Tabla', + figure: 'Figura', + listing: 'Listado', + diagram: 'Diagrama', + contents: 'Tabla de Contenidos', + + sec: 'sec', + section: 'Sección', + subsection: 'Subsección', + chapter: 'Capítulo', + + Monday: 'Lunes', + Tuesday: 'Martes', + Wednesday: 'Miércoles', + Thursday: 'Jueves', + Friday: 'Viernes', + Saturday: 'Sábado', + Sunday: 'Domingo', + + January: 'Enero', + February: 'Febrero', + March: 'Marzo', + April: 'Abril', + May: 'Mayo', + June: 'Junio', + July: 'Julio', + August: 'Agosto', + September: 'Septiembre', + October: 'Octubre', + November: 'Noviembre', + December: 'Diciembre', + + jan: 'ene', + feb: 'feb', + mar: 'mar', + apr: 'abr', + may: 'may', + jun: 'jun', + jul: 'jul', + aug: 'ago', + sep: 'sept', + oct: 'oct', + nov: 'nov', + dec: 'dic', + + '“': '« ', + '&rtquo;': ' »' + } +}; + +// Translated by Nils Nilsson +var SWEDISH = { + keyword: { + table: 'tabell', + figure: 'figur', + listing: 'lista', + diagram: 'diagram', + + contents: 'Innehållsförteckning', + sec: 'sek', + section: 'sektion', + subsection:'sektion', + chapter: 'kapitel', + + Monday: 'måndag', + Tuesday: 'tisdag', + Wednesday: 'onsdag', + Thursday: 'torsdag', + Friday: 'fredag', + Saturday: 'lördag', + Sunday: 'söndag', + + January: 'januari', + February: 'februari', + March: 'mars', + April: 'april', + May: 'maj', + June: 'juni', + July: 'juli', + August: 'augusti', + September: 'september', + October: 'oktober', + November: 'november', + December: 'december', + + jan: 'jan', + feb: 'feb', + mar: 'mar', + apr: 'apr', + may: 'maj', + jun: 'jun', + jul: 'jul', + aug: 'aug', + sep: 'sep', + oct: 'okt', + nov: 'nov', + dec: 'dec', + + '“': '”', + '”': '”' + } +}; + +var DEFAULT_OPTIONS = { + mode: 'markdeep', + detectMath: true, + lang: {keyword:{}}, // English + tocStyle: 'auto', + hideEmptyWeekends: true, + showLabels: false, + sortScheduleLists: true, + definitionStyle: 'auto', + linkAPIDefinitions: false, + scrollThreshold: 90, + captionAbove: {diagram: false, + image: false, + table: false, + listing: false} +}; + + +// See http://www.i18nguy.com/unicode/language-identifiers.html for keys +var LANG_TABLE = { + en: {keyword:{}}, + ru: RUSSIAN, + fr: FRENCH, + pl: POLISH, + bg: BULGARIAN, + de: GERMAN, + hu: HUNGARIAN, + sv: SWEDISH, + pt: PORTUGUESE, + ja: JAPANESE, + it: ITALIAN, + lt: LITHUANIAN, + cz: CZECH, + es: SPANISH + // Contribute your language here! I only accept translations + // from native speakers. +}; + +[].slice.call(document.getElementsByTagName('meta')).forEach(function(elt) { + var att = elt.getAttribute('lang'); + if (att) { + var lang = LANG_TABLE[att]; + if (lang) { + DEFAULT_OPTIONS.lang = lang; + } + } +}); + + +var max = Math.max; +var min = Math.min; +var abs = Math.abs; +var sign = Math.sign || function (x) { + return ( +x === x ) ? ((x === 0) ? x : (x > 0) ? 1 : -1) : NaN; +}; + + +/** Get an option, or return the corresponding value from DEFAULT_OPTIONS */ +function option(key, key2) { + if (window.markdeepOptions && (window.markdeepOptions[key] !== undefined)) { + var val = window.markdeepOptions[key]; + if (key2) { + val = val[key2] + if (val !== undefined) { + return val; + } else { + return DEFAULT_OPTIONS[key][key2]; + } + } else { + return window.markdeepOptions[key]; + } + } else if (DEFAULT_OPTIONS[key] !== undefined) { + if (key2) { + return DEFAULT_OPTIONS[key][key2]; + } else { + return DEFAULT_OPTIONS[key]; + } + } else { + console.warn('Illegal option: "' + key + '"'); + return undefined; + } +} + + +function maybeShowLabel(url, tag) { + if (option('showLabels')) { + var text = ' {\u00A0' + url + '\u00A0}'; + return tag ? entag(tag, text) : text; + } else { + return ''; + } +} + + +// Returns the localized version of word, defaulting to the word itself +function keyword(word) { + return option('lang').keyword[word] || option('lang').keyword[word.toLowerCase()] || word; +} + + +/** Converts <>&" to their HTML escape sequences */ +function escapeHTMLEntities(str) { + return String(str).rp(/&/g, '&').rp(//g, '>').rp(/"/g, '"'); +} + + +/** Restores the original source string's '<' and '>' as entered in + the document, before the browser processed it as HTML. There is no + way in an HTML document to distinguish an entity that was entered + as an entity. */ +function unescapeHTMLEntities(str) { + // Process & last so that we don't recursively unescape + // escaped escape sequences. + return str. + rp(/</g, '<'). + rp(/>/g, '>'). + rp(/"/g, '"'). + rp(/'/g, "'"). + rp(/–/g, '\u2013'). + rp(/—/g, '---'). + rp(/&/g, '&'); +} + + +function removeHTMLTags(str) { + return str.rp(/<.*?>/g, ''); +} + + +/** Turn the argument into a legal URL anchor */ +function mangle(text) { + return encodeURI(text.rp(/\s/g, '').toLowerCase()); +} + +/** Creates a style sheet containing elements like: + + hn::before { + content: counter(h1) "." counter(h2) "." ... counter(hn) " "; + counter-increment: hn; + } +*/ +function sectionNumberingStylesheet() { + var s = ''; + + for (var i = 1; i <= 6; ++i) { + s += '.md h' + i + '::before {\ncontent:'; + for (var j = 1; j <= i; ++j) { + s += 'counter(h' + j + ') "' + ((j < i) ? '.' : ' ') + '"'; + } + s += ';\ncounter-increment: h' + i + ';margin-right:10px}'; + } + + return entag('style', s); +} + +/** + \param node A node from an HTML DOM + + \return A String that is a very good reconstruction of what the + original source looked like before the browser tried to correct + it to legal HTML. + */ +function nodeToMarkdeepSource(node, leaveEscapes) { + var source = node.innerHTML; + + // Markdown uses e-mail syntax, which HTML parsing + // will try to close by inserting the matching close tags at the end of the + // document. Remove anything that looks like that and comes *after* + // the first fallback style. + //source = source.rp(/"; + +function isMarkdeepScriptName(str) { return str.search(/markdeep\S*?\.js$/i) !== -1; } +function toArray(list) { return Array.prototype.slice.call(list); } + +// Intentionally uninitialized global variable used to detect +// recursive invocations +if (! window.alreadyProcessedMarkdeep) { + window.alreadyProcessedMarkdeep = true; + + // Detect the noformat argument to the URL + var noformat = (window.location.href.search(/\?.*noformat.*/i) !== -1); + + // Export relevant methods + window.markdeep = Object.freeze({ + format: markdeepToHTML, + formatDiagram: diagramToSVG, + stylesheet: function() { + return STYLESHEET + sectionNumberingStylesheet() + HIGHLIGHT_STYLESHEET; + } + }); + + // Not needed: jax: ["input/TeX", "output/SVG"], + var MATHJAX_CONFIG ='' + + '' + + // Custom definitions (NC == \newcommand) + '$$NC{\\n}{\\hat{n}}NC{\\thetai}{\\theta_\\mathrm{i}}NC{\\thetao}{\\theta_\\mathrm{o}}NC{\\d}[1]{\\mathrm{d}#1}NC{\\w}{\\hat{\\omega}}NC{\\wi}{\\w_\\mathrm{i}}NC{\\wo}{\\w_\\mathrm{o}}NC{\\wh}{\\w_\\mathrm{h}}NC{\\Li}{L_\\mathrm{i}}NC{\\Lo}{L_\\mathrm{o}}NC{\\Le}{L_\\mathrm{e}}NC{\\Lr}{L_\\mathrm{r}}NC{\\Lt}{L_\\mathrm{t}}NC{\\O}{\\mathrm{O}}NC{\\degrees}{{^{\\large\\circ}}}NC{\\T}{\\mathsf{T}}NC{\\mathset}[1]{\\mathbb{#1}}NC{\\Real}{\\mathset{R}}NC{\\Integer}{\\mathset{Z}}NC{\\Boolean}{\\mathset{B}}NC{\\Complex}{\\mathset{C}}NC{\\un}[1]{\\,\\mathrm{#1}}$$\n'.rp(/NC/g, '\\newcommand') + + '\n'; + + // The following option forces better rendering on some browsers, but also makes it impossible to copy-paste text with + // inline equations: + // + // 'config=TeX-MML-AM_SVG' + var MATHJAX_URL = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.6/MathJax.js?config=TeX-AMS-MML_HTMLorMML'; + + function loadMathJax() { + // Dynamically load mathjax + var script = document.createElement("script"); + script.type = "text/javascript"; + script.src = MATHJAX_URL; + document.getElementsByTagName("head")[0].appendChild(script); + } + + function needsMathJax(html) { + // Need MathJax if $$ ... $$, \( ... \), or \begin{ + return option('detectMath') && + ((html.search(/(?:\$\$[\s\S]+\$\$)|(?:\\begin{)/m) !== -1) || + (html.search(/\\\(.*\\\)/) !== -1)); + } + + var mode = option('mode'); + switch (mode) { + case 'script': + // Nothing to do + return; + + case 'html': + case 'doxygen': + toArray(document.getElementsByClassName('diagram')).concat(toArray(document.getElementsByTagName('diagram'))).forEach( + function (element) { + var src = unescapeHTMLEntities(element.innerHTML); + // Remove the first and last string (which probably + // had the pre or diagram tag as part of them) if they are + // empty except for whitespace. + src = src.rp(/(:?^[ \t]*\n)|(:?\n[ \t]*)$/g, ''); + + if (mode === 'doxygen') { + // Undo Doxygen's &ndash and &mdash, which are impossible to + // detect once the browser has parsed the document + src = src.rp(new RegExp('\u2013', 'g'), '--'); + src = src.rp(new RegExp('\u2014', 'g'), '---'); + + // Undo Doxygen's links within the diagram because they throw off spacing + src = src.rp(/
(.*)<\/a>/g, '$1'); + } + element.outerHTML = '
' + diagramToSVG(removeLeadingSpace(src), '') + '
'; + }); + + var anyNeedsMathJax = false; + toArray(document.getElementsByClassName('markdeep')).concat(toArray(document.getElementsByTagName('markdeep'))).forEach( + function (src) { + var dst = document.createElement('div'); + var html = markdeepToHTML(removeLeadingSpace(unescapeHTMLEntities(src.innerHTML)), true); + anyNeedsMathJax = anyNeedsMathJax || needsMathJax(html); + dst.innerHTML = html; + src.parentNode.replaceChild(dst, src); + }); + + // Include our stylesheet even if there are no MARKDEEP tags, but do not include the BODY_STYLESHEET. + document.head.innerHTML = window.markdeep.stylesheet() + document.head.innerHTML + (anyNeedsMathJax ? MATHJAX_CONFIG : ''); + loadMathJax(); + return; + } + + // The following is Morgan's massive hack for allowing browsers to + // directly parse Markdown from what appears to be a text file, but is + // actually an intentionally malformed HTML file. + + // In order to be able to show what source files look like, the + // noformat argument may be supplied. + + if (! noformat) { + // Remove any recursive references to this script so that we don't trigger the cost of + // recursive *loading*. (The alreadyProcessedMarkdeep variable will prevent recursive + // *execution*.) We allow other scripts to pass through. + toArray(document.getElementsByTagName('script')).forEach(function(node) { + if (isMarkdeepScriptName(node.src)) { + node.parentNode.removeChild(node); + } + }); + + // Add an event handler for scrolling + const scrollThreshold = parseInt(option('scrollThreshold')); + document.addEventListener('scroll', function () { + const b = document.body, c = b.classList, s = 'scrolled'; + if (b.scrollTop > scrollThreshold) c.add(s); else c.remove(s); + }); + + // Hide the body while formatting + document.body.style.visibility = 'hidden'; + } + + var source = nodeToMarkdeepSource(document.body); + + if (noformat) { + // Abort processing. + source = source.rp(/gREeCjwbj?Hja27hRMBC<{-KdbsonW)(5zL1<~8p8V*DwVjRtW{f0+c7 zo*!~BzlMiitg_q>YQ`pYQam5t!0h`#MFi9bY(o4`2$r0#nZdMXLCtPm6^o>J*HM%1 zm$$L54IFvmu=PL2tU`Lpo!qEV&z>m?2ebm+`vbSSJOFXGD=C5Q(0L1Bb*iU(L2 zbP9!ng(iV2A3q#8eYii^J&C2D{xaHsGEzzCQgwUO0E?JF&nM<)%T5PqpofBrjb^RG z(05=kaNyUbW(0>EYSg&5{2A$jPyJ<#2jCj!D58xTQAV-5EkfPI6}Xl47ioHGsH^^;k5tagvq zfp|R&K}9T@TmiC2HdBLzZGnOzGTZw7_QPgQ-uzfiKIkIMVVsjA*TyVUSOp6+?IiPuw3i`24}X9Tcs zfK6!Y^k?~dCbm9(vI(%J--SW_AE(C3-jOkkiR`W`wMBLaQK&ZtkE}h{$+uw+*&nLs zic+ZcerYT&bKgHg3~FpzJcq}-+|sX6ji$I;PWVNgS@N=40}qAO4U|yf#km4!d0?Hk zAEhEI1GzFNd)r=PA`H?lJecYy&LYtsj5jqknn9&18DBQ02jeonK}g{TS0fkT51*py zMSqS+Htr&u;AkQU5Jl1U)1qJEMH*vUMr>y~@N0F*pg|Y%-+Y_UdmN_BsYSgIUISTO z@FpxUZGJGAQjaPzrZuPUC>z1DJAp1uhi~gT#9-t6rU40(eo(~D;wGil@+3r)7mO!= zRj(!9)tWwoC&QdP5fzo{b=t1S+spTYG7D!;wCuT&r&}B9#oIt)h9B*Hdt>9uiY_G$adc`766R}0AjfR=b znhgT9VQZlEDdqpxF&LsnZ^lXB9fc~RR)}X%eKcBDB2{8DV`|e;akGZYDe2f$U3ZPn z(T$^uvE-pelebbo;Irj2vbSHAaGKe|Wej1qSRXkOd2u#@27fxM?51PBZE?(Nx@**|A#0(diYK&AT-Z<1 zv4=0WifTerW3jBHe*)04Qw%X4@QHbAkeN>T+)W{@2dn4` zD+QWCRQJ~<`*Aee>god%X*4-+F(f4g|aig59Z>0AAyZqG`JaR!_&K(eha>q*IZ?oxep}5Xiyr3E-vgNc3`9@^=x%+<_^CRZLUZG@;$b7|d37Z`!t?Vf&aQ&nQAv z-bW&8-aGc9__bi6KmN>dBGKPGoVILLxwL-xsG3ko)ZHbx>V{}gqQ+Z0L9E>$9;>o) zR4Z;z9@x_Xe&=6siF^st2&^eRLn0uMGo1r87wb@dMW)YSu<%j*Hg9t0M0<*=I)XB? ztb2YL@I&HW-w9ob8XCL=!tJ^f-W$O94e+i9Vf6RI3@8vh2oB{xYIrB10q8Ioq~xL? zG%{8;_V=?5m*BxUObV6crrm1^RU=a;XV;LFqT8;`>ri31c4|=X95O$|Hp6Cg z$Tv))I7!HOH&RL^C1D+9$!l!hTCH#{=g0&m@eL=EG4HT*zuGlTsk)&;ilYvhMAgL;V+{-82b6N5s{t?xr|W@!f4)|Bb38ja@L>m z(o?={fg;MqZax!K;WoZCNM?5@D;&&>RCy(uGy2|j=+Ur>(n3mxjvpvAV@{kB-)%l+hY hR?|*TId#GdNk$(1iQ3tQtz%ZJKN0mOCE#u4{{gITq00aO literal 0 HcmV?d00001 diff --git a/doc/xbox360.jpg b/doc/xbox360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e38e2abc5589bd5a2bc8171df1f3ca74ac79d95 GIT binary patch literal 9575 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 OMP}joJy!;AYySalW@VTF literal 0 HcmV?d00001 diff --git a/doc/xboxone.jpg b/doc/xboxone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5035b7cfc828ecb8d583fcb2bb083a732217596 GIT binary patch literal 9710 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 literal 0 HcmV?d00001 diff --git a/doc/zero2.jpg b/doc/zero2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30c9f9535ee89aba4a04e3cf39487c6d86a0974e GIT binary patch literal 12090 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 literal 0 HcmV?d00001 diff --git a/sprites/ninja-idle-64x64.sprite.json b/sprites/ninja-idle-64x64.sprite.json new file mode 100644 index 00000000..4afdb395 --- /dev/null +++ b/sprites/ninja-idle-64x64.sprite.json @@ -0,0 +1,17 @@ +{ + "url": "ninja-idle-64x64.png", + "spriteSize": {"x": 64, "y": 64}, + "gutter": 0, + "transpose": false, + "defaultDuration": 5, + "names": { + "pink": {"start": {"x": 0, "y": 0}, "end": {"y": 2}, "extrapolate": "oscillate"}, + "red": {"start": {"x": 1, "y": 0}, "end": {"y": 2}, "extrapolate": "oscillate"}, + "yellow": {"start": {"x": 2, "y": 0}, "end": {"y": 2}, "extrapolate": "oscillate"}, + "blue": {"start": {"x": 3, "y": 0}, "end": {"y": 2}, "extrapolate": "oscillate"}, + "white": {"start": {"x": 4, "y": 0}, "end": {"y": 2}, "extrapolate": "oscillate"}, + "purple": {"start": {"x": 5, "y": 0}, "end": {"y": 2}, "extrapolate": "oscillate"}, + "black": {"start": {"x": 6, "y": 0}, "end": {"y": 2}, "extrapolate": "oscillate"} + }, + "license" : "By Morgan McGuire 2020 derived from DezrasDragons https://opengameart.org/content/ninja-animated, in the Public Domain/CC0 1.0 https://creativecommons.org/publicdomain/zero/1.0" +} diff --git a/sprites/ninja-pink-32x32.png b/sprites/ninja-pink-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..99cee01f5ba6848bd82dd985137d3efb45721765 GIT binary patch literal 1764 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 A(EtDd delta 1798 zcmV+h2l@E!4VDg&B!4PUOjJcja7+LI01*)p0002YRsWgpW{7505k$;H5zHbH5&!@0 zA|fKpySpngH4V z|J_9bGTRDC*>Mwc7T*M#R%2UwW1E~xn8Rc;nM@{=$>hg_!+-w(8av}(@MH&jb8i=e z+|>aVIDG`iLrw2sZ7!NG7Yh4wW7hy!AO^|^7E(F|_BzO54R$)Yb9d_TQw6S|x`PW< zgvSee;^&>(oHtjhlDT_sSH{?YegN=vI$a*05kU3WEV16f7@tTHpxd2lf;)V4b5RZ8 zKu;@mj}_#03quowj)9=U=bfwKkS+) za42RtP!0f90mL7wtOSrm0E8vhI2g^KfkPqyZ+3kw0L(E1#A5{{9l!+;806M}au-Po z<0=bFEC6v>n~_*4S5k?f6h|KmAP%zDkQ)G+o%}%%Sbqpg8z9}Dh6oDM2?$ck=Bmg9 zfMIQ2-$r3+Ud!AOKAhiT@OVf)0>HS%VSW~{i9&u;+N=3xeeTYWg6 z&uj4VOrc@%=eNkn1aO4O9LERin#NGXe{k@g3b3xB|5O1U&%cMs^L2tB-OxK2!Q19Q zX?{cAzkgj9?b!Y$liwQpxZZz>nUCwQaUPGyv+qx;W=J)@IhYAhIpAgksQU-X0CMZr ze?t`DxUT1wWFr6&9gLn8W~c7|yEy(Tzy;oaI!q>$$z(E_OeT}bWb()0tH;0aN2TGP zqJZ-g;#cK&)d$4P(!Tcbf`JHx$|uwZa9NrQHh*(@!QeC$itr2S1K8FFkc~aG&ytrl zeR>>w)w@%bKU5QBvsWE-+GDtAOA}Qy(B)QSLGO3IOgmCAnm8PIh76 zpX`as=5G5H!oBqYDhAMG zmy0dLtSB2tLo8CV5o!e>2;Ea8Y@$_tKz{`2oCMaj)JKG7-vx+JLzMa{h+~sNBcB4F z3$Pk`U8?xD-fMdI`U~S8;}e`B$d{0}D@N#x6Hv>uZp8;RefdIv>4rD59eAZhM^!c> zlmU+3!I9?o=UxGXGRtjnlFbP7-4&C`WHR}I;KECXFaG_q@rwxj=~d&$$M;Ldzkm1y z@F}q1RRs`0UQ__czXcGypa8A_;PJnz0B~Ma09*+F@_pDND z+3b|ou73dCHF?-S@R{5lwjY`q-~x=CA5hz?3XkH93+5f* zEu0@v(x%4&MX|(2>jRL~&_JZjU8Uy(xB^@}zpO$G3m~#5Jx(-h{BBoG1%M|Qo7|oe zcTZ42b^ThJ`Tz(~*61_^0ErpmJQjc#x+5lpaz*u#0Af%uT&^h>qQnb^(tqO~fJ1_h ztpJVc-S_rIhPQ}gbpiIhfW?VOK}h1#hc}4b0x)e(T6_+WZQ_*VgaND}^**LR?8pc2 z((APo04q0nfEZ}9?;?m6#P`nc2PA(_e_u@WlFnr=K5iegD@J>jR#9et-%a0mjb{*af+K*ZBbuV5~l%v+h%u-*SEcMLhZN z-JdVes~g(y8i4F)0D}PI^#NQsmcHlV^XCWD3yFPtT!``dfEd8w9)E?rJy3kUzy@Fo zX<;h>1t>mWVEp`mp1yr75fPBod;9|k*>Q;}NKm#lSbO-6)Sl%3d;0SS za3eEO;P;k|09Z%>QGWnHunAn9AMlQ^diV3b4uEZe2*V7B3M55H*1Eoft%J3>2fMQ4 zSZ@MccgXT}FsY`7@g@+48i}qxAi8qc57sw~OdYZK$xn@h-~6_?oLqoDgYUKx2Aeaq o?*(vx?QsC+$1_eQlgY&S2j1&A*wCJOo&W#<07*qoM6N<$f@8u+T>t<8 diff --git a/sprites/ninja-white-32x32.png b/sprites/ninja-white-32x32.png index 4fe296e797ca37ed4bff4ee9ec6f5a9a38b1473c..435393a6c34fcf350e0ba91dba96842ddbecb652 100644 GIT binary patch delta 1316 zcmV+<1>5@k4*w32G6Kw1ku)&`Z!F7~k!c?R;<1VM0e=@Qscj&L>Xs@t8D=_ak6`(RPYKAC+?Uq;z4jnff~>gA6p&!A6Tm8hCY0XLrPITfMETZ ze8BjC3A%D0`Osrl7?23^0o1CI012&iP){Ihsa8M!AQ@7lCx9Cx0h02u z0Az)iSd~;9v8C*|nD~H>7bsfQ|qOD3sAAn{__a$LOuDi=r;&#Xx>v;7Fjmdq9`BGAq*!lmgoJ} zJR;s+{OE7LwwL8eK+>}4OgKd1lzo&WKA1b~!o z0<6Dyjq?L8^pES1eh83Y)PXz954hC-RQ*>0x*eJ~C|+QGfF#BCJuv*s2?r3Y3>4UY zi1Gnk&j%drO^w)JrhmL}0Kv*N0c5LIc;@*5l0y5QoZX;zJllu;A zK0lyWA0<2nGcMF`z!MNpV2Ii5arjE`A$BDnKqo_ktp;h_fFpanl#EET+?>hOPsl6kGJY30NPiV#eZfzVgg&1B`tMlUY5d5JT3=Tu?jl}QP^@roEAXc z`3Ta2J2IJvLp>m8Sh=ko3Ea zkA!WrETk@!)AIuwDh60O5<>y7V|)EFI|16JvHAjBo*&Q(Z9U7Pg9o<0n}2#Q3~-Q5 z02W9uG(TWl2!g2l{ec9VGLy+kQ1l8&XAq4*U*~G6HuZku)&`d{POmk!c?R-?54J0e=(4CUPK%>XmAdGTiY0|GLOQ zTpp=+XA&p7*5jt9JLAF;kgBxjB=q=ho{2}P?_45LlG~rM_Kv{u(pW^($_X|>r0tmqw5$6Ml`VZs- zl4j+AIA6do7kmuPsPGveX8i~6FcF+lpazV@$JW692exXtp%0&;kW!ovAnHGm512o| zgk7ucZIq8F#efFBTCLTn;m`X5=qEuwzcR8~2nLL8Xx>xUHd!{-rYIjUAPgrkm*;&S9uwSN zeCeORwzus;K+?7;%m)mBbQ~T@G4bt%3UC#(gx)G?eRjovkHuoKSOBE^1q{Al39t>e zNp}f`{x#hpWZM9?GxsWh!FMVE{#5{ThkpV%cLB2RRDjHde5V2c3_jv@4*)4W3Xl@; z8utgBm><_6{S+XJ;0g@Ek_rUZICtN^qVWvR;A;<@C zJ|D1iZ?Q8sv)1%;LiF}e2_Rdw!V~WgkQCbY$8N%WXFZZ19$-94Gb~e9*3_)?_wwN0Sq!U*lLjG1K6|2OUcN!R*TaD*hlPfF|Vgy zuXQK@ynPFUZct@e~9A24#F^!q3k<5Lv?~U;se~I?v+>vrJy)9cr$N%6Ha-%z z&9*V=EQj|8G*k?*4J3vFV2Aeld9DO#H;pwB;Ozc@R%rcfn|3bfbGv%a41chbO#n7X z&$K_FH-aFVetRH6S7xzTEEbE!VzF2(7K_E=e+ayye8BDZ2PA6cmE;3%zdzuO)djfm z{(t}}-)esVhV%J=pn5=E-DH1&Y;4jEUSA*}*gtUa4M_1bKsM=#^8v~_xj!KN^Zfzy zcO=F3xW$v_1C(^~jAGmm(|^|&=zwxoRw#fBr(a(n*dGuO_g@7hWF*z`0S;tI*$VRk zaMhf{d_cHAz?1y}0m1$O-uHZf>*RB{$?_XzYkt;Xo2P$$0aWW@0fPMlK*4q?f?>SG z#*qL?8RKgU5*fLn=nglA^@;x<66_z~JEM|}gsngTvQ!G!0u+oSNPj8VA22kK;Zjc# z^LF^xeeHzsBZ{5@iM;3WL$R%R0|bAK8S