diff --git a/CHANGELOG.long.md b/CHANGELOG.long.md index 08d48868..24eae568 100644 --- a/CHANGELOG.long.md +++ b/CHANGELOG.long.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -1034 merges; 148 releases +1035 merges; 148 releases @@ -18,6 +18,21 @@ Published tags: +  + +  + +## [Untagged] - 8/17/2022 10:02:39 PM + +Commit [9209392cd7e025b365da88aa29649c63b241074d](https://github.com/StoneCypher/jssm/commit/9209392cd7e025b365da88aa29649c63b241074d) + +Author: `John Haugeland ` + + * mostly done, just have to surface the themes then do testing + + + +     diff --git a/CHANGELOG.md b/CHANGELOG.md index 41df1722..567b46a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -1034 merges; 148 releases; Changlogging the last 10 commits; Full changelog at [CHANGELOG.long.md](CHANGELOG.long.md) +1035 merges; 148 releases; Changlogging the last 10 commits; Full changelog at [CHANGELOG.long.md](CHANGELOG.long.md) @@ -18,6 +18,21 @@ Published tags: +  + +  + +## [Untagged] - 8/17/2022 10:02:39 PM + +Commit [9209392cd7e025b365da88aa29649c63b241074d](https://github.com/StoneCypher/jssm/commit/9209392cd7e025b365da88aa29649c63b241074d) + +Author: `John Haugeland ` + + * mostly done, just have to surface the themes then do testing + + + +     @@ -160,19 +175,4 @@ Commit [ed398d3627e63b7b64d009acb42779b814e2f6da](https://github.com/StoneCypher Author: `John Haugeland ` - * tests - - - - -  - -  - -## [Untagged] - 8/4/2022 9:15:50 PM - -Commit [63304cd9d1dd4ea5801edb6437f361023e3d6c32](https://github.com/StoneCypher/jssm/commit/63304cd9d1dd4ea5801edb6437f361023e3d6c32) - -Author: `John Haugeland ` - - * Styling now works for start, end, and terminal state types too. Fixes StoneCypher/fsl#1143, fixes StoneCypher/fsl#1141, fixes StoneCypher/fsl#1156, fixes StoneCypher/fsl#1157, fixes StoneCypher/fsl#242 \ No newline at end of file + * tests \ No newline at end of file diff --git a/README.md b/README.md index 0a9d7e08..a4b78b25 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Please edit the file it's derived from, instead: `./src/md/readme_base.md` -* Generated for version 5.81.3 at 8/16/2022, 1:20:00 PM +* Generated for version 5.81.3 at 8/18/2022, 5:37:28 PM --> # jssm @@ -29,7 +29,7 @@ share online. Easy to embed. Readable, useful state machines as one-liner strings. -***4,832 tests*** run 5,723 times. 4,823 specs with 94.8% coverage, 9 fuzz tests with 5.4% coverage. With 2,293 lines, that's about 2.1 tests per line, or 2.5 generated tests per line. +***4,832 tests*** run 5,723 times. 4,823 specs with 98.5% coverage, 9 fuzz tests with 5.4% coverage. With 2,520 lines, that's about 1.9 tests per line, or 2.3 generated tests per line. ***Meet your new state machine library.*** diff --git a/dist/es6/jssm.d.ts b/dist/es6/jssm.d.ts index eb7207ea..54cd0be6 100644 --- a/dist/es6/jssm.d.ts +++ b/dist/es6/jssm.d.ts @@ -218,7 +218,7 @@ declare class Machine { _arrange_declaration: Array>; _arrange_start_declaration: Array>; _arrange_end_declaration: Array>; - _theme: FslTheme; + _themes: FslTheme[]; _flow: FslDirection; _has_hooks: boolean; _has_basic_hooks: boolean; @@ -626,6 +626,7 @@ declare class Machine { list_named_transitions(): Map; list_actions(): Array; theme(): FslTheme; + themes(): FslTheme[]; flow(): FslDirection; get_transition_by_state_names(from: StateType, to: StateType): number; lookup_transition_for(from: StateType, to: StateType): JssmTransition; diff --git a/dist/es6/jssm.js b/dist/es6/jssm.js index a76cbb44..703f51f6 100644 --- a/dist/es6/jssm.js +++ b/dist/es6/jssm.js @@ -2,6 +2,13 @@ import { reduce as reduce_to_639 } from 'reduce-to-639-1'; import { circular_buffer } from 'circular_buffer_js'; import { base_theme } from './themes/jssm_base_stylesheet'; +import { default_theme } from './themes/jssm_theme_default'; +import { modern_theme } from './themes/jssm_theme_modern'; +import { ocean_theme } from './themes/jssm_theme_ocean'; +const themes = new Map(); +themes.set('default', default_theme); +themes.set('modern', modern_theme); +themes.set('ocean', ocean_theme); import { seq, unique, find_repeated, weighted_rand_select, weighted_sample_select, histograph, weighted_histo_key, array_box_if_string, name_bind_prop_and_state, hook_name, named_hook_name } from './jssm_util'; import * as constants from './jssm_constants'; const { shapes, gviz_shapes, named_colors } = constants; @@ -688,7 +695,7 @@ class Machine { this._arrange_start_declaration = arrange_start_declaration; this._arrange_end_declaration = arrange_end_declaration; this._dot_preamble = dot_preamble; - this._theme = theme; + this._themes = [theme]; this._flow = flow; this._graph_layout = graph_layout; this._has_hooks = false; @@ -1381,7 +1388,10 @@ class Machine { return Array.from(this._actions.keys()); } theme() { - return this._theme; // constructor sets this to "default" otherwise + return this._themes[0]; // returns topmost only + } + themes() { + return this._themes; // constructor sets this to "default" otherwise } flow() { return this._flow; diff --git a/dist/es6/themes/jssm_base_stylesheet.d.ts b/dist/es6/themes/jssm_base_stylesheet.d.ts index 63c8ef5f..bcf0a491 100644 --- a/dist/es6/themes/jssm_base_stylesheet.d.ts +++ b/dist/es6/themes/jssm_base_stylesheet.d.ts @@ -8,4 +8,4 @@ declare const base_active_start_state_style: JssmStateConfig; declare const base_end_state_style: JssmStateConfig; declare const base_active_end_state_style: JssmStateConfig; declare const base_theme: JssmBaseTheme; -export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, base_theme }; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, base_theme, base_theme as theme }; diff --git a/dist/es6/themes/jssm_base_stylesheet.js b/dist/es6/themes/jssm_base_stylesheet.js index 6e8c68bc..9a31d376 100644 --- a/dist/es6/themes/jssm_base_stylesheet.js +++ b/dist/es6/themes/jssm_base_stylesheet.js @@ -54,4 +54,4 @@ const base_theme = { graph: undefined, title: undefined // TODO FIXME }; -export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, base_theme }; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, base_theme, base_theme as theme }; diff --git a/dist/es6/themes/jssm_theme_default.d.ts b/dist/es6/themes/jssm_theme_default.d.ts new file mode 100644 index 00000000..bade2da1 --- /dev/null +++ b/dist/es6/themes/jssm_theme_default.d.ts @@ -0,0 +1,11 @@ +import { JssmStateConfig, JssmBaseTheme } from '../jssm_types'; +declare const base_state_style: JssmStateConfig; +declare const base_active_state_style: JssmStateConfig; +declare const base_terminal_state_style: JssmStateConfig; +declare const base_active_terminal_state_style: JssmStateConfig; +declare const base_start_state_style: JssmStateConfig; +declare const base_active_start_state_style: JssmStateConfig; +declare const base_end_state_style: JssmStateConfig; +declare const base_active_end_state_style: JssmStateConfig; +declare const default_theme: JssmBaseTheme; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, default_theme, default_theme as theme }; diff --git a/dist/es6/themes/jssm_theme_default.js b/dist/es6/themes/jssm_theme_default.js new file mode 100644 index 00000000..dc2ecdad --- /dev/null +++ b/dist/es6/themes/jssm_theme_default.js @@ -0,0 +1,57 @@ +const base_state_style = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' +}; +const base_active_state_style = { + textColor: 'white', + backgroundColor: 'dodgerblue4' +}; +const base_hooked_state_style = { + shape: 'component' +}; +const base_terminal_state_style = { + textColor: 'white', + backgroundColor: 'crimson' +}; +const base_active_terminal_state_style = { + textColor: 'white', + backgroundColor: 'indigo' +}; +const base_start_state_style = { + backgroundColor: 'yellow' +}; +const base_active_start_state_style = { + backgroundColor: 'yellowgreen' +}; +const base_active_hooked_state_style = { + backgroundColor: 'yellowgreen' +}; +const base_end_state_style = { + textColor: 'white', + backgroundColor: 'darkolivegreen' +}; +const base_active_end_state_style = { + textColor: 'white', + backgroundColor: 'darkgreen' +}; +const default_theme = { + state: base_state_style, + start: base_start_state_style, + end: base_end_state_style, + terminal: base_terminal_state_style, + hooked: base_hooked_state_style, + active: base_active_state_style, + active_start: base_active_start_state_style, + active_end: base_active_end_state_style, + active_terminal: base_active_terminal_state_style, + active_hooked: base_active_hooked_state_style, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME +}; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, default_theme, default_theme as theme }; diff --git a/dist/es6/themes/jssm_theme_modern.d.ts b/dist/es6/themes/jssm_theme_modern.d.ts new file mode 100644 index 00000000..e0ecd4bf --- /dev/null +++ b/dist/es6/themes/jssm_theme_modern.d.ts @@ -0,0 +1,11 @@ +import { JssmStateConfig, JssmBaseTheme } from '../jssm_types'; +declare const base_state_style: JssmStateConfig; +declare const base_active_state_style: JssmStateConfig; +declare const base_terminal_state_style: JssmStateConfig; +declare const base_active_terminal_state_style: JssmStateConfig; +declare const base_start_state_style: JssmStateConfig; +declare const base_active_start_state_style: JssmStateConfig; +declare const base_end_state_style: JssmStateConfig; +declare const base_active_end_state_style: JssmStateConfig; +declare const modern_theme: JssmBaseTheme; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, modern_theme, modern_theme as theme }; diff --git a/dist/es6/themes/jssm_theme_modern.js b/dist/es6/themes/jssm_theme_modern.js new file mode 100644 index 00000000..ff4f3ca0 --- /dev/null +++ b/dist/es6/themes/jssm_theme_modern.js @@ -0,0 +1,57 @@ +const base_state_style = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' +}; +const base_active_state_style = { + textColor: 'white', + backgroundColor: 'dodgerblue4' +}; +const base_hooked_state_style = { + shape: 'component' +}; +const base_terminal_state_style = { + textColor: 'white', + backgroundColor: 'crimson' +}; +const base_active_terminal_state_style = { + textColor: 'white', + backgroundColor: 'indigo' +}; +const base_start_state_style = { + backgroundColor: 'yellow' +}; +const base_active_start_state_style = { + backgroundColor: 'yellowgreen' +}; +const base_active_hooked_state_style = { + backgroundColor: 'yellowgreen' +}; +const base_end_state_style = { + textColor: 'white', + backgroundColor: 'darkolivegreen' +}; +const base_active_end_state_style = { + textColor: 'white', + backgroundColor: 'darkgreen' +}; +const modern_theme = { + state: base_state_style, + start: base_start_state_style, + end: base_end_state_style, + terminal: base_terminal_state_style, + hooked: base_hooked_state_style, + active: base_active_state_style, + active_start: base_active_start_state_style, + active_end: base_active_end_state_style, + active_terminal: base_active_terminal_state_style, + active_hooked: base_active_hooked_state_style, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME +}; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, modern_theme, modern_theme as theme }; diff --git a/dist/es6/themes/jssm_theme_ocean.d.ts b/dist/es6/themes/jssm_theme_ocean.d.ts new file mode 100644 index 00000000..d2db15fe --- /dev/null +++ b/dist/es6/themes/jssm_theme_ocean.d.ts @@ -0,0 +1,11 @@ +import { JssmStateConfig, JssmBaseTheme } from '../jssm_types'; +declare const base_state_style: JssmStateConfig; +declare const base_active_state_style: JssmStateConfig; +declare const base_terminal_state_style: JssmStateConfig; +declare const base_active_terminal_state_style: JssmStateConfig; +declare const base_start_state_style: JssmStateConfig; +declare const base_active_start_state_style: JssmStateConfig; +declare const base_end_state_style: JssmStateConfig; +declare const base_active_end_state_style: JssmStateConfig; +declare const ocean_theme: JssmBaseTheme; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, ocean_theme, ocean_theme as theme }; diff --git a/dist/es6/themes/jssm_theme_ocean.js b/dist/es6/themes/jssm_theme_ocean.js new file mode 100644 index 00000000..fdf45606 --- /dev/null +++ b/dist/es6/themes/jssm_theme_ocean.js @@ -0,0 +1,57 @@ +const base_state_style = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' +}; +const base_active_state_style = { + textColor: 'white', + backgroundColor: 'dodgerblue4' +}; +const base_hooked_state_style = { + shape: 'component' +}; +const base_terminal_state_style = { + textColor: 'white', + backgroundColor: 'crimson' +}; +const base_active_terminal_state_style = { + textColor: 'white', + backgroundColor: 'indigo' +}; +const base_start_state_style = { + backgroundColor: 'yellow' +}; +const base_active_start_state_style = { + backgroundColor: 'yellowgreen' +}; +const base_active_hooked_state_style = { + backgroundColor: 'yellowgreen' +}; +const base_end_state_style = { + textColor: 'white', + backgroundColor: 'darkolivegreen' +}; +const base_active_end_state_style = { + textColor: 'white', + backgroundColor: 'darkgreen' +}; +const ocean_theme = { + state: base_state_style, + start: base_start_state_style, + end: base_end_state_style, + terminal: base_terminal_state_style, + hooked: base_hooked_state_style, + active: base_active_state_style, + active_start: base_active_start_state_style, + active_end: base_active_end_state_style, + active_terminal: base_active_terminal_state_style, + active_hooked: base_active_hooked_state_style, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME +}; +export { base_state_style, base_active_state_style, base_terminal_state_style, base_active_terminal_state_style, base_start_state_style, base_active_start_state_style, base_end_state_style, base_active_end_state_style, ocean_theme, ocean_theme as theme }; diff --git a/dist/jssm.es5.cjs.js b/dist/jssm.es5.cjs.js index 8908c0fe..154a5c63 100644 --- a/dist/jssm.es5.cjs.js +++ b/dist/jssm.es5.cjs.js @@ -1 +1 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:true});var reductions={abkhazian:"ab","аҧсуа бызшәа, аҧсшәа":"ab",ab:"ab",abk:"ab","аҧсуа бызшәа":"ab","аҧсшәа":"ab",afar:"aa",afaraf:"aa",aa:"aa",aar:"aa",afrikaans:"af",af:"af",afr:"af",akan:"ak",ak:"ak",aka:"ak","aka + 2":"ak",albanian:"sq",shqip:"sq",sq:"sq",sqi:"sq",alb:"sq","sqi + 4":"sq",amharic:"am","አማርኛ":"am",am:"am",amh:"am",arabic:"ar","العربية":"ar",ar:"ar",ara:"ar","ara + 30":"ar",aragonese:"an","aragonés":"an",an:"an",arg:"an",armenian:"hy","հայերեն":"hy",hy:"hy",hye:"hy",arm:"hy",assamese:"as","অসমীয়া":"as",as:"as",asm:"as",avaric:"av","авар мацӏ, магӏарул мацӏ":"av",av:"av",ava:"av","авар мацӏ":"av","магӏарул мацӏ":"av",avestan:"ae",avesta:"ae",ae:"ae",ave:"ae",aymara:"ay","aymar aru":"ay",ay:"ay",aym:"ay","aym + 2":"ay",azerbaijani:"az","azərbaycan dili":"az",az:"az",aze:"az","aze + 2":"az",bambara:"bm",bamanankan:"bm",bm:"bm",bam:"bm",bashkir:"ba","башҡорт теле":"ba",ba:"ba",bak:"ba",basque:"eu","euskara, euskera":"eu",eu:"eu",eus:"eu",baq:"eu",euskara:"eu",euskera:"eu",belarusian:"be","беларуская мова":"be",be:"be",bel:"be",bengali:"bn","বাংলা":"bn",bn:"bn",ben:"bn","bihari languages":"bh","भोजपुरी":"bh",bh:"bh",bih:"bh",bislama:"bi",bi:"bi",bis:"bi",bosnian:"bs","bosanski jezik":"bs",bs:"bs",bos:"bs",breton:"br",brezhoneg:"br",br:"br",bre:"br",bulgarian:"bg","български език":"bg",bg:"bg",bul:"bg",burmese:"my","ဗမာစာ":"my",my:"my",mya:"my",bur:"my","catalan, valencian":"ca","català, valencià":"ca",ca:"ca",cat:"ca","català":"ca","valencià":"ca",chamorro:"ch",chamoru:"ch",ch:"ch",cha:"ch",chechen:"ce","нохчийн мотт":"ce",ce:"ce",che:"ce","chichewa, chewa, nyanja":"ny","chicheŵa, chinyanja":"ny",ny:"ny",nya:"ny","chicheŵa":"ny",chinyanja:"ny",chinese:"zh","中文 (zhōngwén), 汉语, 漢語":"zh",zh:"zh",zho:"zh",chi:"zh","zho + 13":"zh","中文 (zhōngwén)":"zh","汉语":"zh","漢語":"zh",chuvash:"cv","чӑваш чӗлхи":"cv",cv:"cv",chv:"cv",cornish:"kw",kernewek:"kw",kw:"kw",cor:"kw",corsican:"co","corsu, lingua corsa":"co",co:"co",cos:"co",corsu:"co","lingua corsa":"co",cree:"cr","ᓀᐦᐃᔭᐍᐏᐣ":"cr",cr:"cr",cre:"cr","cre + 6":"cr",croatian:"hr","hrvatski jezik":"hr",hr:"hr",hrv:"hr",czech:"cs","čeština, český jazyk":"cs",cs:"cs",ces:"cs",cze:"cs","čeština":"cs","český jazyk":"cs",danish:"da",dansk:"da",da:"da",dan:"da","divehi, dhivehi, maldivian":"dv","ދިވެހި":"dv",dv:"dv",div:"dv","dutch, flemish":"nl","nederlands, vlaams":"nl",nl:"nl",nld:"nl",dut:"nl",nederlands:"nl",vlaams:"nl",dzongkha:"dz","རྫོང་ཁ":"dz",dz:"dz",dzo:"dz",english:"en",en:"en",eng:"en",esperanto:"eo",eo:"eo",epo:"eo",estonian:"et","eesti, eesti keel":"et",et:"et",est:"et","est + 2":"et",eesti:"et","eesti keel":"et",ewe:"ee","eʋegbe":"ee",ee:"ee",faroese:"fo","føroyskt":"fo",fo:"fo",fao:"fo",fijian:"fj","vosa vakaviti":"fj",fj:"fj",fij:"fj",finnish:"fi","suomi, suomen kieli":"fi",fi:"fi",fin:"fi",suomi:"fi","suomen kieli":"fi",french:"fr","français, langue française":"fr",fr:"fr",fra:"fr",fre:"fr","français":"fr","langue française":"fr",fulah:"ff","fulfulde, pulaar, pular":"ff",ff:"ff",ful:"ff","ful + 9":"ff",fulfulde:"ff",pulaar:"ff",pular:"ff",galician:"gl",galego:"gl",gl:"gl",glg:"gl",georgian:"ka","ქართული":"ka",ka:"ka",kat:"ka",geo:"ka",german:"de",deutsch:"de",de:"de",deu:"de",ger:"de","greek (modern)":"el","ελληνικά":"el",el:"el",ell:"el",gre:"el","guaraní":"gn","avañe'ẽ":"gn",gn:"gn",grn:"gn","grn + 5":"gn",gujarati:"gu","ગુજરાતી":"gu",gu:"gu",guj:"gu","haitian, haitian creole":"ht","kreyòl ayisyen":"ht",ht:"ht",hat:"ht",hausa:"ha","(hausa) هَوُسَ":"ha",ha:"ha",hau:"ha","hebrew (modern)":"he","עברית":"he",he:"he",heb:"he",herero:"hz",otjiherero:"hz",hz:"hz",her:"hz",hindi:"hi","हिन्दी, हिंदी":"hi",hi:"hi",hin:"hi","हिन्दी":"hi","हिंदी":"hi","hiri motu":"ho",ho:"ho",hmo:"ho",hungarian:"hu",magyar:"hu",hu:"hu",hun:"hu",interlingua:"ia",ia:"ia",ina:"ia",indonesian:"id","bahasa indonesia":"id",id:"id",ind:"id",interlingue:"ie","originally called occidental; then interlingue after wwii":"ie",ie:"ie",ile:"ie",irish:"ga",gaeilge:"ga",ga:"ga",gle:"ga",igbo:"ig","asụsụ igbo":"ig",ig:"ig",ibo:"ig",inupiaq:"ik","iñupiaq, iñupiatun":"ik",ik:"ik",ipk:"ik","ipk + 2":"ik","iñupiaq":"ik","iñupiatun":"ik",ido:"io",io:"io",icelandic:"is","íslenska":"is",is:"is",isl:"is",ice:"is",italian:"it",italiano:"it",it:"it",ita:"it",inuktitut:"iu","ᐃᓄᒃᑎᑐᑦ":"iu",iu:"iu",iku:"iu","iku + 2":"iu",japanese:"ja","日本語 (にほんご)":"ja",ja:"ja",jpn:"ja",javanese:"jv","ꦧꦱꦗꦮ, basa jawa":"jv",jv:"jv",jav:"jv","ꦧꦱꦗꦮ":"jv","basa jawa":"jv","kalaallisut, greenlandic":"kl","kalaallisut, kalaallit oqaasii":"kl",kl:"kl",kal:"kl",kalaallisut:"kl","kalaallit oqaasii":"kl",kannada:"kn","ಕನ್ನಡ":"kn",kn:"kn",kan:"kn",kanuri:"kr",kr:"kr",kau:"kr","kau + 3":"kr",kashmiri:"ks","कश्मीरी, كشميري‎":"ks",ks:"ks",kas:"ks","कश्मीरी":"ks","كشميري‎":"ks",kazakh:"kk","қазақ тілі":"kk",kk:"kk",kaz:"kk","central khmer":"km","ខ្មែរ, ខេមរភាសា, ភាសាខ្មែរ":"km",km:"km",khm:"km","ខ្មែរ":"km","ខេមរភាសា":"km","ភាសាខ្មែរ":"km","kikuyu, gikuyu":"ki","gĩkũyũ":"ki",ki:"ki",kik:"ki",kinyarwanda:"rw",ikinyarwanda:"rw",rw:"rw",kin:"rw","kirghiz, kyrgyz":"ky","кыргызча, кыргыз тили":"ky",ky:"ky",kir:"ky","кыргызча":"ky","кыргыз тили":"ky",komi:"kv","коми кыв":"kv",kv:"kv",kom:"kv","kom + 2":"kv",kongo:"kg",kikongo:"kg",kg:"kg",kon:"kg","kon + 3":"kg",korean:"ko","한국어":"ko",ko:"ko",kor:"ko",kurdish:"ku","kurdî, كوردی‎":"ku",ku:"ku",kur:"ku","kur + 3":"ku","kurdî":"ku","كوردی‎":"ku","kuanyama, kwanyama":"kj",kuanyama:"kj",kj:"kj",kua:"kj",latin:"la","latine, lingua latina":"la",la:"la",lat:"la",latine:"la","lingua latina":"la","luxembourgish, letzeburgesch":"lb","lëtzebuergesch":"lb",lb:"lb",ltz:"lb",ganda:"lg",luganda:"lg",lg:"lg",lug:"lg","limburgan, limburger, limburgish":"li",limburgs:"li",li:"li",lim:"li",lingala:"ln","lingála":"ln",ln:"ln",lin:"ln",lao:"lo","ພາສາລາວ":"lo",lo:"lo",lithuanian:"lt","lietuvių kalba":"lt",lt:"lt",lit:"lt","luba-katanga":"lu",kiluba:"lu",lu:"lu",lub:"lu",latvian:"lv","latviešu valoda":"lv",lv:"lv",lav:"lv","lav + 2":"lv",manx:"gv","gaelg, gailck":"gv",gv:"gv",glv:"gv",gaelg:"gv",gailck:"gv",macedonian:"mk","македонски јазик":"mk",mk:"mk",mkd:"mk",mac:"mk",malagasy:"mg","fiteny malagasy":"mg",mg:"mg",mlg:"mg","mlg + 10":"mg",malay:"ms","bahasa melayu, بهاس ملايو‎":"ms",ms:"ms",msa:"ms",may:"ms","msa + 13":"ms","bahasa melayu":"ms","بهاس ملايو‎":"ms",malayalam:"ml","മലയാളം":"ml",ml:"ml",mal:"ml",maltese:"mt",malti:"mt",mt:"mt",mlt:"mt",maori:"mi","te reo māori":"mi",mi:"mi",mri:"mi",mao:"mi",marathi:"mr","मराठी":"mr",mr:"mr",mar:"mr",marshallese:"mh","kajin m̧ajeļ":"mh",mh:"mh",mah:"mh",mongolian:"mn","монгол хэл":"mn",mn:"mn",mon:"mn","mon + 2":"mn",nauru:"na","dorerin naoero":"na",na:"na",nau:"na","navajo, navaho":"nv","diné bizaad":"nv",nv:"nv",nav:"nv","north ndebele":"nd",isindebele:"nr",nd:"nd",nde:"nd",nepali:"ne","नेपाली":"ne",ne:"ne",nep:"ne",ndonga:"ng",owambo:"ng",ng:"ng",ndo:"ng","norwegian bokmål":"nb","norsk bokmål":"nb",nb:"nb",nob:"nb","norwegian nynorsk":"nn","norsk nynorsk":"nn",nn:"nn",nno:"nn",norwegian:"no",norsk:"no",no:"no",nor:"no","nor + 2":"no","sichuan yi, nuosu":"ii","ꆈꌠ꒿ nuosuhxop":"ii",ii:"ii",iii:"ii","south ndebele":"nr",nr:"nr",nbl:"nr",occitan:"oc","occitan, lenga d'òc":"oc",oc:"oc",oci:"oc","lenga d'òc":"oc",ojibwa:"oj","ᐊᓂᔑᓈᐯᒧᐎᓐ":"oj",oj:"oj",oji:"oj","oji + 7":"oj","church slavic, church slavonic, old church slavonic, old slavonic, old bulgarian":"cu","ѩзыкъ словѣньскъ":"cu",cu:"cu",chu:"cu",oromo:"om","afaan oromoo":"om",om:"om",orm:"om","orm + 4":"om",oriya:"or","ଓଡ଼ିଆ":"or",or:"or",ori:"or","ossetian, ossetic":"os","ирон æвзаг":"os",os:"os",oss:"os","panjabi, punjabi":"pa","ਪੰਜਾਬੀ":"pa",pa:"pa",pan:"pa",pali:"pi","पाऴि":"pi",pi:"pi",pli:"pi",persian:"fa","فارسی":"fa",fa:"fa",fas:"fa",per:"fa","fas + 2":"fa",polish:"pl","język polski, polszczyzna":"pl",pl:"pl",pol:"pl","język polski":"pl",polszczyzna:"pl","pashto, pushto":"ps","پښتو":"ps",ps:"ps",pus:"ps","pus + 3":"ps",portuguese:"pt","português":"pt",pt:"pt",por:"pt",quechua:"qu","runa simi, kichwa":"qu",qu:"qu",que:"qu","que + 44":"qu","runa simi":"qu",kichwa:"qu",romansh:"rm","rumantsch grischun":"rm",rm:"rm",roh:"rm",rundi:"rn",ikirundi:"rn",rn:"rn",run:"rn","romanian, moldavian, moldovan":"ro","română":"ro",ro:"ro",ron:"ro",rum:"ro",russian:"ru","русский":"ru",ru:"ru",rus:"ru",sanskrit:"sa","संस्कृतम्":"sa",sa:"sa",san:"sa",sardinian:"sc",sardu:"sc",sc:"sc",srd:"sc","srd + 4":"sc",sindhi:"sd","सिन्धी, سنڌي، سندھی‎":"sd",sd:"sd",snd:"sd","सिन्धी":"sd","سنڌي، سندھی‎":"sd","northern sami":"se","davvisámegiella":"se",se:"se",sme:"se",samoan:"sm","gagana fa'a samoa":"sm",sm:"sm",smo:"sm",sango:"sg","yângâ tî sängö":"sg",sg:"sg",sag:"sg",serbian:"sr","српски језик":"sr",sr:"sr",srp:"sr","gaelic, scottish gaelic":"gd","gàidhlig":"gd",gd:"gd",gla:"gd",shona:"sn",chishona:"sn",sn:"sn",sna:"sn","sinhala, sinhalese":"si","සිංහල":"si",si:"si",sin:"si",slovak:"sk","slovenčina, slovenský jazyk":"sk",sk:"sk",slk:"sk",slo:"sk","slovenčina":"sk","slovenský jazyk":"sk",slovenian:"sl","slovenski jezik, slovenščina":"sl",sl:"sl",slv:"sl","slovenski jezik":"sl","slovenščina":"sl",somali:"so","soomaaliga, af soomaali":"so",so:"so",som:"so",soomaaliga:"so","af soomaali":"so","southern sotho":"st",sesotho:"st",st:"st",sot:"st","spanish, castilian":"es","español":"es",es:"es",spa:"es",sundanese:"su","basa sunda":"su",su:"su",sun:"su",swahili:"sw",kiswahili:"sw",sw:"sw",swa:"sw","swa + 2":"sw",swati:"ss",siswati:"ss",ss:"ss",ssw:"ss",swedish:"sv",svenska:"sv",sv:"sv",swe:"sv",tamil:"ta","தமிழ்":"ta",ta:"ta",tam:"ta",telugu:"te","తెలుగు":"te",te:"te",tel:"te",tajik:"tg","тоҷикӣ, toçikī, تاجیکی‎":"tg",tg:"tg",tgk:"tg","тоҷикӣ":"tg","toçikī":"tg","تاجیکی‎":"tg",thai:"th","ไทย":"th",th:"th",tha:"th",tigrinya:"ti","ትግርኛ":"ti",ti:"ti",tir:"ti",tibetan:"bo","བོད་ཡིག":"bo",bo:"bo",bod:"bo",tib:"bo",turkmen:"tk","türkmen, түркмен":"tk",tk:"tk",tuk:"tk","türkmen":"tk","түркмен":"tk",tagalog:"tl","wikang tagalog":"tl",tl:"tl",tgl:"tl",tswana:"tn",setswana:"tn",tn:"tn",tsn:"tn","tonga (tonga islands)":"to","faka tonga":"to",to:"to",ton:"to",turkish:"tr","türkçe":"tr",tr:"tr",tur:"tr",tsonga:"ts",xitsonga:"ts",ts:"ts",tso:"ts",tatar:"tt","татар теле, tatar tele":"tt",tt:"tt",tat:"tt","татар теле":"tt","tatar tele":"tt",twi:"tw",tw:"tw",tahitian:"ty","reo tahiti":"ty",ty:"ty",tah:"ty","uighur, uyghur":"ug","ئۇيغۇرچە‎, uyghurche":"ug",ug:"ug",uig:"ug","ئۇيغۇرچە‎":"ug",uyghurche:"ug",ukrainian:"uk","українська":"uk",uk:"uk",ukr:"uk",urdu:"ur","اردو":"ur",ur:"ur",urd:"ur",uzbek:"uz","oʻzbek, ўзбек, أۇزبېك‎":"uz",uz:"uz",uzb:"uz","uzb + 2":"uz","oʻzbek":"uz","ўзбек":"uz","أۇزبېك‎":"uz",venda:"ve","tshivenḓa":"ve",ve:"ve",ven:"ve",vietnamese:"vi","tiếng việt":"vi",vi:"vi",vie:"vi","volapük":"vo",vo:"vo",vol:"vo",walloon:"wa",walon:"wa",wa:"wa",wln:"wa",welsh:"cy",cymraeg:"cy",cy:"cy",cym:"cy",wel:"cy",wolof:"wo",wollof:"wo",wo:"wo",wol:"wo","western frisian":"fy",frysk:"fy",fy:"fy",fry:"fy",xhosa:"xh",isixhosa:"xh",xh:"xh",xho:"xh",yiddish:"yi","ייִדיש":"yi",yi:"yi",yid:"yi","yid + 2":"yi",yoruba:"yo","yorùbá":"yo",yo:"yo",yor:"yo","zhuang, chuang":"za","saɯ cueŋƅ, saw cuengh":"za",za:"za",zha:"za","zha + 16":"za","saɯ cueŋƅ":"za","saw cuengh":"za",zulu:"zu",isizulu:"zu",zu:"zu",zul:"zu"};function reduce(from){return reductions[from.toLowerCase()]}var reduceTo6391={reduce:reduce,reductions:reductions};class circular_buffer{constructor(uCapacity){if(!Number.isInteger(uCapacity)){throw new RangeError(`Capacity must be an integer, received ${uCapacity}`)}if(uCapacity<0){throw new RangeError(`Capacity must be a non-negative integer, received ${uCapacity}`)}this._values=new Array(uCapacity);this._capacity=uCapacity;this._cursor=0;this._offset=0;this._length=0}get capacity(){return this._capacity}set capacity(newSize){this.resize(newSize)}get length(){return this._length}set length(newLength){if(newLength>this._capacity){throw new RangeError(`Requested new length [${newLength}] exceeds container capacity [${this._capacity}]`)}if(newLength<0){throw new RangeError(`Requested new length [${newLength}] cannot be negative`)}if(!Number.isInteger(newLength)){throw new RangeError(`Requested new length [${newLength}] must be an integer`)}if(this._length<=newLength){return}this._length=newLength}get available(){return this._capacity-this._length}get isEmpty(){return this._length===0}get isFull(){return this._length===this._capacity}get first(){if(this.isEmpty){throw new RangeError("Cannot return first element of an empty container")}return this.at(0)}get last(){if(this.isEmpty){throw new RangeError("Cannot return last element of an empty container")}return this.at(this.length-1)}static from(i,map_fn,t){const new_array=map_fn?Array.from(i,map_fn,t):Array.from(i);const target_length=new_array.length;const ncb=new circular_buffer(target_length);ncb._values=new_array;ncb._length=target_length;return ncb}push(v){if(this.isFull){throw new RangeError(`Cannot push, structure is full to capacity`)}this._values[(this._cursor+this._length++)%this._capacity]=v;return v}shove(v){let shoved;if(this._capacity===0){throw new RangeError(`Cannot shove, structure is zero-capacity`)}if(this.isFull){shoved=this.pop()}this.push(v);return shoved}fill(x){for(let i=0;i=this._capacity){this._cursor-=this._capacity}return cache}at(i){if(i<0){throw new RangeError(`circular_buffer does not support negative traversals; called at(${i})`)}if(!Number.isInteger(i)){throw new RangeError(`Accessors must be non-negative integers; called at(${i})`)}if(i>=this._capacity){throw new RangeError(`Requested cell ${i} exceeds container permanent capacity`)}if(i>=this._length){throw new RangeError(`Requested cell ${i} exceeds container current length`)}return this._values[(this._cursor+i)%this._capacity]}pos(i){return this.at(i-this.offset())}offset(){return this._offset}resize(newSize,preferEnd=false){this._values=this.toArray();this._cursor=0;const oldSize=this._length;this._length=Math.min(this._length,newSize);this._capacity=newSize;if(newSize>=oldSize){this._values.length=newSize}else{if(preferEnd){const tmp=this._values.slice(oldSize-newSize);this._values=tmp}else{this._values.length=newSize}}}toArray(){const startPoint=this._cursor%this._capacity;if(this._capacity>startPoint+this._length){return this._values.slice(startPoint,startPoint+this._length)}else{const base=this._values.slice(startPoint,this._capacity);base.push(...this._values.slice(0,this.length-(this._capacity-startPoint)));return base}}}const base_state_style={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style={shape:"component"};const base_terminal_state_style={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style={textColor:"white",backgroundColor:"indigo"};const base_start_state_style={backgroundColor:"yellow"};const base_active_start_state_style={backgroundColor:"yellowgreen"};const base_active_hooked_state_style={backgroundColor:"yellowgreen"};const base_end_state_style={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style={textColor:"white",backgroundColor:"darkgreen"};const base_theme={state:base_state_style,start:base_start_state_style,end:base_end_state_style,terminal:base_terminal_state_style,hooked:base_hooked_state_style,active:base_active_state_style,active_start:base_active_start_state_style,active_end:base_active_end_state_style,active_terminal:base_active_terminal_state_style,active_hooked:base_active_hooked_state_style,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};class JssmError extends Error{constructor(machine,message,JEEI){const{requested_state:requested_state}=JEEI===undefined?{requested_state:undefined}:JEEI;const follow_ups=[];if(machine){if(machine.state()!==undefined){follow_ups.push(`at "${machine.state()}"`)}}if(requested_state!==undefined){follow_ups.push(`requested "${requested_state}"`)}const complex_msg=`${(machine===null||machine===void 0?void 0:machine.instance_name())!==undefined?`[[${machine.instance_name()}]]: `:""}${message}${follow_ups.length?` (${follow_ups.join(", ")})`:""}`;super(complex_msg);this.name="JssmError";this.message=complex_msg;this.base_message=message;this.requested_state=requested_state}}const array_box_if_string=n=>typeof n==="string"?[n]:n;const weighted_rand_select=(options,probability_property="probability")=>{if(!Array.isArray(options)){throw new TypeError("options must be a non-empty array of objects")}if(!(typeof options[0]==="object")){throw new TypeError("options must be a non-empty array of objects")}const frand=cap=>Math.random()*cap,or_one=item=>item===undefined?1:item,prob_sum=options.reduce(((acc,val)=>acc+or_one(val[probability_property])),0),rnd=frand(prob_sum);let cursor=0,cursor_sum=0;while((cursor_sum+=or_one(options[cursor++][probability_property]))<=rnd){}return options[cursor-1]};function seq(n){if(!Number.isInteger(n)){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}if(n<0){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}return new Array(n).fill(true).map(((_,i)=>i))}const histograph=ar=>ar.sort().reduce(((m,v)=>(m.set(v,m.has(v)?m.get(v)+1:1),m)),new Map);const weighted_sample_select=(n,options,probability_property)=>seq(n).map((_i=>weighted_rand_select(options,probability_property)));const weighted_histo_key=(n,opts,prob_prop,extract)=>histograph(weighted_sample_select(n,opts,prob_prop).map((s=>s[extract])));function name_bind_prop_and_state(prop,state){if(typeof prop!=="string"){throw new JssmError(undefined,`Name of property must be a string; got ${prop}`)}if(typeof state!=="string"){throw new JssmError(undefined,`Name of state must be a string; got ${prop}`)}return JSON.stringify([prop,state])}const hook_name=(from,to)=>JSON.stringify([from,to]);const named_hook_name=(from,to,action)=>JSON.stringify([from,to,action]);const unique=arr=>arr.filter(((v,i,a)=>a.indexOf(v)===i));function find_repeated(arr){const uniqued=unique(arr);if(uniqued.length!==arr.length){const residue_keys=new Map;arr.forEach((k=>residue_keys.set(k,residue_keys.has(k)?residue_keys.get(k)+1:1)));uniqued.forEach((k=>residue_keys.set(k,residue_keys.get(k)-1)));return[...residue_keys.entries()].filter((e=>e[1]>0&&!Number.isNaN(e[0]))).map((e=>[e[0],e[1]+1]))}else{return[]}}const NegInfinity=Number.NEGATIVE_INFINITY,PosInfinity=Number.POSITIVE_INFINITY,Epsilon=Number.EPSILON,Pi=Math.PI,E=Math.E,Root2=Math.SQRT2,RootHalf=Math.SQRT1_2,Ln2=Math.LN2,Ln10=Math.LN10,Log2E=Math.LOG2E,Log10E=Math.LOG10E,MaxSafeInt=Number.MAX_SAFE_INTEGER,MinSafeInt=Number.MIN_SAFE_INTEGER,MaxPosNum=Number.MAX_VALUE,MinPosNum=Number.MIN_VALUE,Phi=1.618033988749895,EulerC=.5772156649015329;const gviz_shapes$1=["box3d","polygon","ellipse","oval","circle","point","egg","triangle","plaintext","plain","diamond","trapezium","parallelogram","house","pentagon","hexagon","septagon","octagon","doublecircle","doubleoctagon","tripleoctagon","invtriangle","invtrapezium","invhouse","Mdiamond","Msquare","Mcircle","rectangle","rect","square","star","none","underline","cylinder","note","tab","folder","box","component","promoter","cds","terminator","utr","primersite","restrictionsite","fivepoverhang","threepoverhang","noverhang","assembly","signature","insulator","ribosite","rnastab","proteasesite","proteinstab","rpromoter","rarrow","larrow","lpromoter","record"];const shapes$1=gviz_shapes$1;const named_colors$1=["AliceBlue","AntiqueWhite","Aqua","Aquamarine","Azure","Beige","Bisque","Black","BlanchedAlmond","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","CornflowerBlue","Cornsilk","Crimson","Cyan","DarkBlue","DarkCyan","DarkGoldenRod","DarkGray","DarkGrey","DarkGreen","DarkKhaki","DarkMagenta","DarkOliveGreen","Darkorange","DarkOrchid","DarkRed","DarkSalmon","DarkSeaGreen","DarkSlateBlue","DarkSlateGray","DarkSlateGrey","DarkTurquoise","DarkViolet","DeepPink","DeepSkyBlue","DimGray","DimGrey","DodgerBlue","FireBrick","FloralWhite","ForestGreen","Fuchsia","Gainsboro","GhostWhite","Gold","GoldenRod","Gray","Grey","Green","GreenYellow","HoneyDew","HotPink","IndianRed","Indigo","Ivory","Khaki","Lavender","LavenderBlush","LawnGreen","LemonChiffon","LightBlue","LightCoral","LightCyan","LightGoldenRodYellow","LightGray","LightGrey","LightGreen","LightPink","LightSalmon","LightSeaGreen","LightSkyBlue","LightSlateGray","LightSlateGrey","LightSteelBlue","LightYellow","Lime","LimeGreen","Linen","Magenta","Maroon","MediumAquaMarine","MediumBlue","MediumOrchid","MediumPurple","MediumSeaGreen","MediumSlateBlue","MediumSpringGreen","MediumTurquoise","MediumVioletRed","MidnightBlue","MintCream","MistyRose","Moccasin","NavajoWhite","Navy","OldLace","Olive","OliveDrab","Orange","OrangeRed","Orchid","PaleGoldenRod","PaleGreen","PaleTurquoise","PaleVioletRed","PapayaWhip","PeachPuff","Peru","Pink","Plum","PowderBlue","Purple","Red","RosyBrown","RoyalBlue","SaddleBrown","Salmon","SandyBrown","SeaGreen","SeaShell","Sienna","Silver","SkyBlue","SlateBlue","SlateGray","SlateGrey","Snow","SpringGreen","SteelBlue","Tan","Teal","Thistle","Tomato","Turquoise","Violet","Wheat","White","WhiteSmoke","Yellow","YellowGreen"];var constants=Object.freeze({__proto__:null,NegInfinity:NegInfinity,PosInfinity:PosInfinity,Epsilon:Epsilon,Pi:Pi,E:E,Root2:Root2,RootHalf:RootHalf,Ln2:Ln2,Ln10:Ln10,Log2E:Log2E,Log10E:Log10E,MaxSafeInt:MaxSafeInt,MinSafeInt:MinSafeInt,MaxPosNum:MaxPosNum,MinPosNum:MinPosNum,Phi:Phi,EulerC:EulerC,gviz_shapes:gviz_shapes$1,shapes:shapes$1,named_colors:named_colors$1});function peg$subclass(child,parent){function ctor(){this.constructor=child}ctor.prototype=parent.prototype;child.prototype=new ctor}function peg$SyntaxError(message,expected,found,location){this.message=message;this.expected=expected;this.found=found;this.location=location;this.name="SyntaxError";if(typeof Error.captureStackTrace==="function"){Error.captureStackTrace(this,peg$SyntaxError)}}peg$subclass(peg$SyntaxError,Error);peg$SyntaxError.buildMessage=function(expected,found){var DESCRIBE_EXPECTATION_FNS={literal:function(expectation){return'"'+literalEscape(expectation.text)+'"'},class:function(expectation){var escapedParts="",i;for(i=0;i0){for(i=1,j=1;i"),peg$c128="->",peg$c129=peg$literalExpectation("->",false),peg$c130="→",peg$c131=peg$literalExpectation("→",false),peg$c132=function(){return"->"},peg$c133=peg$otherExpectation("two way light arrow <->"),peg$c134="<->",peg$c135=peg$literalExpectation("<->",false),peg$c136="↔",peg$c137=peg$literalExpectation("↔",false),peg$c138=function(){return"<->"},peg$c139=peg$otherExpectation("back light arrow <-"),peg$c140="<-",peg$c141=peg$literalExpectation("<-",false),peg$c142="←",peg$c143=peg$literalExpectation("←",false),peg$c144=function(){return"<-"},peg$c145=peg$otherExpectation("forward fat arrow =>"),peg$c146="=>",peg$c147=peg$literalExpectation("=>",false),peg$c148="⇒",peg$c149=peg$literalExpectation("⇒",false),peg$c150=function(){return"=>"},peg$c151=peg$otherExpectation("two way fat arrow <=>"),peg$c152="<=>",peg$c153=peg$literalExpectation("<=>",false),peg$c154="⇔",peg$c155=peg$literalExpectation("⇔",false),peg$c156=function(){return"<=>"},peg$c157=peg$otherExpectation("back fat arrow <="),peg$c158="<=",peg$c159=peg$literalExpectation("<=",false),peg$c160="⇐",peg$c161=peg$literalExpectation("⇐",false),peg$c162=function(){return"<="},peg$c163=peg$otherExpectation("forward tilde arrow ~>"),peg$c164="~>",peg$c165=peg$literalExpectation("~>",false),peg$c166="↛",peg$c167=peg$literalExpectation("↛",false),peg$c168=function(){return"~>"},peg$c169=peg$otherExpectation("two way tilde arrow <~>"),peg$c170="<~>",peg$c171=peg$literalExpectation("<~>",false),peg$c172="↮",peg$c173=peg$literalExpectation("↮",false),peg$c174=function(){return"<~>"},peg$c175=peg$otherExpectation("back tilde arrow <~"),peg$c176="<~",peg$c177=peg$literalExpectation("<~",false),peg$c178="↚",peg$c179=peg$literalExpectation("↚",false),peg$c180=function(){return"<~"},peg$c181=peg$otherExpectation("light fat arrow <-=>"),peg$c182="<-=>",peg$c183=peg$literalExpectation("<-=>",false),peg$c184="←⇒",peg$c185=peg$literalExpectation("←⇒",false),peg$c186=function(){return"<-=>"},peg$c187=peg$otherExpectation("light tilde arrow <-~>"),peg$c188="<-~>",peg$c189=peg$literalExpectation("<-~>",false),peg$c190="←↛",peg$c191=peg$literalExpectation("←↛",false),peg$c192=function(){return"<-~>"},peg$c193=peg$otherExpectation("fat light arrow <=->"),peg$c194="<=->",peg$c195=peg$literalExpectation("<=->",false),peg$c196="⇐→",peg$c197=peg$literalExpectation("⇐→",false),peg$c198=function(){return"<=->"},peg$c199=peg$otherExpectation("fat tilde arrow <=~>"),peg$c200="<=~>",peg$c201=peg$literalExpectation("<=~>",false),peg$c202="⇐↛",peg$c203=peg$literalExpectation("⇐↛",false),peg$c204=function(){return"<=~>"},peg$c205=peg$otherExpectation("tilde light arrow <~->"),peg$c206="<~->",peg$c207=peg$literalExpectation("<~->",false),peg$c208="↚→",peg$c209=peg$literalExpectation("↚→",false),peg$c210=function(){return"<~->"},peg$c211=peg$otherExpectation("tilde fat arrow <~=>"),peg$c212="<~=>",peg$c213=peg$literalExpectation("<~=>",false),peg$c214="↚⇒",peg$c215=peg$literalExpectation("↚⇒",false),peg$c216=function(){return"<~=>"},peg$c217=peg$otherExpectation("light arrow"),peg$c218=peg$otherExpectation("fat arrow"),peg$c219=peg$otherExpectation("tilde arrow"),peg$c220=peg$otherExpectation("mixed arrow"),peg$c221=peg$otherExpectation("arrow"),peg$c222="true",peg$c223=peg$literalExpectation("true",false),peg$c224=function(){return true},peg$c225="false",peg$c226=peg$literalExpectation("false",false),peg$c227=function(){return false},peg$c228="regular",peg$c229=peg$literalExpectation("regular",false),peg$c230="rounded",peg$c231=peg$literalExpectation("rounded",false),peg$c232="lined",peg$c233=peg$literalExpectation("lined",false),peg$c234="solid",peg$c235=peg$literalExpectation("solid",false),peg$c236="dotted",peg$c237=peg$literalExpectation("dotted",false),peg$c238="dashed",peg$c239=peg$literalExpectation("dashed",false),peg$c240='"',peg$c241=peg$literalExpectation('"',false),peg$c242="\\",peg$c243=peg$literalExpectation("\\",false),peg$c244="/",peg$c245=peg$literalExpectation("/",false),peg$c246="b",peg$c247=peg$literalExpectation("b",false),peg$c248=function(){return"\b"},peg$c249="f",peg$c250=peg$literalExpectation("f",false),peg$c251=function(){return"\f"},peg$c252="n",peg$c253=peg$literalExpectation("n",false),peg$c254=function(){return"\n"},peg$c255="r",peg$c256=peg$literalExpectation("r",false),peg$c257=function(){return"\r"},peg$c258="t",peg$c259=peg$literalExpectation("t",false),peg$c260=function(){return"\t"},peg$c261="v",peg$c262=peg$literalExpectation("v",false),peg$c263=function(){return"\v"},peg$c264="u",peg$c265=peg$literalExpectation("u",false),peg$c266=function(digits){return String.fromCharCode(parseInt(digits,16))},peg$c267=function(Sequence){return Sequence},peg$c268="null",peg$c269=peg$literalExpectation("null",false),peg$c270=function(){return null},peg$c271="undefined",peg$c272=peg$literalExpectation("undefined",false),peg$c273=function(){return undefined},peg$c274=/^[ -!#-[\]-\u10FFFF]/,peg$c275=peg$classExpectation([[" ","!"],["#","["],["]","ჿ"],"F","F"],false,false),peg$c276="'",peg$c277=peg$literalExpectation("'",false),peg$c278=/^[ -&(-[\]-\u10FFFF]/,peg$c279=peg$classExpectation([[" ","&"],["(","["],["]","ჿ"],"F","F"],false,false),peg$c280=peg$otherExpectation("action label"),peg$c281=function(chars){return chars.join("")},peg$c282=/^[\n\r\u2028\u2029]/,peg$c283=peg$classExpectation(["\n","\r","\u2028","\u2029"],false,false),peg$c286="*/",peg$c287=peg$literalExpectation("*/",false),peg$c288=peg$anyExpectation(),peg$c289=peg$otherExpectation("block comment"),peg$c290="/*",peg$c291=peg$literalExpectation("/*",false),peg$c292=peg$otherExpectation("line comment"),peg$c293="//",peg$c294=peg$literalExpectation("//",false),peg$c295=peg$otherExpectation("whitespace"),peg$c296=/^[ \t\r\n\x0B]/,peg$c297=peg$classExpectation([" ","\t","\r","\n","\v"],false,false),peg$c298=peg$otherExpectation("string"),peg$c299=/^[0-9a-zA-Z._!$\^*!?,\x80-\uFFFF]/,peg$c300=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","_","!","$","^","*","!","?",",",["€","￿"]],false,false),peg$c301=/^[0-9a-zA-Z.+_\^()*&$#@!?,\x80-\uFFFF]/,peg$c302=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","+","_","^","(",")","*","&","$","#","@","!","?",",",["€","￿"]],false,false),peg$c303=peg$otherExpectation("atom"),peg$c304=function(firstletter,text){return firstletter+(text||[]).join("")},peg$c305=peg$otherExpectation("label"),peg$c306="0",peg$c307=peg$literalExpectation("0",false),peg$c308=/^[0-9]/,peg$c309=peg$classExpectation([["0","9"]],false,false),peg$c310=/^[1-9]/,peg$c311=peg$classExpectation([["1","9"]],false,false),peg$c312=/^[0-9a-f]/i,peg$c313=peg$classExpectation([["0","9"],["a","f"]],false,true),peg$c314=/^[0-1]/,peg$c315=peg$classExpectation([["0","1"]],false,false),peg$c316=peg$otherExpectation("nonneg number"),peg$c317=".",peg$c318=peg$literalExpectation(".",false),peg$c319=function(){return parseFloat(text())},peg$c320=peg$otherExpectation("number"),peg$c321=function(literal){return literal},peg$c322="NaN",peg$c323=peg$literalExpectation("NaN",false),peg$c324=function(){return NaN},peg$c325="NegativeInfinity",peg$c326=peg$literalExpectation("NegativeInfinity",false),peg$c327=function(){return Number.NEGATIVE_INFINITY},peg$c328="NegativeInf",peg$c329=peg$literalExpectation("NegativeInf",false),peg$c330="NegInfinity",peg$c331=peg$literalExpectation("NegInfinity",false),peg$c332="NegInf",peg$c333=peg$literalExpectation("NegInf",false),peg$c334="NInfinity",peg$c335=peg$literalExpectation("NInfinity",false),peg$c336="NInf",peg$c337=peg$literalExpectation("NInf",false),peg$c338="-∞",peg$c339=peg$literalExpectation("-∞",false),peg$c340="PInfinity",peg$c341=peg$literalExpectation("PInfinity",false),peg$c342=function(){return Number.POSITIVE_INFINITY},peg$c343="Infinity",peg$c344=peg$literalExpectation("Infinity",false),peg$c345="PInf",peg$c346=peg$literalExpectation("PInf",false),peg$c347="Inf",peg$c348=peg$literalExpectation("Inf",false),peg$c349="∞",peg$c350=peg$literalExpectation("∞",false),peg$c351="Epsilon",peg$c352=peg$literalExpectation("Epsilon",false),peg$c353=function(){return Number.EPSILON},peg$c354="𝜀",peg$c355=peg$literalExpectation("𝜀",false),peg$c356="ε",peg$c357=peg$literalExpectation("ε",false),peg$c358="Pi",peg$c359=peg$literalExpectation("Pi",false),peg$c360=function(){return Math.PI},peg$c361="𝜋",peg$c362=peg$literalExpectation("𝜋",false),peg$c363="π",peg$c364=peg$literalExpectation("π",false),peg$c365="EulerNumber",peg$c366=peg$literalExpectation("EulerNumber",false),peg$c367=function(){return Math.E},peg$c368="E",peg$c369=peg$literalExpectation("E",false),peg$c370="e",peg$c371=peg$literalExpectation("e",false),peg$c372="Ɛ",peg$c373=peg$literalExpectation("Ɛ",false),peg$c374="ℇ",peg$c375=peg$literalExpectation("ℇ",false),peg$c376="Root2",peg$c377=peg$literalExpectation("Root2",false),peg$c378=function(){return Math.SQRT2},peg$c379="RootHalf",peg$c380=peg$literalExpectation("RootHalf",false),peg$c381=function(){return Math.SQRT1_2},peg$c382="Ln2",peg$c383=peg$literalExpectation("Ln2",false),peg$c384=function(){return Math.LN2},peg$c385="NatLog2",peg$c386=peg$literalExpectation("NatLog2",false),peg$c387="Ln10",peg$c388=peg$literalExpectation("Ln10",false),peg$c389=function(){return Math.LN10},peg$c390="NatLog10",peg$c391=peg$literalExpectation("NatLog10",false),peg$c392="Log2E",peg$c393=peg$literalExpectation("Log2E",false),peg$c394=function(){return Math.LOG2E},peg$c395="Log10E",peg$c396=peg$literalExpectation("Log10E",false),peg$c397=function(){return Math.LOG10E},peg$c398="MaxSafeInt",peg$c399=peg$literalExpectation("MaxSafeInt",false),peg$c400=function(){return Number.MAX_SAFE_INTEGER},peg$c401="MinSafeInt",peg$c402=peg$literalExpectation("MinSafeInt",false),peg$c403=function(){return Number.MIN_SAFE_INTEGER},peg$c404="MaxPosNum",peg$c405=peg$literalExpectation("MaxPosNum",false),peg$c406=function(){return Number.MAX_VALUE},peg$c407="MinPosNum",peg$c408=peg$literalExpectation("MinPosNum",false),peg$c409=function(){return Number.MIN_VALUE},peg$c410="Phi",peg$c411=peg$literalExpectation("Phi",false),peg$c412=function(){return 1.618033988749895},peg$c413="𝜑",peg$c414=peg$literalExpectation("𝜑",false),peg$c415="𝜙",peg$c416=peg$literalExpectation("𝜙",false),peg$c417="ϕ",peg$c418=peg$literalExpectation("ϕ",false),peg$c419="φ",peg$c420=peg$literalExpectation("φ",false),peg$c421="EulerConstant",peg$c422=peg$literalExpectation("EulerConstant",false),peg$c423=function(){return.5772156649015329},peg$c424="γ",peg$c425=peg$literalExpectation("γ",false),peg$c426="𝛾",peg$c427=peg$literalExpectation("𝛾",false),peg$c428=peg$literalExpectation("e",true),peg$c429=/^[+\-]/,peg$c430=peg$classExpectation(["+","-"],false,false),peg$c431="0x",peg$c432=peg$literalExpectation("0x",true),peg$c433=function(digits){return parseInt(digits,16)},peg$c434="0b",peg$c435=peg$literalExpectation("0b",true),peg$c436=function(digits){return parseInt(digits,2)},peg$c437="0o",peg$c438=peg$literalExpectation("0o",true),peg$c439=function(digits){return parseInt(digits,8)},peg$c440=function(major,minor,patch){return{major:parseInt(major,10),minor:parseInt(minor,10),patch:parseInt(patch,10),full:text()}},peg$c451="http://",peg$c452=peg$literalExpectation("http://",false),peg$c453="https://",peg$c454=peg$literalExpectation("https://",false),peg$c455=/^[a-zA-Z0-9!*'():;@&=+$,\/?#[\]_.~\-]/,peg$c456=peg$classExpectation([["a","z"],["A","Z"],["0","9"],"!","*","'","(",")",":",";","@","&","=","+","$",",","/","?","#","[","]","_",".","~","-"],false,false),peg$c457=function(protocol){return text()},peg$c458="aliceblue",peg$c459=peg$literalExpectation("aliceblue",false),peg$c460=function(){return"#f0f8ffff"},peg$c461="AliceBlue",peg$c462=peg$literalExpectation("AliceBlue",false),peg$c463="antiquewhite",peg$c464=peg$literalExpectation("antiquewhite",false),peg$c465=function(){return"#faebd7ff"},peg$c466="AntiqueWhite",peg$c467=peg$literalExpectation("AntiqueWhite",false),peg$c468="aquamarine",peg$c469=peg$literalExpectation("aquamarine",false),peg$c470=function(){return"#7fffd4ff"},peg$c471="Aquamarine",peg$c472=peg$literalExpectation("Aquamarine",false),peg$c473="aqua",peg$c474=peg$literalExpectation("aqua",false),peg$c475=function(){return"#00ffffff"},peg$c476="Aqua",peg$c477=peg$literalExpectation("Aqua",false),peg$c478="azure",peg$c479=peg$literalExpectation("azure",false),peg$c480=function(){return"#f0ffffff"},peg$c481="Azure",peg$c482=peg$literalExpectation("Azure",false),peg$c483="beige",peg$c484=peg$literalExpectation("beige",false),peg$c485=function(){return"#f5f5dcff"},peg$c486="Beige",peg$c487=peg$literalExpectation("Beige",false),peg$c488="bisque",peg$c489=peg$literalExpectation("bisque",false),peg$c490=function(){return"#ffe4c4ff"},peg$c491="Bisque",peg$c492=peg$literalExpectation("Bisque",false),peg$c493="black",peg$c494=peg$literalExpectation("black",false),peg$c495=function(){return"#000000ff"},peg$c496="Black",peg$c497=peg$literalExpectation("Black",false),peg$c498="blanchedalmond",peg$c499=peg$literalExpectation("blanchedalmond",false),peg$c500=function(){return"#ffebcdff"},peg$c501="BlanchedAlmond",peg$c502=peg$literalExpectation("BlanchedAlmond",false),peg$c503="blueviolet",peg$c504=peg$literalExpectation("blueviolet",false),peg$c505=function(){return"#8a2be2ff"},peg$c506="BlueViolet",peg$c507=peg$literalExpectation("BlueViolet",false),peg$c508="blue",peg$c509=peg$literalExpectation("blue",false),peg$c510=function(){return"#0000ffff"},peg$c511="Blue",peg$c512=peg$literalExpectation("Blue",false),peg$c513="brown",peg$c514=peg$literalExpectation("brown",false),peg$c515=function(){return"#a52a2aff"},peg$c516="Brown",peg$c517=peg$literalExpectation("Brown",false),peg$c518="burlywood",peg$c519=peg$literalExpectation("burlywood",false),peg$c520=function(){return"#deb887ff"},peg$c521="BurlyWood",peg$c522=peg$literalExpectation("BurlyWood",false),peg$c523="cadetblue",peg$c524=peg$literalExpectation("cadetblue",false),peg$c525=function(){return"#5f9ea0ff"},peg$c526="CadetBlue",peg$c527=peg$literalExpectation("CadetBlue",false),peg$c528="chartreuse",peg$c529=peg$literalExpectation("chartreuse",false),peg$c530=function(){return"#7fff00ff"},peg$c531="Chartreuse",peg$c532=peg$literalExpectation("Chartreuse",false),peg$c533="chocolate",peg$c534=peg$literalExpectation("chocolate",false),peg$c535=function(){return"#d2691eff"},peg$c536="Chocolate",peg$c537=peg$literalExpectation("Chocolate",false),peg$c538="coral",peg$c539=peg$literalExpectation("coral",false),peg$c540=function(){return"#ff7f50ff"},peg$c541="Coral",peg$c542=peg$literalExpectation("Coral",false),peg$c543="cornflowerblue",peg$c544=peg$literalExpectation("cornflowerblue",false),peg$c545=function(){return"#6495edff"},peg$c546="CornflowerBlue",peg$c547=peg$literalExpectation("CornflowerBlue",false),peg$c548="cornsilk",peg$c549=peg$literalExpectation("cornsilk",false),peg$c550=function(){return"#fff8dcff"},peg$c551="Cornsilk",peg$c552=peg$literalExpectation("Cornsilk",false),peg$c553="crimson",peg$c554=peg$literalExpectation("crimson",false),peg$c555=function(){return"#dc143cff"},peg$c556="Crimson",peg$c557=peg$literalExpectation("Crimson",false),peg$c558="cyan",peg$c559=peg$literalExpectation("cyan",false),peg$c560="Cyan",peg$c561=peg$literalExpectation("Cyan",false),peg$c562="darkblue",peg$c563=peg$literalExpectation("darkblue",false),peg$c564=function(){return"#00008bff"},peg$c565="DarkBlue",peg$c566=peg$literalExpectation("DarkBlue",false),peg$c567="darkcyan",peg$c568=peg$literalExpectation("darkcyan",false),peg$c569=function(){return"#008b8bff"},peg$c570="DarkCyan",peg$c571=peg$literalExpectation("DarkCyan",false),peg$c572="darkgoldenrod",peg$c573=peg$literalExpectation("darkgoldenrod",false),peg$c574=function(){return"#b8860bff"},peg$c575="DarkGoldenRod",peg$c576=peg$literalExpectation("DarkGoldenRod",false),peg$c577="darkgray",peg$c578=peg$literalExpectation("darkgray",false),peg$c579=function(){return"#a9a9a9ff"},peg$c580="DarkGray",peg$c581=peg$literalExpectation("DarkGray",false),peg$c582="darkgrey",peg$c583=peg$literalExpectation("darkgrey",false),peg$c584="DarkGrey",peg$c585=peg$literalExpectation("DarkGrey",false),peg$c586="darkgreen",peg$c587=peg$literalExpectation("darkgreen",false),peg$c588=function(){return"#006400ff"},peg$c589="DarkGreen",peg$c590=peg$literalExpectation("DarkGreen",false),peg$c591="darkkhaki",peg$c592=peg$literalExpectation("darkkhaki",false),peg$c593=function(){return"#bdb76bff"},peg$c594="DarkKhaki",peg$c595=peg$literalExpectation("DarkKhaki",false),peg$c596="darkmagenta",peg$c597=peg$literalExpectation("darkmagenta",false),peg$c598=function(){return"#8b008bff"},peg$c599="DarkMagenta",peg$c600=peg$literalExpectation("DarkMagenta",false),peg$c601="darkolivegreen",peg$c602=peg$literalExpectation("darkolivegreen",false),peg$c603=function(){return"#556b2fff"},peg$c604="DarkOliveGreen",peg$c605=peg$literalExpectation("DarkOliveGreen",false),peg$c606="darkorange",peg$c607=peg$literalExpectation("darkorange",false),peg$c608=function(){return"#ff8c00ff"},peg$c609="Darkorange",peg$c610=peg$literalExpectation("Darkorange",false),peg$c611="darkorchid",peg$c612=peg$literalExpectation("darkorchid",false),peg$c613=function(){return"#9932ccff"},peg$c614="DarkOrchid",peg$c615=peg$literalExpectation("DarkOrchid",false),peg$c616="darkred",peg$c617=peg$literalExpectation("darkred",false),peg$c618=function(){return"#8b0000ff"},peg$c619="DarkRed",peg$c620=peg$literalExpectation("DarkRed",false),peg$c621="darksalmon",peg$c622=peg$literalExpectation("darksalmon",false),peg$c623=function(){return"#e9967aff"},peg$c624="DarkSalmon",peg$c625=peg$literalExpectation("DarkSalmon",false),peg$c626="darkseagreen",peg$c627=peg$literalExpectation("darkseagreen",false),peg$c628=function(){return"#8fbc8fff"},peg$c629="DarkSeaGreen",peg$c630=peg$literalExpectation("DarkSeaGreen",false),peg$c631="darkslateblue",peg$c632=peg$literalExpectation("darkslateblue",false),peg$c633=function(){return"#483d8bff"},peg$c634="DarkSlateBlue",peg$c635=peg$literalExpectation("DarkSlateBlue",false),peg$c636="darkslategray",peg$c637=peg$literalExpectation("darkslategray",false),peg$c638=function(){return"#2f4f4fff"},peg$c639="DarkSlateGray",peg$c640=peg$literalExpectation("DarkSlateGray",false),peg$c641="darkslategrey",peg$c642=peg$literalExpectation("darkslategrey",false),peg$c643="DarkSlateGrey",peg$c644=peg$literalExpectation("DarkSlateGrey",false),peg$c645="darkturquoise",peg$c646=peg$literalExpectation("darkturquoise",false),peg$c647=function(){return"#00ced1ff"},peg$c648="DarkTurquoise",peg$c649=peg$literalExpectation("DarkTurquoise",false),peg$c650="darkviolet",peg$c651=peg$literalExpectation("darkviolet",false),peg$c652=function(){return"#9400d3ff"},peg$c653="DarkViolet",peg$c654=peg$literalExpectation("DarkViolet",false),peg$c655="deeppink",peg$c656=peg$literalExpectation("deeppink",false),peg$c657=function(){return"#ff1493ff"},peg$c658="DeepPink",peg$c659=peg$literalExpectation("DeepPink",false),peg$c660="deepskyblue",peg$c661=peg$literalExpectation("deepskyblue",false),peg$c662=function(){return"#00bfffff"},peg$c663="DeepSkyBlue",peg$c664=peg$literalExpectation("DeepSkyBlue",false),peg$c665="dimgray",peg$c666=peg$literalExpectation("dimgray",false),peg$c667=function(){return"#696969ff"},peg$c668="DimGray",peg$c669=peg$literalExpectation("DimGray",false),peg$c670="dimgrey",peg$c671=peg$literalExpectation("dimgrey",false),peg$c672="DimGrey",peg$c673=peg$literalExpectation("DimGrey",false),peg$c674="dodgerblue",peg$c675=peg$literalExpectation("dodgerblue",false),peg$c676=function(){return"#1e90ffff"},peg$c677="DodgerBlue",peg$c678=peg$literalExpectation("DodgerBlue",false),peg$c679="firebrick",peg$c680=peg$literalExpectation("firebrick",false),peg$c681=function(){return"#b22222ff"},peg$c682="FireBrick",peg$c683=peg$literalExpectation("FireBrick",false),peg$c684="floralwhite",peg$c685=peg$literalExpectation("floralwhite",false),peg$c686=function(){return"#fffaf0ff"},peg$c687="FloralWhite",peg$c688=peg$literalExpectation("FloralWhite",false),peg$c689="forestgreen",peg$c690=peg$literalExpectation("forestgreen",false),peg$c691=function(){return"#228b22ff"},peg$c692="ForestGreen",peg$c693=peg$literalExpectation("ForestGreen",false),peg$c694="fuchsia",peg$c695=peg$literalExpectation("fuchsia",false),peg$c696=function(){return"#ff00ffff"},peg$c697="Fuchsia",peg$c698=peg$literalExpectation("Fuchsia",false),peg$c699="gainsboro",peg$c700=peg$literalExpectation("gainsboro",false),peg$c701=function(){return"#dcdcdcff"},peg$c702="Gainsboro",peg$c703=peg$literalExpectation("Gainsboro",false),peg$c704="ghostwhite",peg$c705=peg$literalExpectation("ghostwhite",false),peg$c706=function(){return"#f8f8ffff"},peg$c707="GhostWhite",peg$c708=peg$literalExpectation("GhostWhite",false),peg$c709="goldenrod",peg$c710=peg$literalExpectation("goldenrod",false),peg$c711=function(){return"#daa520ff"},peg$c712="GoldenRod",peg$c713=peg$literalExpectation("GoldenRod",false),peg$c714="gold",peg$c715=peg$literalExpectation("gold",false),peg$c716=function(){return"#ffd700ff"},peg$c717="Gold",peg$c718=peg$literalExpectation("Gold",false),peg$c719="gray",peg$c720=peg$literalExpectation("gray",false),peg$c721=function(){return"#808080ff"},peg$c722="Gray",peg$c723=peg$literalExpectation("Gray",false),peg$c724="grey",peg$c725=peg$literalExpectation("grey",false),peg$c726="Grey",peg$c727=peg$literalExpectation("Grey",false),peg$c728="greenyellow",peg$c729=peg$literalExpectation("greenyellow",false),peg$c730=function(){return"#adff2fff"},peg$c731="GreenYellow",peg$c732=peg$literalExpectation("GreenYellow",false),peg$c733="green",peg$c734=peg$literalExpectation("green",false),peg$c735=function(){return"#008000ff"},peg$c736="Green",peg$c737=peg$literalExpectation("Green",false),peg$c738="honeydew",peg$c739=peg$literalExpectation("honeydew",false),peg$c740=function(){return"#f0fff0ff"},peg$c741="HoneyDew",peg$c742=peg$literalExpectation("HoneyDew",false),peg$c743="hotpink",peg$c744=peg$literalExpectation("hotpink",false),peg$c745=function(){return"#ff69b4ff"},peg$c746="HotPink",peg$c747=peg$literalExpectation("HotPink",false),peg$c748="indianred",peg$c749=peg$literalExpectation("indianred",false),peg$c750=function(){return"#cd5c5cff"},peg$c751="IndianRed",peg$c752=peg$literalExpectation("IndianRed",false),peg$c753="indigo",peg$c754=peg$literalExpectation("indigo",false),peg$c755=function(){return"#4b0082ff"},peg$c756="Indigo",peg$c757=peg$literalExpectation("Indigo",false),peg$c758="ivory",peg$c759=peg$literalExpectation("ivory",false),peg$c760=function(){return"#fffff0ff"},peg$c761="Ivory",peg$c762=peg$literalExpectation("Ivory",false),peg$c763="khaki",peg$c764=peg$literalExpectation("khaki",false),peg$c765=function(){return"#f0e68cff"},peg$c766="Khaki",peg$c767=peg$literalExpectation("Khaki",false),peg$c768="lavenderblush",peg$c769=peg$literalExpectation("lavenderblush",false),peg$c770=function(){return"#fff0f5ff"},peg$c771="LavenderBlush",peg$c772=peg$literalExpectation("LavenderBlush",false),peg$c773="lavender",peg$c774=peg$literalExpectation("lavender",false),peg$c775=function(){return"#e6e6faff"},peg$c776="Lavender",peg$c777=peg$literalExpectation("Lavender",false),peg$c778="lawngreen",peg$c779=peg$literalExpectation("lawngreen",false),peg$c780=function(){return"#7cfc00ff"},peg$c781="LawnGreen",peg$c782=peg$literalExpectation("LawnGreen",false),peg$c783="lemonchiffon",peg$c784=peg$literalExpectation("lemonchiffon",false),peg$c785=function(){return"#fffacdff"},peg$c786="LemonChiffon",peg$c787=peg$literalExpectation("LemonChiffon",false),peg$c788="lightblue",peg$c789=peg$literalExpectation("lightblue",false),peg$c790=function(){return"#add8e6ff"},peg$c791="LightBlue",peg$c792=peg$literalExpectation("LightBlue",false),peg$c793="lightcoral",peg$c794=peg$literalExpectation("lightcoral",false),peg$c795=function(){return"#f08080ff"},peg$c796="LightCoral",peg$c797=peg$literalExpectation("LightCoral",false),peg$c798="lightcyan",peg$c799=peg$literalExpectation("lightcyan",false),peg$c800=function(){return"#e0ffffff"},peg$c801="LightCyan",peg$c802=peg$literalExpectation("LightCyan",false),peg$c803="lightgoldenrodyellow",peg$c804=peg$literalExpectation("lightgoldenrodyellow",false),peg$c805=function(){return"#fafad2ff"},peg$c806="LightGoldenRodYellow",peg$c807=peg$literalExpectation("LightGoldenRodYellow",false),peg$c808="lightgray",peg$c809=peg$literalExpectation("lightgray",false),peg$c810=function(){return"#d3d3d3ff"},peg$c811="LightGray",peg$c812=peg$literalExpectation("LightGray",false),peg$c813="lightgrey",peg$c814=peg$literalExpectation("lightgrey",false),peg$c815="LightGrey",peg$c816=peg$literalExpectation("LightGrey",false),peg$c817="lightgreen",peg$c818=peg$literalExpectation("lightgreen",false),peg$c819=function(){return"#90ee90ff"},peg$c820="LightGreen",peg$c821=peg$literalExpectation("LightGreen",false),peg$c822="lightpink",peg$c823=peg$literalExpectation("lightpink",false),peg$c824=function(){return"#ffb6c1ff"},peg$c825="LightPink",peg$c826=peg$literalExpectation("LightPink",false),peg$c827="lightsalmon",peg$c828=peg$literalExpectation("lightsalmon",false),peg$c829=function(){return"#ffa07aff"},peg$c830="LightSalmon",peg$c831=peg$literalExpectation("LightSalmon",false),peg$c832="lightseagreen",peg$c833=peg$literalExpectation("lightseagreen",false),peg$c834=function(){return"#20b2aaff"},peg$c835="LightSeaGreen",peg$c836=peg$literalExpectation("LightSeaGreen",false),peg$c837="lightskyblue",peg$c838=peg$literalExpectation("lightskyblue",false),peg$c839=function(){return"#87cefaff"},peg$c840="LightSkyBlue",peg$c841=peg$literalExpectation("LightSkyBlue",false),peg$c842="lightslategray",peg$c843=peg$literalExpectation("lightslategray",false),peg$c844=function(){return"#778899ff"},peg$c845="LightSlateGray",peg$c846=peg$literalExpectation("LightSlateGray",false),peg$c847="lightslategrey",peg$c848=peg$literalExpectation("lightslategrey",false),peg$c849="LightSlateGrey",peg$c850=peg$literalExpectation("LightSlateGrey",false),peg$c851="lightsteelblue",peg$c852=peg$literalExpectation("lightsteelblue",false),peg$c853=function(){return"#b0c4deff"},peg$c854="LightSteelBlue",peg$c855=peg$literalExpectation("LightSteelBlue",false),peg$c856="lightyellow",peg$c857=peg$literalExpectation("lightyellow",false),peg$c858=function(){return"#ffffe0ff"},peg$c859="LightYellow",peg$c860=peg$literalExpectation("LightYellow",false),peg$c861="limegreen",peg$c862=peg$literalExpectation("limegreen",false),peg$c863=function(){return"#32cd32ff"},peg$c864="LimeGreen",peg$c865=peg$literalExpectation("LimeGreen",false),peg$c866="lime",peg$c867=peg$literalExpectation("lime",false),peg$c868=function(){return"#00ff00ff"},peg$c869="Lime",peg$c870=peg$literalExpectation("Lime",false),peg$c871="linen",peg$c872=peg$literalExpectation("linen",false),peg$c873=function(){return"#faf0e6ff"},peg$c874="Linen",peg$c875=peg$literalExpectation("Linen",false),peg$c876="magenta",peg$c877=peg$literalExpectation("magenta",false),peg$c878="Magenta",peg$c879=peg$literalExpectation("Magenta",false),peg$c880="maroon",peg$c881=peg$literalExpectation("maroon",false),peg$c882=function(){return"#800000ff"},peg$c883="Maroon",peg$c884=peg$literalExpectation("Maroon",false),peg$c885="mediumaquamarine",peg$c886=peg$literalExpectation("mediumaquamarine",false),peg$c887=function(){return"#66cdaaff"},peg$c888="MediumAquaMarine",peg$c889=peg$literalExpectation("MediumAquaMarine",false),peg$c890="mediumblue",peg$c891=peg$literalExpectation("mediumblue",false),peg$c892=function(){return"#0000cdff"},peg$c893="MediumBlue",peg$c894=peg$literalExpectation("MediumBlue",false),peg$c895="mediumorchid",peg$c896=peg$literalExpectation("mediumorchid",false),peg$c897=function(){return"#ba55d3ff"},peg$c898="MediumOrchid",peg$c899=peg$literalExpectation("MediumOrchid",false),peg$c900="mediumpurple",peg$c901=peg$literalExpectation("mediumpurple",false),peg$c902=function(){return"#9370d8ff"},peg$c903="MediumPurple",peg$c904=peg$literalExpectation("MediumPurple",false),peg$c905="mediumseagreen",peg$c906=peg$literalExpectation("mediumseagreen",false),peg$c907=function(){return"#3cb371ff"},peg$c908="MediumSeaGreen",peg$c909=peg$literalExpectation("MediumSeaGreen",false),peg$c910="mediumslateblue",peg$c911=peg$literalExpectation("mediumslateblue",false),peg$c912=function(){return"#7b68eeff"},peg$c913="MediumSlateBlue",peg$c914=peg$literalExpectation("MediumSlateBlue",false),peg$c915="mediumspringgreen",peg$c916=peg$literalExpectation("mediumspringgreen",false),peg$c917=function(){return"#00fa9aff"},peg$c918="MediumSpringGreen",peg$c919=peg$literalExpectation("MediumSpringGreen",false),peg$c920="mediumturquoise",peg$c921=peg$literalExpectation("mediumturquoise",false),peg$c922=function(){return"#48d1ccff"},peg$c923="MediumTurquoise",peg$c924=peg$literalExpectation("MediumTurquoise",false),peg$c925="mediumvioletred",peg$c926=peg$literalExpectation("mediumvioletred",false),peg$c927=function(){return"#c71585ff"},peg$c928="MediumVioletRed",peg$c929=peg$literalExpectation("MediumVioletRed",false),peg$c930="midnightblue",peg$c931=peg$literalExpectation("midnightblue",false),peg$c932=function(){return"#191970ff"},peg$c933="MidnightBlue",peg$c934=peg$literalExpectation("MidnightBlue",false),peg$c935="mintcream",peg$c936=peg$literalExpectation("mintcream",false),peg$c937=function(){return"#f5fffaff"},peg$c938="MintCream",peg$c939=peg$literalExpectation("MintCream",false),peg$c940="mistyrose",peg$c941=peg$literalExpectation("mistyrose",false),peg$c942=function(){return"#ffe4e1ff"},peg$c943="MistyRose",peg$c944=peg$literalExpectation("MistyRose",false),peg$c945="moccasin",peg$c946=peg$literalExpectation("moccasin",false),peg$c947=function(){return"#ffe4b5ff"},peg$c948="Moccasin",peg$c949=peg$literalExpectation("Moccasin",false),peg$c950="navajowhite",peg$c951=peg$literalExpectation("navajowhite",false),peg$c952=function(){return"#ffdeadff"},peg$c953="NavajoWhite",peg$c954=peg$literalExpectation("NavajoWhite",false),peg$c955="navy",peg$c956=peg$literalExpectation("navy",false),peg$c957=function(){return"#000080ff"},peg$c958="Navy",peg$c959=peg$literalExpectation("Navy",false),peg$c960="oldlace",peg$c961=peg$literalExpectation("oldlace",false),peg$c962=function(){return"#fdf5e6ff"},peg$c963="OldLace",peg$c964=peg$literalExpectation("OldLace",false),peg$c965="olivedrab",peg$c966=peg$literalExpectation("olivedrab",false),peg$c967=function(){return"#6b8e23ff"},peg$c968="OliveDrab",peg$c969=peg$literalExpectation("OliveDrab",false),peg$c970="olive",peg$c971=peg$literalExpectation("olive",false),peg$c972=function(){return"#808000ff"},peg$c973="Olive",peg$c974=peg$literalExpectation("Olive",false),peg$c975="orangered",peg$c976=peg$literalExpectation("orangered",false),peg$c977=function(){return"#ff4500ff"},peg$c978="OrangeRed",peg$c979=peg$literalExpectation("OrangeRed",false),peg$c980="orange",peg$c981=peg$literalExpectation("orange",false),peg$c982=function(){return"#ffa500ff"},peg$c983="Orange",peg$c984=peg$literalExpectation("Orange",false),peg$c985="orchid",peg$c986=peg$literalExpectation("orchid",false),peg$c987=function(){return"#da70d6ff"},peg$c988="Orchid",peg$c989=peg$literalExpectation("Orchid",false),peg$c990="palegoldenrod",peg$c991=peg$literalExpectation("palegoldenrod",false),peg$c992=function(){return"#eee8aaff"},peg$c993="PaleGoldenRod",peg$c994=peg$literalExpectation("PaleGoldenRod",false),peg$c995="palegreen",peg$c996=peg$literalExpectation("palegreen",false),peg$c997=function(){return"#98fb98ff"},peg$c998="PaleGreen",peg$c999=peg$literalExpectation("PaleGreen",false),peg$c1000="paleturquoise",peg$c1001=peg$literalExpectation("paleturquoise",false),peg$c1002=function(){return"#afeeeeff"},peg$c1003="PaleTurquoise",peg$c1004=peg$literalExpectation("PaleTurquoise",false),peg$c1005="palevioletred",peg$c1006=peg$literalExpectation("palevioletred",false),peg$c1007=function(){return"#d87093ff"},peg$c1008="PaleVioletRed",peg$c1009=peg$literalExpectation("PaleVioletRed",false),peg$c1010="papayawhip",peg$c1011=peg$literalExpectation("papayawhip",false),peg$c1012=function(){return"#ffefd5ff"},peg$c1013="PapayaWhip",peg$c1014=peg$literalExpectation("PapayaWhip",false),peg$c1015="peachpuff",peg$c1016=peg$literalExpectation("peachpuff",false),peg$c1017=function(){return"#ffdab9ff"},peg$c1018="PeachPuff",peg$c1019=peg$literalExpectation("PeachPuff",false),peg$c1020="peru",peg$c1021=peg$literalExpectation("peru",false),peg$c1022=function(){return"#cd853fff"},peg$c1023="Peru",peg$c1024=peg$literalExpectation("Peru",false),peg$c1025="pink",peg$c1026=peg$literalExpectation("pink",false),peg$c1027=function(){return"#ffc0cbff"},peg$c1028="Pink",peg$c1029=peg$literalExpectation("Pink",false),peg$c1030="plum",peg$c1031=peg$literalExpectation("plum",false),peg$c1032=function(){return"#dda0ddff"},peg$c1033="Plum",peg$c1034=peg$literalExpectation("Plum",false),peg$c1035="powderblue",peg$c1036=peg$literalExpectation("powderblue",false),peg$c1037=function(){return"#b0e0e6ff"},peg$c1038="PowderBlue",peg$c1039=peg$literalExpectation("PowderBlue",false),peg$c1040="purple",peg$c1041=peg$literalExpectation("purple",false),peg$c1042=function(){return"#800080ff"},peg$c1043="Purple",peg$c1044=peg$literalExpectation("Purple",false),peg$c1045="red",peg$c1046=peg$literalExpectation("red",false),peg$c1047=function(){return"#ff0000ff"},peg$c1048="Red",peg$c1049=peg$literalExpectation("Red",false),peg$c1050="rosybrown",peg$c1051=peg$literalExpectation("rosybrown",false),peg$c1052=function(){return"#bc8f8fff"},peg$c1053="RosyBrown",peg$c1054=peg$literalExpectation("RosyBrown",false),peg$c1055="royalblue",peg$c1056=peg$literalExpectation("royalblue",false),peg$c1057=function(){return"#4169e1ff"},peg$c1058="RoyalBlue",peg$c1059=peg$literalExpectation("RoyalBlue",false),peg$c1060="saddlebrown",peg$c1061=peg$literalExpectation("saddlebrown",false),peg$c1062=function(){return"#8b4513ff"},peg$c1063="SaddleBrown",peg$c1064=peg$literalExpectation("SaddleBrown",false),peg$c1065="salmon",peg$c1066=peg$literalExpectation("salmon",false),peg$c1067=function(){return"#fa8072ff"},peg$c1068="Salmon",peg$c1069=peg$literalExpectation("Salmon",false),peg$c1070="sandybrown",peg$c1071=peg$literalExpectation("sandybrown",false),peg$c1072=function(){return"#f4a460ff"},peg$c1073="SandyBrown",peg$c1074=peg$literalExpectation("SandyBrown",false),peg$c1075="seagreen",peg$c1076=peg$literalExpectation("seagreen",false),peg$c1077=function(){return"#2e8b57ff"},peg$c1078="SeaGreen",peg$c1079=peg$literalExpectation("SeaGreen",false),peg$c1080="seashell",peg$c1081=peg$literalExpectation("seashell",false),peg$c1082=function(){return"#fff5eeff"},peg$c1083="SeaShell",peg$c1084=peg$literalExpectation("SeaShell",false),peg$c1085="sienna",peg$c1086=peg$literalExpectation("sienna",false),peg$c1087=function(){return"#a0522dff"},peg$c1088="Sienna",peg$c1089=peg$literalExpectation("Sienna",false),peg$c1090="silver",peg$c1091=peg$literalExpectation("silver",false),peg$c1092=function(){return"#c0c0c0ff"},peg$c1093="Silver",peg$c1094=peg$literalExpectation("Silver",false),peg$c1095="skyblue",peg$c1096=peg$literalExpectation("skyblue",false),peg$c1097=function(){return"#87ceebff"},peg$c1098="SkyBlue",peg$c1099=peg$literalExpectation("SkyBlue",false),peg$c1100="slateblue",peg$c1101=peg$literalExpectation("slateblue",false),peg$c1102=function(){return"#6a5acdff"},peg$c1103="SlateBlue",peg$c1104=peg$literalExpectation("SlateBlue",false),peg$c1105="slategray",peg$c1106=peg$literalExpectation("slategray",false),peg$c1107=function(){return"#708090ff"},peg$c1108="SlateGray",peg$c1109=peg$literalExpectation("SlateGray",false),peg$c1110="slategrey",peg$c1111=peg$literalExpectation("slategrey",false),peg$c1112="SlateGrey",peg$c1113=peg$literalExpectation("SlateGrey",false),peg$c1114="snow",peg$c1115=peg$literalExpectation("snow",false),peg$c1116=function(){return"#fffafaff"},peg$c1117="Snow",peg$c1118=peg$literalExpectation("Snow",false),peg$c1119="springgreen",peg$c1120=peg$literalExpectation("springgreen",false),peg$c1121=function(){return"#00ff7fff"},peg$c1122="SpringGreen",peg$c1123=peg$literalExpectation("SpringGreen",false),peg$c1124="steelblue",peg$c1125=peg$literalExpectation("steelblue",false),peg$c1126=function(){return"#4682b4ff"},peg$c1127="SteelBlue",peg$c1128=peg$literalExpectation("SteelBlue",false),peg$c1129="tan",peg$c1130=peg$literalExpectation("tan",false),peg$c1131=function(){return"#d2b48cff"},peg$c1132="Tan",peg$c1133=peg$literalExpectation("Tan",false),peg$c1134="teal",peg$c1135=peg$literalExpectation("teal",false),peg$c1136=function(){return"#008080ff"},peg$c1137="Teal",peg$c1138=peg$literalExpectation("Teal",false),peg$c1139="thistle",peg$c1140=peg$literalExpectation("thistle",false),peg$c1141=function(){return"#d8bfd8ff"},peg$c1142="Thistle",peg$c1143=peg$literalExpectation("Thistle",false),peg$c1144="tomato",peg$c1145=peg$literalExpectation("tomato",false),peg$c1146=function(){return"#ff6347ff"},peg$c1147="Tomato",peg$c1148=peg$literalExpectation("Tomato",false),peg$c1149="turquoise",peg$c1150=peg$literalExpectation("turquoise",false),peg$c1151=function(){return"#40e0d0ff"},peg$c1152="Turquoise",peg$c1153=peg$literalExpectation("Turquoise",false),peg$c1154="violet",peg$c1155=peg$literalExpectation("violet",false),peg$c1156=function(){return"#ee82eeff"},peg$c1157="Violet",peg$c1158=peg$literalExpectation("Violet",false),peg$c1159="wheat",peg$c1160=peg$literalExpectation("wheat",false),peg$c1161=function(){return"#f5deb3ff"},peg$c1162="Wheat",peg$c1163=peg$literalExpectation("Wheat",false),peg$c1164="whitesmoke",peg$c1165=peg$literalExpectation("whitesmoke",false),peg$c1166=function(){return"#f5f5f5ff"},peg$c1167="WhiteSmoke",peg$c1168=peg$literalExpectation("WhiteSmoke",false),peg$c1169="white",peg$c1170=peg$literalExpectation("white",false),peg$c1171=function(){return"#ffffffff"},peg$c1172="White",peg$c1173=peg$literalExpectation("White",false),peg$c1174="yellowgreen",peg$c1175=peg$literalExpectation("yellowgreen",false),peg$c1176=function(){return"#9acd32ff"},peg$c1177="YellowGreen",peg$c1178=peg$literalExpectation("YellowGreen",false),peg$c1179="yellow",peg$c1180=peg$literalExpectation("yellow",false),peg$c1181=function(){return"#ffff00ff"},peg$c1182="Yellow",peg$c1183=peg$literalExpectation("Yellow",false),peg$c1184=function(lab){return lab},peg$c1185="#",peg$c1186=peg$literalExpectation("#",false),peg$c1187=function(r,g,b){return`#${r}${r}${g}${g}${b}${b}ff`},peg$c1188=function(r1,r2,g1,g2,b1,b2){return`#${r1}${r2}${g1}${g2}${b1}${b2}ff`},peg$c1189=function(r,g,b,a){return`#${r}${r}${g}${g}${b}${b}${a}${a}`},peg$c1190=function(r1,r2,g1,g2,b1,b2,a1,a2){return`#${r1}${r2}${g1}${g2}${b1}${b2}${a1}${a2}`},peg$c1191=peg$otherExpectation("color"),peg$c1192="arc_label",peg$c1193=peg$literalExpectation("arc_label",false),peg$c1194="head_label",peg$c1195=peg$literalExpectation("head_label",false),peg$c1196="tail_label",peg$c1197=peg$literalExpectation("tail_label",false),peg$c1198=":",peg$c1199=peg$literalExpectation(":",false),peg$c1200=";",peg$c1201=peg$literalExpectation(";",false),peg$c1202=function(key,value){return{key:key,value:value}},peg$c1203=peg$otherExpectation("single edge color"),peg$c1204="edge_color",peg$c1205=peg$literalExpectation("edge_color",false),peg$c1206=function(value){return{key:"single_edge_color",value:value}},peg$c1207=peg$otherExpectation("transition line style"),peg$c1208="line-style",peg$c1209=peg$literalExpectation("line-style",false),peg$c1210=function(value){return{key:"transition_line_style",value:value}},peg$c1211="{",peg$c1212=peg$literalExpectation("{",false),peg$c1213="}",peg$c1214=peg$literalExpectation("}",false),peg$c1215=function(items){return items},peg$c1216="%",peg$c1217=peg$literalExpectation("%",false),peg$c1218=function(value){return{key:"arrow probability",value:value}},peg$c1219="[",peg$c1220=peg$literalExpectation("[",false),peg$c1221="]",peg$c1222=peg$literalExpectation("]",false),peg$c1223=function(names){return names.map((i=>i[0]))},peg$c1224="+|",peg$c1225=peg$literalExpectation("+|",false),peg$c1226=function(nzd,dd){return{key:"stripe",value:parseInt(`${nzd}${dd}`,10)}},peg$c1227="-|",peg$c1228=peg$literalExpectation("-|",false),peg$c1229=function(nzd,dd){return{key:"stripe",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1230="+",peg$c1231=peg$literalExpectation("+",false),peg$c1232=function(nzd,dd){return{key:"cycle",value:parseInt(`${nzd}${dd}`,10)}},peg$c1233="-",peg$c1234=peg$literalExpectation("-",false),peg$c1235=function(nzd,dd){return{key:"cycle",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1236="+0",peg$c1237=peg$literalExpectation("+0",false),peg$c1238=function(){return{key:"cycle",value:0}},peg$c1239=function(r_action,r_prob,l_desc,arrow,r_desc,l_prob,l_action,label,tail){const base={kind:arrow,to:label};if(tail&&tail!==[]){base.se=tail}if(l_desc){base.l_desc=l_desc}if(r_desc){base.r_desc=r_desc}if(l_action){base.l_action=l_action}if(r_action){base.r_action=r_action}if(l_prob){base.l_probability=l_prob.value}if(r_prob){base.r_probability=r_prob.value}return base},peg$c1240=function(label,se){const base={key:"transition",from:label};if(se&&se!==[]){base.se=se}return base},peg$c1241="whargarbl",peg$c1242=peg$literalExpectation("whargarbl",false),peg$c1243="todo",peg$c1244=peg$literalExpectation("todo",false),peg$c1245=function(validationkey,value){return{key:validationkey,value:value}},peg$c1246="validation",peg$c1247=peg$literalExpectation("validation",false),peg$c1248="};",peg$c1249=peg$literalExpectation("};",false),peg$c1250=function(validation_items){return{config_kind:"validation",config_items:validation_items||[]}},peg$c1251="dot",peg$c1252=peg$literalExpectation("dot",false),peg$c1253="circo",peg$c1254=peg$literalExpectation("circo",false),peg$c1255="fdp",peg$c1256=peg$literalExpectation("fdp",false),peg$c1257="neato",peg$c1258=peg$literalExpectation("neato",false),peg$c1259="state",peg$c1260=peg$literalExpectation("state",false),peg$c1261=function(state_items){return{key:"default_state_config",value:state_items||[]}},peg$c1262="start_state",peg$c1263=peg$literalExpectation("start_state",false),peg$c1264=function(state_items){return{key:"default_start_state_config",value:state_items||[]}},peg$c1265="end_state",peg$c1266=peg$literalExpectation("end_state",false),peg$c1267=function(state_items){return{key:"default_end_state_config",value:state_items||[]}},peg$c1268="active_state",peg$c1269=peg$literalExpectation("active_state",false),peg$c1270=function(state_items){return{key:"default_active_state_config",value:state_items||[]}},peg$c1271="terminal_state",peg$c1272=peg$literalExpectation("terminal_state",false),peg$c1273=function(state_items){return{key:"default_terminal_state_config",value:state_items||[]}},peg$c1274="hooked_state",peg$c1275=peg$literalExpectation("hooked_state",false),peg$c1276=function(state_items){return{key:"default_hooked_state_config",value:state_items||[]}},peg$c1277=function(actionkey,value){return{key:actionkey,value:value}},peg$c1278="action",peg$c1279=peg$literalExpectation("action",false),peg$c1280=function(action_items){return{config_kind:"action",config_items:action_items||[]}},peg$c1281=function(key,value){return{key:key,value:value}},peg$c1282=peg$otherExpectation("graph default edge color"),peg$c1283=function(value){return{key:"graph_default_edge_color",value:value}},peg$c1284="transition",peg$c1285=peg$literalExpectation("transition",false),peg$c1286=function(transition_items){return{config_kind:"transition",config_items:transition_items||[]}},peg$c1287="graph_layout",peg$c1288=peg$literalExpectation("graph_layout",false),peg$c1289=function(value){return{key:"graph_layout",value:value}},peg$c1290="start_states",peg$c1291=peg$literalExpectation("start_states",false),peg$c1292=function(value){return{key:"start_states",value:value}},peg$c1293="end_states",peg$c1294=peg$literalExpectation("end_states",false),peg$c1295=function(value){return{key:"end_states",value:value}},peg$c1296="graph_bg_color",peg$c1297=peg$literalExpectation("graph_bg_color",false),peg$c1298=function(value){return{key:"graph_bg_color",value:value}},peg$c1299=peg$otherExpectation("configuration"),peg$c1300="MIT",peg$c1301=peg$literalExpectation("MIT",false),peg$c1302="BSD 2-clause",peg$c1303=peg$literalExpectation("BSD 2-clause",false),peg$c1304="BSD 3-clause",peg$c1305=peg$literalExpectation("BSD 3-clause",false),peg$c1306="Apache 2.0",peg$c1307=peg$literalExpectation("Apache 2.0",false),peg$c1308="Mozilla 2.0",peg$c1309=peg$literalExpectation("Mozilla 2.0",false),peg$c1310="Public domain",peg$c1311=peg$literalExpectation("Public domain",false),peg$c1312="GPL v2",peg$c1313=peg$literalExpectation("GPL v2",false),peg$c1314="GPL v3",peg$c1315=peg$literalExpectation("GPL v3",false),peg$c1316="LGPL v2.1",peg$c1317=peg$literalExpectation("LGPL v2.1",false),peg$c1318="LGPL v3.0",peg$c1319=peg$literalExpectation("LGPL v3.0",false),peg$c1320="Unknown",peg$c1321=peg$literalExpectation("Unknown",false),peg$c1322=peg$otherExpectation("direction"),peg$c1323="up",peg$c1324=peg$literalExpectation("up",false),peg$c1325="right",peg$c1326=peg$literalExpectation("right",false),peg$c1327="down",peg$c1328=peg$literalExpectation("down",false),peg$c1329="left",peg$c1330=peg$literalExpectation("left",false),peg$c1331=peg$otherExpectation("hook definition (open/closed)"),peg$c1332="open",peg$c1333=peg$literalExpectation("open",false),peg$c1334="closed",peg$c1335=peg$literalExpectation("closed",false),peg$c1336="machine_author",peg$c1337=peg$literalExpectation("machine_author",false),peg$c1338=function(value){return{key:"machine_author",value:value}},peg$c1339="machine_contributor",peg$c1340=peg$literalExpectation("machine_contributor",false),peg$c1341=function(value){return{key:"machine_contributor",value:value}},peg$c1342="machine_comment",peg$c1343=peg$literalExpectation("machine_comment",false),peg$c1344=function(value){return{key:"machine_comment",value:value}},peg$c1345="machine_definition",peg$c1346=peg$literalExpectation("machine_definition",false),peg$c1347=function(value){return{key:"machine_definition",value:value}},peg$c1348="machine_name",peg$c1349=peg$literalExpectation("machine_name",false),peg$c1350=function(value){return{key:"machine_name",value:value}},peg$c1354="machine_version",peg$c1355=peg$literalExpectation("machine_version",false),peg$c1356=function(value){return{key:"machine_version",value:value}},peg$c1357="machine_license",peg$c1358=peg$literalExpectation("machine_license",false),peg$c1359=function(value){return{key:"machine_license",value:value}},peg$c1360="machine_language",peg$c1361=peg$literalExpectation("machine_language",false),peg$c1362=function(value){return{key:"machine_language",value:value}},peg$c1363="fsl_version",peg$c1364=peg$literalExpectation("fsl_version",false),peg$c1365=function(value){return{key:"fsl_version",value:value}},peg$c1366="theme",peg$c1367=peg$literalExpectation("theme",false),peg$c1368=function(value){return{key:"theme",value:value}},peg$c1369="flow",peg$c1370=peg$literalExpectation("flow",false),peg$c1371=function(value){return{key:"flow",value:value}},peg$c1372="hooks",peg$c1373=peg$literalExpectation("hooks",false),peg$c1374=function(value){return{key:"hook_definition",value:value}},peg$c1375="dot_preamble",peg$c1376=peg$literalExpectation("dot_preamble",false),peg$c1377=function(value){return{key:"dot_preamble",value:value}},peg$c1378=peg$otherExpectation("machine attribute"),peg$c1379="label",peg$c1380=peg$literalExpectation("label",false),peg$c1381=function(value){return{key:"state-label",value:value}},peg$c1382="color",peg$c1383=peg$literalExpectation("color",false),peg$c1384=function(value){return{key:"color",value:value}},peg$c1385=peg$otherExpectation("text color"),peg$c1386="text-color",peg$c1387=peg$literalExpectation("text-color",false),peg$c1388=function(value){return{key:"text-color",value:value}},peg$c1389=peg$otherExpectation("background color"),peg$c1390="background-color",peg$c1391=peg$literalExpectation("background-color",false),peg$c1392=function(value){return{key:"background-color",value:value}},peg$c1393=peg$otherExpectation("border color"),peg$c1394="border-color",peg$c1395=peg$literalExpectation("border-color",false),peg$c1396=function(value){return{key:"border-color",value:value}},peg$c1397=peg$otherExpectation("shape"),peg$c1398="shape",peg$c1399=peg$literalExpectation("shape",false),peg$c1400=function(value){return{key:"shape",value:value}},peg$c1401=peg$otherExpectation("corners"),peg$c1402="corners",peg$c1403=peg$literalExpectation("corners",false),peg$c1404=function(value){return{key:"corners",value:value}},peg$c1405=peg$otherExpectation("linestyle"),peg$c1406=function(value){return{key:"line-style",value:value}},peg$c1407="linestyle",peg$c1408=peg$literalExpectation("linestyle",false),peg$c1409=peg$otherExpectation("state property"),peg$c1410="property",peg$c1411=peg$literalExpectation("property",false),peg$c1412=function(name,value){return{key:"state_property",name:name,value:value}},peg$c1413="required",peg$c1414=peg$literalExpectation("required",false),peg$c1415=function(name,value){return{key:"state_property",name:name,value:value,required:true}},peg$c1416=function(name,value){return{key:"state_declaration",name:name,value:value}},peg$c1417="&",peg$c1418=peg$literalExpectation("&",false),peg$c1419=function(name,value){return{key:"named_list",name:name,value:value}},peg$c1420=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value,required:true}},peg$c1421=function(name){return{key:"property_definition",name:name,required:true}},peg$c1422=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value}},peg$c1423=function(name){return{key:"property_definition",name:name}},peg$c1424="arrange",peg$c1425=peg$literalExpectation("arrange",false),peg$c1426=function(value){return{key:"arrange_declaration",value:value}},peg$c1427="arrange-start",peg$c1428=peg$literalExpectation("arrange-start",false),peg$c1429=function(value){return{key:"arrange_start_declaration",value:value}},peg$c1430="arrange-end",peg$c1431=peg$literalExpectation("arrange-end",false),peg$c1432=function(value){return{key:"arrange_end_declaration",value:value}},peg$c1433=peg$otherExpectation("arrange declaration"),peg$currPos=0,peg$savedPos=0,peg$posDetailsCache=[{line:1,column:1}],peg$maxFailPos=0,peg$maxFailExpected=[],peg$silentFails=0,peg$result;if("startRule"in options){if(!(options.startRule in peg$startRuleFunctions)){throw new Error("Can't start parsing from rule \""+options.startRule+'".')}peg$startRuleFunction=peg$startRuleFunctions[options.startRule]}function text(){return input.substring(peg$savedPos,peg$currPos)}function peg$literalExpectation(text,ignoreCase){return{type:"literal",text:text,ignoreCase:ignoreCase}}function peg$classExpectation(parts,inverted,ignoreCase){return{type:"class",parts:parts,inverted:inverted,ignoreCase:ignoreCase}}function peg$anyExpectation(){return{type:"any"}}function peg$endExpectation(){return{type:"end"}}function peg$otherExpectation(description){return{type:"other",description:description}}function peg$computePosDetails(pos){var details=peg$posDetailsCache[pos],p;if(details){return details}else{p=pos-1;while(!peg$posDetailsCache[p]){p--}details=peg$posDetailsCache[p];details={line:details.line,column:details.column};while(ppeg$maxFailPos){peg$maxFailPos=peg$currPos;peg$maxFailExpected=[]}peg$maxFailExpected.push(expected)}function peg$buildStructuredError(expected,found,location){return new peg$SyntaxError(peg$SyntaxError.buildMessage(expected,found),expected,found,location)}function peg$parseDocument(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseTermList();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c0(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTheme(){var s0;if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s0=peg$c3;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c5){s0=peg$c5;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c6)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c7){s0=peg$c7;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c8)}}}}}return s0}function peg$parseGvizShape(){var s0;if(input.substr(peg$currPos,5)===peg$c9){s0=peg$c9;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c10)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c11){s0=peg$c11;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c12)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c13){s0=peg$c13;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c14)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c15){s0=peg$c15;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c16)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c17){s0=peg$c17;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c18)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c19){s0=peg$c19;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c20)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c21){s0=peg$c21;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c22)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c23){s0=peg$c23;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c24)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c25){s0=peg$c25;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c26)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c27){s0=peg$c27;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c28)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c29){s0=peg$c29;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c30)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c31){s0=peg$c31;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c32)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c33){s0=peg$c33;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c34)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c35){s0=peg$c35;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c36)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c37){s0=peg$c37;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c38)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c39){s0=peg$c39;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c40)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c41){s0=peg$c41;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c42)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c43){s0=peg$c43;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c44)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c45){s0=peg$c45;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c46)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c47){s0=peg$c47;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c48)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c49){s0=peg$c49;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c50)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c51){s0=peg$c51;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c52)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c53){s0=peg$c53;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c54)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c55){s0=peg$c55;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c56)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c57){s0=peg$c57;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c58)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c59){s0=peg$c59;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c60)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c61){s0=peg$c61;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c62)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c63){s0=peg$c63;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c64)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c65){s0=peg$c65;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c66)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c67){s0=peg$c67;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c68)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c69){s0=peg$c69;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c70)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c71){s0=peg$c71;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c72)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c73){s0=peg$c73;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c74)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c75){s0=peg$c75;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c76)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c77){s0=peg$c77;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c78)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c79){s0=peg$c79;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c80)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c81){s0=peg$c81;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c82)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c83){s0=peg$c83;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c84)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c85){s0=peg$c85;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c86)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c87){s0=peg$c87;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c88)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c89){s0=peg$c89;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c90)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c91){s0=peg$c91;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c92)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c93){s0=peg$c93;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c94)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,15)===peg$c95){s0=peg$c95;peg$currPos+=15}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c96)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c97){s0=peg$c97;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c98)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,14)===peg$c99){s0=peg$c99;peg$currPos+=14}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c100)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c101){s0=peg$c101;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c102)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c103){s0=peg$c103;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c104)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c105){s0=peg$c105;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c106)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c107){s0=peg$c107;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c108)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c109){s0=peg$c109;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c110)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c111){s0=peg$c111;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c112)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c113){s0=peg$c113;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c114)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c115){s0=peg$c115;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c116)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c117){s0=peg$c117;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c118)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c119){s0=peg$c119;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c120)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c121){s0=peg$c121;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c122)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c123){s0=peg$c123;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c124)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c125){s0=peg$c125;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c126)}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseForwardLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c128){s0=peg$c128;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c129)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8594){s1=peg$c130;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c131)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c132()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c127)}}return s0}function peg$parseTwoWayLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c134){s0=peg$c134;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c135)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8596){s1=peg$c136;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c137)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c138()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c133)}}return s0}function peg$parseBackLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c140){s0=peg$c140;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c141)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8592){s1=peg$c142;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c144()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c139)}}return s0}function peg$parseForwardFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c146){s0=peg$c146;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c147)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8658){s1=peg$c148;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c149)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c150()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c145)}}return s0}function peg$parseTwoWayFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c152){s0=peg$c152;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c153)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8660){s1=peg$c154;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c156()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c151)}}return s0}function peg$parseBackFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c158){s0=peg$c158;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c159)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8656){s1=peg$c160;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c161)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c162()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c157)}}return s0}function peg$parseForwardTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c164){s0=peg$c164;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c165)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8603){s1=peg$c166;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c167)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c168()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c163)}}return s0}function peg$parseTwoWayTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c170){s0=peg$c170;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c171)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8622){s1=peg$c172;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c174()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c169)}}return s0}function peg$parseBackTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c176){s0=peg$c176;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c177)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8602){s1=peg$c178;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c179)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c180()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c175)}}return s0}function peg$parseLightFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c182){s0=peg$c182;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c183)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c184){s1=peg$c184;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c185)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c186()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c181)}}return s0}function peg$parseLightTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c188){s0=peg$c188;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c189)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c190){s1=peg$c190;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c191)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c192()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c187)}}return s0}function peg$parseFatLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c194){s0=peg$c194;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c195)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c196){s1=peg$c196;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c197)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c198()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c193)}}return s0}function peg$parseFatTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c200){s0=peg$c200;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c201)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c202){s1=peg$c202;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c203)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c204()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c199)}}return s0}function peg$parseTildeLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c206){s0=peg$c206;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c207)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c208){s1=peg$c208;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c209)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c210()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c205)}}return s0}function peg$parseTildeFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c212){s0=peg$c212;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c213)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c214){s1=peg$c214;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c215)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c216()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c211)}}return s0}function peg$parseLightArrow(){var s0;peg$silentFails++;s0=peg$parseForwardLightArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayLightArrow();if(s0===peg$FAILED){s0=peg$parseBackLightArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c217)}}return s0}function peg$parseFatArrow(){var s0;peg$silentFails++;s0=peg$parseForwardFatArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayFatArrow();if(s0===peg$FAILED){s0=peg$parseBackFatArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c218)}}return s0}function peg$parseTildeArrow(){var s0;peg$silentFails++;s0=peg$parseForwardTildeArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayTildeArrow();if(s0===peg$FAILED){s0=peg$parseBackTildeArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c219)}}return s0}function peg$parseMixedArrow(){var s0;peg$silentFails++;s0=peg$parseLightFatArrow();if(s0===peg$FAILED){s0=peg$parseLightTildeArrow();if(s0===peg$FAILED){s0=peg$parseFatLightArrow();if(s0===peg$FAILED){s0=peg$parseFatTildeArrow();if(s0===peg$FAILED){s0=peg$parseTildeLightArrow();if(s0===peg$FAILED){s0=peg$parseTildeFatArrow()}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c220)}}return s0}function peg$parseArrow(){var s0;peg$silentFails++;s0=peg$parseMixedArrow();if(s0===peg$FAILED){s0=peg$parseLightArrow();if(s0===peg$FAILED){s0=peg$parseFatArrow();if(s0===peg$FAILED){s0=peg$parseTildeArrow()}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c221)}}return s0}function peg$parseBoolean(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c222){s1=peg$c222;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c223)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c224()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c225){s1=peg$c225;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c226)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c227()}s0=s1}return s0}function peg$parseCorners(){var s0;if(input.substr(peg$currPos,7)===peg$c228){s0=peg$c228;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c229)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c230){s0=peg$c230;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c231)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c232){s0=peg$c232;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c233)}}}}return s0}function peg$parseLineStyle(){var s0;if(input.substr(peg$currPos,5)===peg$c234){s0=peg$c234;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c235)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c236){s0=peg$c236;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c237)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c238){s0=peg$c238;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c239)}}}}return s0}function peg$parseChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===34){s2=peg$c240;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseNull(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c268){s1=peg$c268;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c269)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c270()}s0=s1;return s0}function peg$parseUndefined(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c271){s1=peg$c271;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c272)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c273()}s0=s1;return s0}function peg$parseEscape(){var s0;if(input.charCodeAt(peg$currPos)===92){s0=peg$c242;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}return s0}function peg$parseQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===34){s0=peg$c240;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}return s0}function peg$parseUnescaped(){var s0;if(peg$c274.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c275)}}return s0}function peg$parseActionLabelChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseActionLabelUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===39){s2=peg$c276;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseActionLabelQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===39){s0=peg$c276;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}return s0}function peg$parseActionLabelUnescaped(){var s0;if(peg$c278.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c279)}}return s0}function peg$parseActionLabel(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseActionLabelQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseActionLabelChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseActionLabelChar()}if(s2!==peg$FAILED){s3=peg$parseActionLabelQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c280)}}return s0}function peg$parseLineTerminator(){var s0;if(peg$c282.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c283)}}return s0}function peg$parseBlockCommentTail(){var s0,s1,s2;if(input.substr(peg$currPos,2)===peg$c286){s0=peg$c286;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c287)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseBlockComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c290){s1=peg$c290;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c291)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c289)}}return s0}function peg$parseEOF(){var s0,s1;s0=peg$currPos;peg$silentFails++;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}peg$silentFails--;if(s1===peg$FAILED){s0=void 0}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLineCommentTail(){var s0,s1,s2;s0=peg$parseLineTerminator();if(s0===peg$FAILED){s0=peg$parseEOF();if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseLineComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c293){s1=peg$c293;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c294)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c292)}}return s0}function peg$parseWS(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;s1=peg$parseBlockComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseLineComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=[];if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}if(s2!==peg$FAILED){while(s2!==peg$FAILED){s1.push(s2);if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}}}else{s1=peg$FAILED}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c295)}}return s0}function peg$parseString(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseChar()}if(s2!==peg$FAILED){s3=peg$parseQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c298)}}return s0}function peg$parseAtomFirstLetter(){var s0;if(peg$c299.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c300)}}return s0}function peg$parseAtomLetter(){var s0;if(peg$c301.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c302)}}return s0}function peg$parseAtom(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseAtomFirstLetter();if(s1!==peg$FAILED){s2=[];s3=peg$parseAtomLetter();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseAtomLetter()}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c304(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c303)}}return s0}function peg$parseLabel(){var s0;peg$silentFails++;s0=peg$parseAtom();if(s0===peg$FAILED){s0=peg$parseString()}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c305)}}return s0}function peg$parseIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseDecimalDigit(){var s0;if(peg$c308.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c309)}}return s0}function peg$parseNonZeroDigit(){var s0;if(peg$c310.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c311)}}return s0}function peg$parseHexDigit(){var s0;if(peg$c312.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c313)}}return s0}function peg$parseBinaryDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseOctalDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseNonNegNumber(){var s0,s1,s2,s3,s4;peg$silentFails++;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c316)}}return s0}function peg$parseJsNumericLiteral(){var s0,s1;peg$silentFails++;s0=peg$currPos;s1=peg$parseJsHexIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsBinaryIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonJsOctalIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c322){s1=peg$c322;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c323)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c324()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c325){s1=peg$c325;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c326)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c328){s1=peg$c328;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c329)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c330){s1=peg$c330;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c331)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c332){s1=peg$c332;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c333)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c334){s1=peg$c334;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c335)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c336){s1=peg$c336;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c337)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c338){s1=peg$c338;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c339)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c340){s1=peg$c340;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c341)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c343){s1=peg$c343;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c344)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c345){s1=peg$c345;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c346)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c347){s1=peg$c347;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c348)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8734){s1=peg$c349;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c350)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c351){s1=peg$c351;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c352)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c354){s1=peg$c354;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c355)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===949){s1=peg$c356;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c357)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c358){s1=peg$c358;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c359)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c361){s1=peg$c361;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c362)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===960){s1=peg$c363;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c364)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c365){s1=peg$c365;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c366)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===69){s1=peg$c368;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c369)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===101){s1=peg$c370;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c371)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===400){s1=peg$c372;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c373)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8455){s1=peg$c374;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c375)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c376){s1=peg$c376;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c377)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c378()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c379){s1=peg$c379;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c380)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c381()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c382){s1=peg$c382;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c383)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c385){s1=peg$c385;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c386)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c387){s1=peg$c387;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c388)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c390){s1=peg$c390;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c391)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c392){s1=peg$c392;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c393)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c394()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c395){s1=peg$c395;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c396)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c397()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c398){s1=peg$c398;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c399)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c400()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c401){s1=peg$c401;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c402)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c403()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c404){s1=peg$c404;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c405)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c406()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c407){s1=peg$c407;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c408)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c409()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c410){s1=peg$c410;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c411)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c413){s1=peg$c413;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c414)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c415){s1=peg$c415;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c416)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===981){s1=peg$c417;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c418)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===966){s1=peg$c419;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c420)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c421){s1=peg$c421;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c422)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c426){s1=peg$c426;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c427)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c320)}}return s0}function peg$parseJsDecimalLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseJsNExponentPart();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===46){s1=peg$c317;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s3=peg$parseJsNExponentPart();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseJsNExponentPart();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseJsDecimalIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseJsNExponentPart(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseJsNExponentIndicator();if(s1!==peg$FAILED){s2=peg$parseJsNSignedInteger();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsNExponentIndicator(){var s0;if(input.substr(peg$currPos,1).toLowerCase()===peg$c370){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c428)}}return s0}function peg$parseJsNSignedInteger(){var s0,s1,s2,s3;s0=peg$currPos;if(peg$c429.test(input.charAt(peg$currPos))){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c430)}}if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsHexIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c431){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c432)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseHexDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseHexDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c433(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsBinaryIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c434){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c435)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseBinaryDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseBinaryDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c436(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNonJsOctalIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c437){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c438)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseOctalDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseOctalDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c439(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSemVer(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=peg$parseIntegerLiteral();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s4=peg$c317;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s4!==peg$FAILED){s5=peg$parseIntegerLiteral();if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c440(s1,s3,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseUrlProtocol(){var s0;if(input.substr(peg$currPos,7)===peg$c451){s0=peg$c451;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c452)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c453){s0=peg$c453;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c454)}}}return s0}function peg$parseURL(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseUrlProtocol();if(s1!==peg$FAILED){s2=[];if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}}}else{s2=peg$FAILED}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c457();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSvgColorLabel(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c458){s1=peg$c458;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c459)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c461){s1=peg$c461;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c462)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c463){s1=peg$c463;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c464)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c466){s1=peg$c466;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c467)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c468){s1=peg$c468;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c469)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c471){s1=peg$c471;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c472)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c473){s1=peg$c473;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c474)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c476){s1=peg$c476;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c477)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c478){s1=peg$c478;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c479)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c481){s1=peg$c481;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c482)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c483){s1=peg$c483;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c484)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c486){s1=peg$c486;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c487)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c488){s1=peg$c488;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c489)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c491){s1=peg$c491;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c492)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c493){s1=peg$c493;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c494)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c496){s1=peg$c496;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c497)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c498){s1=peg$c498;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c499)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c501){s1=peg$c501;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c502)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c503){s1=peg$c503;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c504)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c506){s1=peg$c506;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c507)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c508){s1=peg$c508;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c509)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c511){s1=peg$c511;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c512)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c513){s1=peg$c513;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c514)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c516){s1=peg$c516;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c517)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c518){s1=peg$c518;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c519)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c521){s1=peg$c521;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c522)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c523){s1=peg$c523;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c524)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c526){s1=peg$c526;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c527)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c528){s1=peg$c528;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c529)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c531){s1=peg$c531;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c532)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c533){s1=peg$c533;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c534)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c536){s1=peg$c536;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c537)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c538){s1=peg$c538;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c539)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c541){s1=peg$c541;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c542)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c543){s1=peg$c543;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c544)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c546){s1=peg$c546;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c547)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c548){s1=peg$c548;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c549)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c551){s1=peg$c551;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c552)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c553){s1=peg$c553;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c554)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c556){s1=peg$c556;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c557)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c558){s1=peg$c558;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c559)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c560){s1=peg$c560;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c561)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c562){s1=peg$c562;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c563)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c565){s1=peg$c565;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c566)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c567){s1=peg$c567;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c568)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c570){s1=peg$c570;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c571)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c572){s1=peg$c572;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c573)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c575){s1=peg$c575;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c576)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c577){s1=peg$c577;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c578)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c580){s1=peg$c580;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c581)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c582){s1=peg$c582;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c583)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c584){s1=peg$c584;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c585)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c586){s1=peg$c586;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c587)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c589){s1=peg$c589;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c590)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c591){s1=peg$c591;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c592)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c594){s1=peg$c594;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c595)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c596){s1=peg$c596;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c597)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c599){s1=peg$c599;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c600)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c601){s1=peg$c601;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c602)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c604){s1=peg$c604;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c605)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c606){s1=peg$c606;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c607)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c609){s1=peg$c609;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c610)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c611){s1=peg$c611;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c612)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c614){s1=peg$c614;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c615)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c616){s1=peg$c616;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c617)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c619){s1=peg$c619;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c620)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c621){s1=peg$c621;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c622)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c624){s1=peg$c624;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c625)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c626){s1=peg$c626;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c627)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c629){s1=peg$c629;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c630)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c631){s1=peg$c631;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c632)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c634){s1=peg$c634;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c635)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c636){s1=peg$c636;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c637)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c639){s1=peg$c639;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c640)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c641){s1=peg$c641;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c642)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c643){s1=peg$c643;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c644)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c645){s1=peg$c645;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c646)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c648){s1=peg$c648;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c649)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c650){s1=peg$c650;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c651)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c653){s1=peg$c653;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c654)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c655){s1=peg$c655;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c656)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c658){s1=peg$c658;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c659)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c660){s1=peg$c660;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c661)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c663){s1=peg$c663;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c664)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c665){s1=peg$c665;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c666)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c668){s1=peg$c668;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c669)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c670){s1=peg$c670;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c671)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c672){s1=peg$c672;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c673)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c674){s1=peg$c674;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c675)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c677){s1=peg$c677;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c678)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c679){s1=peg$c679;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c680)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c682){s1=peg$c682;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c683)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c684){s1=peg$c684;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c685)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c687){s1=peg$c687;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c688)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c689){s1=peg$c689;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c690)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c692){s1=peg$c692;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c693)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c694){s1=peg$c694;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c695)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c697){s1=peg$c697;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c698)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c699){s1=peg$c699;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c700)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c702){s1=peg$c702;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c703)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c704){s1=peg$c704;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c705)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c707){s1=peg$c707;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c708)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c709){s1=peg$c709;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c710)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c712){s1=peg$c712;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c713)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c714){s1=peg$c714;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c715)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c717){s1=peg$c717;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c718)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c719){s1=peg$c719;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c720)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c722){s1=peg$c722;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c723)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c724){s1=peg$c724;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c725)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c726){s1=peg$c726;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c727)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c728){s1=peg$c728;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c729)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c731){s1=peg$c731;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c732)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c733){s1=peg$c733;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c734)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c736){s1=peg$c736;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c737)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c738){s1=peg$c738;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c739)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c741){s1=peg$c741;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c742)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c743){s1=peg$c743;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c744)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c746){s1=peg$c746;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c747)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c748){s1=peg$c748;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c749)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c751){s1=peg$c751;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c752)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c753){s1=peg$c753;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c754)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c756){s1=peg$c756;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c757)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c758){s1=peg$c758;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c759)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c761){s1=peg$c761;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c762)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c763){s1=peg$c763;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c764)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c766){s1=peg$c766;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c767)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c768){s1=peg$c768;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c769)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c771){s1=peg$c771;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c772)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c773){s1=peg$c773;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c774)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c776){s1=peg$c776;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c777)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c778){s1=peg$c778;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c779)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c781){s1=peg$c781;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c782)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c783){s1=peg$c783;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c784)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c786){s1=peg$c786;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c787)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c788){s1=peg$c788;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c789)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c791){s1=peg$c791;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c792)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c793){s1=peg$c793;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c794)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c796){s1=peg$c796;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c797)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c798){s1=peg$c798;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c799)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c801){s1=peg$c801;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c802)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c803){s1=peg$c803;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c804)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c806){s1=peg$c806;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c807)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c808){s1=peg$c808;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c809)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c811){s1=peg$c811;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c812)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c813){s1=peg$c813;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c814)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c815){s1=peg$c815;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c816)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c817){s1=peg$c817;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c818)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c820){s1=peg$c820;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c821)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c822){s1=peg$c822;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c823)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c825){s1=peg$c825;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c826)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c827){s1=peg$c827;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c828)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c830){s1=peg$c830;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c831)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c832){s1=peg$c832;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c833)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c835){s1=peg$c835;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c836)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c837){s1=peg$c837;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c838)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c840){s1=peg$c840;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c841)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c842){s1=peg$c842;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c843)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c845){s1=peg$c845;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c846)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c847){s1=peg$c847;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c848)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c849){s1=peg$c849;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c850)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c851){s1=peg$c851;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c852)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c854){s1=peg$c854;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c855)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c856){s1=peg$c856;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c857)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c859){s1=peg$c859;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c860)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c861){s1=peg$c861;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c862)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c864){s1=peg$c864;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c865)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c866){s1=peg$c866;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c867)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c869){s1=peg$c869;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c870)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c871){s1=peg$c871;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c872)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c874){s1=peg$c874;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c875)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c876){s1=peg$c876;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c877)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c878){s1=peg$c878;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c879)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c880){s1=peg$c880;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c881)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c883){s1=peg$c883;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c884)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c885){s1=peg$c885;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c886)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c888){s1=peg$c888;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c889)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c890){s1=peg$c890;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c891)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c893){s1=peg$c893;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c894)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c895){s1=peg$c895;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c896)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c898){s1=peg$c898;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c899)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c900){s1=peg$c900;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c901)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c903){s1=peg$c903;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c904)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c905){s1=peg$c905;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c906)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c908){s1=peg$c908;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c909)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c910){s1=peg$c910;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c911)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c913){s1=peg$c913;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c914)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c915){s1=peg$c915;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c916)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c918){s1=peg$c918;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c919)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c920){s1=peg$c920;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c921)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c923){s1=peg$c923;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c924)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c925){s1=peg$c925;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c926)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c928){s1=peg$c928;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c929)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c930){s1=peg$c930;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c931)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c933){s1=peg$c933;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c934)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c935){s1=peg$c935;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c936)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c938){s1=peg$c938;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c939)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c940){s1=peg$c940;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c941)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c943){s1=peg$c943;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c944)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c945){s1=peg$c945;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c946)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c948){s1=peg$c948;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c949)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c950){s1=peg$c950;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c951)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c953){s1=peg$c953;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c954)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c955){s1=peg$c955;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c956)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c958){s1=peg$c958;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c959)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c960){s1=peg$c960;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c961)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c963){s1=peg$c963;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c964)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c965){s1=peg$c965;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c966)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c968){s1=peg$c968;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c969)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c970){s1=peg$c970;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c971)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c973){s1=peg$c973;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c974)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c975){s1=peg$c975;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c976)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c978){s1=peg$c978;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c979)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c980){s1=peg$c980;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c981)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c983){s1=peg$c983;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c984)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c985){s1=peg$c985;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c986)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c988){s1=peg$c988;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c989)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c990){s1=peg$c990;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c991)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c993){s1=peg$c993;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c994)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c995){s1=peg$c995;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c996)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c998){s1=peg$c998;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c999)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1000){s1=peg$c1000;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1001)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1003){s1=peg$c1003;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1004)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1005){s1=peg$c1005;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1006)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1008){s1=peg$c1008;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1009)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1010){s1=peg$c1010;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1011)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1013){s1=peg$c1013;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1014)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1015){s1=peg$c1015;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1016)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1018){s1=peg$c1018;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1019)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1020){s1=peg$c1020;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1021)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1023){s1=peg$c1023;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1024)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1025){s1=peg$c1025;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1026)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1028){s1=peg$c1028;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1029)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1030){s1=peg$c1030;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1031)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1033){s1=peg$c1033;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1034)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1035){s1=peg$c1035;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1036)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1038){s1=peg$c1038;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1039)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1040){s1=peg$c1040;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1041)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1043){s1=peg$c1043;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1044)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1045){s1=peg$c1045;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1046)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1048){s1=peg$c1048;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1049)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1050){s1=peg$c1050;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1051)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1053){s1=peg$c1053;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1054)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1055){s1=peg$c1055;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1056)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1058){s1=peg$c1058;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1059)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1060){s1=peg$c1060;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1061)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1063){s1=peg$c1063;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1064)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1065){s1=peg$c1065;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1066)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1068){s1=peg$c1068;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1069)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1070){s1=peg$c1070;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1071)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1073){s1=peg$c1073;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1074)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1075){s1=peg$c1075;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1076)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1078){s1=peg$c1078;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1079)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1080){s1=peg$c1080;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1081)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1083){s1=peg$c1083;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1084)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1085){s1=peg$c1085;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1086)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1088){s1=peg$c1088;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1089)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1090){s1=peg$c1090;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1091)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1093){s1=peg$c1093;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1094)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1095){s1=peg$c1095;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1096)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1098){s1=peg$c1098;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1099)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1100){s1=peg$c1100;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1101)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1103){s1=peg$c1103;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1104)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1105){s1=peg$c1105;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1106)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1108){s1=peg$c1108;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1109)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1110){s1=peg$c1110;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1111)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1112){s1=peg$c1112;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1113)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1114){s1=peg$c1114;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1115)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1117){s1=peg$c1117;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1118)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1119){s1=peg$c1119;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1120)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1122){s1=peg$c1122;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1123)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1124){s1=peg$c1124;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1125)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1127){s1=peg$c1127;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1128)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1129){s1=peg$c1129;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1130)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1132){s1=peg$c1132;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1133)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1134){s1=peg$c1134;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1135)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1137){s1=peg$c1137;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1138)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1139){s1=peg$c1139;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1140)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1142){s1=peg$c1142;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1144){s1=peg$c1144;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1145)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1147){s1=peg$c1147;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1148)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1149){s1=peg$c1149;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1150)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1152){s1=peg$c1152;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1153)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1154){s1=peg$c1154;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1157){s1=peg$c1157;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1158)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1159){s1=peg$c1159;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1160)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1162){s1=peg$c1162;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1163)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1164){s1=peg$c1164;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1165)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1167){s1=peg$c1167;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1168)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1169){s1=peg$c1169;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1170)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1172){s1=peg$c1172;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1174){s1=peg$c1174;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1175)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1177){s1=peg$c1177;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1178)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1179){s1=peg$c1179;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1180)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1182){s1=peg$c1182;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1183)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseSvgColor(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseSvgColorLabel();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1184(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb3(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1187(s2,s3,s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb6(){var s0,s1,s2,s3,s4,s5,s6,s7,s8;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseWS();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){peg$savedPos=s0;s1=peg$c1188(s2,s3,s4,s5,s6,s7);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba4(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1189(s2,s3,s4,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba8(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s10=peg$parseWS();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){peg$savedPos=s0;s1=peg$c1190(s2,s3,s4,s5,s6,s7,s8,s9);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseColor(){var s0;peg$silentFails++;s0=peg$parseSvgColor();if(s0===peg$FAILED){s0=peg$parseRgba8();if(s0===peg$FAILED){s0=peg$parseRgb6();if(s0===peg$FAILED){s0=peg$parseRgba4();if(s0===peg$FAILED){s0=peg$parseRgb3()}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseArrowItemKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1192){s0=peg$c1192;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1193)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1194){s0=peg$c1194;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1195)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1196){s0=peg$c1196;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1197)}}}}return s0}function peg$parseArrowItem(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseArrowItemKey();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1202(s2,s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSingleEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1206(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1203)}}return s0}function peg$parseTransitionLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1210(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1207)}}return s0}function peg$parseArrowItems(){var s0,s1;s0=peg$parseSingleEdgeColor();if(s0===peg$FAILED){s0=peg$parseTransitionLineStyle();if(s0===peg$FAILED){s0=[];s1=peg$parseArrowItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseArrowItem()}}else{s0=peg$FAILED}}}return s0}function peg$parseArrowDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseArrowItems();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrowProbability(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseNonNegNumber();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===37){s2=peg$c1216;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1217)}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1218(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelList(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===91){s1=peg$c1219;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1220)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}while(s4!==peg$FAILED){s3.push(s4);s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===93){s4=peg$c1221;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1222)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1223(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelOrLabelList(){var s0;s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}return s0}function peg$parseStripe(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1224){s1=peg$c1224;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1225)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1226(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1227){s1=peg$c1227;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1228)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1229(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseCycle(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===43){s1=peg$c1230;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1231)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1232(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===45){s1=peg$c1233;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1234)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1235(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1236){s1=peg$c1236;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1237)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1238()}s0=s1}}return s0}function peg$parseArrowTarget(){var s0;s0=peg$parseStripe();if(s0===peg$FAILED){s0=peg$parseCycle();if(s0===peg$FAILED){s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}}}return s0}function peg$parseSubexp(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15,s16,s17,s18;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseActionLabel();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseArrowProbability();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseArrowDesc();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseArrow();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){s10=peg$parseArrowDesc();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){s12=peg$parseArrowProbability();if(s12===peg$FAILED){s12=null}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){s14=peg$parseActionLabel();if(s14===peg$FAILED){s14=null}if(s14!==peg$FAILED){s15=peg$parseWS();if(s15===peg$FAILED){s15=null}if(s15!==peg$FAILED){s16=peg$parseArrowTarget();if(s16!==peg$FAILED){s17=peg$parseWS();if(s17===peg$FAILED){s17=null}if(s17!==peg$FAILED){s18=peg$parseSubexp();if(s18===peg$FAILED){s18=null}if(s18!==peg$FAILED){peg$savedPos=s0;s1=peg$c1239(s2,s4,s6,s8,s10,s12,s14,s16,s18);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseExp(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseArrowTarget();if(s1!==peg$FAILED){s2=peg$parseSubexp();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1240(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseValidationItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseValidationKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1245(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationItems(){var s0,s1;s0=[];s1=peg$parseValidationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseValidationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigValidation(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1246){s2=peg$c1246;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1247)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseValidationItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1250(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseGvizLayout(){var s0;if(input.substr(peg$currPos,3)===peg$c1251){s0=peg$c1251;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1252)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1253){s0=peg$c1253;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1254)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c1255){s0=peg$c1255;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1256)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1257){s0=peg$c1257;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1258)}}}}}return s0}function peg$parseStateItems(){var s0,s1;s0=[];s1=peg$parseStateDeclarationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseStateDeclarationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1261(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1262){s2=peg$c1262;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1263)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1264(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1265){s2=peg$c1265;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1266)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1267(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigActiveState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1268){s2=peg$c1268;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1269)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1270(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigTerminalState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1271){s2=peg$c1271;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1272)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1273(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigHookedState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1274){s2=peg$c1274;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1275)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1276(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigAnyState(){var s0;s0=peg$parseConfigState();if(s0===peg$FAILED){s0=peg$parseConfigStartState();if(s0===peg$FAILED){s0=peg$parseConfigEndState();if(s0===peg$FAILED){s0=peg$parseConfigActiveState();if(s0===peg$FAILED){s0=peg$parseConfigTerminalState();if(s0===peg$FAILED){s0=peg$parseConfigHookedState()}}}}}return s0}function peg$parseActionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseActionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseActionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1277(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseActionItems(){var s0,s1;s0=[];s1=peg$parseActionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseActionItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigAction(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1278){s2=peg$c1278;peg$currPos+=6}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1279)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseActionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1280(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseTransitionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseTransitionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1281(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionItems(){var s0,s1;s0=peg$parseGraphDefaultEdgeColor();if(s0===peg$FAILED){s0=[];s1=peg$parseTransitionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTransitionItem()}}else{s0=peg$FAILED}}return s0}function peg$parseGraphDefaultEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1283(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1282)}}return s0}function peg$parseConfigTransition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1284){s2=peg$c1284;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1285)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseTransitionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1286(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphLayout(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1287){s2=peg$c1287;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1288)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizLayout();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1289(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1290){s2=peg$c1290;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1291)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1292(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1293){s2=peg$c1293;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1294)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1295(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphBgColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1296){s2=peg$c1296;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1297)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1298(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfig(){var s0;peg$silentFails++;s0=peg$parseConfigGraphLayout();if(s0===peg$FAILED){s0=peg$parseConfigStartNodes();if(s0===peg$FAILED){s0=peg$parseConfigEndNodes();if(s0===peg$FAILED){s0=peg$parseConfigTransition();if(s0===peg$FAILED){s0=peg$parseConfigAction();if(s0===peg$FAILED){s0=peg$parseConfigAnyState();if(s0===peg$FAILED){s0=peg$parseConfigValidation();if(s0===peg$FAILED){s0=peg$parseConfigGraphBgColor()}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1299)}}return s0}function peg$parseLicenseOrLabelOrList(){var s0;if(input.substr(peg$currPos,3)===peg$c1300){s0=peg$c1300;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1301)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1302){s0=peg$c1302;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1303)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1304){s0=peg$c1304;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1305)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1306){s0=peg$c1306;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1307)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1308){s0=peg$c1308;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1309)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c1310){s0=peg$c1310;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1311)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1312){s0=peg$c1312;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1313)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1314){s0=peg$c1314;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1315)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1316){s0=peg$c1316;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1317)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1318){s0=peg$c1318;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1319)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1320){s0=peg$c1320;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1321)}}if(s0===peg$FAILED){s0=peg$parseLabel();if(s0===peg$FAILED){s0=peg$parseLabelList()}}}}}}}}}}}}return s0}function peg$parseDirection(){var s0;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c1323){s0=peg$c1323;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1324)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1325){s0=peg$c1325;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1326)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1327){s0=peg$c1327;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1328)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1329){s0=peg$c1329;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1330)}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1322)}}return s0}function peg$parseHookDefinition(){var s0;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c1332){s0=peg$c1332;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1333)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1334){s0=peg$c1334;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1335)}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1331)}}return s0}function peg$parseMachineAuthor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1336){s2=peg$c1336;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1337)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1338(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineContributor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,19)===peg$c1339){s2=peg$c1339;peg$currPos+=19}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1340)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1341(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineComment(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1342){s2=peg$c1342;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1343)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1344(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,18)===peg$c1345){s2=peg$c1345;peg$currPos+=18}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1346)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseURL();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1347(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineName(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1348){s2=peg$c1348;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1349)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1350(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1354){s2=peg$c1354;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1355)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1356(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLicense(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1357){s2=peg$c1357;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1358)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLicenseOrLabelOrList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1359(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLanguage(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1360){s2=peg$c1360;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1361)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1362(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseFslVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1363){s2=peg$c1363;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1364)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1365(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineTheme(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1366){s2=peg$c1366;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1367)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseTheme();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1368(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineFlow(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1369){s2=peg$c1369;peg$currPos+=4}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1370)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseDirection();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1371(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineHookDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1372){s2=peg$c1372;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1373)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseHookDefinition();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1374(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseDotPreamble(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1375){s2=peg$c1375;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1376)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseString();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1377(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineAttribute(){var s0;peg$silentFails++;s0=peg$parseFslVersion();if(s0===peg$FAILED){s0=peg$parseMachineName();if(s0===peg$FAILED){s0=peg$parseMachineAuthor();if(s0===peg$FAILED){s0=peg$parseMachineContributor();if(s0===peg$FAILED){s0=peg$parseMachineComment();if(s0===peg$FAILED){s0=peg$parseMachineDefinition();if(s0===peg$FAILED){s0=peg$parseMachineVersion();if(s0===peg$FAILED){s0=peg$parseMachineLicense();if(s0===peg$FAILED){s0=peg$parseMachineLanguage();if(s0===peg$FAILED){s0=peg$parseMachineTheme();if(s0===peg$FAILED){s0=peg$parseDotPreamble();if(s0===peg$FAILED){s0=peg$parseMachineFlow();if(s0===peg$FAILED){s0=peg$parseMachineHookDefinition()}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1378)}}return s0}function peg$parsePropertyVal(){var s0;s0=peg$parseString();if(s0===peg$FAILED){s0=peg$parseBoolean();if(s0===peg$FAILED){s0=peg$parseJsNumericLiteral();if(s0===peg$FAILED){s0=peg$parseNull();if(s0===peg$FAILED){s0=peg$parseUndefined()}}}}return s0}function peg$parseSdStateLabel(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1379){s2=peg$c1379;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1380)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1381(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1382){s2=peg$c1382;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1383)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1384(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateTextColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1386){s2=peg$c1386;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1387)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1388(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1385)}}return s0}function peg$parseSdStateBackgroundColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1390){s2=peg$c1390;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1391)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1392(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1389)}}return s0}function peg$parseSdStateBorderColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1394){s2=peg$c1394;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1395)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1396(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1393)}}return s0}function peg$parseSdStateShape(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1398){s2=peg$c1398;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1399)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizShape();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1400(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1397)}}return s0}function peg$parseSdStateCorners(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1402){s2=peg$c1402;peg$currPos+=7}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1403)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseCorners();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1404(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1401)}}return s0}function peg$parseSdStateLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1407){s2=peg$c1407;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1408)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1405)}}return s0}function peg$parseSdStateProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1412(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1415(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1409)}}return s0}function peg$parseStateDeclarationItem(){var s0;s0=peg$parseSdStateLabel();if(s0===peg$FAILED){s0=peg$parseSdStateColor();if(s0===peg$FAILED){s0=peg$parseSdStateTextColor();if(s0===peg$FAILED){s0=peg$parseSdStateBackgroundColor();if(s0===peg$FAILED){s0=peg$parseSdStateBorderColor();if(s0===peg$FAILED){s0=peg$parseSdStateShape();if(s0===peg$FAILED){s0=peg$parseSdStateCorners();if(s0===peg$FAILED){s0=peg$parseSdStateLineStyle();if(s0===peg$FAILED){s0=peg$parseSdStateProperty()}}}}}}}}return s0}function peg$parseStateDeclarationDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$parseStateDeclarationItem();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseStateDeclarationItem()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseStateDeclaration(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateDeclarationDesc();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1416(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNamedList(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===38){s2=peg$c1417;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1418)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseLabelOrLabelList();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1419(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1420(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s6=peg$c1413;peg$currPos+=8}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1421(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1422(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s6=peg$c1200;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){peg$savedPos=s0;s1=peg$c1423(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}}return s0}function peg$parseRegularArrangeDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1424){s1=peg$c1424;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1425)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1426(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeStartDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1427){s1=peg$c1427;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1428)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1429(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeEndDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1430){s1=peg$c1430;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1431)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1432(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeDeclaration(){var s0;peg$silentFails++;s0=peg$parseArrangeStartDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeEndDeclaration();if(s0===peg$FAILED){s0=peg$parseRegularArrangeDeclaration()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1433)}}return s0}function peg$parseTerm(){var s0;s0=peg$parseExp();if(s0===peg$FAILED){s0=peg$parseStateDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeDeclaration();if(s0===peg$FAILED){s0=peg$parseNamedList();if(s0===peg$FAILED){s0=peg$parseMachineAttribute();if(s0===peg$FAILED){s0=peg$parseMachineProperty();if(s0===peg$FAILED){s0=peg$parseConfig()}}}}}}return s0}function peg$parseTermList(){var s0,s1;s0=[];s1=peg$parseTerm();while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTerm()}return s0}peg$result=peg$startRuleFunction();if(peg$result!==peg$FAILED&&peg$currPos===input.length){return peg$result}else{if(peg$result!==peg$FAILED&&peg$currPos":case"→":case"=>":case"⇒":case"~>":case"↛":return"right";case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"left";case"<->":case"↔":case"<-=>":case"←⇒":case"←=>":case"<-⇒":case"<-~>":case"←↛":case"←~>":case"<-↛":case"<=>":case"⇔":case"<=->":case"⇐→":case"⇐->":case"<=→":case"<=~>":case"⇐↛":case"⇐~>":case"<=↛":case"<~>":case"↮":case"<~->":case"↚→":case"↚->":case"<~→":case"<~=>":case"↚⇒":case"↚=>":case"<~⇒":return"both";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_left_kind(arrow){switch(String(arrow)){case"->":case"→":case"=>":case"⇒":case"~>":case"↛":return"none";case"<-":case"←":case"<->":case"↔":case"<-=>":case"←⇒":case"<-~>":case"←↛":return"legal";case"<=":case"⇐":case"<=>":case"⇔":case"<=->":case"⇐→":case"<=~>":case"⇐↛":return"main";case"<~":case"↚":case"<~>":case"↮":case"<~->":case"↚→":case"<~=>":case"↚⇒":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_right_kind(arrow){switch(String(arrow)){case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"none";case"->":case"→":case"<->":case"↔":case"<=->":case"⇐→":case"<~->":case"↚→":return"legal";case"=>":case"⇒":case"<=>":case"⇔":case"<-=>":case"←⇒":case"<~=>":case"↚⇒":return"main";case"~>":case"↛":case"<~>":case"↮":case"<-~>":case"←↛":case"<=~>":case"⇐↛":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function makeTransition(this_se,from,to,isRight,_wasList,_wasIndex){const kind=isRight?arrow_right_kind(this_se.kind):arrow_left_kind(this_se.kind),edge={from:from,to:to,kind:kind,forced_only:kind==="forced",main_path:kind==="main"};const action=isRight?"r_action":"l_action",probability=isRight?"r_probability":"l_probability";if(this_se[action]){edge.action=this_se[action]}if(this_se[probability]){edge.probability=this_se[probability]}return edge}function wrap_parse(input,options){return peg$parse(input,options||{})}function compile_rule_transition_step(acc,from,to,this_se,next_se){const edges=[];const uFrom=Array.isArray(from)?from:[from],uTo=Array.isArray(to)?to:[to];uFrom.map((f=>{uTo.map((t=>{const right=makeTransition(this_se,f,t,true);if(right.kind!=="none"){edges.push(right)}const left=makeTransition(this_se,t,f,false);if(left.kind!=="none"){edges.push(left)}}))}));const new_acc=acc.concat(edges);if(next_se){return compile_rule_transition_step(new_acc,to,next_se.to,next_se,next_se.se)}else{return new_acc}}function compile_rule_handle_transition(rule){return compile_rule_transition_step([],rule.from,rule.se.to,rule.se,rule.se.se)}function compile_rule_handler(rule){if(rule.key==="transition"){return{agg_as:"transition",val:compile_rule_handle_transition(rule)}}if(rule.key==="machine_language"){return{agg_as:"machine_language",val:reduceTo6391.reduce(rule.value)}}if(rule.key==="property_definition"){const ret={agg_as:"property_definition",val:{name:rule.name}};if(rule.hasOwnProperty("default_value")){ret.val.default_value=rule.default_value}if(rule.hasOwnProperty("required")){ret.val.required=rule.required}return ret}if(rule.key==="state_declaration"){if(!rule.name){throw new JssmError(undefined,"State declarations must have a name")}return{agg_as:"state_declaration",val:{state:rule.name,declarations:rule.value}}}if(["arrange_declaration","arrange_start_declaration","arrange_end_declaration"].includes(rule.key)){return{agg_as:rule.key,val:[rule.value]}}const tautologies=["graph_layout","start_states","end_states","machine_name","machine_version","machine_comment","machine_author","machine_contributor","machine_definition","machine_reference","machine_license","fsl_version","state_config","theme","flow","dot_preamble","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_active_state_config","default_terminal_state_config"];if(tautologies.includes(rule.key)){return{agg_as:rule.key,val:rule.value}}throw new JssmError(undefined,`compile_rule_handler: Unknown rule: ${JSON.stringify(rule)}`)}function compile(tree){const results={graph_layout:[],transition:[],start_states:[],end_states:[],state_config:[],state_declaration:[],fsl_version:[],machine_author:[],machine_comment:[],machine_contributor:[],machine_definition:[],machine_language:[],machine_license:[],machine_name:[],machine_reference:[],property_definition:[],state_property:{},theme:[],flow:[],dot_preamble:[],arrange_declaration:[],arrange_start_declaration:[],arrange_end_declaration:[],machine_version:[],default_state_config:[],default_active_state_config:[],default_hooked_state_config:[],default_terminal_state_config:[],default_start_state_config:[],default_end_state_config:[]};tree.map((tr=>{const rule=compile_rule_handler(tr),agg_as=rule.agg_as,val=rule.val;results[agg_as]=results[agg_as].concat(val)}));const property_keys=results["property_definition"].map((pd=>pd.name)),repeat_props=find_repeated(property_keys);if(repeat_props.length){throw new JssmError(undefined,`Cannot repeat property definitions. Saw ${JSON.stringify(repeat_props)}`)}const assembled_transitions=[].concat(...results["transition"]);const result_cfg={start_states:results.start_states.length?results.start_states:[assembled_transitions[0].from],end_states:results.end_states,transitions:assembled_transitions,state_property:[]};const oneOnlyKeys=["graph_layout","machine_name","machine_version","machine_comment","fsl_version","machine_license","machine_definition","machine_language","theme","flow","dot_preamble"];oneOnlyKeys.map((oneOnlyKey=>{if(results[oneOnlyKey].length>1){throw new JssmError(undefined,`May only have one ${oneOnlyKey} statement maximum: ${JSON.stringify(results[oneOnlyKey])}`)}else{if(results[oneOnlyKey].length){result_cfg[oneOnlyKey]=results[oneOnlyKey][0]}}}));["arrange_declaration","arrange_start_declaration","arrange_end_declaration","machine_author","machine_contributor","machine_reference","state_declaration","property_definition","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_terminal_state_config","default_active_state_config"].map((multiKey=>{if(results[multiKey].length){result_cfg[multiKey]=results[multiKey]}}));results.state_declaration.forEach((sd=>{sd.declarations.forEach((decl=>{if(decl.key==="state_property"){const label=name_bind_prop_and_state(decl.name,sd.state);if(result_cfg.state_property.findIndex((c=>c.name===label))!==-1){throw new JssmError(undefined,`A state may only bind a property once (${sd.state} re-binds ${decl.name})`)}else{result_cfg.state_property.push({name:label,default_value:decl.value})}}}))}));return result_cfg}function make(plan){return compile(wrap_parse(plan))}function transfer_state_properties(state_decl){state_decl.declarations.map((d=>{switch(d.key){case"shape":state_decl.shape=d.value;break;case"color":state_decl.color=d.value;break;case"corners":state_decl.corners=d.value;break;case"line-style":state_decl.lineStyle=d.value;break;case"text-color":state_decl.textColor=d.value;break;case"background-color":state_decl.backgroundColor=d.value;break;case"state-label":state_decl.stateLabel=d.value;break;case"border-color":state_decl.borderColor=d.value;break;case"state_property":state_decl.property={name:d.name,value:d.value};break;default:throw new JssmError(undefined,`Unknown state property: '${JSON.stringify(d)}'`)}}));return state_decl}function state_style_condense(jssk){const state_style={};if(Array.isArray(jssk)){jssk.forEach(((key,i)=>{if(typeof key!=="object"){throw new JssmError(this,`invalid state item ${i} in state_style_condense list: ${JSON.stringify(key)}`)}switch(key.key){case"shape":if(state_style.shape!==undefined){throw new JssmError(this,`cannot redefine 'shape' in state_style_condense, already defined`)}state_style.shape=key.value;break;case"color":if(state_style.color!==undefined){throw new JssmError(this,`cannot redefine 'color' in state_style_condense, already defined`)}state_style.color=key.value;break;case"text-color":if(state_style.textColor!==undefined){throw new JssmError(this,`cannot redefine 'text-color' in state_style_condense, already defined`)}state_style.textColor=key.value;break;case"corners":if(state_style.corners!==undefined){throw new JssmError(this,`cannot redefine 'corners' in state_style_condense, already defined`)}state_style.corners=key.value;break;case"line-style":if(state_style.lineStyle!==undefined){throw new JssmError(this,`cannot redefine 'line-style' in state_style_condense, already defined`)}state_style.lineStyle=key.value;break;case"background-color":if(state_style.backgroundColor!==undefined){throw new JssmError(this,`cannot redefine 'background-color' in state_style_condense, already defined`)}state_style.backgroundColor=key.value;break;case"state-label":if(state_style.stateLabel!==undefined){throw new JssmError(this,`cannot redefine 'state-label' in state_style_condense, already defined`)}state_style.stateLabel=key.value;break;case"border-color":if(state_style.borderColor!==undefined){throw new JssmError(this,`cannot redefine 'border-color' in state_style_condense, already defined`)}state_style.borderColor=key.value;break;default:throw new JssmError(this,`unknown state style key in condense: ${key.key}`)}}))}else if(jssk===undefined);else{throw new JssmError(this,"state_style_condense received a non-array")}return state_style}class Machine{constructor({start_states:start_states,end_states:end_states=[],complete:complete=[],transitions:transitions,machine_author:machine_author,machine_comment:machine_comment,machine_contributor:machine_contributor,machine_definition:machine_definition,machine_language:machine_language,machine_license:machine_license,machine_name:machine_name,machine_version:machine_version,state_declaration:state_declaration,property_definition:property_definition,state_property:state_property,fsl_version:fsl_version,dot_preamble:dot_preamble=undefined,arrange_declaration:arrange_declaration=[],arrange_start_declaration:arrange_start_declaration=[],arrange_end_declaration:arrange_end_declaration=[],theme:theme="default",flow:flow="down",graph_layout:graph_layout="dot",instance_name:instance_name,history:history,data:data,default_state_config:default_state_config,default_active_state_config:default_active_state_config,default_hooked_state_config:default_hooked_state_config,default_terminal_state_config:default_terminal_state_config,default_start_state_config:default_start_state_config,default_end_state_config:default_end_state_config}){this._instance_name=instance_name;this._state=start_states[0];this._states=new Map;this._state_declarations=new Map;this._edges=[];this._edge_map=new Map;this._named_transitions=new Map;this._actions=new Map;this._reverse_actions=new Map;this._reverse_action_targets=new Map;this._start_states=new Set(start_states);this._end_states=new Set(end_states);this._machine_author=array_box_if_string(machine_author);this._machine_comment=machine_comment;this._machine_contributor=array_box_if_string(machine_contributor);this._machine_definition=machine_definition;this._machine_language=machine_language;this._machine_license=machine_license;this._machine_name=machine_name;this._machine_version=machine_version;this._raw_state_declaration=state_declaration||[];this._fsl_version=fsl_version;this._arrange_declaration=arrange_declaration;this._arrange_start_declaration=arrange_start_declaration;this._arrange_end_declaration=arrange_end_declaration;this._dot_preamble=dot_preamble;this._theme=theme;this._flow=flow;this._graph_layout=graph_layout;this._has_hooks=false;this._has_basic_hooks=false;this._has_named_hooks=false;this._has_entry_hooks=false;this._has_exit_hooks=false;this._has_global_action_hooks=false;this._has_transition_hooks=true;this._hooks=new Map;this._named_hooks=new Map;this._entry_hooks=new Map;this._exit_hooks=new Map;this._global_action_hooks=new Map;this._any_action_hook=undefined;this._standard_transition_hook=undefined;this._main_transition_hook=undefined;this._forced_transition_hook=undefined;this._any_transition_hook=undefined;this._has_post_hooks=false;this._has_post_basic_hooks=false;this._has_post_named_hooks=false;this._has_post_entry_hooks=false;this._has_post_exit_hooks=false;this._has_post_global_action_hooks=false;this._has_post_transition_hooks=true;this._post_hooks=new Map;this._post_named_hooks=new Map;this._post_entry_hooks=new Map;this._post_exit_hooks=new Map;this._post_global_action_hooks=new Map;this._post_any_action_hook=undefined;this._post_standard_transition_hook=undefined;this._post_main_transition_hook=undefined;this._post_forced_transition_hook=undefined;this._post_any_transition_hook=undefined;this._data=data;this._property_keys=new Set;this._default_properties=new Map;this._state_properties=new Map;this._required_properties=new Set;this._state_style=state_style_condense(default_state_config);this._active_state_style=state_style_condense(default_active_state_config);this._hooked_state_style=state_style_condense(default_hooked_state_config);this._terminal_state_style=state_style_condense(default_terminal_state_config);this._start_state_style=state_style_condense(default_start_state_config);this._end_state_style=state_style_condense(default_end_state_config);this._history_length=history||0;this._history=new circular_buffer(this._history_length);this._state_labels=new Map;if(state_declaration){state_declaration.map((state_decl=>{if(this._state_declarations.has(state_decl.state)){throw new JssmError(this,`Added the same state declaration twice: ${JSON.stringify(state_decl.state)}`)}this._state_declarations.set(state_decl.state,transfer_state_properties(state_decl))}))}[...this._state_declarations].map((sd=>{const[key,decl]=sd,labelled=decl.declarations.filter((d=>d.key==="state-label"));if(labelled.length>1){throw new JssmError(this,`state ${key} may only have one state-label; has ${labelled.length}`)}if(labelled.length===1){this._state_labels.set(key,labelled[0].value)}}));transitions.map((tr=>{if(tr.from===undefined){throw new JssmError(this,`transition must define 'from': ${JSON.stringify(tr)}`)}if(tr.to===undefined){throw new JssmError(this,`transition must define 'to': ${JSON.stringify(tr)}`)}const cursor_from=this._states.get(tr.from)||{name:tr.from,from:[],to:[],complete:complete.includes(tr.from)};if(!this._states.has(tr.from)){this._new_state(cursor_from)}const cursor_to=this._states.get(tr.to)||{name:tr.to,from:[],to:[],complete:complete.includes(tr.to)};if(!this._states.has(tr.to)){this._new_state(cursor_to)}if(cursor_from.to.includes(tr.to)){throw new JssmError(this,`already has ${JSON.stringify(tr.from)} to ${JSON.stringify(tr.to)}`)}else{cursor_from.to.push(tr.to);cursor_to.from.push(tr.from)}this._edges.push(tr);const thisEdgeId=this._edges.length-1;if(tr.name){if(this._named_transitions.has(tr.name)){throw new JssmError(this,`named transition "${JSON.stringify(tr.name)}" already created`)}else{this._named_transitions.set(tr.name,thisEdgeId)}}const from_mapping=this._edge_map.get(tr.from)||new Map;if(!this._edge_map.has(tr.from)){this._edge_map.set(tr.from,from_mapping)}from_mapping.set(tr.to,thisEdgeId);if(tr.action){let actionMap=this._actions.get(tr.action);if(!actionMap){actionMap=new Map;this._actions.set(tr.action,actionMap)}if(actionMap.has(tr.from)){throw new JssmError(this,`action ${JSON.stringify(tr.action)} already attached to origin ${JSON.stringify(tr.from)}`)}else{actionMap.set(tr.from,thisEdgeId)}let rActionMap=this._reverse_actions.get(tr.from);if(!rActionMap){rActionMap=new Map;this._reverse_actions.set(tr.from,rActionMap)}rActionMap.set(tr.action,thisEdgeId);if(!this._reverse_action_targets.has(tr.to)){this._reverse_action_targets.set(tr.to,new Map)}}}));if(Array.isArray(property_definition)){property_definition.forEach((pr=>{this._property_keys.add(pr.name);if(pr.hasOwnProperty("default_value")){this._default_properties.set(pr.name,pr.default_value)}if(pr.hasOwnProperty("required")&&pr.required===true){this._required_properties.add(pr.name)}}))}if(Array.isArray(state_property)){state_property.forEach((sp=>{this._state_properties.set(sp.name,sp.default_value)}))}this._state_properties.forEach(((_value,key)=>{const inside=JSON.parse(key);if(Array.isArray(inside)){const j_property=inside[0];if(typeof j_property==="string"){const j_state=inside[1];if(typeof j_state==="string"){if(!this.known_prop(j_property)){throw new JssmError(this,`State "${j_state}" has property "${j_property}" which is not globally declared`)}}}}}));this._required_properties.forEach((dp_key=>{if(this._default_properties.has(dp_key)){throw new JssmError(this,`The property "${dp_key}" is required, but also has a default; these conflict`)}this.states().forEach((s=>{const bound_name=name_bind_prop_and_state(dp_key,s);if(!this._state_properties.has(bound_name)){throw new JssmError(this,`State "${s}" is missing required property "${dp_key}"`)}}))}))}_new_state(state_config){if(this._states.has(state_config.name)){throw new JssmError(this,`state ${JSON.stringify(state_config.name)} already exists`)}this._states.set(state_config.name,state_config);return state_config.name}state(){return this._state}label_for(state){return this._state_labels.get(state)}data(){return this._data}prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{return undefined}}strict_prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{throw new JssmError(this,`Strictly requested a prop '${name}' which doesn't exist on current state '${this.state()}' and has no default`)}}props(){const ret={};this.known_props().forEach((p=>ret[p]=this.prop(p)));return ret}known_prop(prop_name){return this._property_keys.has(prop_name)}known_props(){return[...this._property_keys]}is_start_state(whichState){return this._start_states.has(whichState)}is_end_state(whichState){return this._end_states.has(whichState)}state_is_final(whichState){return this.state_is_terminal(whichState)||this.state_is_complete(whichState)}is_final(){return this.state_is_final(this.state())}serialize(comment){return{comment:comment,state:this._state,data:this._data,jssm_version:version,history:this._history.toArray(),history_capacity:this._history.capacity,timestamp:(new Date).getTime()}}graph_layout(){return this._graph_layout}dot_preamble(){return this._dot_preamble}machine_author(){return this._machine_author}machine_comment(){return this._machine_comment}machine_contributor(){return this._machine_contributor}machine_definition(){return this._machine_definition}machine_language(){return this._machine_language}machine_license(){return this._machine_license}machine_name(){return this._machine_name}machine_version(){return this._machine_version}raw_state_declarations(){return this._raw_state_declaration}state_declaration(which){return this._state_declarations.get(which)}state_declarations(){return this._state_declarations}fsl_version(){return this._fsl_version}machine_state(){return{internal_state_impl_version:1,actions:this._actions,edge_map:this._edge_map,edges:this._edges,named_transitions:this._named_transitions,reverse_actions:this._reverse_actions,state:this._state,states:this._states}}states(){return Array.from(this._states.keys())}state_for(whichState){const state=this._states.get(whichState);if(state){return state}else{throw new JssmError(this,"No such state",{requested_state:whichState})}}has_state(whichState){return this._states.get(whichState)!==undefined}list_edges(){return this._edges}list_named_transitions(){return this._named_transitions}list_actions(){return Array.from(this._actions.keys())}theme(){return this._theme}flow(){return this._flow}get_transition_by_state_names(from,to){const emg=this._edge_map.get(from);if(emg){return emg.get(to)}else{return undefined}}lookup_transition_for(from,to){const id=this.get_transition_by_state_names(from,to);return id===undefined||id===null?undefined:this._edges[id]}list_transitions(whichState=this.state()){return{entrances:this.list_entrances(whichState),exits:this.list_exits(whichState)}}list_entrances(whichState=this.state()){return(this._states.get(whichState)||{from:undefined}).from||[]}list_exits(whichState=this.state()){return(this._states.get(whichState)||{to:undefined}).to||[]}probable_exits_for(whichState){const wstate=this._states.get(whichState);if(!wstate){throw new JssmError(this,`No such state ${JSON.stringify(whichState)} in probable_exits_for`)}const wstate_to=wstate.to,wtf=wstate_to.map((ws=>this.lookup_transition_for(this.state(),ws))).filter(Boolean);return wtf}probabilistic_transition(){const selected=weighted_rand_select(this.probable_exits_for(this.state()));return this.transition(selected.to)}probabilistic_walk(n){return seq(n).map((()=>{const state_was=this.state();this.probabilistic_transition();return state_was})).concat([this.state()])}probabilistic_histo_walk(n){return histograph(this.probabilistic_walk(n))}actions(whichState=this.state()){const wstate=this._reverse_actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_states_having_action(whichState){const wstate=this._actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_exit_actions(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>filtered.action))}probable_action_exits(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>({action:filtered.action,probability:filtered.probability})))}is_unenterable(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_entrances(whichState).length===0}has_unenterables(){return this.states().some((x=>this.is_unenterable(x)))}is_terminal(){return this.state_is_terminal(this.state())}state_is_terminal(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_exits(whichState).length===0}has_terminals(){return this.states().some((x=>this.state_is_terminal(x)))}is_complete(){return this.state_is_complete(this.state())}state_is_complete(whichState){const wstate=this._states.get(whichState);if(wstate){return wstate.complete}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}has_completes(){return this.states().some((x=>this.state_is_complete(x)))}set_hook(HookDesc){switch(HookDesc.kind){case"hook":this._hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_hooks=true;this._has_basic_hooks=true;break;case"named":this._named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_hooks=true;this._has_named_hooks=true;break;case"global action":this._global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_hooks=true;this._has_global_action_hooks=true;break;case"any action":this._any_action_hook=HookDesc.handler;this._has_hooks=true;break;case"standard transition":this._standard_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"main transition":this._main_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"forced transition":this._forced_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"any transition":this._any_transition_hook=HookDesc.handler;this._has_hooks=true;break;case"entry":this._entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_hooks=true;this._has_entry_hooks=true;break;case"exit":this._exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_hooks=true;this._has_exit_hooks=true;break;case"post hook":this._post_hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_post_hooks=true;this._has_post_basic_hooks=true;break;case"post named":this._post_named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_post_hooks=true;this._has_post_named_hooks=true;break;case"post global action":this._post_global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_post_hooks=true;this._has_post_global_action_hooks=true;break;case"post any action":this._post_any_action_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post standard transition":this._post_standard_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post main transition":this._post_main_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post forced transition":this._post_forced_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post any transition":this._post_any_transition_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post entry":this._post_entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_post_entry_hooks=true;this._has_post_hooks=true;break;case"post exit":this._post_exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_post_exit_hooks=true;this._has_post_hooks=true;break;default:throw new JssmError(this,`Unknown hook type ${HookDesc.kind}, should be impossible`)}}hook(from,to,handler){this.set_hook({kind:"hook",from:from,to:to,handler:handler});return this}hook_action(from,to,action,handler){this.set_hook({kind:"named",from:from,to:to,action:action,handler:handler});return this}hook_global_action(action,handler){this.set_hook({kind:"global action",action:action,handler:handler});return this}hook_any_action(handler){this.set_hook({kind:"any action",handler:handler});return this}hook_standard_transition(handler){this.set_hook({kind:"standard transition",handler:handler});return this}hook_main_transition(handler){this.set_hook({kind:"main transition",handler:handler});return this}hook_forced_transition(handler){this.set_hook({kind:"forced transition",handler:handler});return this}hook_any_transition(handler){this.set_hook({kind:"any transition",handler:handler});return this}hook_entry(to,handler){this.set_hook({kind:"entry",to:to,handler:handler});return this}hook_exit(from,handler){this.set_hook({kind:"exit",from:from,handler:handler});return this}post_hook(from,to,handler){this.set_hook({kind:"post hook",from:from,to:to,handler:handler});return this}post_hook_action(from,to,action,handler){this.set_hook({kind:"post named",from:from,to:to,action:action,handler:handler});return this}post_hook_global_action(action,handler){this.set_hook({kind:"post global action",action:action,handler:handler});return this}post_hook_any_action(handler){this.set_hook({kind:"post any action",handler:handler});return this}post_hook_standard_transition(handler){this.set_hook({kind:"post standard transition",handler:handler});return this}post_hook_main_transition(handler){this.set_hook({kind:"post main transition",handler:handler});return this}post_hook_forced_transition(handler){this.set_hook({kind:"post forced transition",handler:handler});return this}post_hook_any_transition(handler){this.set_hook({kind:"post any transition",handler:handler});return this}post_hook_entry(to,handler){this.set_hook({kind:"post entry",to:to,handler:handler});return this}post_hook_exit(from,handler){this.set_hook({kind:"post exit",from:from,handler:handler});return this}edges_between(from,to){return this._edges.filter((edge=>edge.from===from&&edge.to===to))}transition_impl(newStateOrAction,newData,wasForced,wasAction){let valid=false,trans_type,newState,fromAction=undefined;if(wasForced){if(this.valid_force_transition(newStateOrAction,newData)){valid=true;trans_type="forced";newState=newStateOrAction}}else if(wasAction){if(this.valid_action(newStateOrAction,newData)){const edge=this.current_action_edge_for(newStateOrAction);valid=true;trans_type=edge.kind;newState=edge.to;fromAction=newStateOrAction}}else{if(this.valid_transition(newStateOrAction,newData)){if(this._has_transition_hooks){trans_type=this.edges_between(this._state,newStateOrAction)[0].kind}valid=true;newState=newStateOrAction}}const hook_args={data:this._data,action:fromAction,from:this._state,to:newState,forced:wasForced,trans_type:trans_type};if(valid){if(this._has_hooks){function update_fields(res){if(res.hasOwnProperty("data")){hook_args.data=res.data;data_changed=true}}let data_changed=false;if(wasAction){const outcome=abstract_hook_step(this._any_action_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome);const outcome2=abstract_hook_step(this._global_action_hooks.get(newStateOrAction),hook_args);if(outcome2.pass===false){return false}update_fields(outcome2)}if(this._any_transition_hook!==undefined){const outcome=abstract_hook_step(this._any_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_exit_hooks){const outcome=abstract_hook_step(this._exit_hooks.get(this._state),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_named_hooks){if(wasAction){const nhn=named_hook_name(this._state,newState,newStateOrAction),outcome=abstract_hook_step(this._named_hooks.get(nhn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}}if(this._has_basic_hooks){const hn=hook_name(this._state,newState),outcome=abstract_hook_step(this._hooks.get(hn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="legal"){const outcome=abstract_hook_step(this._standard_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="main"){const outcome=abstract_hook_step(this._main_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="forced"){const outcome=abstract_hook_step(this._forced_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_entry_hooks){const outcome=abstract_hook_step(this._entry_hooks.get(newState),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState;if(data_changed){this._data=hook_args.data}}else{if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState}}else{return false}if(this._has_post_hooks){if(wasAction){if(this._post_any_action_hook!==undefined){this._post_any_action_hook(hook_args)}const pgah=this._post_global_action_hooks.get(hook_args.action);if(pgah!==undefined){pgah(hook_args)}}if(this._post_any_transition_hook!==undefined){this._post_any_transition_hook(hook_args)}if(this._has_post_exit_hooks){const peh=this._post_exit_hooks.get(hook_args.from);if(peh!==undefined){peh(hook_args)}}if(this._has_post_named_hooks){if(wasAction){const nhn=named_hook_name(hook_args.from,hook_args.to,hook_args.action),pnh=this._post_named_hooks.get(nhn);if(pnh!==undefined){pnh(hook_args)}}}if(this._has_post_basic_hooks){const hook=this._post_hooks.get(hook_name(hook_args.from,hook_args.to));if(hook!==undefined){hook(hook_args)}}if(trans_type==="legal"){if(this._post_standard_transition_hook!==undefined){this._post_standard_transition_hook(hook_args)}}if(trans_type==="main"){if(this._post_main_transition_hook!==undefined){this._post_main_transition_hook(hook_args)}}if(trans_type==="forced"){if(this._post_forced_transition_hook!==undefined){this._post_forced_transition_hook(hook_args)}}if(this._has_post_entry_hooks){const hook=this._post_entry_hooks.get(hook_args.to);if(hook!==undefined){hook(hook_args)}}}return true}get history(){return this._history.toArray()}get history_inclusive(){const ret=this._history.toArray();ret.push([this.state(),this.data()]);return ret}get history_length(){return this._history_length}set history_length(to){this._history_length=to;this._history.resize(to,true)}action(actionName,newData){return this.transition_impl(actionName,newData,false,true)}get standard_state_style(){return this._state_style}get hooked_state_style(){return this._hooked_state_style}get start_state_style(){return this._start_state_style}get end_state_style(){return this._end_state_style}get terminal_state_style(){return this._terminal_state_style}get active_state_style(){return this._active_state_style}has_hooks(state){return false}style_for(state){const themes=[];const layers=[base_theme.state];themes.map((theme=>{if(theme.state){layers.push(theme.state)}}));if(this._state_style){layers.push(this._state_style)}if(this.has_hooks(state)){layers.push(base_theme.hooked);themes.map((theme=>{if(theme.hooked){layers.push(theme.hooked)}}));if(this._hooked_state_style){layers.push(this._hooked_state_style)}}if(this.state_is_terminal(state)){layers.push(base_theme.terminal);themes.map((theme=>{if(theme.terminal){layers.push(theme.terminal)}}));if(this._terminal_state_style){layers.push(this._terminal_state_style)}}if(this.is_start_state(state)){layers.push(base_theme.start);themes.map((theme=>{if(theme.start){layers.push(theme.start)}}));if(this._start_state_style){layers.push(this._start_state_style)}}if(this.is_end_state(state)){layers.push(base_theme.end);themes.map((theme=>{if(theme.end){layers.push(theme.end)}}));if(this._end_state_style){layers.push(this._end_state_style)}}if(this.state()===state){layers.push(base_theme.active);themes.map((theme=>{if(theme.active){layers.push(theme.active)}}));if(this._active_state_style){layers.push(this._active_state_style)}}const individual_style={},decl=this._state_declarations.get(state);individual_style.color=decl===null||decl===void 0?void 0:decl.color;individual_style.textColor=decl===null||decl===void 0?void 0:decl.textColor;individual_style.borderColor=decl===null||decl===void 0?void 0:decl.borderColor;individual_style.backgroundColor=decl===null||decl===void 0?void 0:decl.backgroundColor;individual_style.lineStyle=decl===null||decl===void 0?void 0:decl.lineStyle;individual_style.corners=decl===null||decl===void 0?void 0:decl.corners;individual_style.shape=decl===null||decl===void 0?void 0:decl.shape;layers.push(individual_style);return layers.reduce(((acc,cur)=>{const composite_state=acc;Object.keys(cur).forEach((key=>{var _a;return composite_state[key]=(_a=cur[key])!==null&&_a!==void 0?_a:composite_state[key]}));return composite_state}),{})}do(actionName,newData){return this.transition_impl(actionName,newData,false,true)}transition(newState,newData){return this.transition_impl(newState,newData,false,false)}go(newState,newData){return this.transition_impl(newState,newData,false,false)}force_transition(newState,newData){return this.transition_impl(newState,newData,true,false)}current_action_for(action){const action_base=this._actions.get(action);return action_base?action_base.get(this.state()):undefined}current_action_edge_for(action){const idx=this.current_action_for(action);if(idx===undefined||idx===null){throw new JssmError(this,`No such action ${JSON.stringify(action)}`)}return this._edges[idx]}valid_action(action,_newData){return this.current_action_for(action)!==undefined}valid_transition(newState,_newData){const transition_for=this.lookup_transition_for(this.state(),newState);if(!transition_for){return false}if(transition_for.forced_only){return false}return true}valid_force_transition(newState,_newData){return this.lookup_transition_for(this.state(),newState)!==undefined}instance_name(){return this._instance_name}sm(template_strings,...remainder){return sm(template_strings,...remainder)}}function sm(template_strings,...remainder){return new Machine(make(template_strings.reduce(((acc,val,idx)=>`${acc}${remainder[idx-1]}${val}`))))}function from(MachineAsString,ExtraConstructorFields){const to_decorate=make(MachineAsString);if(ExtraConstructorFields!==undefined){Object.keys(ExtraConstructorFields).map((key=>to_decorate[key]=ExtraConstructorFields[key]))}return new Machine(to_decorate)}function is_hook_complex_result(hr){if(typeof hr==="object"){if(typeof hr.pass==="boolean"){return true}}return false}function is_hook_rejection(hr){if(hr===true){return false}if(hr===undefined){return false}if(hr===false){return true}if(is_hook_complex_result(hr)){return!hr.pass}throw new TypeError("unknown hook rejection type result")}function abstract_hook_step(maybe_hook,hook_args){if(maybe_hook!==undefined){const result=maybe_hook(hook_args);if(result===undefined){return{pass:true}}if(result===true){return{pass:true}}if(result===false){return{pass:false}}if(is_hook_complex_result(result)){return result}throw new TypeError(`Unknown hook result type ${result}`)}else{return{pass:true}}}function deserialize(machine_string,ser){const machine=from(machine_string,{data:ser.data,history:ser.history_capacity});machine._state=ser.state;ser.history.forEach((history_item=>machine._history.push(history_item)));return machine}exports.Machine=Machine;exports.abstract_hook_step=abstract_hook_step;exports.arrow_direction=arrow_direction;exports.arrow_left_kind=arrow_left_kind;exports.arrow_right_kind=arrow_right_kind;exports.compile=compile;exports.constants=constants;exports.deserialize=deserialize;exports.find_repeated=find_repeated;exports.from=from;exports.gviz_shapes=gviz_shapes;exports.histograph=histograph;exports.is_hook_complex_result=is_hook_complex_result;exports.is_hook_rejection=is_hook_rejection;exports.make=make;exports.named_colors=named_colors;exports.parse=wrap_parse;exports.seq=seq;exports.shapes=shapes;exports.sm=sm;exports.state_style_condense=state_style_condense;exports.transfer_state_properties=transfer_state_properties;exports.unique=unique;exports.version=version;exports.weighted_histo_key=weighted_histo_key;exports.weighted_rand_select=weighted_rand_select;exports.weighted_sample_select=weighted_sample_select; +"use strict";Object.defineProperty(exports,"__esModule",{value:true});var reductions={abkhazian:"ab","аҧсуа бызшәа, аҧсшәа":"ab",ab:"ab",abk:"ab","аҧсуа бызшәа":"ab","аҧсшәа":"ab",afar:"aa",afaraf:"aa",aa:"aa",aar:"aa",afrikaans:"af",af:"af",afr:"af",akan:"ak",ak:"ak",aka:"ak","aka + 2":"ak",albanian:"sq",shqip:"sq",sq:"sq",sqi:"sq",alb:"sq","sqi + 4":"sq",amharic:"am","አማርኛ":"am",am:"am",amh:"am",arabic:"ar","العربية":"ar",ar:"ar",ara:"ar","ara + 30":"ar",aragonese:"an","aragonés":"an",an:"an",arg:"an",armenian:"hy","հայերեն":"hy",hy:"hy",hye:"hy",arm:"hy",assamese:"as","অসমীয়া":"as",as:"as",asm:"as",avaric:"av","авар мацӏ, магӏарул мацӏ":"av",av:"av",ava:"av","авар мацӏ":"av","магӏарул мацӏ":"av",avestan:"ae",avesta:"ae",ae:"ae",ave:"ae",aymara:"ay","aymar aru":"ay",ay:"ay",aym:"ay","aym + 2":"ay",azerbaijani:"az","azərbaycan dili":"az",az:"az",aze:"az","aze + 2":"az",bambara:"bm",bamanankan:"bm",bm:"bm",bam:"bm",bashkir:"ba","башҡорт теле":"ba",ba:"ba",bak:"ba",basque:"eu","euskara, euskera":"eu",eu:"eu",eus:"eu",baq:"eu",euskara:"eu",euskera:"eu",belarusian:"be","беларуская мова":"be",be:"be",bel:"be",bengali:"bn","বাংলা":"bn",bn:"bn",ben:"bn","bihari languages":"bh","भोजपुरी":"bh",bh:"bh",bih:"bh",bislama:"bi",bi:"bi",bis:"bi",bosnian:"bs","bosanski jezik":"bs",bs:"bs",bos:"bs",breton:"br",brezhoneg:"br",br:"br",bre:"br",bulgarian:"bg","български език":"bg",bg:"bg",bul:"bg",burmese:"my","ဗမာစာ":"my",my:"my",mya:"my",bur:"my","catalan, valencian":"ca","català, valencià":"ca",ca:"ca",cat:"ca","català":"ca","valencià":"ca",chamorro:"ch",chamoru:"ch",ch:"ch",cha:"ch",chechen:"ce","нохчийн мотт":"ce",ce:"ce",che:"ce","chichewa, chewa, nyanja":"ny","chicheŵa, chinyanja":"ny",ny:"ny",nya:"ny","chicheŵa":"ny",chinyanja:"ny",chinese:"zh","中文 (zhōngwén), 汉语, 漢語":"zh",zh:"zh",zho:"zh",chi:"zh","zho + 13":"zh","中文 (zhōngwén)":"zh","汉语":"zh","漢語":"zh",chuvash:"cv","чӑваш чӗлхи":"cv",cv:"cv",chv:"cv",cornish:"kw",kernewek:"kw",kw:"kw",cor:"kw",corsican:"co","corsu, lingua corsa":"co",co:"co",cos:"co",corsu:"co","lingua corsa":"co",cree:"cr","ᓀᐦᐃᔭᐍᐏᐣ":"cr",cr:"cr",cre:"cr","cre + 6":"cr",croatian:"hr","hrvatski jezik":"hr",hr:"hr",hrv:"hr",czech:"cs","čeština, český jazyk":"cs",cs:"cs",ces:"cs",cze:"cs","čeština":"cs","český jazyk":"cs",danish:"da",dansk:"da",da:"da",dan:"da","divehi, dhivehi, maldivian":"dv","ދިވެހި":"dv",dv:"dv",div:"dv","dutch, flemish":"nl","nederlands, vlaams":"nl",nl:"nl",nld:"nl",dut:"nl",nederlands:"nl",vlaams:"nl",dzongkha:"dz","རྫོང་ཁ":"dz",dz:"dz",dzo:"dz",english:"en",en:"en",eng:"en",esperanto:"eo",eo:"eo",epo:"eo",estonian:"et","eesti, eesti keel":"et",et:"et",est:"et","est + 2":"et",eesti:"et","eesti keel":"et",ewe:"ee","eʋegbe":"ee",ee:"ee",faroese:"fo","føroyskt":"fo",fo:"fo",fao:"fo",fijian:"fj","vosa vakaviti":"fj",fj:"fj",fij:"fj",finnish:"fi","suomi, suomen kieli":"fi",fi:"fi",fin:"fi",suomi:"fi","suomen kieli":"fi",french:"fr","français, langue française":"fr",fr:"fr",fra:"fr",fre:"fr","français":"fr","langue française":"fr",fulah:"ff","fulfulde, pulaar, pular":"ff",ff:"ff",ful:"ff","ful + 9":"ff",fulfulde:"ff",pulaar:"ff",pular:"ff",galician:"gl",galego:"gl",gl:"gl",glg:"gl",georgian:"ka","ქართული":"ka",ka:"ka",kat:"ka",geo:"ka",german:"de",deutsch:"de",de:"de",deu:"de",ger:"de","greek (modern)":"el","ελληνικά":"el",el:"el",ell:"el",gre:"el","guaraní":"gn","avañe'ẽ":"gn",gn:"gn",grn:"gn","grn + 5":"gn",gujarati:"gu","ગુજરાતી":"gu",gu:"gu",guj:"gu","haitian, haitian creole":"ht","kreyòl ayisyen":"ht",ht:"ht",hat:"ht",hausa:"ha","(hausa) هَوُسَ":"ha",ha:"ha",hau:"ha","hebrew (modern)":"he","עברית":"he",he:"he",heb:"he",herero:"hz",otjiherero:"hz",hz:"hz",her:"hz",hindi:"hi","हिन्दी, हिंदी":"hi",hi:"hi",hin:"hi","हिन्दी":"hi","हिंदी":"hi","hiri motu":"ho",ho:"ho",hmo:"ho",hungarian:"hu",magyar:"hu",hu:"hu",hun:"hu",interlingua:"ia",ia:"ia",ina:"ia",indonesian:"id","bahasa indonesia":"id",id:"id",ind:"id",interlingue:"ie","originally called occidental; then interlingue after wwii":"ie",ie:"ie",ile:"ie",irish:"ga",gaeilge:"ga",ga:"ga",gle:"ga",igbo:"ig","asụsụ igbo":"ig",ig:"ig",ibo:"ig",inupiaq:"ik","iñupiaq, iñupiatun":"ik",ik:"ik",ipk:"ik","ipk + 2":"ik","iñupiaq":"ik","iñupiatun":"ik",ido:"io",io:"io",icelandic:"is","íslenska":"is",is:"is",isl:"is",ice:"is",italian:"it",italiano:"it",it:"it",ita:"it",inuktitut:"iu","ᐃᓄᒃᑎᑐᑦ":"iu",iu:"iu",iku:"iu","iku + 2":"iu",japanese:"ja","日本語 (にほんご)":"ja",ja:"ja",jpn:"ja",javanese:"jv","ꦧꦱꦗꦮ, basa jawa":"jv",jv:"jv",jav:"jv","ꦧꦱꦗꦮ":"jv","basa jawa":"jv","kalaallisut, greenlandic":"kl","kalaallisut, kalaallit oqaasii":"kl",kl:"kl",kal:"kl",kalaallisut:"kl","kalaallit oqaasii":"kl",kannada:"kn","ಕನ್ನಡ":"kn",kn:"kn",kan:"kn",kanuri:"kr",kr:"kr",kau:"kr","kau + 3":"kr",kashmiri:"ks","कश्मीरी, كشميري‎":"ks",ks:"ks",kas:"ks","कश्मीरी":"ks","كشميري‎":"ks",kazakh:"kk","қазақ тілі":"kk",kk:"kk",kaz:"kk","central khmer":"km","ខ្មែរ, ខេមរភាសា, ភាសាខ្មែរ":"km",km:"km",khm:"km","ខ្មែរ":"km","ខេមរភាសា":"km","ភាសាខ្មែរ":"km","kikuyu, gikuyu":"ki","gĩkũyũ":"ki",ki:"ki",kik:"ki",kinyarwanda:"rw",ikinyarwanda:"rw",rw:"rw",kin:"rw","kirghiz, kyrgyz":"ky","кыргызча, кыргыз тили":"ky",ky:"ky",kir:"ky","кыргызча":"ky","кыргыз тили":"ky",komi:"kv","коми кыв":"kv",kv:"kv",kom:"kv","kom + 2":"kv",kongo:"kg",kikongo:"kg",kg:"kg",kon:"kg","kon + 3":"kg",korean:"ko","한국어":"ko",ko:"ko",kor:"ko",kurdish:"ku","kurdî, كوردی‎":"ku",ku:"ku",kur:"ku","kur + 3":"ku","kurdî":"ku","كوردی‎":"ku","kuanyama, kwanyama":"kj",kuanyama:"kj",kj:"kj",kua:"kj",latin:"la","latine, lingua latina":"la",la:"la",lat:"la",latine:"la","lingua latina":"la","luxembourgish, letzeburgesch":"lb","lëtzebuergesch":"lb",lb:"lb",ltz:"lb",ganda:"lg",luganda:"lg",lg:"lg",lug:"lg","limburgan, limburger, limburgish":"li",limburgs:"li",li:"li",lim:"li",lingala:"ln","lingála":"ln",ln:"ln",lin:"ln",lao:"lo","ພາສາລາວ":"lo",lo:"lo",lithuanian:"lt","lietuvių kalba":"lt",lt:"lt",lit:"lt","luba-katanga":"lu",kiluba:"lu",lu:"lu",lub:"lu",latvian:"lv","latviešu valoda":"lv",lv:"lv",lav:"lv","lav + 2":"lv",manx:"gv","gaelg, gailck":"gv",gv:"gv",glv:"gv",gaelg:"gv",gailck:"gv",macedonian:"mk","македонски јазик":"mk",mk:"mk",mkd:"mk",mac:"mk",malagasy:"mg","fiteny malagasy":"mg",mg:"mg",mlg:"mg","mlg + 10":"mg",malay:"ms","bahasa melayu, بهاس ملايو‎":"ms",ms:"ms",msa:"ms",may:"ms","msa + 13":"ms","bahasa melayu":"ms","بهاس ملايو‎":"ms",malayalam:"ml","മലയാളം":"ml",ml:"ml",mal:"ml",maltese:"mt",malti:"mt",mt:"mt",mlt:"mt",maori:"mi","te reo māori":"mi",mi:"mi",mri:"mi",mao:"mi",marathi:"mr","मराठी":"mr",mr:"mr",mar:"mr",marshallese:"mh","kajin m̧ajeļ":"mh",mh:"mh",mah:"mh",mongolian:"mn","монгол хэл":"mn",mn:"mn",mon:"mn","mon + 2":"mn",nauru:"na","dorerin naoero":"na",na:"na",nau:"na","navajo, navaho":"nv","diné bizaad":"nv",nv:"nv",nav:"nv","north ndebele":"nd",isindebele:"nr",nd:"nd",nde:"nd",nepali:"ne","नेपाली":"ne",ne:"ne",nep:"ne",ndonga:"ng",owambo:"ng",ng:"ng",ndo:"ng","norwegian bokmål":"nb","norsk bokmål":"nb",nb:"nb",nob:"nb","norwegian nynorsk":"nn","norsk nynorsk":"nn",nn:"nn",nno:"nn",norwegian:"no",norsk:"no",no:"no",nor:"no","nor + 2":"no","sichuan yi, nuosu":"ii","ꆈꌠ꒿ nuosuhxop":"ii",ii:"ii",iii:"ii","south ndebele":"nr",nr:"nr",nbl:"nr",occitan:"oc","occitan, lenga d'òc":"oc",oc:"oc",oci:"oc","lenga d'òc":"oc",ojibwa:"oj","ᐊᓂᔑᓈᐯᒧᐎᓐ":"oj",oj:"oj",oji:"oj","oji + 7":"oj","church slavic, church slavonic, old church slavonic, old slavonic, old bulgarian":"cu","ѩзыкъ словѣньскъ":"cu",cu:"cu",chu:"cu",oromo:"om","afaan oromoo":"om",om:"om",orm:"om","orm + 4":"om",oriya:"or","ଓଡ଼ିଆ":"or",or:"or",ori:"or","ossetian, ossetic":"os","ирон æвзаг":"os",os:"os",oss:"os","panjabi, punjabi":"pa","ਪੰਜਾਬੀ":"pa",pa:"pa",pan:"pa",pali:"pi","पाऴि":"pi",pi:"pi",pli:"pi",persian:"fa","فارسی":"fa",fa:"fa",fas:"fa",per:"fa","fas + 2":"fa",polish:"pl","język polski, polszczyzna":"pl",pl:"pl",pol:"pl","język polski":"pl",polszczyzna:"pl","pashto, pushto":"ps","پښتو":"ps",ps:"ps",pus:"ps","pus + 3":"ps",portuguese:"pt","português":"pt",pt:"pt",por:"pt",quechua:"qu","runa simi, kichwa":"qu",qu:"qu",que:"qu","que + 44":"qu","runa simi":"qu",kichwa:"qu",romansh:"rm","rumantsch grischun":"rm",rm:"rm",roh:"rm",rundi:"rn",ikirundi:"rn",rn:"rn",run:"rn","romanian, moldavian, moldovan":"ro","română":"ro",ro:"ro",ron:"ro",rum:"ro",russian:"ru","русский":"ru",ru:"ru",rus:"ru",sanskrit:"sa","संस्कृतम्":"sa",sa:"sa",san:"sa",sardinian:"sc",sardu:"sc",sc:"sc",srd:"sc","srd + 4":"sc",sindhi:"sd","सिन्धी, سنڌي، سندھی‎":"sd",sd:"sd",snd:"sd","सिन्धी":"sd","سنڌي، سندھی‎":"sd","northern sami":"se","davvisámegiella":"se",se:"se",sme:"se",samoan:"sm","gagana fa'a samoa":"sm",sm:"sm",smo:"sm",sango:"sg","yângâ tî sängö":"sg",sg:"sg",sag:"sg",serbian:"sr","српски језик":"sr",sr:"sr",srp:"sr","gaelic, scottish gaelic":"gd","gàidhlig":"gd",gd:"gd",gla:"gd",shona:"sn",chishona:"sn",sn:"sn",sna:"sn","sinhala, sinhalese":"si","සිංහල":"si",si:"si",sin:"si",slovak:"sk","slovenčina, slovenský jazyk":"sk",sk:"sk",slk:"sk",slo:"sk","slovenčina":"sk","slovenský jazyk":"sk",slovenian:"sl","slovenski jezik, slovenščina":"sl",sl:"sl",slv:"sl","slovenski jezik":"sl","slovenščina":"sl",somali:"so","soomaaliga, af soomaali":"so",so:"so",som:"so",soomaaliga:"so","af soomaali":"so","southern sotho":"st",sesotho:"st",st:"st",sot:"st","spanish, castilian":"es","español":"es",es:"es",spa:"es",sundanese:"su","basa sunda":"su",su:"su",sun:"su",swahili:"sw",kiswahili:"sw",sw:"sw",swa:"sw","swa + 2":"sw",swati:"ss",siswati:"ss",ss:"ss",ssw:"ss",swedish:"sv",svenska:"sv",sv:"sv",swe:"sv",tamil:"ta","தமிழ்":"ta",ta:"ta",tam:"ta",telugu:"te","తెలుగు":"te",te:"te",tel:"te",tajik:"tg","тоҷикӣ, toçikī, تاجیکی‎":"tg",tg:"tg",tgk:"tg","тоҷикӣ":"tg","toçikī":"tg","تاجیکی‎":"tg",thai:"th","ไทย":"th",th:"th",tha:"th",tigrinya:"ti","ትግርኛ":"ti",ti:"ti",tir:"ti",tibetan:"bo","བོད་ཡིག":"bo",bo:"bo",bod:"bo",tib:"bo",turkmen:"tk","türkmen, түркмен":"tk",tk:"tk",tuk:"tk","türkmen":"tk","түркмен":"tk",tagalog:"tl","wikang tagalog":"tl",tl:"tl",tgl:"tl",tswana:"tn",setswana:"tn",tn:"tn",tsn:"tn","tonga (tonga islands)":"to","faka tonga":"to",to:"to",ton:"to",turkish:"tr","türkçe":"tr",tr:"tr",tur:"tr",tsonga:"ts",xitsonga:"ts",ts:"ts",tso:"ts",tatar:"tt","татар теле, tatar tele":"tt",tt:"tt",tat:"tt","татар теле":"tt","tatar tele":"tt",twi:"tw",tw:"tw",tahitian:"ty","reo tahiti":"ty",ty:"ty",tah:"ty","uighur, uyghur":"ug","ئۇيغۇرچە‎, uyghurche":"ug",ug:"ug",uig:"ug","ئۇيغۇرچە‎":"ug",uyghurche:"ug",ukrainian:"uk","українська":"uk",uk:"uk",ukr:"uk",urdu:"ur","اردو":"ur",ur:"ur",urd:"ur",uzbek:"uz","oʻzbek, ўзбек, أۇزبېك‎":"uz",uz:"uz",uzb:"uz","uzb + 2":"uz","oʻzbek":"uz","ўзбек":"uz","أۇزبېك‎":"uz",venda:"ve","tshivenḓa":"ve",ve:"ve",ven:"ve",vietnamese:"vi","tiếng việt":"vi",vi:"vi",vie:"vi","volapük":"vo",vo:"vo",vol:"vo",walloon:"wa",walon:"wa",wa:"wa",wln:"wa",welsh:"cy",cymraeg:"cy",cy:"cy",cym:"cy",wel:"cy",wolof:"wo",wollof:"wo",wo:"wo",wol:"wo","western frisian":"fy",frysk:"fy",fy:"fy",fry:"fy",xhosa:"xh",isixhosa:"xh",xh:"xh",xho:"xh",yiddish:"yi","ייִדיש":"yi",yi:"yi",yid:"yi","yid + 2":"yi",yoruba:"yo","yorùbá":"yo",yo:"yo",yor:"yo","zhuang, chuang":"za","saɯ cueŋƅ, saw cuengh":"za",za:"za",zha:"za","zha + 16":"za","saɯ cueŋƅ":"za","saw cuengh":"za",zulu:"zu",isizulu:"zu",zu:"zu",zul:"zu"};function reduce(from){return reductions[from.toLowerCase()]}var reduceTo6391={reduce:reduce,reductions:reductions};class circular_buffer{constructor(uCapacity){if(!Number.isInteger(uCapacity)){throw new RangeError(`Capacity must be an integer, received ${uCapacity}`)}if(uCapacity<0){throw new RangeError(`Capacity must be a non-negative integer, received ${uCapacity}`)}this._values=new Array(uCapacity);this._capacity=uCapacity;this._cursor=0;this._offset=0;this._length=0}get capacity(){return this._capacity}set capacity(newSize){this.resize(newSize)}get length(){return this._length}set length(newLength){if(newLength>this._capacity){throw new RangeError(`Requested new length [${newLength}] exceeds container capacity [${this._capacity}]`)}if(newLength<0){throw new RangeError(`Requested new length [${newLength}] cannot be negative`)}if(!Number.isInteger(newLength)){throw new RangeError(`Requested new length [${newLength}] must be an integer`)}if(this._length<=newLength){return}this._length=newLength}get available(){return this._capacity-this._length}get isEmpty(){return this._length===0}get isFull(){return this._length===this._capacity}get first(){if(this.isEmpty){throw new RangeError("Cannot return first element of an empty container")}return this.at(0)}get last(){if(this.isEmpty){throw new RangeError("Cannot return last element of an empty container")}return this.at(this.length-1)}static from(i,map_fn,t){const new_array=map_fn?Array.from(i,map_fn,t):Array.from(i);const target_length=new_array.length;const ncb=new circular_buffer(target_length);ncb._values=new_array;ncb._length=target_length;return ncb}push(v){if(this.isFull){throw new RangeError(`Cannot push, structure is full to capacity`)}this._values[(this._cursor+this._length++)%this._capacity]=v;return v}shove(v){let shoved;if(this._capacity===0){throw new RangeError(`Cannot shove, structure is zero-capacity`)}if(this.isFull){shoved=this.pop()}this.push(v);return shoved}fill(x){for(let i=0;i=this._capacity){this._cursor-=this._capacity}return cache}at(i){if(i<0){throw new RangeError(`circular_buffer does not support negative traversals; called at(${i})`)}if(!Number.isInteger(i)){throw new RangeError(`Accessors must be non-negative integers; called at(${i})`)}if(i>=this._capacity){throw new RangeError(`Requested cell ${i} exceeds container permanent capacity`)}if(i>=this._length){throw new RangeError(`Requested cell ${i} exceeds container current length`)}return this._values[(this._cursor+i)%this._capacity]}pos(i){return this.at(i-this.offset())}offset(){return this._offset}resize(newSize,preferEnd=false){this._values=this.toArray();this._cursor=0;const oldSize=this._length;this._length=Math.min(this._length,newSize);this._capacity=newSize;if(newSize>=oldSize){this._values.length=newSize}else{if(preferEnd){const tmp=this._values.slice(oldSize-newSize);this._values=tmp}else{this._values.length=newSize}}}toArray(){const startPoint=this._cursor%this._capacity;if(this._capacity>startPoint+this._length){return this._values.slice(startPoint,startPoint+this._length)}else{const base=this._values.slice(startPoint,this._capacity);base.push(...this._values.slice(0,this.length-(this._capacity-startPoint)));return base}}}const base_state_style$3={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style$3={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style$3={shape:"component"};const base_terminal_state_style$3={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style$3={textColor:"white",backgroundColor:"indigo"};const base_start_state_style$3={backgroundColor:"yellow"};const base_active_start_state_style$3={backgroundColor:"yellowgreen"};const base_active_hooked_state_style$3={backgroundColor:"yellowgreen"};const base_end_state_style$3={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style$3={textColor:"white",backgroundColor:"darkgreen"};const base_theme={state:base_state_style$3,start:base_start_state_style$3,end:base_end_state_style$3,terminal:base_terminal_state_style$3,hooked:base_hooked_state_style$3,active:base_active_state_style$3,active_start:base_active_start_state_style$3,active_end:base_active_end_state_style$3,active_terminal:base_active_terminal_state_style$3,active_hooked:base_active_hooked_state_style$3,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};const base_state_style$2={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style$2={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style$2={shape:"component"};const base_terminal_state_style$2={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style$2={textColor:"white",backgroundColor:"indigo"};const base_start_state_style$2={backgroundColor:"yellow"};const base_active_start_state_style$2={backgroundColor:"yellowgreen"};const base_active_hooked_state_style$2={backgroundColor:"yellowgreen"};const base_end_state_style$2={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style$2={textColor:"white",backgroundColor:"darkgreen"};const default_theme={state:base_state_style$2,start:base_start_state_style$2,end:base_end_state_style$2,terminal:base_terminal_state_style$2,hooked:base_hooked_state_style$2,active:base_active_state_style$2,active_start:base_active_start_state_style$2,active_end:base_active_end_state_style$2,active_terminal:base_active_terminal_state_style$2,active_hooked:base_active_hooked_state_style$2,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};const base_state_style$1={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style$1={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style$1={shape:"component"};const base_terminal_state_style$1={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style$1={textColor:"white",backgroundColor:"indigo"};const base_start_state_style$1={backgroundColor:"yellow"};const base_active_start_state_style$1={backgroundColor:"yellowgreen"};const base_active_hooked_state_style$1={backgroundColor:"yellowgreen"};const base_end_state_style$1={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style$1={textColor:"white",backgroundColor:"darkgreen"};const modern_theme={state:base_state_style$1,start:base_start_state_style$1,end:base_end_state_style$1,terminal:base_terminal_state_style$1,hooked:base_hooked_state_style$1,active:base_active_state_style$1,active_start:base_active_start_state_style$1,active_end:base_active_end_state_style$1,active_terminal:base_active_terminal_state_style$1,active_hooked:base_active_hooked_state_style$1,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};const base_state_style={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style={shape:"component"};const base_terminal_state_style={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style={textColor:"white",backgroundColor:"indigo"};const base_start_state_style={backgroundColor:"yellow"};const base_active_start_state_style={backgroundColor:"yellowgreen"};const base_active_hooked_state_style={backgroundColor:"yellowgreen"};const base_end_state_style={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style={textColor:"white",backgroundColor:"darkgreen"};const ocean_theme={state:base_state_style,start:base_start_state_style,end:base_end_state_style,terminal:base_terminal_state_style,hooked:base_hooked_state_style,active:base_active_state_style,active_start:base_active_start_state_style,active_end:base_active_end_state_style,active_terminal:base_active_terminal_state_style,active_hooked:base_active_hooked_state_style,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};class JssmError extends Error{constructor(machine,message,JEEI){const{requested_state:requested_state}=JEEI===undefined?{requested_state:undefined}:JEEI;const follow_ups=[];if(machine){if(machine.state()!==undefined){follow_ups.push(`at "${machine.state()}"`)}}if(requested_state!==undefined){follow_ups.push(`requested "${requested_state}"`)}const complex_msg=`${(machine===null||machine===void 0?void 0:machine.instance_name())!==undefined?`[[${machine.instance_name()}]]: `:""}${message}${follow_ups.length?` (${follow_ups.join(", ")})`:""}`;super(complex_msg);this.name="JssmError";this.message=complex_msg;this.base_message=message;this.requested_state=requested_state}}const array_box_if_string=n=>typeof n==="string"?[n]:n;const weighted_rand_select=(options,probability_property="probability")=>{if(!Array.isArray(options)){throw new TypeError("options must be a non-empty array of objects")}if(!(typeof options[0]==="object")){throw new TypeError("options must be a non-empty array of objects")}const frand=cap=>Math.random()*cap,or_one=item=>item===undefined?1:item,prob_sum=options.reduce(((acc,val)=>acc+or_one(val[probability_property])),0),rnd=frand(prob_sum);let cursor=0,cursor_sum=0;while((cursor_sum+=or_one(options[cursor++][probability_property]))<=rnd){}return options[cursor-1]};function seq(n){if(!Number.isInteger(n)){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}if(n<0){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}return new Array(n).fill(true).map(((_,i)=>i))}const histograph=ar=>ar.sort().reduce(((m,v)=>(m.set(v,m.has(v)?m.get(v)+1:1),m)),new Map);const weighted_sample_select=(n,options,probability_property)=>seq(n).map((_i=>weighted_rand_select(options,probability_property)));const weighted_histo_key=(n,opts,prob_prop,extract)=>histograph(weighted_sample_select(n,opts,prob_prop).map((s=>s[extract])));function name_bind_prop_and_state(prop,state){if(typeof prop!=="string"){throw new JssmError(undefined,`Name of property must be a string; got ${prop}`)}if(typeof state!=="string"){throw new JssmError(undefined,`Name of state must be a string; got ${prop}`)}return JSON.stringify([prop,state])}const hook_name=(from,to)=>JSON.stringify([from,to]);const named_hook_name=(from,to,action)=>JSON.stringify([from,to,action]);const unique=arr=>arr.filter(((v,i,a)=>a.indexOf(v)===i));function find_repeated(arr){const uniqued=unique(arr);if(uniqued.length!==arr.length){const residue_keys=new Map;arr.forEach((k=>residue_keys.set(k,residue_keys.has(k)?residue_keys.get(k)+1:1)));uniqued.forEach((k=>residue_keys.set(k,residue_keys.get(k)-1)));return[...residue_keys.entries()].filter((e=>e[1]>0&&!Number.isNaN(e[0]))).map((e=>[e[0],e[1]+1]))}else{return[]}}const NegInfinity=Number.NEGATIVE_INFINITY,PosInfinity=Number.POSITIVE_INFINITY,Epsilon=Number.EPSILON,Pi=Math.PI,E=Math.E,Root2=Math.SQRT2,RootHalf=Math.SQRT1_2,Ln2=Math.LN2,Ln10=Math.LN10,Log2E=Math.LOG2E,Log10E=Math.LOG10E,MaxSafeInt=Number.MAX_SAFE_INTEGER,MinSafeInt=Number.MIN_SAFE_INTEGER,MaxPosNum=Number.MAX_VALUE,MinPosNum=Number.MIN_VALUE,Phi=1.618033988749895,EulerC=.5772156649015329;const gviz_shapes$1=["box3d","polygon","ellipse","oval","circle","point","egg","triangle","plaintext","plain","diamond","trapezium","parallelogram","house","pentagon","hexagon","septagon","octagon","doublecircle","doubleoctagon","tripleoctagon","invtriangle","invtrapezium","invhouse","Mdiamond","Msquare","Mcircle","rectangle","rect","square","star","none","underline","cylinder","note","tab","folder","box","component","promoter","cds","terminator","utr","primersite","restrictionsite","fivepoverhang","threepoverhang","noverhang","assembly","signature","insulator","ribosite","rnastab","proteasesite","proteinstab","rpromoter","rarrow","larrow","lpromoter","record"];const shapes$1=gviz_shapes$1;const named_colors$1=["AliceBlue","AntiqueWhite","Aqua","Aquamarine","Azure","Beige","Bisque","Black","BlanchedAlmond","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","CornflowerBlue","Cornsilk","Crimson","Cyan","DarkBlue","DarkCyan","DarkGoldenRod","DarkGray","DarkGrey","DarkGreen","DarkKhaki","DarkMagenta","DarkOliveGreen","Darkorange","DarkOrchid","DarkRed","DarkSalmon","DarkSeaGreen","DarkSlateBlue","DarkSlateGray","DarkSlateGrey","DarkTurquoise","DarkViolet","DeepPink","DeepSkyBlue","DimGray","DimGrey","DodgerBlue","FireBrick","FloralWhite","ForestGreen","Fuchsia","Gainsboro","GhostWhite","Gold","GoldenRod","Gray","Grey","Green","GreenYellow","HoneyDew","HotPink","IndianRed","Indigo","Ivory","Khaki","Lavender","LavenderBlush","LawnGreen","LemonChiffon","LightBlue","LightCoral","LightCyan","LightGoldenRodYellow","LightGray","LightGrey","LightGreen","LightPink","LightSalmon","LightSeaGreen","LightSkyBlue","LightSlateGray","LightSlateGrey","LightSteelBlue","LightYellow","Lime","LimeGreen","Linen","Magenta","Maroon","MediumAquaMarine","MediumBlue","MediumOrchid","MediumPurple","MediumSeaGreen","MediumSlateBlue","MediumSpringGreen","MediumTurquoise","MediumVioletRed","MidnightBlue","MintCream","MistyRose","Moccasin","NavajoWhite","Navy","OldLace","Olive","OliveDrab","Orange","OrangeRed","Orchid","PaleGoldenRod","PaleGreen","PaleTurquoise","PaleVioletRed","PapayaWhip","PeachPuff","Peru","Pink","Plum","PowderBlue","Purple","Red","RosyBrown","RoyalBlue","SaddleBrown","Salmon","SandyBrown","SeaGreen","SeaShell","Sienna","Silver","SkyBlue","SlateBlue","SlateGray","SlateGrey","Snow","SpringGreen","SteelBlue","Tan","Teal","Thistle","Tomato","Turquoise","Violet","Wheat","White","WhiteSmoke","Yellow","YellowGreen"];var constants=Object.freeze({__proto__:null,NegInfinity:NegInfinity,PosInfinity:PosInfinity,Epsilon:Epsilon,Pi:Pi,E:E,Root2:Root2,RootHalf:RootHalf,Ln2:Ln2,Ln10:Ln10,Log2E:Log2E,Log10E:Log10E,MaxSafeInt:MaxSafeInt,MinSafeInt:MinSafeInt,MaxPosNum:MaxPosNum,MinPosNum:MinPosNum,Phi:Phi,EulerC:EulerC,gviz_shapes:gviz_shapes$1,shapes:shapes$1,named_colors:named_colors$1});function peg$subclass(child,parent){function ctor(){this.constructor=child}ctor.prototype=parent.prototype;child.prototype=new ctor}function peg$SyntaxError(message,expected,found,location){this.message=message;this.expected=expected;this.found=found;this.location=location;this.name="SyntaxError";if(typeof Error.captureStackTrace==="function"){Error.captureStackTrace(this,peg$SyntaxError)}}peg$subclass(peg$SyntaxError,Error);peg$SyntaxError.buildMessage=function(expected,found){var DESCRIBE_EXPECTATION_FNS={literal:function(expectation){return'"'+literalEscape(expectation.text)+'"'},class:function(expectation){var escapedParts="",i;for(i=0;i0){for(i=1,j=1;i"),peg$c128="->",peg$c129=peg$literalExpectation("->",false),peg$c130="→",peg$c131=peg$literalExpectation("→",false),peg$c132=function(){return"->"},peg$c133=peg$otherExpectation("two way light arrow <->"),peg$c134="<->",peg$c135=peg$literalExpectation("<->",false),peg$c136="↔",peg$c137=peg$literalExpectation("↔",false),peg$c138=function(){return"<->"},peg$c139=peg$otherExpectation("back light arrow <-"),peg$c140="<-",peg$c141=peg$literalExpectation("<-",false),peg$c142="←",peg$c143=peg$literalExpectation("←",false),peg$c144=function(){return"<-"},peg$c145=peg$otherExpectation("forward fat arrow =>"),peg$c146="=>",peg$c147=peg$literalExpectation("=>",false),peg$c148="⇒",peg$c149=peg$literalExpectation("⇒",false),peg$c150=function(){return"=>"},peg$c151=peg$otherExpectation("two way fat arrow <=>"),peg$c152="<=>",peg$c153=peg$literalExpectation("<=>",false),peg$c154="⇔",peg$c155=peg$literalExpectation("⇔",false),peg$c156=function(){return"<=>"},peg$c157=peg$otherExpectation("back fat arrow <="),peg$c158="<=",peg$c159=peg$literalExpectation("<=",false),peg$c160="⇐",peg$c161=peg$literalExpectation("⇐",false),peg$c162=function(){return"<="},peg$c163=peg$otherExpectation("forward tilde arrow ~>"),peg$c164="~>",peg$c165=peg$literalExpectation("~>",false),peg$c166="↛",peg$c167=peg$literalExpectation("↛",false),peg$c168=function(){return"~>"},peg$c169=peg$otherExpectation("two way tilde arrow <~>"),peg$c170="<~>",peg$c171=peg$literalExpectation("<~>",false),peg$c172="↮",peg$c173=peg$literalExpectation("↮",false),peg$c174=function(){return"<~>"},peg$c175=peg$otherExpectation("back tilde arrow <~"),peg$c176="<~",peg$c177=peg$literalExpectation("<~",false),peg$c178="↚",peg$c179=peg$literalExpectation("↚",false),peg$c180=function(){return"<~"},peg$c181=peg$otherExpectation("light fat arrow <-=>"),peg$c182="<-=>",peg$c183=peg$literalExpectation("<-=>",false),peg$c184="←⇒",peg$c185=peg$literalExpectation("←⇒",false),peg$c186=function(){return"<-=>"},peg$c187=peg$otherExpectation("light tilde arrow <-~>"),peg$c188="<-~>",peg$c189=peg$literalExpectation("<-~>",false),peg$c190="←↛",peg$c191=peg$literalExpectation("←↛",false),peg$c192=function(){return"<-~>"},peg$c193=peg$otherExpectation("fat light arrow <=->"),peg$c194="<=->",peg$c195=peg$literalExpectation("<=->",false),peg$c196="⇐→",peg$c197=peg$literalExpectation("⇐→",false),peg$c198=function(){return"<=->"},peg$c199=peg$otherExpectation("fat tilde arrow <=~>"),peg$c200="<=~>",peg$c201=peg$literalExpectation("<=~>",false),peg$c202="⇐↛",peg$c203=peg$literalExpectation("⇐↛",false),peg$c204=function(){return"<=~>"},peg$c205=peg$otherExpectation("tilde light arrow <~->"),peg$c206="<~->",peg$c207=peg$literalExpectation("<~->",false),peg$c208="↚→",peg$c209=peg$literalExpectation("↚→",false),peg$c210=function(){return"<~->"},peg$c211=peg$otherExpectation("tilde fat arrow <~=>"),peg$c212="<~=>",peg$c213=peg$literalExpectation("<~=>",false),peg$c214="↚⇒",peg$c215=peg$literalExpectation("↚⇒",false),peg$c216=function(){return"<~=>"},peg$c217=peg$otherExpectation("light arrow"),peg$c218=peg$otherExpectation("fat arrow"),peg$c219=peg$otherExpectation("tilde arrow"),peg$c220=peg$otherExpectation("mixed arrow"),peg$c221=peg$otherExpectation("arrow"),peg$c222="true",peg$c223=peg$literalExpectation("true",false),peg$c224=function(){return true},peg$c225="false",peg$c226=peg$literalExpectation("false",false),peg$c227=function(){return false},peg$c228="regular",peg$c229=peg$literalExpectation("regular",false),peg$c230="rounded",peg$c231=peg$literalExpectation("rounded",false),peg$c232="lined",peg$c233=peg$literalExpectation("lined",false),peg$c234="solid",peg$c235=peg$literalExpectation("solid",false),peg$c236="dotted",peg$c237=peg$literalExpectation("dotted",false),peg$c238="dashed",peg$c239=peg$literalExpectation("dashed",false),peg$c240='"',peg$c241=peg$literalExpectation('"',false),peg$c242="\\",peg$c243=peg$literalExpectation("\\",false),peg$c244="/",peg$c245=peg$literalExpectation("/",false),peg$c246="b",peg$c247=peg$literalExpectation("b",false),peg$c248=function(){return"\b"},peg$c249="f",peg$c250=peg$literalExpectation("f",false),peg$c251=function(){return"\f"},peg$c252="n",peg$c253=peg$literalExpectation("n",false),peg$c254=function(){return"\n"},peg$c255="r",peg$c256=peg$literalExpectation("r",false),peg$c257=function(){return"\r"},peg$c258="t",peg$c259=peg$literalExpectation("t",false),peg$c260=function(){return"\t"},peg$c261="v",peg$c262=peg$literalExpectation("v",false),peg$c263=function(){return"\v"},peg$c264="u",peg$c265=peg$literalExpectation("u",false),peg$c266=function(digits){return String.fromCharCode(parseInt(digits,16))},peg$c267=function(Sequence){return Sequence},peg$c268="null",peg$c269=peg$literalExpectation("null",false),peg$c270=function(){return null},peg$c271="undefined",peg$c272=peg$literalExpectation("undefined",false),peg$c273=function(){return undefined},peg$c274=/^[ -!#-[\]-\u10FFFF]/,peg$c275=peg$classExpectation([[" ","!"],["#","["],["]","ჿ"],"F","F"],false,false),peg$c276="'",peg$c277=peg$literalExpectation("'",false),peg$c278=/^[ -&(-[\]-\u10FFFF]/,peg$c279=peg$classExpectation([[" ","&"],["(","["],["]","ჿ"],"F","F"],false,false),peg$c280=peg$otherExpectation("action label"),peg$c281=function(chars){return chars.join("")},peg$c282=/^[\n\r\u2028\u2029]/,peg$c283=peg$classExpectation(["\n","\r","\u2028","\u2029"],false,false),peg$c286="*/",peg$c287=peg$literalExpectation("*/",false),peg$c288=peg$anyExpectation(),peg$c289=peg$otherExpectation("block comment"),peg$c290="/*",peg$c291=peg$literalExpectation("/*",false),peg$c292=peg$otherExpectation("line comment"),peg$c293="//",peg$c294=peg$literalExpectation("//",false),peg$c295=peg$otherExpectation("whitespace"),peg$c296=/^[ \t\r\n\x0B]/,peg$c297=peg$classExpectation([" ","\t","\r","\n","\v"],false,false),peg$c298=peg$otherExpectation("string"),peg$c299=/^[0-9a-zA-Z._!$\^*!?,\x80-\uFFFF]/,peg$c300=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","_","!","$","^","*","!","?",",",["€","￿"]],false,false),peg$c301=/^[0-9a-zA-Z.+_\^()*&$#@!?,\x80-\uFFFF]/,peg$c302=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","+","_","^","(",")","*","&","$","#","@","!","?",",",["€","￿"]],false,false),peg$c303=peg$otherExpectation("atom"),peg$c304=function(firstletter,text){return firstletter+(text||[]).join("")},peg$c305=peg$otherExpectation("label"),peg$c306="0",peg$c307=peg$literalExpectation("0",false),peg$c308=/^[0-9]/,peg$c309=peg$classExpectation([["0","9"]],false,false),peg$c310=/^[1-9]/,peg$c311=peg$classExpectation([["1","9"]],false,false),peg$c312=/^[0-9a-f]/i,peg$c313=peg$classExpectation([["0","9"],["a","f"]],false,true),peg$c314=/^[0-1]/,peg$c315=peg$classExpectation([["0","1"]],false,false),peg$c316=peg$otherExpectation("nonneg number"),peg$c317=".",peg$c318=peg$literalExpectation(".",false),peg$c319=function(){return parseFloat(text())},peg$c320=peg$otherExpectation("number"),peg$c321=function(literal){return literal},peg$c322="NaN",peg$c323=peg$literalExpectation("NaN",false),peg$c324=function(){return NaN},peg$c325="NegativeInfinity",peg$c326=peg$literalExpectation("NegativeInfinity",false),peg$c327=function(){return Number.NEGATIVE_INFINITY},peg$c328="NegativeInf",peg$c329=peg$literalExpectation("NegativeInf",false),peg$c330="NegInfinity",peg$c331=peg$literalExpectation("NegInfinity",false),peg$c332="NegInf",peg$c333=peg$literalExpectation("NegInf",false),peg$c334="NInfinity",peg$c335=peg$literalExpectation("NInfinity",false),peg$c336="NInf",peg$c337=peg$literalExpectation("NInf",false),peg$c338="-∞",peg$c339=peg$literalExpectation("-∞",false),peg$c340="PInfinity",peg$c341=peg$literalExpectation("PInfinity",false),peg$c342=function(){return Number.POSITIVE_INFINITY},peg$c343="Infinity",peg$c344=peg$literalExpectation("Infinity",false),peg$c345="PInf",peg$c346=peg$literalExpectation("PInf",false),peg$c347="Inf",peg$c348=peg$literalExpectation("Inf",false),peg$c349="∞",peg$c350=peg$literalExpectation("∞",false),peg$c351="Epsilon",peg$c352=peg$literalExpectation("Epsilon",false),peg$c353=function(){return Number.EPSILON},peg$c354="𝜀",peg$c355=peg$literalExpectation("𝜀",false),peg$c356="ε",peg$c357=peg$literalExpectation("ε",false),peg$c358="Pi",peg$c359=peg$literalExpectation("Pi",false),peg$c360=function(){return Math.PI},peg$c361="𝜋",peg$c362=peg$literalExpectation("𝜋",false),peg$c363="π",peg$c364=peg$literalExpectation("π",false),peg$c365="EulerNumber",peg$c366=peg$literalExpectation("EulerNumber",false),peg$c367=function(){return Math.E},peg$c368="E",peg$c369=peg$literalExpectation("E",false),peg$c370="e",peg$c371=peg$literalExpectation("e",false),peg$c372="Ɛ",peg$c373=peg$literalExpectation("Ɛ",false),peg$c374="ℇ",peg$c375=peg$literalExpectation("ℇ",false),peg$c376="Root2",peg$c377=peg$literalExpectation("Root2",false),peg$c378=function(){return Math.SQRT2},peg$c379="RootHalf",peg$c380=peg$literalExpectation("RootHalf",false),peg$c381=function(){return Math.SQRT1_2},peg$c382="Ln2",peg$c383=peg$literalExpectation("Ln2",false),peg$c384=function(){return Math.LN2},peg$c385="NatLog2",peg$c386=peg$literalExpectation("NatLog2",false),peg$c387="Ln10",peg$c388=peg$literalExpectation("Ln10",false),peg$c389=function(){return Math.LN10},peg$c390="NatLog10",peg$c391=peg$literalExpectation("NatLog10",false),peg$c392="Log2E",peg$c393=peg$literalExpectation("Log2E",false),peg$c394=function(){return Math.LOG2E},peg$c395="Log10E",peg$c396=peg$literalExpectation("Log10E",false),peg$c397=function(){return Math.LOG10E},peg$c398="MaxSafeInt",peg$c399=peg$literalExpectation("MaxSafeInt",false),peg$c400=function(){return Number.MAX_SAFE_INTEGER},peg$c401="MinSafeInt",peg$c402=peg$literalExpectation("MinSafeInt",false),peg$c403=function(){return Number.MIN_SAFE_INTEGER},peg$c404="MaxPosNum",peg$c405=peg$literalExpectation("MaxPosNum",false),peg$c406=function(){return Number.MAX_VALUE},peg$c407="MinPosNum",peg$c408=peg$literalExpectation("MinPosNum",false),peg$c409=function(){return Number.MIN_VALUE},peg$c410="Phi",peg$c411=peg$literalExpectation("Phi",false),peg$c412=function(){return 1.618033988749895},peg$c413="𝜑",peg$c414=peg$literalExpectation("𝜑",false),peg$c415="𝜙",peg$c416=peg$literalExpectation("𝜙",false),peg$c417="ϕ",peg$c418=peg$literalExpectation("ϕ",false),peg$c419="φ",peg$c420=peg$literalExpectation("φ",false),peg$c421="EulerConstant",peg$c422=peg$literalExpectation("EulerConstant",false),peg$c423=function(){return.5772156649015329},peg$c424="γ",peg$c425=peg$literalExpectation("γ",false),peg$c426="𝛾",peg$c427=peg$literalExpectation("𝛾",false),peg$c428=peg$literalExpectation("e",true),peg$c429=/^[+\-]/,peg$c430=peg$classExpectation(["+","-"],false,false),peg$c431="0x",peg$c432=peg$literalExpectation("0x",true),peg$c433=function(digits){return parseInt(digits,16)},peg$c434="0b",peg$c435=peg$literalExpectation("0b",true),peg$c436=function(digits){return parseInt(digits,2)},peg$c437="0o",peg$c438=peg$literalExpectation("0o",true),peg$c439=function(digits){return parseInt(digits,8)},peg$c440=function(major,minor,patch){return{major:parseInt(major,10),minor:parseInt(minor,10),patch:parseInt(patch,10),full:text()}},peg$c451="http://",peg$c452=peg$literalExpectation("http://",false),peg$c453="https://",peg$c454=peg$literalExpectation("https://",false),peg$c455=/^[a-zA-Z0-9!*'():;@&=+$,\/?#[\]_.~\-]/,peg$c456=peg$classExpectation([["a","z"],["A","Z"],["0","9"],"!","*","'","(",")",":",";","@","&","=","+","$",",","/","?","#","[","]","_",".","~","-"],false,false),peg$c457=function(protocol){return text()},peg$c458="aliceblue",peg$c459=peg$literalExpectation("aliceblue",false),peg$c460=function(){return"#f0f8ffff"},peg$c461="AliceBlue",peg$c462=peg$literalExpectation("AliceBlue",false),peg$c463="antiquewhite",peg$c464=peg$literalExpectation("antiquewhite",false),peg$c465=function(){return"#faebd7ff"},peg$c466="AntiqueWhite",peg$c467=peg$literalExpectation("AntiqueWhite",false),peg$c468="aquamarine",peg$c469=peg$literalExpectation("aquamarine",false),peg$c470=function(){return"#7fffd4ff"},peg$c471="Aquamarine",peg$c472=peg$literalExpectation("Aquamarine",false),peg$c473="aqua",peg$c474=peg$literalExpectation("aqua",false),peg$c475=function(){return"#00ffffff"},peg$c476="Aqua",peg$c477=peg$literalExpectation("Aqua",false),peg$c478="azure",peg$c479=peg$literalExpectation("azure",false),peg$c480=function(){return"#f0ffffff"},peg$c481="Azure",peg$c482=peg$literalExpectation("Azure",false),peg$c483="beige",peg$c484=peg$literalExpectation("beige",false),peg$c485=function(){return"#f5f5dcff"},peg$c486="Beige",peg$c487=peg$literalExpectation("Beige",false),peg$c488="bisque",peg$c489=peg$literalExpectation("bisque",false),peg$c490=function(){return"#ffe4c4ff"},peg$c491="Bisque",peg$c492=peg$literalExpectation("Bisque",false),peg$c493="black",peg$c494=peg$literalExpectation("black",false),peg$c495=function(){return"#000000ff"},peg$c496="Black",peg$c497=peg$literalExpectation("Black",false),peg$c498="blanchedalmond",peg$c499=peg$literalExpectation("blanchedalmond",false),peg$c500=function(){return"#ffebcdff"},peg$c501="BlanchedAlmond",peg$c502=peg$literalExpectation("BlanchedAlmond",false),peg$c503="blueviolet",peg$c504=peg$literalExpectation("blueviolet",false),peg$c505=function(){return"#8a2be2ff"},peg$c506="BlueViolet",peg$c507=peg$literalExpectation("BlueViolet",false),peg$c508="blue",peg$c509=peg$literalExpectation("blue",false),peg$c510=function(){return"#0000ffff"},peg$c511="Blue",peg$c512=peg$literalExpectation("Blue",false),peg$c513="brown",peg$c514=peg$literalExpectation("brown",false),peg$c515=function(){return"#a52a2aff"},peg$c516="Brown",peg$c517=peg$literalExpectation("Brown",false),peg$c518="burlywood",peg$c519=peg$literalExpectation("burlywood",false),peg$c520=function(){return"#deb887ff"},peg$c521="BurlyWood",peg$c522=peg$literalExpectation("BurlyWood",false),peg$c523="cadetblue",peg$c524=peg$literalExpectation("cadetblue",false),peg$c525=function(){return"#5f9ea0ff"},peg$c526="CadetBlue",peg$c527=peg$literalExpectation("CadetBlue",false),peg$c528="chartreuse",peg$c529=peg$literalExpectation("chartreuse",false),peg$c530=function(){return"#7fff00ff"},peg$c531="Chartreuse",peg$c532=peg$literalExpectation("Chartreuse",false),peg$c533="chocolate",peg$c534=peg$literalExpectation("chocolate",false),peg$c535=function(){return"#d2691eff"},peg$c536="Chocolate",peg$c537=peg$literalExpectation("Chocolate",false),peg$c538="coral",peg$c539=peg$literalExpectation("coral",false),peg$c540=function(){return"#ff7f50ff"},peg$c541="Coral",peg$c542=peg$literalExpectation("Coral",false),peg$c543="cornflowerblue",peg$c544=peg$literalExpectation("cornflowerblue",false),peg$c545=function(){return"#6495edff"},peg$c546="CornflowerBlue",peg$c547=peg$literalExpectation("CornflowerBlue",false),peg$c548="cornsilk",peg$c549=peg$literalExpectation("cornsilk",false),peg$c550=function(){return"#fff8dcff"},peg$c551="Cornsilk",peg$c552=peg$literalExpectation("Cornsilk",false),peg$c553="crimson",peg$c554=peg$literalExpectation("crimson",false),peg$c555=function(){return"#dc143cff"},peg$c556="Crimson",peg$c557=peg$literalExpectation("Crimson",false),peg$c558="cyan",peg$c559=peg$literalExpectation("cyan",false),peg$c560="Cyan",peg$c561=peg$literalExpectation("Cyan",false),peg$c562="darkblue",peg$c563=peg$literalExpectation("darkblue",false),peg$c564=function(){return"#00008bff"},peg$c565="DarkBlue",peg$c566=peg$literalExpectation("DarkBlue",false),peg$c567="darkcyan",peg$c568=peg$literalExpectation("darkcyan",false),peg$c569=function(){return"#008b8bff"},peg$c570="DarkCyan",peg$c571=peg$literalExpectation("DarkCyan",false),peg$c572="darkgoldenrod",peg$c573=peg$literalExpectation("darkgoldenrod",false),peg$c574=function(){return"#b8860bff"},peg$c575="DarkGoldenRod",peg$c576=peg$literalExpectation("DarkGoldenRod",false),peg$c577="darkgray",peg$c578=peg$literalExpectation("darkgray",false),peg$c579=function(){return"#a9a9a9ff"},peg$c580="DarkGray",peg$c581=peg$literalExpectation("DarkGray",false),peg$c582="darkgrey",peg$c583=peg$literalExpectation("darkgrey",false),peg$c584="DarkGrey",peg$c585=peg$literalExpectation("DarkGrey",false),peg$c586="darkgreen",peg$c587=peg$literalExpectation("darkgreen",false),peg$c588=function(){return"#006400ff"},peg$c589="DarkGreen",peg$c590=peg$literalExpectation("DarkGreen",false),peg$c591="darkkhaki",peg$c592=peg$literalExpectation("darkkhaki",false),peg$c593=function(){return"#bdb76bff"},peg$c594="DarkKhaki",peg$c595=peg$literalExpectation("DarkKhaki",false),peg$c596="darkmagenta",peg$c597=peg$literalExpectation("darkmagenta",false),peg$c598=function(){return"#8b008bff"},peg$c599="DarkMagenta",peg$c600=peg$literalExpectation("DarkMagenta",false),peg$c601="darkolivegreen",peg$c602=peg$literalExpectation("darkolivegreen",false),peg$c603=function(){return"#556b2fff"},peg$c604="DarkOliveGreen",peg$c605=peg$literalExpectation("DarkOliveGreen",false),peg$c606="darkorange",peg$c607=peg$literalExpectation("darkorange",false),peg$c608=function(){return"#ff8c00ff"},peg$c609="Darkorange",peg$c610=peg$literalExpectation("Darkorange",false),peg$c611="darkorchid",peg$c612=peg$literalExpectation("darkorchid",false),peg$c613=function(){return"#9932ccff"},peg$c614="DarkOrchid",peg$c615=peg$literalExpectation("DarkOrchid",false),peg$c616="darkred",peg$c617=peg$literalExpectation("darkred",false),peg$c618=function(){return"#8b0000ff"},peg$c619="DarkRed",peg$c620=peg$literalExpectation("DarkRed",false),peg$c621="darksalmon",peg$c622=peg$literalExpectation("darksalmon",false),peg$c623=function(){return"#e9967aff"},peg$c624="DarkSalmon",peg$c625=peg$literalExpectation("DarkSalmon",false),peg$c626="darkseagreen",peg$c627=peg$literalExpectation("darkseagreen",false),peg$c628=function(){return"#8fbc8fff"},peg$c629="DarkSeaGreen",peg$c630=peg$literalExpectation("DarkSeaGreen",false),peg$c631="darkslateblue",peg$c632=peg$literalExpectation("darkslateblue",false),peg$c633=function(){return"#483d8bff"},peg$c634="DarkSlateBlue",peg$c635=peg$literalExpectation("DarkSlateBlue",false),peg$c636="darkslategray",peg$c637=peg$literalExpectation("darkslategray",false),peg$c638=function(){return"#2f4f4fff"},peg$c639="DarkSlateGray",peg$c640=peg$literalExpectation("DarkSlateGray",false),peg$c641="darkslategrey",peg$c642=peg$literalExpectation("darkslategrey",false),peg$c643="DarkSlateGrey",peg$c644=peg$literalExpectation("DarkSlateGrey",false),peg$c645="darkturquoise",peg$c646=peg$literalExpectation("darkturquoise",false),peg$c647=function(){return"#00ced1ff"},peg$c648="DarkTurquoise",peg$c649=peg$literalExpectation("DarkTurquoise",false),peg$c650="darkviolet",peg$c651=peg$literalExpectation("darkviolet",false),peg$c652=function(){return"#9400d3ff"},peg$c653="DarkViolet",peg$c654=peg$literalExpectation("DarkViolet",false),peg$c655="deeppink",peg$c656=peg$literalExpectation("deeppink",false),peg$c657=function(){return"#ff1493ff"},peg$c658="DeepPink",peg$c659=peg$literalExpectation("DeepPink",false),peg$c660="deepskyblue",peg$c661=peg$literalExpectation("deepskyblue",false),peg$c662=function(){return"#00bfffff"},peg$c663="DeepSkyBlue",peg$c664=peg$literalExpectation("DeepSkyBlue",false),peg$c665="dimgray",peg$c666=peg$literalExpectation("dimgray",false),peg$c667=function(){return"#696969ff"},peg$c668="DimGray",peg$c669=peg$literalExpectation("DimGray",false),peg$c670="dimgrey",peg$c671=peg$literalExpectation("dimgrey",false),peg$c672="DimGrey",peg$c673=peg$literalExpectation("DimGrey",false),peg$c674="dodgerblue",peg$c675=peg$literalExpectation("dodgerblue",false),peg$c676=function(){return"#1e90ffff"},peg$c677="DodgerBlue",peg$c678=peg$literalExpectation("DodgerBlue",false),peg$c679="firebrick",peg$c680=peg$literalExpectation("firebrick",false),peg$c681=function(){return"#b22222ff"},peg$c682="FireBrick",peg$c683=peg$literalExpectation("FireBrick",false),peg$c684="floralwhite",peg$c685=peg$literalExpectation("floralwhite",false),peg$c686=function(){return"#fffaf0ff"},peg$c687="FloralWhite",peg$c688=peg$literalExpectation("FloralWhite",false),peg$c689="forestgreen",peg$c690=peg$literalExpectation("forestgreen",false),peg$c691=function(){return"#228b22ff"},peg$c692="ForestGreen",peg$c693=peg$literalExpectation("ForestGreen",false),peg$c694="fuchsia",peg$c695=peg$literalExpectation("fuchsia",false),peg$c696=function(){return"#ff00ffff"},peg$c697="Fuchsia",peg$c698=peg$literalExpectation("Fuchsia",false),peg$c699="gainsboro",peg$c700=peg$literalExpectation("gainsboro",false),peg$c701=function(){return"#dcdcdcff"},peg$c702="Gainsboro",peg$c703=peg$literalExpectation("Gainsboro",false),peg$c704="ghostwhite",peg$c705=peg$literalExpectation("ghostwhite",false),peg$c706=function(){return"#f8f8ffff"},peg$c707="GhostWhite",peg$c708=peg$literalExpectation("GhostWhite",false),peg$c709="goldenrod",peg$c710=peg$literalExpectation("goldenrod",false),peg$c711=function(){return"#daa520ff"},peg$c712="GoldenRod",peg$c713=peg$literalExpectation("GoldenRod",false),peg$c714="gold",peg$c715=peg$literalExpectation("gold",false),peg$c716=function(){return"#ffd700ff"},peg$c717="Gold",peg$c718=peg$literalExpectation("Gold",false),peg$c719="gray",peg$c720=peg$literalExpectation("gray",false),peg$c721=function(){return"#808080ff"},peg$c722="Gray",peg$c723=peg$literalExpectation("Gray",false),peg$c724="grey",peg$c725=peg$literalExpectation("grey",false),peg$c726="Grey",peg$c727=peg$literalExpectation("Grey",false),peg$c728="greenyellow",peg$c729=peg$literalExpectation("greenyellow",false),peg$c730=function(){return"#adff2fff"},peg$c731="GreenYellow",peg$c732=peg$literalExpectation("GreenYellow",false),peg$c733="green",peg$c734=peg$literalExpectation("green",false),peg$c735=function(){return"#008000ff"},peg$c736="Green",peg$c737=peg$literalExpectation("Green",false),peg$c738="honeydew",peg$c739=peg$literalExpectation("honeydew",false),peg$c740=function(){return"#f0fff0ff"},peg$c741="HoneyDew",peg$c742=peg$literalExpectation("HoneyDew",false),peg$c743="hotpink",peg$c744=peg$literalExpectation("hotpink",false),peg$c745=function(){return"#ff69b4ff"},peg$c746="HotPink",peg$c747=peg$literalExpectation("HotPink",false),peg$c748="indianred",peg$c749=peg$literalExpectation("indianred",false),peg$c750=function(){return"#cd5c5cff"},peg$c751="IndianRed",peg$c752=peg$literalExpectation("IndianRed",false),peg$c753="indigo",peg$c754=peg$literalExpectation("indigo",false),peg$c755=function(){return"#4b0082ff"},peg$c756="Indigo",peg$c757=peg$literalExpectation("Indigo",false),peg$c758="ivory",peg$c759=peg$literalExpectation("ivory",false),peg$c760=function(){return"#fffff0ff"},peg$c761="Ivory",peg$c762=peg$literalExpectation("Ivory",false),peg$c763="khaki",peg$c764=peg$literalExpectation("khaki",false),peg$c765=function(){return"#f0e68cff"},peg$c766="Khaki",peg$c767=peg$literalExpectation("Khaki",false),peg$c768="lavenderblush",peg$c769=peg$literalExpectation("lavenderblush",false),peg$c770=function(){return"#fff0f5ff"},peg$c771="LavenderBlush",peg$c772=peg$literalExpectation("LavenderBlush",false),peg$c773="lavender",peg$c774=peg$literalExpectation("lavender",false),peg$c775=function(){return"#e6e6faff"},peg$c776="Lavender",peg$c777=peg$literalExpectation("Lavender",false),peg$c778="lawngreen",peg$c779=peg$literalExpectation("lawngreen",false),peg$c780=function(){return"#7cfc00ff"},peg$c781="LawnGreen",peg$c782=peg$literalExpectation("LawnGreen",false),peg$c783="lemonchiffon",peg$c784=peg$literalExpectation("lemonchiffon",false),peg$c785=function(){return"#fffacdff"},peg$c786="LemonChiffon",peg$c787=peg$literalExpectation("LemonChiffon",false),peg$c788="lightblue",peg$c789=peg$literalExpectation("lightblue",false),peg$c790=function(){return"#add8e6ff"},peg$c791="LightBlue",peg$c792=peg$literalExpectation("LightBlue",false),peg$c793="lightcoral",peg$c794=peg$literalExpectation("lightcoral",false),peg$c795=function(){return"#f08080ff"},peg$c796="LightCoral",peg$c797=peg$literalExpectation("LightCoral",false),peg$c798="lightcyan",peg$c799=peg$literalExpectation("lightcyan",false),peg$c800=function(){return"#e0ffffff"},peg$c801="LightCyan",peg$c802=peg$literalExpectation("LightCyan",false),peg$c803="lightgoldenrodyellow",peg$c804=peg$literalExpectation("lightgoldenrodyellow",false),peg$c805=function(){return"#fafad2ff"},peg$c806="LightGoldenRodYellow",peg$c807=peg$literalExpectation("LightGoldenRodYellow",false),peg$c808="lightgray",peg$c809=peg$literalExpectation("lightgray",false),peg$c810=function(){return"#d3d3d3ff"},peg$c811="LightGray",peg$c812=peg$literalExpectation("LightGray",false),peg$c813="lightgrey",peg$c814=peg$literalExpectation("lightgrey",false),peg$c815="LightGrey",peg$c816=peg$literalExpectation("LightGrey",false),peg$c817="lightgreen",peg$c818=peg$literalExpectation("lightgreen",false),peg$c819=function(){return"#90ee90ff"},peg$c820="LightGreen",peg$c821=peg$literalExpectation("LightGreen",false),peg$c822="lightpink",peg$c823=peg$literalExpectation("lightpink",false),peg$c824=function(){return"#ffb6c1ff"},peg$c825="LightPink",peg$c826=peg$literalExpectation("LightPink",false),peg$c827="lightsalmon",peg$c828=peg$literalExpectation("lightsalmon",false),peg$c829=function(){return"#ffa07aff"},peg$c830="LightSalmon",peg$c831=peg$literalExpectation("LightSalmon",false),peg$c832="lightseagreen",peg$c833=peg$literalExpectation("lightseagreen",false),peg$c834=function(){return"#20b2aaff"},peg$c835="LightSeaGreen",peg$c836=peg$literalExpectation("LightSeaGreen",false),peg$c837="lightskyblue",peg$c838=peg$literalExpectation("lightskyblue",false),peg$c839=function(){return"#87cefaff"},peg$c840="LightSkyBlue",peg$c841=peg$literalExpectation("LightSkyBlue",false),peg$c842="lightslategray",peg$c843=peg$literalExpectation("lightslategray",false),peg$c844=function(){return"#778899ff"},peg$c845="LightSlateGray",peg$c846=peg$literalExpectation("LightSlateGray",false),peg$c847="lightslategrey",peg$c848=peg$literalExpectation("lightslategrey",false),peg$c849="LightSlateGrey",peg$c850=peg$literalExpectation("LightSlateGrey",false),peg$c851="lightsteelblue",peg$c852=peg$literalExpectation("lightsteelblue",false),peg$c853=function(){return"#b0c4deff"},peg$c854="LightSteelBlue",peg$c855=peg$literalExpectation("LightSteelBlue",false),peg$c856="lightyellow",peg$c857=peg$literalExpectation("lightyellow",false),peg$c858=function(){return"#ffffe0ff"},peg$c859="LightYellow",peg$c860=peg$literalExpectation("LightYellow",false),peg$c861="limegreen",peg$c862=peg$literalExpectation("limegreen",false),peg$c863=function(){return"#32cd32ff"},peg$c864="LimeGreen",peg$c865=peg$literalExpectation("LimeGreen",false),peg$c866="lime",peg$c867=peg$literalExpectation("lime",false),peg$c868=function(){return"#00ff00ff"},peg$c869="Lime",peg$c870=peg$literalExpectation("Lime",false),peg$c871="linen",peg$c872=peg$literalExpectation("linen",false),peg$c873=function(){return"#faf0e6ff"},peg$c874="Linen",peg$c875=peg$literalExpectation("Linen",false),peg$c876="magenta",peg$c877=peg$literalExpectation("magenta",false),peg$c878="Magenta",peg$c879=peg$literalExpectation("Magenta",false),peg$c880="maroon",peg$c881=peg$literalExpectation("maroon",false),peg$c882=function(){return"#800000ff"},peg$c883="Maroon",peg$c884=peg$literalExpectation("Maroon",false),peg$c885="mediumaquamarine",peg$c886=peg$literalExpectation("mediumaquamarine",false),peg$c887=function(){return"#66cdaaff"},peg$c888="MediumAquaMarine",peg$c889=peg$literalExpectation("MediumAquaMarine",false),peg$c890="mediumblue",peg$c891=peg$literalExpectation("mediumblue",false),peg$c892=function(){return"#0000cdff"},peg$c893="MediumBlue",peg$c894=peg$literalExpectation("MediumBlue",false),peg$c895="mediumorchid",peg$c896=peg$literalExpectation("mediumorchid",false),peg$c897=function(){return"#ba55d3ff"},peg$c898="MediumOrchid",peg$c899=peg$literalExpectation("MediumOrchid",false),peg$c900="mediumpurple",peg$c901=peg$literalExpectation("mediumpurple",false),peg$c902=function(){return"#9370d8ff"},peg$c903="MediumPurple",peg$c904=peg$literalExpectation("MediumPurple",false),peg$c905="mediumseagreen",peg$c906=peg$literalExpectation("mediumseagreen",false),peg$c907=function(){return"#3cb371ff"},peg$c908="MediumSeaGreen",peg$c909=peg$literalExpectation("MediumSeaGreen",false),peg$c910="mediumslateblue",peg$c911=peg$literalExpectation("mediumslateblue",false),peg$c912=function(){return"#7b68eeff"},peg$c913="MediumSlateBlue",peg$c914=peg$literalExpectation("MediumSlateBlue",false),peg$c915="mediumspringgreen",peg$c916=peg$literalExpectation("mediumspringgreen",false),peg$c917=function(){return"#00fa9aff"},peg$c918="MediumSpringGreen",peg$c919=peg$literalExpectation("MediumSpringGreen",false),peg$c920="mediumturquoise",peg$c921=peg$literalExpectation("mediumturquoise",false),peg$c922=function(){return"#48d1ccff"},peg$c923="MediumTurquoise",peg$c924=peg$literalExpectation("MediumTurquoise",false),peg$c925="mediumvioletred",peg$c926=peg$literalExpectation("mediumvioletred",false),peg$c927=function(){return"#c71585ff"},peg$c928="MediumVioletRed",peg$c929=peg$literalExpectation("MediumVioletRed",false),peg$c930="midnightblue",peg$c931=peg$literalExpectation("midnightblue",false),peg$c932=function(){return"#191970ff"},peg$c933="MidnightBlue",peg$c934=peg$literalExpectation("MidnightBlue",false),peg$c935="mintcream",peg$c936=peg$literalExpectation("mintcream",false),peg$c937=function(){return"#f5fffaff"},peg$c938="MintCream",peg$c939=peg$literalExpectation("MintCream",false),peg$c940="mistyrose",peg$c941=peg$literalExpectation("mistyrose",false),peg$c942=function(){return"#ffe4e1ff"},peg$c943="MistyRose",peg$c944=peg$literalExpectation("MistyRose",false),peg$c945="moccasin",peg$c946=peg$literalExpectation("moccasin",false),peg$c947=function(){return"#ffe4b5ff"},peg$c948="Moccasin",peg$c949=peg$literalExpectation("Moccasin",false),peg$c950="navajowhite",peg$c951=peg$literalExpectation("navajowhite",false),peg$c952=function(){return"#ffdeadff"},peg$c953="NavajoWhite",peg$c954=peg$literalExpectation("NavajoWhite",false),peg$c955="navy",peg$c956=peg$literalExpectation("navy",false),peg$c957=function(){return"#000080ff"},peg$c958="Navy",peg$c959=peg$literalExpectation("Navy",false),peg$c960="oldlace",peg$c961=peg$literalExpectation("oldlace",false),peg$c962=function(){return"#fdf5e6ff"},peg$c963="OldLace",peg$c964=peg$literalExpectation("OldLace",false),peg$c965="olivedrab",peg$c966=peg$literalExpectation("olivedrab",false),peg$c967=function(){return"#6b8e23ff"},peg$c968="OliveDrab",peg$c969=peg$literalExpectation("OliveDrab",false),peg$c970="olive",peg$c971=peg$literalExpectation("olive",false),peg$c972=function(){return"#808000ff"},peg$c973="Olive",peg$c974=peg$literalExpectation("Olive",false),peg$c975="orangered",peg$c976=peg$literalExpectation("orangered",false),peg$c977=function(){return"#ff4500ff"},peg$c978="OrangeRed",peg$c979=peg$literalExpectation("OrangeRed",false),peg$c980="orange",peg$c981=peg$literalExpectation("orange",false),peg$c982=function(){return"#ffa500ff"},peg$c983="Orange",peg$c984=peg$literalExpectation("Orange",false),peg$c985="orchid",peg$c986=peg$literalExpectation("orchid",false),peg$c987=function(){return"#da70d6ff"},peg$c988="Orchid",peg$c989=peg$literalExpectation("Orchid",false),peg$c990="palegoldenrod",peg$c991=peg$literalExpectation("palegoldenrod",false),peg$c992=function(){return"#eee8aaff"},peg$c993="PaleGoldenRod",peg$c994=peg$literalExpectation("PaleGoldenRod",false),peg$c995="palegreen",peg$c996=peg$literalExpectation("palegreen",false),peg$c997=function(){return"#98fb98ff"},peg$c998="PaleGreen",peg$c999=peg$literalExpectation("PaleGreen",false),peg$c1000="paleturquoise",peg$c1001=peg$literalExpectation("paleturquoise",false),peg$c1002=function(){return"#afeeeeff"},peg$c1003="PaleTurquoise",peg$c1004=peg$literalExpectation("PaleTurquoise",false),peg$c1005="palevioletred",peg$c1006=peg$literalExpectation("palevioletred",false),peg$c1007=function(){return"#d87093ff"},peg$c1008="PaleVioletRed",peg$c1009=peg$literalExpectation("PaleVioletRed",false),peg$c1010="papayawhip",peg$c1011=peg$literalExpectation("papayawhip",false),peg$c1012=function(){return"#ffefd5ff"},peg$c1013="PapayaWhip",peg$c1014=peg$literalExpectation("PapayaWhip",false),peg$c1015="peachpuff",peg$c1016=peg$literalExpectation("peachpuff",false),peg$c1017=function(){return"#ffdab9ff"},peg$c1018="PeachPuff",peg$c1019=peg$literalExpectation("PeachPuff",false),peg$c1020="peru",peg$c1021=peg$literalExpectation("peru",false),peg$c1022=function(){return"#cd853fff"},peg$c1023="Peru",peg$c1024=peg$literalExpectation("Peru",false),peg$c1025="pink",peg$c1026=peg$literalExpectation("pink",false),peg$c1027=function(){return"#ffc0cbff"},peg$c1028="Pink",peg$c1029=peg$literalExpectation("Pink",false),peg$c1030="plum",peg$c1031=peg$literalExpectation("plum",false),peg$c1032=function(){return"#dda0ddff"},peg$c1033="Plum",peg$c1034=peg$literalExpectation("Plum",false),peg$c1035="powderblue",peg$c1036=peg$literalExpectation("powderblue",false),peg$c1037=function(){return"#b0e0e6ff"},peg$c1038="PowderBlue",peg$c1039=peg$literalExpectation("PowderBlue",false),peg$c1040="purple",peg$c1041=peg$literalExpectation("purple",false),peg$c1042=function(){return"#800080ff"},peg$c1043="Purple",peg$c1044=peg$literalExpectation("Purple",false),peg$c1045="red",peg$c1046=peg$literalExpectation("red",false),peg$c1047=function(){return"#ff0000ff"},peg$c1048="Red",peg$c1049=peg$literalExpectation("Red",false),peg$c1050="rosybrown",peg$c1051=peg$literalExpectation("rosybrown",false),peg$c1052=function(){return"#bc8f8fff"},peg$c1053="RosyBrown",peg$c1054=peg$literalExpectation("RosyBrown",false),peg$c1055="royalblue",peg$c1056=peg$literalExpectation("royalblue",false),peg$c1057=function(){return"#4169e1ff"},peg$c1058="RoyalBlue",peg$c1059=peg$literalExpectation("RoyalBlue",false),peg$c1060="saddlebrown",peg$c1061=peg$literalExpectation("saddlebrown",false),peg$c1062=function(){return"#8b4513ff"},peg$c1063="SaddleBrown",peg$c1064=peg$literalExpectation("SaddleBrown",false),peg$c1065="salmon",peg$c1066=peg$literalExpectation("salmon",false),peg$c1067=function(){return"#fa8072ff"},peg$c1068="Salmon",peg$c1069=peg$literalExpectation("Salmon",false),peg$c1070="sandybrown",peg$c1071=peg$literalExpectation("sandybrown",false),peg$c1072=function(){return"#f4a460ff"},peg$c1073="SandyBrown",peg$c1074=peg$literalExpectation("SandyBrown",false),peg$c1075="seagreen",peg$c1076=peg$literalExpectation("seagreen",false),peg$c1077=function(){return"#2e8b57ff"},peg$c1078="SeaGreen",peg$c1079=peg$literalExpectation("SeaGreen",false),peg$c1080="seashell",peg$c1081=peg$literalExpectation("seashell",false),peg$c1082=function(){return"#fff5eeff"},peg$c1083="SeaShell",peg$c1084=peg$literalExpectation("SeaShell",false),peg$c1085="sienna",peg$c1086=peg$literalExpectation("sienna",false),peg$c1087=function(){return"#a0522dff"},peg$c1088="Sienna",peg$c1089=peg$literalExpectation("Sienna",false),peg$c1090="silver",peg$c1091=peg$literalExpectation("silver",false),peg$c1092=function(){return"#c0c0c0ff"},peg$c1093="Silver",peg$c1094=peg$literalExpectation("Silver",false),peg$c1095="skyblue",peg$c1096=peg$literalExpectation("skyblue",false),peg$c1097=function(){return"#87ceebff"},peg$c1098="SkyBlue",peg$c1099=peg$literalExpectation("SkyBlue",false),peg$c1100="slateblue",peg$c1101=peg$literalExpectation("slateblue",false),peg$c1102=function(){return"#6a5acdff"},peg$c1103="SlateBlue",peg$c1104=peg$literalExpectation("SlateBlue",false),peg$c1105="slategray",peg$c1106=peg$literalExpectation("slategray",false),peg$c1107=function(){return"#708090ff"},peg$c1108="SlateGray",peg$c1109=peg$literalExpectation("SlateGray",false),peg$c1110="slategrey",peg$c1111=peg$literalExpectation("slategrey",false),peg$c1112="SlateGrey",peg$c1113=peg$literalExpectation("SlateGrey",false),peg$c1114="snow",peg$c1115=peg$literalExpectation("snow",false),peg$c1116=function(){return"#fffafaff"},peg$c1117="Snow",peg$c1118=peg$literalExpectation("Snow",false),peg$c1119="springgreen",peg$c1120=peg$literalExpectation("springgreen",false),peg$c1121=function(){return"#00ff7fff"},peg$c1122="SpringGreen",peg$c1123=peg$literalExpectation("SpringGreen",false),peg$c1124="steelblue",peg$c1125=peg$literalExpectation("steelblue",false),peg$c1126=function(){return"#4682b4ff"},peg$c1127="SteelBlue",peg$c1128=peg$literalExpectation("SteelBlue",false),peg$c1129="tan",peg$c1130=peg$literalExpectation("tan",false),peg$c1131=function(){return"#d2b48cff"},peg$c1132="Tan",peg$c1133=peg$literalExpectation("Tan",false),peg$c1134="teal",peg$c1135=peg$literalExpectation("teal",false),peg$c1136=function(){return"#008080ff"},peg$c1137="Teal",peg$c1138=peg$literalExpectation("Teal",false),peg$c1139="thistle",peg$c1140=peg$literalExpectation("thistle",false),peg$c1141=function(){return"#d8bfd8ff"},peg$c1142="Thistle",peg$c1143=peg$literalExpectation("Thistle",false),peg$c1144="tomato",peg$c1145=peg$literalExpectation("tomato",false),peg$c1146=function(){return"#ff6347ff"},peg$c1147="Tomato",peg$c1148=peg$literalExpectation("Tomato",false),peg$c1149="turquoise",peg$c1150=peg$literalExpectation("turquoise",false),peg$c1151=function(){return"#40e0d0ff"},peg$c1152="Turquoise",peg$c1153=peg$literalExpectation("Turquoise",false),peg$c1154="violet",peg$c1155=peg$literalExpectation("violet",false),peg$c1156=function(){return"#ee82eeff"},peg$c1157="Violet",peg$c1158=peg$literalExpectation("Violet",false),peg$c1159="wheat",peg$c1160=peg$literalExpectation("wheat",false),peg$c1161=function(){return"#f5deb3ff"},peg$c1162="Wheat",peg$c1163=peg$literalExpectation("Wheat",false),peg$c1164="whitesmoke",peg$c1165=peg$literalExpectation("whitesmoke",false),peg$c1166=function(){return"#f5f5f5ff"},peg$c1167="WhiteSmoke",peg$c1168=peg$literalExpectation("WhiteSmoke",false),peg$c1169="white",peg$c1170=peg$literalExpectation("white",false),peg$c1171=function(){return"#ffffffff"},peg$c1172="White",peg$c1173=peg$literalExpectation("White",false),peg$c1174="yellowgreen",peg$c1175=peg$literalExpectation("yellowgreen",false),peg$c1176=function(){return"#9acd32ff"},peg$c1177="YellowGreen",peg$c1178=peg$literalExpectation("YellowGreen",false),peg$c1179="yellow",peg$c1180=peg$literalExpectation("yellow",false),peg$c1181=function(){return"#ffff00ff"},peg$c1182="Yellow",peg$c1183=peg$literalExpectation("Yellow",false),peg$c1184=function(lab){return lab},peg$c1185="#",peg$c1186=peg$literalExpectation("#",false),peg$c1187=function(r,g,b){return`#${r}${r}${g}${g}${b}${b}ff`},peg$c1188=function(r1,r2,g1,g2,b1,b2){return`#${r1}${r2}${g1}${g2}${b1}${b2}ff`},peg$c1189=function(r,g,b,a){return`#${r}${r}${g}${g}${b}${b}${a}${a}`},peg$c1190=function(r1,r2,g1,g2,b1,b2,a1,a2){return`#${r1}${r2}${g1}${g2}${b1}${b2}${a1}${a2}`},peg$c1191=peg$otherExpectation("color"),peg$c1192="arc_label",peg$c1193=peg$literalExpectation("arc_label",false),peg$c1194="head_label",peg$c1195=peg$literalExpectation("head_label",false),peg$c1196="tail_label",peg$c1197=peg$literalExpectation("tail_label",false),peg$c1198=":",peg$c1199=peg$literalExpectation(":",false),peg$c1200=";",peg$c1201=peg$literalExpectation(";",false),peg$c1202=function(key,value){return{key:key,value:value}},peg$c1203=peg$otherExpectation("single edge color"),peg$c1204="edge_color",peg$c1205=peg$literalExpectation("edge_color",false),peg$c1206=function(value){return{key:"single_edge_color",value:value}},peg$c1207=peg$otherExpectation("transition line style"),peg$c1208="line-style",peg$c1209=peg$literalExpectation("line-style",false),peg$c1210=function(value){return{key:"transition_line_style",value:value}},peg$c1211="{",peg$c1212=peg$literalExpectation("{",false),peg$c1213="}",peg$c1214=peg$literalExpectation("}",false),peg$c1215=function(items){return items},peg$c1216="%",peg$c1217=peg$literalExpectation("%",false),peg$c1218=function(value){return{key:"arrow probability",value:value}},peg$c1219="[",peg$c1220=peg$literalExpectation("[",false),peg$c1221="]",peg$c1222=peg$literalExpectation("]",false),peg$c1223=function(names){return names.map((i=>i[0]))},peg$c1224="+|",peg$c1225=peg$literalExpectation("+|",false),peg$c1226=function(nzd,dd){return{key:"stripe",value:parseInt(`${nzd}${dd}`,10)}},peg$c1227="-|",peg$c1228=peg$literalExpectation("-|",false),peg$c1229=function(nzd,dd){return{key:"stripe",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1230="+",peg$c1231=peg$literalExpectation("+",false),peg$c1232=function(nzd,dd){return{key:"cycle",value:parseInt(`${nzd}${dd}`,10)}},peg$c1233="-",peg$c1234=peg$literalExpectation("-",false),peg$c1235=function(nzd,dd){return{key:"cycle",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1236="+0",peg$c1237=peg$literalExpectation("+0",false),peg$c1238=function(){return{key:"cycle",value:0}},peg$c1239=function(r_action,r_prob,l_desc,arrow,r_desc,l_prob,l_action,label,tail){const base={kind:arrow,to:label};if(tail&&tail!==[]){base.se=tail}if(l_desc){base.l_desc=l_desc}if(r_desc){base.r_desc=r_desc}if(l_action){base.l_action=l_action}if(r_action){base.r_action=r_action}if(l_prob){base.l_probability=l_prob.value}if(r_prob){base.r_probability=r_prob.value}return base},peg$c1240=function(label,se){const base={key:"transition",from:label};if(se&&se!==[]){base.se=se}return base},peg$c1241="whargarbl",peg$c1242=peg$literalExpectation("whargarbl",false),peg$c1243="todo",peg$c1244=peg$literalExpectation("todo",false),peg$c1245=function(validationkey,value){return{key:validationkey,value:value}},peg$c1246="validation",peg$c1247=peg$literalExpectation("validation",false),peg$c1248="};",peg$c1249=peg$literalExpectation("};",false),peg$c1250=function(validation_items){return{config_kind:"validation",config_items:validation_items||[]}},peg$c1251="dot",peg$c1252=peg$literalExpectation("dot",false),peg$c1253="circo",peg$c1254=peg$literalExpectation("circo",false),peg$c1255="fdp",peg$c1256=peg$literalExpectation("fdp",false),peg$c1257="neato",peg$c1258=peg$literalExpectation("neato",false),peg$c1259="state",peg$c1260=peg$literalExpectation("state",false),peg$c1261=function(state_items){return{key:"default_state_config",value:state_items||[]}},peg$c1262="start_state",peg$c1263=peg$literalExpectation("start_state",false),peg$c1264=function(state_items){return{key:"default_start_state_config",value:state_items||[]}},peg$c1265="end_state",peg$c1266=peg$literalExpectation("end_state",false),peg$c1267=function(state_items){return{key:"default_end_state_config",value:state_items||[]}},peg$c1268="active_state",peg$c1269=peg$literalExpectation("active_state",false),peg$c1270=function(state_items){return{key:"default_active_state_config",value:state_items||[]}},peg$c1271="terminal_state",peg$c1272=peg$literalExpectation("terminal_state",false),peg$c1273=function(state_items){return{key:"default_terminal_state_config",value:state_items||[]}},peg$c1274="hooked_state",peg$c1275=peg$literalExpectation("hooked_state",false),peg$c1276=function(state_items){return{key:"default_hooked_state_config",value:state_items||[]}},peg$c1277=function(actionkey,value){return{key:actionkey,value:value}},peg$c1278="action",peg$c1279=peg$literalExpectation("action",false),peg$c1280=function(action_items){return{config_kind:"action",config_items:action_items||[]}},peg$c1281=function(key,value){return{key:key,value:value}},peg$c1282=peg$otherExpectation("graph default edge color"),peg$c1283=function(value){return{key:"graph_default_edge_color",value:value}},peg$c1284="transition",peg$c1285=peg$literalExpectation("transition",false),peg$c1286=function(transition_items){return{config_kind:"transition",config_items:transition_items||[]}},peg$c1287="graph_layout",peg$c1288=peg$literalExpectation("graph_layout",false),peg$c1289=function(value){return{key:"graph_layout",value:value}},peg$c1290="start_states",peg$c1291=peg$literalExpectation("start_states",false),peg$c1292=function(value){return{key:"start_states",value:value}},peg$c1293="end_states",peg$c1294=peg$literalExpectation("end_states",false),peg$c1295=function(value){return{key:"end_states",value:value}},peg$c1296="graph_bg_color",peg$c1297=peg$literalExpectation("graph_bg_color",false),peg$c1298=function(value){return{key:"graph_bg_color",value:value}},peg$c1299=peg$otherExpectation("configuration"),peg$c1300="MIT",peg$c1301=peg$literalExpectation("MIT",false),peg$c1302="BSD 2-clause",peg$c1303=peg$literalExpectation("BSD 2-clause",false),peg$c1304="BSD 3-clause",peg$c1305=peg$literalExpectation("BSD 3-clause",false),peg$c1306="Apache 2.0",peg$c1307=peg$literalExpectation("Apache 2.0",false),peg$c1308="Mozilla 2.0",peg$c1309=peg$literalExpectation("Mozilla 2.0",false),peg$c1310="Public domain",peg$c1311=peg$literalExpectation("Public domain",false),peg$c1312="GPL v2",peg$c1313=peg$literalExpectation("GPL v2",false),peg$c1314="GPL v3",peg$c1315=peg$literalExpectation("GPL v3",false),peg$c1316="LGPL v2.1",peg$c1317=peg$literalExpectation("LGPL v2.1",false),peg$c1318="LGPL v3.0",peg$c1319=peg$literalExpectation("LGPL v3.0",false),peg$c1320="Unknown",peg$c1321=peg$literalExpectation("Unknown",false),peg$c1322=peg$otherExpectation("direction"),peg$c1323="up",peg$c1324=peg$literalExpectation("up",false),peg$c1325="right",peg$c1326=peg$literalExpectation("right",false),peg$c1327="down",peg$c1328=peg$literalExpectation("down",false),peg$c1329="left",peg$c1330=peg$literalExpectation("left",false),peg$c1331=peg$otherExpectation("hook definition (open/closed)"),peg$c1332="open",peg$c1333=peg$literalExpectation("open",false),peg$c1334="closed",peg$c1335=peg$literalExpectation("closed",false),peg$c1336="machine_author",peg$c1337=peg$literalExpectation("machine_author",false),peg$c1338=function(value){return{key:"machine_author",value:value}},peg$c1339="machine_contributor",peg$c1340=peg$literalExpectation("machine_contributor",false),peg$c1341=function(value){return{key:"machine_contributor",value:value}},peg$c1342="machine_comment",peg$c1343=peg$literalExpectation("machine_comment",false),peg$c1344=function(value){return{key:"machine_comment",value:value}},peg$c1345="machine_definition",peg$c1346=peg$literalExpectation("machine_definition",false),peg$c1347=function(value){return{key:"machine_definition",value:value}},peg$c1348="machine_name",peg$c1349=peg$literalExpectation("machine_name",false),peg$c1350=function(value){return{key:"machine_name",value:value}},peg$c1354="machine_version",peg$c1355=peg$literalExpectation("machine_version",false),peg$c1356=function(value){return{key:"machine_version",value:value}},peg$c1357="machine_license",peg$c1358=peg$literalExpectation("machine_license",false),peg$c1359=function(value){return{key:"machine_license",value:value}},peg$c1360="machine_language",peg$c1361=peg$literalExpectation("machine_language",false),peg$c1362=function(value){return{key:"machine_language",value:value}},peg$c1363="fsl_version",peg$c1364=peg$literalExpectation("fsl_version",false),peg$c1365=function(value){return{key:"fsl_version",value:value}},peg$c1366="theme",peg$c1367=peg$literalExpectation("theme",false),peg$c1368=function(value){return{key:"theme",value:value}},peg$c1369="flow",peg$c1370=peg$literalExpectation("flow",false),peg$c1371=function(value){return{key:"flow",value:value}},peg$c1372="hooks",peg$c1373=peg$literalExpectation("hooks",false),peg$c1374=function(value){return{key:"hook_definition",value:value}},peg$c1375="dot_preamble",peg$c1376=peg$literalExpectation("dot_preamble",false),peg$c1377=function(value){return{key:"dot_preamble",value:value}},peg$c1378=peg$otherExpectation("machine attribute"),peg$c1379="label",peg$c1380=peg$literalExpectation("label",false),peg$c1381=function(value){return{key:"state-label",value:value}},peg$c1382="color",peg$c1383=peg$literalExpectation("color",false),peg$c1384=function(value){return{key:"color",value:value}},peg$c1385=peg$otherExpectation("text color"),peg$c1386="text-color",peg$c1387=peg$literalExpectation("text-color",false),peg$c1388=function(value){return{key:"text-color",value:value}},peg$c1389=peg$otherExpectation("background color"),peg$c1390="background-color",peg$c1391=peg$literalExpectation("background-color",false),peg$c1392=function(value){return{key:"background-color",value:value}},peg$c1393=peg$otherExpectation("border color"),peg$c1394="border-color",peg$c1395=peg$literalExpectation("border-color",false),peg$c1396=function(value){return{key:"border-color",value:value}},peg$c1397=peg$otherExpectation("shape"),peg$c1398="shape",peg$c1399=peg$literalExpectation("shape",false),peg$c1400=function(value){return{key:"shape",value:value}},peg$c1401=peg$otherExpectation("corners"),peg$c1402="corners",peg$c1403=peg$literalExpectation("corners",false),peg$c1404=function(value){return{key:"corners",value:value}},peg$c1405=peg$otherExpectation("linestyle"),peg$c1406=function(value){return{key:"line-style",value:value}},peg$c1407="linestyle",peg$c1408=peg$literalExpectation("linestyle",false),peg$c1409=peg$otherExpectation("state property"),peg$c1410="property",peg$c1411=peg$literalExpectation("property",false),peg$c1412=function(name,value){return{key:"state_property",name:name,value:value}},peg$c1413="required",peg$c1414=peg$literalExpectation("required",false),peg$c1415=function(name,value){return{key:"state_property",name:name,value:value,required:true}},peg$c1416=function(name,value){return{key:"state_declaration",name:name,value:value}},peg$c1417="&",peg$c1418=peg$literalExpectation("&",false),peg$c1419=function(name,value){return{key:"named_list",name:name,value:value}},peg$c1420=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value,required:true}},peg$c1421=function(name){return{key:"property_definition",name:name,required:true}},peg$c1422=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value}},peg$c1423=function(name){return{key:"property_definition",name:name}},peg$c1424="arrange",peg$c1425=peg$literalExpectation("arrange",false),peg$c1426=function(value){return{key:"arrange_declaration",value:value}},peg$c1427="arrange-start",peg$c1428=peg$literalExpectation("arrange-start",false),peg$c1429=function(value){return{key:"arrange_start_declaration",value:value}},peg$c1430="arrange-end",peg$c1431=peg$literalExpectation("arrange-end",false),peg$c1432=function(value){return{key:"arrange_end_declaration",value:value}},peg$c1433=peg$otherExpectation("arrange declaration"),peg$currPos=0,peg$savedPos=0,peg$posDetailsCache=[{line:1,column:1}],peg$maxFailPos=0,peg$maxFailExpected=[],peg$silentFails=0,peg$result;if("startRule"in options){if(!(options.startRule in peg$startRuleFunctions)){throw new Error("Can't start parsing from rule \""+options.startRule+'".')}peg$startRuleFunction=peg$startRuleFunctions[options.startRule]}function text(){return input.substring(peg$savedPos,peg$currPos)}function peg$literalExpectation(text,ignoreCase){return{type:"literal",text:text,ignoreCase:ignoreCase}}function peg$classExpectation(parts,inverted,ignoreCase){return{type:"class",parts:parts,inverted:inverted,ignoreCase:ignoreCase}}function peg$anyExpectation(){return{type:"any"}}function peg$endExpectation(){return{type:"end"}}function peg$otherExpectation(description){return{type:"other",description:description}}function peg$computePosDetails(pos){var details=peg$posDetailsCache[pos],p;if(details){return details}else{p=pos-1;while(!peg$posDetailsCache[p]){p--}details=peg$posDetailsCache[p];details={line:details.line,column:details.column};while(ppeg$maxFailPos){peg$maxFailPos=peg$currPos;peg$maxFailExpected=[]}peg$maxFailExpected.push(expected)}function peg$buildStructuredError(expected,found,location){return new peg$SyntaxError(peg$SyntaxError.buildMessage(expected,found),expected,found,location)}function peg$parseDocument(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseTermList();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c0(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTheme(){var s0;if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s0=peg$c3;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c5){s0=peg$c5;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c6)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c7){s0=peg$c7;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c8)}}}}}return s0}function peg$parseGvizShape(){var s0;if(input.substr(peg$currPos,5)===peg$c9){s0=peg$c9;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c10)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c11){s0=peg$c11;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c12)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c13){s0=peg$c13;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c14)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c15){s0=peg$c15;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c16)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c17){s0=peg$c17;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c18)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c19){s0=peg$c19;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c20)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c21){s0=peg$c21;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c22)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c23){s0=peg$c23;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c24)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c25){s0=peg$c25;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c26)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c27){s0=peg$c27;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c28)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c29){s0=peg$c29;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c30)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c31){s0=peg$c31;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c32)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c33){s0=peg$c33;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c34)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c35){s0=peg$c35;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c36)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c37){s0=peg$c37;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c38)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c39){s0=peg$c39;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c40)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c41){s0=peg$c41;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c42)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c43){s0=peg$c43;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c44)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c45){s0=peg$c45;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c46)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c47){s0=peg$c47;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c48)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c49){s0=peg$c49;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c50)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c51){s0=peg$c51;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c52)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c53){s0=peg$c53;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c54)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c55){s0=peg$c55;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c56)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c57){s0=peg$c57;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c58)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c59){s0=peg$c59;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c60)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c61){s0=peg$c61;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c62)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c63){s0=peg$c63;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c64)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c65){s0=peg$c65;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c66)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c67){s0=peg$c67;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c68)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c69){s0=peg$c69;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c70)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c71){s0=peg$c71;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c72)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c73){s0=peg$c73;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c74)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c75){s0=peg$c75;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c76)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c77){s0=peg$c77;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c78)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c79){s0=peg$c79;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c80)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c81){s0=peg$c81;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c82)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c83){s0=peg$c83;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c84)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c85){s0=peg$c85;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c86)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c87){s0=peg$c87;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c88)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c89){s0=peg$c89;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c90)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c91){s0=peg$c91;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c92)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c93){s0=peg$c93;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c94)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,15)===peg$c95){s0=peg$c95;peg$currPos+=15}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c96)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c97){s0=peg$c97;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c98)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,14)===peg$c99){s0=peg$c99;peg$currPos+=14}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c100)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c101){s0=peg$c101;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c102)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c103){s0=peg$c103;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c104)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c105){s0=peg$c105;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c106)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c107){s0=peg$c107;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c108)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c109){s0=peg$c109;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c110)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c111){s0=peg$c111;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c112)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c113){s0=peg$c113;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c114)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c115){s0=peg$c115;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c116)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c117){s0=peg$c117;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c118)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c119){s0=peg$c119;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c120)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c121){s0=peg$c121;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c122)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c123){s0=peg$c123;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c124)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c125){s0=peg$c125;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c126)}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseForwardLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c128){s0=peg$c128;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c129)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8594){s1=peg$c130;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c131)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c132()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c127)}}return s0}function peg$parseTwoWayLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c134){s0=peg$c134;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c135)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8596){s1=peg$c136;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c137)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c138()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c133)}}return s0}function peg$parseBackLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c140){s0=peg$c140;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c141)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8592){s1=peg$c142;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c144()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c139)}}return s0}function peg$parseForwardFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c146){s0=peg$c146;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c147)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8658){s1=peg$c148;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c149)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c150()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c145)}}return s0}function peg$parseTwoWayFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c152){s0=peg$c152;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c153)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8660){s1=peg$c154;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c156()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c151)}}return s0}function peg$parseBackFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c158){s0=peg$c158;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c159)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8656){s1=peg$c160;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c161)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c162()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c157)}}return s0}function peg$parseForwardTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c164){s0=peg$c164;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c165)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8603){s1=peg$c166;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c167)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c168()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c163)}}return s0}function peg$parseTwoWayTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c170){s0=peg$c170;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c171)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8622){s1=peg$c172;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c174()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c169)}}return s0}function peg$parseBackTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c176){s0=peg$c176;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c177)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8602){s1=peg$c178;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c179)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c180()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c175)}}return s0}function peg$parseLightFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c182){s0=peg$c182;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c183)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c184){s1=peg$c184;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c185)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c186()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c181)}}return s0}function peg$parseLightTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c188){s0=peg$c188;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c189)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c190){s1=peg$c190;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c191)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c192()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c187)}}return s0}function peg$parseFatLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c194){s0=peg$c194;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c195)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c196){s1=peg$c196;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c197)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c198()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c193)}}return s0}function peg$parseFatTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c200){s0=peg$c200;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c201)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c202){s1=peg$c202;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c203)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c204()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c199)}}return s0}function peg$parseTildeLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c206){s0=peg$c206;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c207)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c208){s1=peg$c208;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c209)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c210()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c205)}}return s0}function peg$parseTildeFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c212){s0=peg$c212;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c213)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c214){s1=peg$c214;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c215)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c216()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c211)}}return s0}function peg$parseLightArrow(){var s0;peg$silentFails++;s0=peg$parseForwardLightArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayLightArrow();if(s0===peg$FAILED){s0=peg$parseBackLightArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c217)}}return s0}function peg$parseFatArrow(){var s0;peg$silentFails++;s0=peg$parseForwardFatArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayFatArrow();if(s0===peg$FAILED){s0=peg$parseBackFatArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c218)}}return s0}function peg$parseTildeArrow(){var s0;peg$silentFails++;s0=peg$parseForwardTildeArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayTildeArrow();if(s0===peg$FAILED){s0=peg$parseBackTildeArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c219)}}return s0}function peg$parseMixedArrow(){var s0;peg$silentFails++;s0=peg$parseLightFatArrow();if(s0===peg$FAILED){s0=peg$parseLightTildeArrow();if(s0===peg$FAILED){s0=peg$parseFatLightArrow();if(s0===peg$FAILED){s0=peg$parseFatTildeArrow();if(s0===peg$FAILED){s0=peg$parseTildeLightArrow();if(s0===peg$FAILED){s0=peg$parseTildeFatArrow()}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c220)}}return s0}function peg$parseArrow(){var s0;peg$silentFails++;s0=peg$parseMixedArrow();if(s0===peg$FAILED){s0=peg$parseLightArrow();if(s0===peg$FAILED){s0=peg$parseFatArrow();if(s0===peg$FAILED){s0=peg$parseTildeArrow()}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c221)}}return s0}function peg$parseBoolean(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c222){s1=peg$c222;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c223)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c224()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c225){s1=peg$c225;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c226)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c227()}s0=s1}return s0}function peg$parseCorners(){var s0;if(input.substr(peg$currPos,7)===peg$c228){s0=peg$c228;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c229)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c230){s0=peg$c230;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c231)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c232){s0=peg$c232;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c233)}}}}return s0}function peg$parseLineStyle(){var s0;if(input.substr(peg$currPos,5)===peg$c234){s0=peg$c234;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c235)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c236){s0=peg$c236;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c237)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c238){s0=peg$c238;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c239)}}}}return s0}function peg$parseChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===34){s2=peg$c240;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseNull(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c268){s1=peg$c268;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c269)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c270()}s0=s1;return s0}function peg$parseUndefined(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c271){s1=peg$c271;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c272)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c273()}s0=s1;return s0}function peg$parseEscape(){var s0;if(input.charCodeAt(peg$currPos)===92){s0=peg$c242;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}return s0}function peg$parseQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===34){s0=peg$c240;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}return s0}function peg$parseUnescaped(){var s0;if(peg$c274.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c275)}}return s0}function peg$parseActionLabelChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseActionLabelUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===39){s2=peg$c276;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseActionLabelQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===39){s0=peg$c276;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}return s0}function peg$parseActionLabelUnescaped(){var s0;if(peg$c278.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c279)}}return s0}function peg$parseActionLabel(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseActionLabelQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseActionLabelChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseActionLabelChar()}if(s2!==peg$FAILED){s3=peg$parseActionLabelQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c280)}}return s0}function peg$parseLineTerminator(){var s0;if(peg$c282.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c283)}}return s0}function peg$parseBlockCommentTail(){var s0,s1,s2;if(input.substr(peg$currPos,2)===peg$c286){s0=peg$c286;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c287)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseBlockComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c290){s1=peg$c290;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c291)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c289)}}return s0}function peg$parseEOF(){var s0,s1;s0=peg$currPos;peg$silentFails++;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}peg$silentFails--;if(s1===peg$FAILED){s0=void 0}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLineCommentTail(){var s0,s1,s2;s0=peg$parseLineTerminator();if(s0===peg$FAILED){s0=peg$parseEOF();if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseLineComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c293){s1=peg$c293;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c294)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c292)}}return s0}function peg$parseWS(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;s1=peg$parseBlockComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseLineComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=[];if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}if(s2!==peg$FAILED){while(s2!==peg$FAILED){s1.push(s2);if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}}}else{s1=peg$FAILED}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c295)}}return s0}function peg$parseString(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseChar()}if(s2!==peg$FAILED){s3=peg$parseQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c298)}}return s0}function peg$parseAtomFirstLetter(){var s0;if(peg$c299.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c300)}}return s0}function peg$parseAtomLetter(){var s0;if(peg$c301.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c302)}}return s0}function peg$parseAtom(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseAtomFirstLetter();if(s1!==peg$FAILED){s2=[];s3=peg$parseAtomLetter();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseAtomLetter()}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c304(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c303)}}return s0}function peg$parseLabel(){var s0;peg$silentFails++;s0=peg$parseAtom();if(s0===peg$FAILED){s0=peg$parseString()}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c305)}}return s0}function peg$parseIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseDecimalDigit(){var s0;if(peg$c308.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c309)}}return s0}function peg$parseNonZeroDigit(){var s0;if(peg$c310.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c311)}}return s0}function peg$parseHexDigit(){var s0;if(peg$c312.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c313)}}return s0}function peg$parseBinaryDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseOctalDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseNonNegNumber(){var s0,s1,s2,s3,s4;peg$silentFails++;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c316)}}return s0}function peg$parseJsNumericLiteral(){var s0,s1;peg$silentFails++;s0=peg$currPos;s1=peg$parseJsHexIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsBinaryIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonJsOctalIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c322){s1=peg$c322;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c323)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c324()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c325){s1=peg$c325;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c326)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c328){s1=peg$c328;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c329)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c330){s1=peg$c330;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c331)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c332){s1=peg$c332;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c333)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c334){s1=peg$c334;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c335)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c336){s1=peg$c336;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c337)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c338){s1=peg$c338;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c339)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c340){s1=peg$c340;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c341)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c343){s1=peg$c343;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c344)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c345){s1=peg$c345;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c346)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c347){s1=peg$c347;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c348)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8734){s1=peg$c349;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c350)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c351){s1=peg$c351;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c352)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c354){s1=peg$c354;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c355)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===949){s1=peg$c356;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c357)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c358){s1=peg$c358;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c359)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c361){s1=peg$c361;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c362)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===960){s1=peg$c363;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c364)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c365){s1=peg$c365;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c366)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===69){s1=peg$c368;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c369)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===101){s1=peg$c370;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c371)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===400){s1=peg$c372;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c373)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8455){s1=peg$c374;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c375)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c376){s1=peg$c376;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c377)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c378()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c379){s1=peg$c379;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c380)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c381()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c382){s1=peg$c382;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c383)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c385){s1=peg$c385;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c386)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c387){s1=peg$c387;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c388)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c390){s1=peg$c390;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c391)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c392){s1=peg$c392;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c393)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c394()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c395){s1=peg$c395;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c396)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c397()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c398){s1=peg$c398;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c399)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c400()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c401){s1=peg$c401;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c402)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c403()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c404){s1=peg$c404;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c405)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c406()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c407){s1=peg$c407;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c408)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c409()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c410){s1=peg$c410;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c411)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c413){s1=peg$c413;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c414)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c415){s1=peg$c415;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c416)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===981){s1=peg$c417;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c418)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===966){s1=peg$c419;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c420)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c421){s1=peg$c421;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c422)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c426){s1=peg$c426;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c427)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c320)}}return s0}function peg$parseJsDecimalLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseJsNExponentPart();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===46){s1=peg$c317;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s3=peg$parseJsNExponentPart();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseJsNExponentPart();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseJsDecimalIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseJsNExponentPart(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseJsNExponentIndicator();if(s1!==peg$FAILED){s2=peg$parseJsNSignedInteger();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsNExponentIndicator(){var s0;if(input.substr(peg$currPos,1).toLowerCase()===peg$c370){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c428)}}return s0}function peg$parseJsNSignedInteger(){var s0,s1,s2,s3;s0=peg$currPos;if(peg$c429.test(input.charAt(peg$currPos))){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c430)}}if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsHexIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c431){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c432)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseHexDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseHexDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c433(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsBinaryIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c434){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c435)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseBinaryDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseBinaryDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c436(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNonJsOctalIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c437){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c438)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseOctalDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseOctalDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c439(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSemVer(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=peg$parseIntegerLiteral();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s4=peg$c317;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s4!==peg$FAILED){s5=peg$parseIntegerLiteral();if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c440(s1,s3,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseUrlProtocol(){var s0;if(input.substr(peg$currPos,7)===peg$c451){s0=peg$c451;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c452)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c453){s0=peg$c453;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c454)}}}return s0}function peg$parseURL(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseUrlProtocol();if(s1!==peg$FAILED){s2=[];if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}}}else{s2=peg$FAILED}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c457();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSvgColorLabel(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c458){s1=peg$c458;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c459)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c461){s1=peg$c461;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c462)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c463){s1=peg$c463;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c464)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c466){s1=peg$c466;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c467)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c468){s1=peg$c468;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c469)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c471){s1=peg$c471;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c472)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c473){s1=peg$c473;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c474)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c476){s1=peg$c476;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c477)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c478){s1=peg$c478;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c479)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c481){s1=peg$c481;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c482)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c483){s1=peg$c483;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c484)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c486){s1=peg$c486;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c487)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c488){s1=peg$c488;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c489)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c491){s1=peg$c491;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c492)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c493){s1=peg$c493;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c494)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c496){s1=peg$c496;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c497)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c498){s1=peg$c498;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c499)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c501){s1=peg$c501;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c502)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c503){s1=peg$c503;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c504)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c506){s1=peg$c506;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c507)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c508){s1=peg$c508;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c509)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c511){s1=peg$c511;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c512)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c513){s1=peg$c513;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c514)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c516){s1=peg$c516;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c517)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c518){s1=peg$c518;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c519)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c521){s1=peg$c521;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c522)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c523){s1=peg$c523;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c524)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c526){s1=peg$c526;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c527)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c528){s1=peg$c528;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c529)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c531){s1=peg$c531;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c532)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c533){s1=peg$c533;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c534)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c536){s1=peg$c536;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c537)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c538){s1=peg$c538;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c539)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c541){s1=peg$c541;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c542)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c543){s1=peg$c543;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c544)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c546){s1=peg$c546;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c547)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c548){s1=peg$c548;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c549)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c551){s1=peg$c551;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c552)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c553){s1=peg$c553;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c554)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c556){s1=peg$c556;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c557)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c558){s1=peg$c558;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c559)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c560){s1=peg$c560;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c561)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c562){s1=peg$c562;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c563)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c565){s1=peg$c565;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c566)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c567){s1=peg$c567;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c568)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c570){s1=peg$c570;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c571)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c572){s1=peg$c572;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c573)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c575){s1=peg$c575;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c576)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c577){s1=peg$c577;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c578)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c580){s1=peg$c580;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c581)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c582){s1=peg$c582;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c583)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c584){s1=peg$c584;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c585)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c586){s1=peg$c586;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c587)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c589){s1=peg$c589;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c590)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c591){s1=peg$c591;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c592)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c594){s1=peg$c594;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c595)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c596){s1=peg$c596;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c597)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c599){s1=peg$c599;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c600)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c601){s1=peg$c601;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c602)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c604){s1=peg$c604;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c605)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c606){s1=peg$c606;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c607)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c609){s1=peg$c609;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c610)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c611){s1=peg$c611;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c612)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c614){s1=peg$c614;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c615)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c616){s1=peg$c616;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c617)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c619){s1=peg$c619;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c620)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c621){s1=peg$c621;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c622)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c624){s1=peg$c624;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c625)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c626){s1=peg$c626;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c627)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c629){s1=peg$c629;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c630)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c631){s1=peg$c631;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c632)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c634){s1=peg$c634;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c635)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c636){s1=peg$c636;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c637)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c639){s1=peg$c639;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c640)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c641){s1=peg$c641;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c642)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c643){s1=peg$c643;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c644)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c645){s1=peg$c645;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c646)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c648){s1=peg$c648;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c649)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c650){s1=peg$c650;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c651)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c653){s1=peg$c653;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c654)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c655){s1=peg$c655;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c656)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c658){s1=peg$c658;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c659)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c660){s1=peg$c660;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c661)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c663){s1=peg$c663;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c664)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c665){s1=peg$c665;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c666)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c668){s1=peg$c668;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c669)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c670){s1=peg$c670;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c671)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c672){s1=peg$c672;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c673)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c674){s1=peg$c674;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c675)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c677){s1=peg$c677;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c678)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c679){s1=peg$c679;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c680)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c682){s1=peg$c682;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c683)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c684){s1=peg$c684;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c685)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c687){s1=peg$c687;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c688)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c689){s1=peg$c689;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c690)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c692){s1=peg$c692;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c693)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c694){s1=peg$c694;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c695)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c697){s1=peg$c697;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c698)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c699){s1=peg$c699;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c700)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c702){s1=peg$c702;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c703)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c704){s1=peg$c704;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c705)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c707){s1=peg$c707;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c708)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c709){s1=peg$c709;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c710)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c712){s1=peg$c712;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c713)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c714){s1=peg$c714;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c715)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c717){s1=peg$c717;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c718)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c719){s1=peg$c719;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c720)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c722){s1=peg$c722;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c723)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c724){s1=peg$c724;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c725)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c726){s1=peg$c726;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c727)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c728){s1=peg$c728;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c729)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c731){s1=peg$c731;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c732)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c733){s1=peg$c733;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c734)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c736){s1=peg$c736;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c737)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c738){s1=peg$c738;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c739)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c741){s1=peg$c741;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c742)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c743){s1=peg$c743;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c744)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c746){s1=peg$c746;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c747)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c748){s1=peg$c748;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c749)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c751){s1=peg$c751;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c752)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c753){s1=peg$c753;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c754)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c756){s1=peg$c756;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c757)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c758){s1=peg$c758;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c759)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c761){s1=peg$c761;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c762)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c763){s1=peg$c763;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c764)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c766){s1=peg$c766;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c767)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c768){s1=peg$c768;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c769)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c771){s1=peg$c771;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c772)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c773){s1=peg$c773;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c774)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c776){s1=peg$c776;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c777)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c778){s1=peg$c778;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c779)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c781){s1=peg$c781;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c782)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c783){s1=peg$c783;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c784)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c786){s1=peg$c786;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c787)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c788){s1=peg$c788;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c789)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c791){s1=peg$c791;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c792)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c793){s1=peg$c793;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c794)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c796){s1=peg$c796;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c797)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c798){s1=peg$c798;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c799)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c801){s1=peg$c801;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c802)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c803){s1=peg$c803;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c804)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c806){s1=peg$c806;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c807)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c808){s1=peg$c808;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c809)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c811){s1=peg$c811;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c812)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c813){s1=peg$c813;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c814)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c815){s1=peg$c815;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c816)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c817){s1=peg$c817;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c818)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c820){s1=peg$c820;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c821)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c822){s1=peg$c822;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c823)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c825){s1=peg$c825;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c826)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c827){s1=peg$c827;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c828)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c830){s1=peg$c830;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c831)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c832){s1=peg$c832;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c833)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c835){s1=peg$c835;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c836)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c837){s1=peg$c837;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c838)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c840){s1=peg$c840;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c841)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c842){s1=peg$c842;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c843)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c845){s1=peg$c845;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c846)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c847){s1=peg$c847;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c848)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c849){s1=peg$c849;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c850)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c851){s1=peg$c851;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c852)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c854){s1=peg$c854;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c855)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c856){s1=peg$c856;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c857)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c859){s1=peg$c859;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c860)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c861){s1=peg$c861;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c862)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c864){s1=peg$c864;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c865)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c866){s1=peg$c866;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c867)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c869){s1=peg$c869;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c870)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c871){s1=peg$c871;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c872)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c874){s1=peg$c874;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c875)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c876){s1=peg$c876;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c877)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c878){s1=peg$c878;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c879)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c880){s1=peg$c880;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c881)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c883){s1=peg$c883;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c884)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c885){s1=peg$c885;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c886)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c888){s1=peg$c888;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c889)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c890){s1=peg$c890;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c891)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c893){s1=peg$c893;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c894)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c895){s1=peg$c895;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c896)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c898){s1=peg$c898;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c899)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c900){s1=peg$c900;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c901)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c903){s1=peg$c903;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c904)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c905){s1=peg$c905;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c906)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c908){s1=peg$c908;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c909)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c910){s1=peg$c910;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c911)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c913){s1=peg$c913;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c914)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c915){s1=peg$c915;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c916)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c918){s1=peg$c918;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c919)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c920){s1=peg$c920;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c921)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c923){s1=peg$c923;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c924)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c925){s1=peg$c925;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c926)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c928){s1=peg$c928;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c929)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c930){s1=peg$c930;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c931)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c933){s1=peg$c933;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c934)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c935){s1=peg$c935;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c936)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c938){s1=peg$c938;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c939)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c940){s1=peg$c940;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c941)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c943){s1=peg$c943;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c944)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c945){s1=peg$c945;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c946)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c948){s1=peg$c948;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c949)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c950){s1=peg$c950;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c951)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c953){s1=peg$c953;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c954)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c955){s1=peg$c955;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c956)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c958){s1=peg$c958;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c959)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c960){s1=peg$c960;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c961)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c963){s1=peg$c963;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c964)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c965){s1=peg$c965;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c966)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c968){s1=peg$c968;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c969)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c970){s1=peg$c970;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c971)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c973){s1=peg$c973;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c974)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c975){s1=peg$c975;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c976)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c978){s1=peg$c978;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c979)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c980){s1=peg$c980;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c981)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c983){s1=peg$c983;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c984)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c985){s1=peg$c985;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c986)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c988){s1=peg$c988;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c989)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c990){s1=peg$c990;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c991)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c993){s1=peg$c993;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c994)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c995){s1=peg$c995;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c996)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c998){s1=peg$c998;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c999)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1000){s1=peg$c1000;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1001)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1003){s1=peg$c1003;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1004)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1005){s1=peg$c1005;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1006)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1008){s1=peg$c1008;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1009)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1010){s1=peg$c1010;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1011)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1013){s1=peg$c1013;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1014)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1015){s1=peg$c1015;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1016)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1018){s1=peg$c1018;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1019)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1020){s1=peg$c1020;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1021)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1023){s1=peg$c1023;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1024)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1025){s1=peg$c1025;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1026)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1028){s1=peg$c1028;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1029)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1030){s1=peg$c1030;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1031)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1033){s1=peg$c1033;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1034)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1035){s1=peg$c1035;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1036)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1038){s1=peg$c1038;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1039)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1040){s1=peg$c1040;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1041)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1043){s1=peg$c1043;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1044)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1045){s1=peg$c1045;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1046)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1048){s1=peg$c1048;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1049)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1050){s1=peg$c1050;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1051)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1053){s1=peg$c1053;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1054)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1055){s1=peg$c1055;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1056)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1058){s1=peg$c1058;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1059)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1060){s1=peg$c1060;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1061)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1063){s1=peg$c1063;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1064)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1065){s1=peg$c1065;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1066)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1068){s1=peg$c1068;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1069)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1070){s1=peg$c1070;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1071)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1073){s1=peg$c1073;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1074)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1075){s1=peg$c1075;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1076)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1078){s1=peg$c1078;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1079)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1080){s1=peg$c1080;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1081)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1083){s1=peg$c1083;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1084)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1085){s1=peg$c1085;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1086)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1088){s1=peg$c1088;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1089)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1090){s1=peg$c1090;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1091)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1093){s1=peg$c1093;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1094)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1095){s1=peg$c1095;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1096)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1098){s1=peg$c1098;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1099)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1100){s1=peg$c1100;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1101)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1103){s1=peg$c1103;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1104)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1105){s1=peg$c1105;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1106)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1108){s1=peg$c1108;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1109)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1110){s1=peg$c1110;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1111)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1112){s1=peg$c1112;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1113)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1114){s1=peg$c1114;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1115)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1117){s1=peg$c1117;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1118)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1119){s1=peg$c1119;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1120)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1122){s1=peg$c1122;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1123)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1124){s1=peg$c1124;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1125)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1127){s1=peg$c1127;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1128)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1129){s1=peg$c1129;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1130)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1132){s1=peg$c1132;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1133)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1134){s1=peg$c1134;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1135)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1137){s1=peg$c1137;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1138)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1139){s1=peg$c1139;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1140)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1142){s1=peg$c1142;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1144){s1=peg$c1144;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1145)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1147){s1=peg$c1147;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1148)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1149){s1=peg$c1149;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1150)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1152){s1=peg$c1152;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1153)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1154){s1=peg$c1154;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1157){s1=peg$c1157;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1158)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1159){s1=peg$c1159;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1160)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1162){s1=peg$c1162;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1163)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1164){s1=peg$c1164;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1165)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1167){s1=peg$c1167;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1168)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1169){s1=peg$c1169;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1170)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1172){s1=peg$c1172;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1174){s1=peg$c1174;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1175)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1177){s1=peg$c1177;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1178)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1179){s1=peg$c1179;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1180)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1182){s1=peg$c1182;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1183)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseSvgColor(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseSvgColorLabel();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1184(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb3(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1187(s2,s3,s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb6(){var s0,s1,s2,s3,s4,s5,s6,s7,s8;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseWS();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){peg$savedPos=s0;s1=peg$c1188(s2,s3,s4,s5,s6,s7);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba4(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1189(s2,s3,s4,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba8(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s10=peg$parseWS();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){peg$savedPos=s0;s1=peg$c1190(s2,s3,s4,s5,s6,s7,s8,s9);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseColor(){var s0;peg$silentFails++;s0=peg$parseSvgColor();if(s0===peg$FAILED){s0=peg$parseRgba8();if(s0===peg$FAILED){s0=peg$parseRgb6();if(s0===peg$FAILED){s0=peg$parseRgba4();if(s0===peg$FAILED){s0=peg$parseRgb3()}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseArrowItemKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1192){s0=peg$c1192;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1193)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1194){s0=peg$c1194;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1195)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1196){s0=peg$c1196;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1197)}}}}return s0}function peg$parseArrowItem(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseArrowItemKey();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1202(s2,s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSingleEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1206(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1203)}}return s0}function peg$parseTransitionLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1210(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1207)}}return s0}function peg$parseArrowItems(){var s0,s1;s0=peg$parseSingleEdgeColor();if(s0===peg$FAILED){s0=peg$parseTransitionLineStyle();if(s0===peg$FAILED){s0=[];s1=peg$parseArrowItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseArrowItem()}}else{s0=peg$FAILED}}}return s0}function peg$parseArrowDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseArrowItems();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrowProbability(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseNonNegNumber();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===37){s2=peg$c1216;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1217)}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1218(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelList(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===91){s1=peg$c1219;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1220)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}while(s4!==peg$FAILED){s3.push(s4);s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===93){s4=peg$c1221;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1222)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1223(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelOrLabelList(){var s0;s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}return s0}function peg$parseStripe(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1224){s1=peg$c1224;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1225)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1226(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1227){s1=peg$c1227;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1228)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1229(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseCycle(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===43){s1=peg$c1230;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1231)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1232(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===45){s1=peg$c1233;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1234)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1235(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1236){s1=peg$c1236;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1237)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1238()}s0=s1}}return s0}function peg$parseArrowTarget(){var s0;s0=peg$parseStripe();if(s0===peg$FAILED){s0=peg$parseCycle();if(s0===peg$FAILED){s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}}}return s0}function peg$parseSubexp(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15,s16,s17,s18;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseActionLabel();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseArrowProbability();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseArrowDesc();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseArrow();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){s10=peg$parseArrowDesc();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){s12=peg$parseArrowProbability();if(s12===peg$FAILED){s12=null}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){s14=peg$parseActionLabel();if(s14===peg$FAILED){s14=null}if(s14!==peg$FAILED){s15=peg$parseWS();if(s15===peg$FAILED){s15=null}if(s15!==peg$FAILED){s16=peg$parseArrowTarget();if(s16!==peg$FAILED){s17=peg$parseWS();if(s17===peg$FAILED){s17=null}if(s17!==peg$FAILED){s18=peg$parseSubexp();if(s18===peg$FAILED){s18=null}if(s18!==peg$FAILED){peg$savedPos=s0;s1=peg$c1239(s2,s4,s6,s8,s10,s12,s14,s16,s18);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseExp(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseArrowTarget();if(s1!==peg$FAILED){s2=peg$parseSubexp();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1240(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseValidationItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseValidationKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1245(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationItems(){var s0,s1;s0=[];s1=peg$parseValidationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseValidationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigValidation(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1246){s2=peg$c1246;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1247)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseValidationItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1250(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseGvizLayout(){var s0;if(input.substr(peg$currPos,3)===peg$c1251){s0=peg$c1251;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1252)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1253){s0=peg$c1253;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1254)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c1255){s0=peg$c1255;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1256)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1257){s0=peg$c1257;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1258)}}}}}return s0}function peg$parseStateItems(){var s0,s1;s0=[];s1=peg$parseStateDeclarationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseStateDeclarationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1261(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1262){s2=peg$c1262;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1263)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1264(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1265){s2=peg$c1265;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1266)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1267(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigActiveState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1268){s2=peg$c1268;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1269)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1270(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigTerminalState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1271){s2=peg$c1271;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1272)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1273(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigHookedState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1274){s2=peg$c1274;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1275)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1276(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigAnyState(){var s0;s0=peg$parseConfigState();if(s0===peg$FAILED){s0=peg$parseConfigStartState();if(s0===peg$FAILED){s0=peg$parseConfigEndState();if(s0===peg$FAILED){s0=peg$parseConfigActiveState();if(s0===peg$FAILED){s0=peg$parseConfigTerminalState();if(s0===peg$FAILED){s0=peg$parseConfigHookedState()}}}}}return s0}function peg$parseActionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseActionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseActionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1277(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseActionItems(){var s0,s1;s0=[];s1=peg$parseActionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseActionItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigAction(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1278){s2=peg$c1278;peg$currPos+=6}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1279)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseActionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1280(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseTransitionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseTransitionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1281(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionItems(){var s0,s1;s0=peg$parseGraphDefaultEdgeColor();if(s0===peg$FAILED){s0=[];s1=peg$parseTransitionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTransitionItem()}}else{s0=peg$FAILED}}return s0}function peg$parseGraphDefaultEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1283(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1282)}}return s0}function peg$parseConfigTransition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1284){s2=peg$c1284;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1285)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseTransitionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1286(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphLayout(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1287){s2=peg$c1287;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1288)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizLayout();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1289(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1290){s2=peg$c1290;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1291)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1292(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1293){s2=peg$c1293;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1294)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1295(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphBgColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1296){s2=peg$c1296;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1297)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1298(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfig(){var s0;peg$silentFails++;s0=peg$parseConfigGraphLayout();if(s0===peg$FAILED){s0=peg$parseConfigStartNodes();if(s0===peg$FAILED){s0=peg$parseConfigEndNodes();if(s0===peg$FAILED){s0=peg$parseConfigTransition();if(s0===peg$FAILED){s0=peg$parseConfigAction();if(s0===peg$FAILED){s0=peg$parseConfigAnyState();if(s0===peg$FAILED){s0=peg$parseConfigValidation();if(s0===peg$FAILED){s0=peg$parseConfigGraphBgColor()}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1299)}}return s0}function peg$parseLicenseOrLabelOrList(){var s0;if(input.substr(peg$currPos,3)===peg$c1300){s0=peg$c1300;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1301)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1302){s0=peg$c1302;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1303)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1304){s0=peg$c1304;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1305)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1306){s0=peg$c1306;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1307)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1308){s0=peg$c1308;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1309)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c1310){s0=peg$c1310;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1311)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1312){s0=peg$c1312;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1313)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1314){s0=peg$c1314;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1315)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1316){s0=peg$c1316;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1317)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1318){s0=peg$c1318;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1319)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1320){s0=peg$c1320;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1321)}}if(s0===peg$FAILED){s0=peg$parseLabel();if(s0===peg$FAILED){s0=peg$parseLabelList()}}}}}}}}}}}}return s0}function peg$parseDirection(){var s0;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c1323){s0=peg$c1323;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1324)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1325){s0=peg$c1325;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1326)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1327){s0=peg$c1327;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1328)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1329){s0=peg$c1329;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1330)}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1322)}}return s0}function peg$parseHookDefinition(){var s0;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c1332){s0=peg$c1332;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1333)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1334){s0=peg$c1334;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1335)}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1331)}}return s0}function peg$parseMachineAuthor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1336){s2=peg$c1336;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1337)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1338(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineContributor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,19)===peg$c1339){s2=peg$c1339;peg$currPos+=19}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1340)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1341(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineComment(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1342){s2=peg$c1342;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1343)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1344(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,18)===peg$c1345){s2=peg$c1345;peg$currPos+=18}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1346)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseURL();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1347(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineName(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1348){s2=peg$c1348;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1349)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1350(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1354){s2=peg$c1354;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1355)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1356(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLicense(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1357){s2=peg$c1357;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1358)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLicenseOrLabelOrList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1359(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLanguage(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1360){s2=peg$c1360;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1361)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1362(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseFslVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1363){s2=peg$c1363;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1364)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1365(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineTheme(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1366){s2=peg$c1366;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1367)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseTheme();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1368(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineFlow(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1369){s2=peg$c1369;peg$currPos+=4}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1370)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseDirection();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1371(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineHookDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1372){s2=peg$c1372;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1373)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseHookDefinition();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1374(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseDotPreamble(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1375){s2=peg$c1375;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1376)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseString();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1377(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineAttribute(){var s0;peg$silentFails++;s0=peg$parseFslVersion();if(s0===peg$FAILED){s0=peg$parseMachineName();if(s0===peg$FAILED){s0=peg$parseMachineAuthor();if(s0===peg$FAILED){s0=peg$parseMachineContributor();if(s0===peg$FAILED){s0=peg$parseMachineComment();if(s0===peg$FAILED){s0=peg$parseMachineDefinition();if(s0===peg$FAILED){s0=peg$parseMachineVersion();if(s0===peg$FAILED){s0=peg$parseMachineLicense();if(s0===peg$FAILED){s0=peg$parseMachineLanguage();if(s0===peg$FAILED){s0=peg$parseMachineTheme();if(s0===peg$FAILED){s0=peg$parseDotPreamble();if(s0===peg$FAILED){s0=peg$parseMachineFlow();if(s0===peg$FAILED){s0=peg$parseMachineHookDefinition()}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1378)}}return s0}function peg$parsePropertyVal(){var s0;s0=peg$parseString();if(s0===peg$FAILED){s0=peg$parseBoolean();if(s0===peg$FAILED){s0=peg$parseJsNumericLiteral();if(s0===peg$FAILED){s0=peg$parseNull();if(s0===peg$FAILED){s0=peg$parseUndefined()}}}}return s0}function peg$parseSdStateLabel(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1379){s2=peg$c1379;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1380)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1381(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1382){s2=peg$c1382;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1383)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1384(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateTextColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1386){s2=peg$c1386;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1387)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1388(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1385)}}return s0}function peg$parseSdStateBackgroundColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1390){s2=peg$c1390;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1391)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1392(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1389)}}return s0}function peg$parseSdStateBorderColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1394){s2=peg$c1394;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1395)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1396(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1393)}}return s0}function peg$parseSdStateShape(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1398){s2=peg$c1398;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1399)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizShape();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1400(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1397)}}return s0}function peg$parseSdStateCorners(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1402){s2=peg$c1402;peg$currPos+=7}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1403)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseCorners();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1404(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1401)}}return s0}function peg$parseSdStateLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1407){s2=peg$c1407;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1408)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1405)}}return s0}function peg$parseSdStateProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1412(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1415(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1409)}}return s0}function peg$parseStateDeclarationItem(){var s0;s0=peg$parseSdStateLabel();if(s0===peg$FAILED){s0=peg$parseSdStateColor();if(s0===peg$FAILED){s0=peg$parseSdStateTextColor();if(s0===peg$FAILED){s0=peg$parseSdStateBackgroundColor();if(s0===peg$FAILED){s0=peg$parseSdStateBorderColor();if(s0===peg$FAILED){s0=peg$parseSdStateShape();if(s0===peg$FAILED){s0=peg$parseSdStateCorners();if(s0===peg$FAILED){s0=peg$parseSdStateLineStyle();if(s0===peg$FAILED){s0=peg$parseSdStateProperty()}}}}}}}}return s0}function peg$parseStateDeclarationDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$parseStateDeclarationItem();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseStateDeclarationItem()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseStateDeclaration(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateDeclarationDesc();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1416(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNamedList(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===38){s2=peg$c1417;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1418)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseLabelOrLabelList();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1419(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1420(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s6=peg$c1413;peg$currPos+=8}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1421(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1422(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s6=peg$c1200;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){peg$savedPos=s0;s1=peg$c1423(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}}return s0}function peg$parseRegularArrangeDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1424){s1=peg$c1424;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1425)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1426(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeStartDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1427){s1=peg$c1427;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1428)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1429(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeEndDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1430){s1=peg$c1430;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1431)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1432(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeDeclaration(){var s0;peg$silentFails++;s0=peg$parseArrangeStartDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeEndDeclaration();if(s0===peg$FAILED){s0=peg$parseRegularArrangeDeclaration()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1433)}}return s0}function peg$parseTerm(){var s0;s0=peg$parseExp();if(s0===peg$FAILED){s0=peg$parseStateDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeDeclaration();if(s0===peg$FAILED){s0=peg$parseNamedList();if(s0===peg$FAILED){s0=peg$parseMachineAttribute();if(s0===peg$FAILED){s0=peg$parseMachineProperty();if(s0===peg$FAILED){s0=peg$parseConfig()}}}}}}return s0}function peg$parseTermList(){var s0,s1;s0=[];s1=peg$parseTerm();while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTerm()}return s0}peg$result=peg$startRuleFunction();if(peg$result!==peg$FAILED&&peg$currPos===input.length){return peg$result}else{if(peg$result!==peg$FAILED&&peg$currPos":case"→":case"=>":case"⇒":case"~>":case"↛":return"right";case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"left";case"<->":case"↔":case"<-=>":case"←⇒":case"←=>":case"<-⇒":case"<-~>":case"←↛":case"←~>":case"<-↛":case"<=>":case"⇔":case"<=->":case"⇐→":case"⇐->":case"<=→":case"<=~>":case"⇐↛":case"⇐~>":case"<=↛":case"<~>":case"↮":case"<~->":case"↚→":case"↚->":case"<~→":case"<~=>":case"↚⇒":case"↚=>":case"<~⇒":return"both";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_left_kind(arrow){switch(String(arrow)){case"->":case"→":case"=>":case"⇒":case"~>":case"↛":return"none";case"<-":case"←":case"<->":case"↔":case"<-=>":case"←⇒":case"<-~>":case"←↛":return"legal";case"<=":case"⇐":case"<=>":case"⇔":case"<=->":case"⇐→":case"<=~>":case"⇐↛":return"main";case"<~":case"↚":case"<~>":case"↮":case"<~->":case"↚→":case"<~=>":case"↚⇒":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_right_kind(arrow){switch(String(arrow)){case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"none";case"->":case"→":case"<->":case"↔":case"<=->":case"⇐→":case"<~->":case"↚→":return"legal";case"=>":case"⇒":case"<=>":case"⇔":case"<-=>":case"←⇒":case"<~=>":case"↚⇒":return"main";case"~>":case"↛":case"<~>":case"↮":case"<-~>":case"←↛":case"<=~>":case"⇐↛":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function makeTransition(this_se,from,to,isRight,_wasList,_wasIndex){const kind=isRight?arrow_right_kind(this_se.kind):arrow_left_kind(this_se.kind),edge={from:from,to:to,kind:kind,forced_only:kind==="forced",main_path:kind==="main"};const action=isRight?"r_action":"l_action",probability=isRight?"r_probability":"l_probability";if(this_se[action]){edge.action=this_se[action]}if(this_se[probability]){edge.probability=this_se[probability]}return edge}function wrap_parse(input,options){return peg$parse(input,options||{})}function compile_rule_transition_step(acc,from,to,this_se,next_se){const edges=[];const uFrom=Array.isArray(from)?from:[from],uTo=Array.isArray(to)?to:[to];uFrom.map((f=>{uTo.map((t=>{const right=makeTransition(this_se,f,t,true);if(right.kind!=="none"){edges.push(right)}const left=makeTransition(this_se,t,f,false);if(left.kind!=="none"){edges.push(left)}}))}));const new_acc=acc.concat(edges);if(next_se){return compile_rule_transition_step(new_acc,to,next_se.to,next_se,next_se.se)}else{return new_acc}}function compile_rule_handle_transition(rule){return compile_rule_transition_step([],rule.from,rule.se.to,rule.se,rule.se.se)}function compile_rule_handler(rule){if(rule.key==="transition"){return{agg_as:"transition",val:compile_rule_handle_transition(rule)}}if(rule.key==="machine_language"){return{agg_as:"machine_language",val:reduceTo6391.reduce(rule.value)}}if(rule.key==="property_definition"){const ret={agg_as:"property_definition",val:{name:rule.name}};if(rule.hasOwnProperty("default_value")){ret.val.default_value=rule.default_value}if(rule.hasOwnProperty("required")){ret.val.required=rule.required}return ret}if(rule.key==="state_declaration"){if(!rule.name){throw new JssmError(undefined,"State declarations must have a name")}return{agg_as:"state_declaration",val:{state:rule.name,declarations:rule.value}}}if(["arrange_declaration","arrange_start_declaration","arrange_end_declaration"].includes(rule.key)){return{agg_as:rule.key,val:[rule.value]}}const tautologies=["graph_layout","start_states","end_states","machine_name","machine_version","machine_comment","machine_author","machine_contributor","machine_definition","machine_reference","machine_license","fsl_version","state_config","theme","flow","dot_preamble","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_active_state_config","default_terminal_state_config"];if(tautologies.includes(rule.key)){return{agg_as:rule.key,val:rule.value}}throw new JssmError(undefined,`compile_rule_handler: Unknown rule: ${JSON.stringify(rule)}`)}function compile(tree){const results={graph_layout:[],transition:[],start_states:[],end_states:[],state_config:[],state_declaration:[],fsl_version:[],machine_author:[],machine_comment:[],machine_contributor:[],machine_definition:[],machine_language:[],machine_license:[],machine_name:[],machine_reference:[],property_definition:[],state_property:{},theme:[],flow:[],dot_preamble:[],arrange_declaration:[],arrange_start_declaration:[],arrange_end_declaration:[],machine_version:[],default_state_config:[],default_active_state_config:[],default_hooked_state_config:[],default_terminal_state_config:[],default_start_state_config:[],default_end_state_config:[]};tree.map((tr=>{const rule=compile_rule_handler(tr),agg_as=rule.agg_as,val=rule.val;results[agg_as]=results[agg_as].concat(val)}));const property_keys=results["property_definition"].map((pd=>pd.name)),repeat_props=find_repeated(property_keys);if(repeat_props.length){throw new JssmError(undefined,`Cannot repeat property definitions. Saw ${JSON.stringify(repeat_props)}`)}const assembled_transitions=[].concat(...results["transition"]);const result_cfg={start_states:results.start_states.length?results.start_states:[assembled_transitions[0].from],end_states:results.end_states,transitions:assembled_transitions,state_property:[]};const oneOnlyKeys=["graph_layout","machine_name","machine_version","machine_comment","fsl_version","machine_license","machine_definition","machine_language","theme","flow","dot_preamble"];oneOnlyKeys.map((oneOnlyKey=>{if(results[oneOnlyKey].length>1){throw new JssmError(undefined,`May only have one ${oneOnlyKey} statement maximum: ${JSON.stringify(results[oneOnlyKey])}`)}else{if(results[oneOnlyKey].length){result_cfg[oneOnlyKey]=results[oneOnlyKey][0]}}}));["arrange_declaration","arrange_start_declaration","arrange_end_declaration","machine_author","machine_contributor","machine_reference","state_declaration","property_definition","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_terminal_state_config","default_active_state_config"].map((multiKey=>{if(results[multiKey].length){result_cfg[multiKey]=results[multiKey]}}));results.state_declaration.forEach((sd=>{sd.declarations.forEach((decl=>{if(decl.key==="state_property"){const label=name_bind_prop_and_state(decl.name,sd.state);if(result_cfg.state_property.findIndex((c=>c.name===label))!==-1){throw new JssmError(undefined,`A state may only bind a property once (${sd.state} re-binds ${decl.name})`)}else{result_cfg.state_property.push({name:label,default_value:decl.value})}}}))}));return result_cfg}function make(plan){return compile(wrap_parse(plan))}function transfer_state_properties(state_decl){state_decl.declarations.map((d=>{switch(d.key){case"shape":state_decl.shape=d.value;break;case"color":state_decl.color=d.value;break;case"corners":state_decl.corners=d.value;break;case"line-style":state_decl.lineStyle=d.value;break;case"text-color":state_decl.textColor=d.value;break;case"background-color":state_decl.backgroundColor=d.value;break;case"state-label":state_decl.stateLabel=d.value;break;case"border-color":state_decl.borderColor=d.value;break;case"state_property":state_decl.property={name:d.name,value:d.value};break;default:throw new JssmError(undefined,`Unknown state property: '${JSON.stringify(d)}'`)}}));return state_decl}function state_style_condense(jssk){const state_style={};if(Array.isArray(jssk)){jssk.forEach(((key,i)=>{if(typeof key!=="object"){throw new JssmError(this,`invalid state item ${i} in state_style_condense list: ${JSON.stringify(key)}`)}switch(key.key){case"shape":if(state_style.shape!==undefined){throw new JssmError(this,`cannot redefine 'shape' in state_style_condense, already defined`)}state_style.shape=key.value;break;case"color":if(state_style.color!==undefined){throw new JssmError(this,`cannot redefine 'color' in state_style_condense, already defined`)}state_style.color=key.value;break;case"text-color":if(state_style.textColor!==undefined){throw new JssmError(this,`cannot redefine 'text-color' in state_style_condense, already defined`)}state_style.textColor=key.value;break;case"corners":if(state_style.corners!==undefined){throw new JssmError(this,`cannot redefine 'corners' in state_style_condense, already defined`)}state_style.corners=key.value;break;case"line-style":if(state_style.lineStyle!==undefined){throw new JssmError(this,`cannot redefine 'line-style' in state_style_condense, already defined`)}state_style.lineStyle=key.value;break;case"background-color":if(state_style.backgroundColor!==undefined){throw new JssmError(this,`cannot redefine 'background-color' in state_style_condense, already defined`)}state_style.backgroundColor=key.value;break;case"state-label":if(state_style.stateLabel!==undefined){throw new JssmError(this,`cannot redefine 'state-label' in state_style_condense, already defined`)}state_style.stateLabel=key.value;break;case"border-color":if(state_style.borderColor!==undefined){throw new JssmError(this,`cannot redefine 'border-color' in state_style_condense, already defined`)}state_style.borderColor=key.value;break;default:throw new JssmError(this,`unknown state style key in condense: ${key.key}`)}}))}else if(jssk===undefined);else{throw new JssmError(this,"state_style_condense received a non-array")}return state_style}class Machine{constructor({start_states:start_states,end_states:end_states=[],complete:complete=[],transitions:transitions,machine_author:machine_author,machine_comment:machine_comment,machine_contributor:machine_contributor,machine_definition:machine_definition,machine_language:machine_language,machine_license:machine_license,machine_name:machine_name,machine_version:machine_version,state_declaration:state_declaration,property_definition:property_definition,state_property:state_property,fsl_version:fsl_version,dot_preamble:dot_preamble=undefined,arrange_declaration:arrange_declaration=[],arrange_start_declaration:arrange_start_declaration=[],arrange_end_declaration:arrange_end_declaration=[],theme:theme="default",flow:flow="down",graph_layout:graph_layout="dot",instance_name:instance_name,history:history,data:data,default_state_config:default_state_config,default_active_state_config:default_active_state_config,default_hooked_state_config:default_hooked_state_config,default_terminal_state_config:default_terminal_state_config,default_start_state_config:default_start_state_config,default_end_state_config:default_end_state_config}){this._instance_name=instance_name;this._state=start_states[0];this._states=new Map;this._state_declarations=new Map;this._edges=[];this._edge_map=new Map;this._named_transitions=new Map;this._actions=new Map;this._reverse_actions=new Map;this._reverse_action_targets=new Map;this._start_states=new Set(start_states);this._end_states=new Set(end_states);this._machine_author=array_box_if_string(machine_author);this._machine_comment=machine_comment;this._machine_contributor=array_box_if_string(machine_contributor);this._machine_definition=machine_definition;this._machine_language=machine_language;this._machine_license=machine_license;this._machine_name=machine_name;this._machine_version=machine_version;this._raw_state_declaration=state_declaration||[];this._fsl_version=fsl_version;this._arrange_declaration=arrange_declaration;this._arrange_start_declaration=arrange_start_declaration;this._arrange_end_declaration=arrange_end_declaration;this._dot_preamble=dot_preamble;this._themes=[theme];this._flow=flow;this._graph_layout=graph_layout;this._has_hooks=false;this._has_basic_hooks=false;this._has_named_hooks=false;this._has_entry_hooks=false;this._has_exit_hooks=false;this._has_global_action_hooks=false;this._has_transition_hooks=true;this._hooks=new Map;this._named_hooks=new Map;this._entry_hooks=new Map;this._exit_hooks=new Map;this._global_action_hooks=new Map;this._any_action_hook=undefined;this._standard_transition_hook=undefined;this._main_transition_hook=undefined;this._forced_transition_hook=undefined;this._any_transition_hook=undefined;this._has_post_hooks=false;this._has_post_basic_hooks=false;this._has_post_named_hooks=false;this._has_post_entry_hooks=false;this._has_post_exit_hooks=false;this._has_post_global_action_hooks=false;this._has_post_transition_hooks=true;this._post_hooks=new Map;this._post_named_hooks=new Map;this._post_entry_hooks=new Map;this._post_exit_hooks=new Map;this._post_global_action_hooks=new Map;this._post_any_action_hook=undefined;this._post_standard_transition_hook=undefined;this._post_main_transition_hook=undefined;this._post_forced_transition_hook=undefined;this._post_any_transition_hook=undefined;this._data=data;this._property_keys=new Set;this._default_properties=new Map;this._state_properties=new Map;this._required_properties=new Set;this._state_style=state_style_condense(default_state_config);this._active_state_style=state_style_condense(default_active_state_config);this._hooked_state_style=state_style_condense(default_hooked_state_config);this._terminal_state_style=state_style_condense(default_terminal_state_config);this._start_state_style=state_style_condense(default_start_state_config);this._end_state_style=state_style_condense(default_end_state_config);this._history_length=history||0;this._history=new circular_buffer(this._history_length);this._state_labels=new Map;if(state_declaration){state_declaration.map((state_decl=>{if(this._state_declarations.has(state_decl.state)){throw new JssmError(this,`Added the same state declaration twice: ${JSON.stringify(state_decl.state)}`)}this._state_declarations.set(state_decl.state,transfer_state_properties(state_decl))}))}[...this._state_declarations].map((sd=>{const[key,decl]=sd,labelled=decl.declarations.filter((d=>d.key==="state-label"));if(labelled.length>1){throw new JssmError(this,`state ${key} may only have one state-label; has ${labelled.length}`)}if(labelled.length===1){this._state_labels.set(key,labelled[0].value)}}));transitions.map((tr=>{if(tr.from===undefined){throw new JssmError(this,`transition must define 'from': ${JSON.stringify(tr)}`)}if(tr.to===undefined){throw new JssmError(this,`transition must define 'to': ${JSON.stringify(tr)}`)}const cursor_from=this._states.get(tr.from)||{name:tr.from,from:[],to:[],complete:complete.includes(tr.from)};if(!this._states.has(tr.from)){this._new_state(cursor_from)}const cursor_to=this._states.get(tr.to)||{name:tr.to,from:[],to:[],complete:complete.includes(tr.to)};if(!this._states.has(tr.to)){this._new_state(cursor_to)}if(cursor_from.to.includes(tr.to)){throw new JssmError(this,`already has ${JSON.stringify(tr.from)} to ${JSON.stringify(tr.to)}`)}else{cursor_from.to.push(tr.to);cursor_to.from.push(tr.from)}this._edges.push(tr);const thisEdgeId=this._edges.length-1;if(tr.name){if(this._named_transitions.has(tr.name)){throw new JssmError(this,`named transition "${JSON.stringify(tr.name)}" already created`)}else{this._named_transitions.set(tr.name,thisEdgeId)}}const from_mapping=this._edge_map.get(tr.from)||new Map;if(!this._edge_map.has(tr.from)){this._edge_map.set(tr.from,from_mapping)}from_mapping.set(tr.to,thisEdgeId);if(tr.action){let actionMap=this._actions.get(tr.action);if(!actionMap){actionMap=new Map;this._actions.set(tr.action,actionMap)}if(actionMap.has(tr.from)){throw new JssmError(this,`action ${JSON.stringify(tr.action)} already attached to origin ${JSON.stringify(tr.from)}`)}else{actionMap.set(tr.from,thisEdgeId)}let rActionMap=this._reverse_actions.get(tr.from);if(!rActionMap){rActionMap=new Map;this._reverse_actions.set(tr.from,rActionMap)}rActionMap.set(tr.action,thisEdgeId);if(!this._reverse_action_targets.has(tr.to)){this._reverse_action_targets.set(tr.to,new Map)}}}));if(Array.isArray(property_definition)){property_definition.forEach((pr=>{this._property_keys.add(pr.name);if(pr.hasOwnProperty("default_value")){this._default_properties.set(pr.name,pr.default_value)}if(pr.hasOwnProperty("required")&&pr.required===true){this._required_properties.add(pr.name)}}))}if(Array.isArray(state_property)){state_property.forEach((sp=>{this._state_properties.set(sp.name,sp.default_value)}))}this._state_properties.forEach(((_value,key)=>{const inside=JSON.parse(key);if(Array.isArray(inside)){const j_property=inside[0];if(typeof j_property==="string"){const j_state=inside[1];if(typeof j_state==="string"){if(!this.known_prop(j_property)){throw new JssmError(this,`State "${j_state}" has property "${j_property}" which is not globally declared`)}}}}}));this._required_properties.forEach((dp_key=>{if(this._default_properties.has(dp_key)){throw new JssmError(this,`The property "${dp_key}" is required, but also has a default; these conflict`)}this.states().forEach((s=>{const bound_name=name_bind_prop_and_state(dp_key,s);if(!this._state_properties.has(bound_name)){throw new JssmError(this,`State "${s}" is missing required property "${dp_key}"`)}}))}))}_new_state(state_config){if(this._states.has(state_config.name)){throw new JssmError(this,`state ${JSON.stringify(state_config.name)} already exists`)}this._states.set(state_config.name,state_config);return state_config.name}state(){return this._state}label_for(state){return this._state_labels.get(state)}data(){return this._data}prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{return undefined}}strict_prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{throw new JssmError(this,`Strictly requested a prop '${name}' which doesn't exist on current state '${this.state()}' and has no default`)}}props(){const ret={};this.known_props().forEach((p=>ret[p]=this.prop(p)));return ret}known_prop(prop_name){return this._property_keys.has(prop_name)}known_props(){return[...this._property_keys]}is_start_state(whichState){return this._start_states.has(whichState)}is_end_state(whichState){return this._end_states.has(whichState)}state_is_final(whichState){return this.state_is_terminal(whichState)||this.state_is_complete(whichState)}is_final(){return this.state_is_final(this.state())}serialize(comment){return{comment:comment,state:this._state,data:this._data,jssm_version:version,history:this._history.toArray(),history_capacity:this._history.capacity,timestamp:(new Date).getTime()}}graph_layout(){return this._graph_layout}dot_preamble(){return this._dot_preamble}machine_author(){return this._machine_author}machine_comment(){return this._machine_comment}machine_contributor(){return this._machine_contributor}machine_definition(){return this._machine_definition}machine_language(){return this._machine_language}machine_license(){return this._machine_license}machine_name(){return this._machine_name}machine_version(){return this._machine_version}raw_state_declarations(){return this._raw_state_declaration}state_declaration(which){return this._state_declarations.get(which)}state_declarations(){return this._state_declarations}fsl_version(){return this._fsl_version}machine_state(){return{internal_state_impl_version:1,actions:this._actions,edge_map:this._edge_map,edges:this._edges,named_transitions:this._named_transitions,reverse_actions:this._reverse_actions,state:this._state,states:this._states}}states(){return Array.from(this._states.keys())}state_for(whichState){const state=this._states.get(whichState);if(state){return state}else{throw new JssmError(this,"No such state",{requested_state:whichState})}}has_state(whichState){return this._states.get(whichState)!==undefined}list_edges(){return this._edges}list_named_transitions(){return this._named_transitions}list_actions(){return Array.from(this._actions.keys())}theme(){return this._themes[0]}themes(){return this._themes}flow(){return this._flow}get_transition_by_state_names(from,to){const emg=this._edge_map.get(from);if(emg){return emg.get(to)}else{return undefined}}lookup_transition_for(from,to){const id=this.get_transition_by_state_names(from,to);return id===undefined||id===null?undefined:this._edges[id]}list_transitions(whichState=this.state()){return{entrances:this.list_entrances(whichState),exits:this.list_exits(whichState)}}list_entrances(whichState=this.state()){return(this._states.get(whichState)||{from:undefined}).from||[]}list_exits(whichState=this.state()){return(this._states.get(whichState)||{to:undefined}).to||[]}probable_exits_for(whichState){const wstate=this._states.get(whichState);if(!wstate){throw new JssmError(this,`No such state ${JSON.stringify(whichState)} in probable_exits_for`)}const wstate_to=wstate.to,wtf=wstate_to.map((ws=>this.lookup_transition_for(this.state(),ws))).filter(Boolean);return wtf}probabilistic_transition(){const selected=weighted_rand_select(this.probable_exits_for(this.state()));return this.transition(selected.to)}probabilistic_walk(n){return seq(n).map((()=>{const state_was=this.state();this.probabilistic_transition();return state_was})).concat([this.state()])}probabilistic_histo_walk(n){return histograph(this.probabilistic_walk(n))}actions(whichState=this.state()){const wstate=this._reverse_actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_states_having_action(whichState){const wstate=this._actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_exit_actions(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>filtered.action))}probable_action_exits(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>({action:filtered.action,probability:filtered.probability})))}is_unenterable(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_entrances(whichState).length===0}has_unenterables(){return this.states().some((x=>this.is_unenterable(x)))}is_terminal(){return this.state_is_terminal(this.state())}state_is_terminal(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_exits(whichState).length===0}has_terminals(){return this.states().some((x=>this.state_is_terminal(x)))}is_complete(){return this.state_is_complete(this.state())}state_is_complete(whichState){const wstate=this._states.get(whichState);if(wstate){return wstate.complete}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}has_completes(){return this.states().some((x=>this.state_is_complete(x)))}set_hook(HookDesc){switch(HookDesc.kind){case"hook":this._hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_hooks=true;this._has_basic_hooks=true;break;case"named":this._named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_hooks=true;this._has_named_hooks=true;break;case"global action":this._global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_hooks=true;this._has_global_action_hooks=true;break;case"any action":this._any_action_hook=HookDesc.handler;this._has_hooks=true;break;case"standard transition":this._standard_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"main transition":this._main_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"forced transition":this._forced_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"any transition":this._any_transition_hook=HookDesc.handler;this._has_hooks=true;break;case"entry":this._entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_hooks=true;this._has_entry_hooks=true;break;case"exit":this._exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_hooks=true;this._has_exit_hooks=true;break;case"post hook":this._post_hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_post_hooks=true;this._has_post_basic_hooks=true;break;case"post named":this._post_named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_post_hooks=true;this._has_post_named_hooks=true;break;case"post global action":this._post_global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_post_hooks=true;this._has_post_global_action_hooks=true;break;case"post any action":this._post_any_action_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post standard transition":this._post_standard_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post main transition":this._post_main_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post forced transition":this._post_forced_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post any transition":this._post_any_transition_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post entry":this._post_entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_post_entry_hooks=true;this._has_post_hooks=true;break;case"post exit":this._post_exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_post_exit_hooks=true;this._has_post_hooks=true;break;default:throw new JssmError(this,`Unknown hook type ${HookDesc.kind}, should be impossible`)}}hook(from,to,handler){this.set_hook({kind:"hook",from:from,to:to,handler:handler});return this}hook_action(from,to,action,handler){this.set_hook({kind:"named",from:from,to:to,action:action,handler:handler});return this}hook_global_action(action,handler){this.set_hook({kind:"global action",action:action,handler:handler});return this}hook_any_action(handler){this.set_hook({kind:"any action",handler:handler});return this}hook_standard_transition(handler){this.set_hook({kind:"standard transition",handler:handler});return this}hook_main_transition(handler){this.set_hook({kind:"main transition",handler:handler});return this}hook_forced_transition(handler){this.set_hook({kind:"forced transition",handler:handler});return this}hook_any_transition(handler){this.set_hook({kind:"any transition",handler:handler});return this}hook_entry(to,handler){this.set_hook({kind:"entry",to:to,handler:handler});return this}hook_exit(from,handler){this.set_hook({kind:"exit",from:from,handler:handler});return this}post_hook(from,to,handler){this.set_hook({kind:"post hook",from:from,to:to,handler:handler});return this}post_hook_action(from,to,action,handler){this.set_hook({kind:"post named",from:from,to:to,action:action,handler:handler});return this}post_hook_global_action(action,handler){this.set_hook({kind:"post global action",action:action,handler:handler});return this}post_hook_any_action(handler){this.set_hook({kind:"post any action",handler:handler});return this}post_hook_standard_transition(handler){this.set_hook({kind:"post standard transition",handler:handler});return this}post_hook_main_transition(handler){this.set_hook({kind:"post main transition",handler:handler});return this}post_hook_forced_transition(handler){this.set_hook({kind:"post forced transition",handler:handler});return this}post_hook_any_transition(handler){this.set_hook({kind:"post any transition",handler:handler});return this}post_hook_entry(to,handler){this.set_hook({kind:"post entry",to:to,handler:handler});return this}post_hook_exit(from,handler){this.set_hook({kind:"post exit",from:from,handler:handler});return this}edges_between(from,to){return this._edges.filter((edge=>edge.from===from&&edge.to===to))}transition_impl(newStateOrAction,newData,wasForced,wasAction){let valid=false,trans_type,newState,fromAction=undefined;if(wasForced){if(this.valid_force_transition(newStateOrAction,newData)){valid=true;trans_type="forced";newState=newStateOrAction}}else if(wasAction){if(this.valid_action(newStateOrAction,newData)){const edge=this.current_action_edge_for(newStateOrAction);valid=true;trans_type=edge.kind;newState=edge.to;fromAction=newStateOrAction}}else{if(this.valid_transition(newStateOrAction,newData)){if(this._has_transition_hooks){trans_type=this.edges_between(this._state,newStateOrAction)[0].kind}valid=true;newState=newStateOrAction}}const hook_args={data:this._data,action:fromAction,from:this._state,to:newState,forced:wasForced,trans_type:trans_type};if(valid){if(this._has_hooks){function update_fields(res){if(res.hasOwnProperty("data")){hook_args.data=res.data;data_changed=true}}let data_changed=false;if(wasAction){const outcome=abstract_hook_step(this._any_action_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome);const outcome2=abstract_hook_step(this._global_action_hooks.get(newStateOrAction),hook_args);if(outcome2.pass===false){return false}update_fields(outcome2)}if(this._any_transition_hook!==undefined){const outcome=abstract_hook_step(this._any_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_exit_hooks){const outcome=abstract_hook_step(this._exit_hooks.get(this._state),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_named_hooks){if(wasAction){const nhn=named_hook_name(this._state,newState,newStateOrAction),outcome=abstract_hook_step(this._named_hooks.get(nhn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}}if(this._has_basic_hooks){const hn=hook_name(this._state,newState),outcome=abstract_hook_step(this._hooks.get(hn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="legal"){const outcome=abstract_hook_step(this._standard_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="main"){const outcome=abstract_hook_step(this._main_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="forced"){const outcome=abstract_hook_step(this._forced_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_entry_hooks){const outcome=abstract_hook_step(this._entry_hooks.get(newState),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState;if(data_changed){this._data=hook_args.data}}else{if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState}}else{return false}if(this._has_post_hooks){if(wasAction){if(this._post_any_action_hook!==undefined){this._post_any_action_hook(hook_args)}const pgah=this._post_global_action_hooks.get(hook_args.action);if(pgah!==undefined){pgah(hook_args)}}if(this._post_any_transition_hook!==undefined){this._post_any_transition_hook(hook_args)}if(this._has_post_exit_hooks){const peh=this._post_exit_hooks.get(hook_args.from);if(peh!==undefined){peh(hook_args)}}if(this._has_post_named_hooks){if(wasAction){const nhn=named_hook_name(hook_args.from,hook_args.to,hook_args.action),pnh=this._post_named_hooks.get(nhn);if(pnh!==undefined){pnh(hook_args)}}}if(this._has_post_basic_hooks){const hook=this._post_hooks.get(hook_name(hook_args.from,hook_args.to));if(hook!==undefined){hook(hook_args)}}if(trans_type==="legal"){if(this._post_standard_transition_hook!==undefined){this._post_standard_transition_hook(hook_args)}}if(trans_type==="main"){if(this._post_main_transition_hook!==undefined){this._post_main_transition_hook(hook_args)}}if(trans_type==="forced"){if(this._post_forced_transition_hook!==undefined){this._post_forced_transition_hook(hook_args)}}if(this._has_post_entry_hooks){const hook=this._post_entry_hooks.get(hook_args.to);if(hook!==undefined){hook(hook_args)}}}return true}get history(){return this._history.toArray()}get history_inclusive(){const ret=this._history.toArray();ret.push([this.state(),this.data()]);return ret}get history_length(){return this._history_length}set history_length(to){this._history_length=to;this._history.resize(to,true)}action(actionName,newData){return this.transition_impl(actionName,newData,false,true)}get standard_state_style(){return this._state_style}get hooked_state_style(){return this._hooked_state_style}get start_state_style(){return this._start_state_style}get end_state_style(){return this._end_state_style}get terminal_state_style(){return this._terminal_state_style}get active_state_style(){return this._active_state_style}has_hooks(state){return false}style_for(state){const themes=[];const layers=[base_theme.state];themes.map((theme=>{if(theme.state){layers.push(theme.state)}}));if(this._state_style){layers.push(this._state_style)}if(this.has_hooks(state)){layers.push(base_theme.hooked);themes.map((theme=>{if(theme.hooked){layers.push(theme.hooked)}}));if(this._hooked_state_style){layers.push(this._hooked_state_style)}}if(this.state_is_terminal(state)){layers.push(base_theme.terminal);themes.map((theme=>{if(theme.terminal){layers.push(theme.terminal)}}));if(this._terminal_state_style){layers.push(this._terminal_state_style)}}if(this.is_start_state(state)){layers.push(base_theme.start);themes.map((theme=>{if(theme.start){layers.push(theme.start)}}));if(this._start_state_style){layers.push(this._start_state_style)}}if(this.is_end_state(state)){layers.push(base_theme.end);themes.map((theme=>{if(theme.end){layers.push(theme.end)}}));if(this._end_state_style){layers.push(this._end_state_style)}}if(this.state()===state){layers.push(base_theme.active);themes.map((theme=>{if(theme.active){layers.push(theme.active)}}));if(this._active_state_style){layers.push(this._active_state_style)}}const individual_style={},decl=this._state_declarations.get(state);individual_style.color=decl===null||decl===void 0?void 0:decl.color;individual_style.textColor=decl===null||decl===void 0?void 0:decl.textColor;individual_style.borderColor=decl===null||decl===void 0?void 0:decl.borderColor;individual_style.backgroundColor=decl===null||decl===void 0?void 0:decl.backgroundColor;individual_style.lineStyle=decl===null||decl===void 0?void 0:decl.lineStyle;individual_style.corners=decl===null||decl===void 0?void 0:decl.corners;individual_style.shape=decl===null||decl===void 0?void 0:decl.shape;layers.push(individual_style);return layers.reduce(((acc,cur)=>{const composite_state=acc;Object.keys(cur).forEach((key=>{var _a;return composite_state[key]=(_a=cur[key])!==null&&_a!==void 0?_a:composite_state[key]}));return composite_state}),{})}do(actionName,newData){return this.transition_impl(actionName,newData,false,true)}transition(newState,newData){return this.transition_impl(newState,newData,false,false)}go(newState,newData){return this.transition_impl(newState,newData,false,false)}force_transition(newState,newData){return this.transition_impl(newState,newData,true,false)}current_action_for(action){const action_base=this._actions.get(action);return action_base?action_base.get(this.state()):undefined}current_action_edge_for(action){const idx=this.current_action_for(action);if(idx===undefined||idx===null){throw new JssmError(this,`No such action ${JSON.stringify(action)}`)}return this._edges[idx]}valid_action(action,_newData){return this.current_action_for(action)!==undefined}valid_transition(newState,_newData){const transition_for=this.lookup_transition_for(this.state(),newState);if(!transition_for){return false}if(transition_for.forced_only){return false}return true}valid_force_transition(newState,_newData){return this.lookup_transition_for(this.state(),newState)!==undefined}instance_name(){return this._instance_name}sm(template_strings,...remainder){return sm(template_strings,...remainder)}}function sm(template_strings,...remainder){return new Machine(make(template_strings.reduce(((acc,val,idx)=>`${acc}${remainder[idx-1]}${val}`))))}function from(MachineAsString,ExtraConstructorFields){const to_decorate=make(MachineAsString);if(ExtraConstructorFields!==undefined){Object.keys(ExtraConstructorFields).map((key=>to_decorate[key]=ExtraConstructorFields[key]))}return new Machine(to_decorate)}function is_hook_complex_result(hr){if(typeof hr==="object"){if(typeof hr.pass==="boolean"){return true}}return false}function is_hook_rejection(hr){if(hr===true){return false}if(hr===undefined){return false}if(hr===false){return true}if(is_hook_complex_result(hr)){return!hr.pass}throw new TypeError("unknown hook rejection type result")}function abstract_hook_step(maybe_hook,hook_args){if(maybe_hook!==undefined){const result=maybe_hook(hook_args);if(result===undefined){return{pass:true}}if(result===true){return{pass:true}}if(result===false){return{pass:false}}if(is_hook_complex_result(result)){return result}throw new TypeError(`Unknown hook result type ${result}`)}else{return{pass:true}}}function deserialize(machine_string,ser){const machine=from(machine_string,{data:ser.data,history:ser.history_capacity});machine._state=ser.state;ser.history.forEach((history_item=>machine._history.push(history_item)));return machine}exports.Machine=Machine;exports.abstract_hook_step=abstract_hook_step;exports.arrow_direction=arrow_direction;exports.arrow_left_kind=arrow_left_kind;exports.arrow_right_kind=arrow_right_kind;exports.compile=compile;exports.constants=constants;exports.deserialize=deserialize;exports.find_repeated=find_repeated;exports.from=from;exports.gviz_shapes=gviz_shapes;exports.histograph=histograph;exports.is_hook_complex_result=is_hook_complex_result;exports.is_hook_rejection=is_hook_rejection;exports.make=make;exports.named_colors=named_colors;exports.parse=wrap_parse;exports.seq=seq;exports.shapes=shapes;exports.sm=sm;exports.state_style_condense=state_style_condense;exports.transfer_state_properties=transfer_state_properties;exports.unique=unique;exports.version=version;exports.weighted_histo_key=weighted_histo_key;exports.weighted_rand_select=weighted_rand_select;exports.weighted_sample_select=weighted_sample_select; diff --git a/dist/jssm.es5.cjs.nonmin.js b/dist/jssm.es5.cjs.nonmin.js index 9b0847ae..8974fd5f 100644 --- a/dist/jssm.es5.cjs.nonmin.js +++ b/dist/jssm.es5.cjs.nonmin.js @@ -872,6 +872,177 @@ var reduceTo6391 = { reduce: reduce, reductions: reductions }; class circular_buffer{constructor(uCapacity){if(!Number.isInteger(uCapacity)){throw new RangeError(`Capacity must be an integer, received ${uCapacity}`)}if(uCapacity<0){throw new RangeError(`Capacity must be a non-negative integer, received ${uCapacity}`)}this._values=new Array(uCapacity);this._capacity=uCapacity;this._cursor=0;this._offset=0;this._length=0;}get capacity(){return this._capacity}set capacity(newSize){this.resize(newSize);}get length(){return this._length}set length(newLength){if(newLength>this._capacity){throw new RangeError(`Requested new length [${newLength}] exceeds container capacity [${this._capacity}]`)}if(newLength<0){throw new RangeError(`Requested new length [${newLength}] cannot be negative`)}if(!Number.isInteger(newLength)){throw new RangeError(`Requested new length [${newLength}] must be an integer`)}if(this._length<=newLength){return}this._length=newLength;}get available(){return this._capacity-this._length}get isEmpty(){return this._length===0}get isFull(){return this._length===this._capacity}get first(){if(this.isEmpty){throw new RangeError("Cannot return first element of an empty container")}return this.at(0)}get last(){if(this.isEmpty){throw new RangeError("Cannot return last element of an empty container")}return this.at(this.length-1)}static from(i,map_fn,t){const new_array=map_fn?Array.from(i,map_fn,t):Array.from(i);const target_length=new_array.length;const ncb=new circular_buffer(target_length);ncb._values=new_array;ncb._length=target_length;return ncb}push(v){if(this.isFull){throw new RangeError(`Cannot push, structure is full to capacity`)}this._values[(this._cursor+this._length++)%this._capacity]=v;return v}shove(v){let shoved;if(this._capacity===0){throw new RangeError(`Cannot shove, structure is zero-capacity`)}if(this.isFull){shoved=this.pop();}this.push(v);return shoved}fill(x){for(let i=0;i=this._capacity){this._cursor-=this._capacity;}return cache}at(i){if(i<0){throw new RangeError(`circular_buffer does not support negative traversals; called at(${i})`)}if(!Number.isInteger(i)){throw new RangeError(`Accessors must be non-negative integers; called at(${i})`)}if(i>=this._capacity){throw new RangeError(`Requested cell ${i} exceeds container permanent capacity`)}if(i>=this._length){throw new RangeError(`Requested cell ${i} exceeds container current length`)}return this._values[(this._cursor+i)%this._capacity]}pos(i){return this.at(i-this.offset())}offset(){return this._offset}resize(newSize,preferEnd=false){this._values=this.toArray();this._cursor=0;const oldSize=this._length;this._length=Math.min(this._length,newSize);this._capacity=newSize;if(newSize>=oldSize){this._values.length=newSize;}else {if(preferEnd){const tmp=this._values.slice(oldSize-newSize);this._values=tmp;}else {this._values.length=newSize;}}}toArray(){const startPoint=this._cursor%this._capacity;if(this._capacity>startPoint+this._length){return this._values.slice(startPoint,startPoint+this._length)}else {const base=this._values.slice(startPoint,this._capacity);base.push(...this._values.slice(0,this.length-(this._capacity-startPoint)));return base}}} +const base_state_style$3 = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' +}; +const base_active_state_style$3 = { + textColor: 'white', + backgroundColor: 'dodgerblue4' +}; +const base_hooked_state_style$3 = { + shape: 'component' +}; +const base_terminal_state_style$3 = { + textColor: 'white', + backgroundColor: 'crimson' +}; +const base_active_terminal_state_style$3 = { + textColor: 'white', + backgroundColor: 'indigo' +}; +const base_start_state_style$3 = { + backgroundColor: 'yellow' +}; +const base_active_start_state_style$3 = { + backgroundColor: 'yellowgreen' +}; +const base_active_hooked_state_style$3 = { + backgroundColor: 'yellowgreen' +}; +const base_end_state_style$3 = { + textColor: 'white', + backgroundColor: 'darkolivegreen' +}; +const base_active_end_state_style$3 = { + textColor: 'white', + backgroundColor: 'darkgreen' +}; +const base_theme = { + state: base_state_style$3, + start: base_start_state_style$3, + end: base_end_state_style$3, + terminal: base_terminal_state_style$3, + hooked: base_hooked_state_style$3, + active: base_active_state_style$3, + active_start: base_active_start_state_style$3, + active_end: base_active_end_state_style$3, + active_terminal: base_active_terminal_state_style$3, + active_hooked: base_active_hooked_state_style$3, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME +}; + +const base_state_style$2 = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' +}; +const base_active_state_style$2 = { + textColor: 'white', + backgroundColor: 'dodgerblue4' +}; +const base_hooked_state_style$2 = { + shape: 'component' +}; +const base_terminal_state_style$2 = { + textColor: 'white', + backgroundColor: 'crimson' +}; +const base_active_terminal_state_style$2 = { + textColor: 'white', + backgroundColor: 'indigo' +}; +const base_start_state_style$2 = { + backgroundColor: 'yellow' +}; +const base_active_start_state_style$2 = { + backgroundColor: 'yellowgreen' +}; +const base_active_hooked_state_style$2 = { + backgroundColor: 'yellowgreen' +}; +const base_end_state_style$2 = { + textColor: 'white', + backgroundColor: 'darkolivegreen' +}; +const base_active_end_state_style$2 = { + textColor: 'white', + backgroundColor: 'darkgreen' +}; +const default_theme = { + state: base_state_style$2, + start: base_start_state_style$2, + end: base_end_state_style$2, + terminal: base_terminal_state_style$2, + hooked: base_hooked_state_style$2, + active: base_active_state_style$2, + active_start: base_active_start_state_style$2, + active_end: base_active_end_state_style$2, + active_terminal: base_active_terminal_state_style$2, + active_hooked: base_active_hooked_state_style$2, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME +}; + +const base_state_style$1 = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' +}; +const base_active_state_style$1 = { + textColor: 'white', + backgroundColor: 'dodgerblue4' +}; +const base_hooked_state_style$1 = { + shape: 'component' +}; +const base_terminal_state_style$1 = { + textColor: 'white', + backgroundColor: 'crimson' +}; +const base_active_terminal_state_style$1 = { + textColor: 'white', + backgroundColor: 'indigo' +}; +const base_start_state_style$1 = { + backgroundColor: 'yellow' +}; +const base_active_start_state_style$1 = { + backgroundColor: 'yellowgreen' +}; +const base_active_hooked_state_style$1 = { + backgroundColor: 'yellowgreen' +}; +const base_end_state_style$1 = { + textColor: 'white', + backgroundColor: 'darkolivegreen' +}; +const base_active_end_state_style$1 = { + textColor: 'white', + backgroundColor: 'darkgreen' +}; +const modern_theme = { + state: base_state_style$1, + start: base_start_state_style$1, + end: base_end_state_style$1, + terminal: base_terminal_state_style$1, + hooked: base_hooked_state_style$1, + active: base_active_state_style$1, + active_start: base_active_start_state_style$1, + active_end: base_active_end_state_style$1, + active_terminal: base_active_terminal_state_style$1, + active_hooked: base_active_hooked_state_style$1, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME +}; + const base_state_style = { shape: 'rectangle', backgroundColor: 'khaki', @@ -910,7 +1081,7 @@ const base_active_end_state_style = { textColor: 'white', backgroundColor: 'darkgreen' }; -const base_theme = { +const ocean_theme = { state: base_state_style, start: base_start_state_style, end: base_end_state_style, @@ -18884,6 +19055,10 @@ function peg$parse(input, options) { const version = "5.81.3"; // whargarbl lots of these return arrays could/should be sets +const themes = new Map(); +themes.set('default', default_theme); +themes.set('modern', modern_theme); +themes.set('ocean', ocean_theme); const { shapes, gviz_shapes, named_colors } = constants; /* eslint-disable complexity */ /********* @@ -19563,7 +19738,7 @@ class Machine { this._arrange_start_declaration = arrange_start_declaration; this._arrange_end_declaration = arrange_end_declaration; this._dot_preamble = dot_preamble; - this._theme = theme; + this._themes = [theme]; this._flow = flow; this._graph_layout = graph_layout; this._has_hooks = false; @@ -20256,7 +20431,10 @@ class Machine { return Array.from(this._actions.keys()); } theme() { - return this._theme; // constructor sets this to "default" otherwise + return this._themes[0]; // returns topmost only + } + themes() { + return this._themes; // constructor sets this to "default" otherwise } flow() { return this._flow; diff --git a/dist/jssm.es5.iife.js b/dist/jssm.es5.iife.js index 40cf6a20..dbea8112 100644 --- a/dist/jssm.es5.iife.js +++ b/dist/jssm.es5.iife.js @@ -1 +1 @@ -var jssm=function(exports){"use strict";var reductions={abkhazian:"ab","аҧсуа бызшәа, аҧсшәа":"ab",ab:"ab",abk:"ab","аҧсуа бызшәа":"ab","аҧсшәа":"ab",afar:"aa",afaraf:"aa",aa:"aa",aar:"aa",afrikaans:"af",af:"af",afr:"af",akan:"ak",ak:"ak",aka:"ak","aka + 2":"ak",albanian:"sq",shqip:"sq",sq:"sq",sqi:"sq",alb:"sq","sqi + 4":"sq",amharic:"am","አማርኛ":"am",am:"am",amh:"am",arabic:"ar","العربية":"ar",ar:"ar",ara:"ar","ara + 30":"ar",aragonese:"an","aragonés":"an",an:"an",arg:"an",armenian:"hy","հայերեն":"hy",hy:"hy",hye:"hy",arm:"hy",assamese:"as","অসমীয়া":"as",as:"as",asm:"as",avaric:"av","авар мацӏ, магӏарул мацӏ":"av",av:"av",ava:"av","авар мацӏ":"av","магӏарул мацӏ":"av",avestan:"ae",avesta:"ae",ae:"ae",ave:"ae",aymara:"ay","aymar aru":"ay",ay:"ay",aym:"ay","aym + 2":"ay",azerbaijani:"az","azərbaycan dili":"az",az:"az",aze:"az","aze + 2":"az",bambara:"bm",bamanankan:"bm",bm:"bm",bam:"bm",bashkir:"ba","башҡорт теле":"ba",ba:"ba",bak:"ba",basque:"eu","euskara, euskera":"eu",eu:"eu",eus:"eu",baq:"eu",euskara:"eu",euskera:"eu",belarusian:"be","беларуская мова":"be",be:"be",bel:"be",bengali:"bn","বাংলা":"bn",bn:"bn",ben:"bn","bihari languages":"bh","भोजपुरी":"bh",bh:"bh",bih:"bh",bislama:"bi",bi:"bi",bis:"bi",bosnian:"bs","bosanski jezik":"bs",bs:"bs",bos:"bs",breton:"br",brezhoneg:"br",br:"br",bre:"br",bulgarian:"bg","български език":"bg",bg:"bg",bul:"bg",burmese:"my","ဗမာစာ":"my",my:"my",mya:"my",bur:"my","catalan, valencian":"ca","català, valencià":"ca",ca:"ca",cat:"ca","català":"ca","valencià":"ca",chamorro:"ch",chamoru:"ch",ch:"ch",cha:"ch",chechen:"ce","нохчийн мотт":"ce",ce:"ce",che:"ce","chichewa, chewa, nyanja":"ny","chicheŵa, chinyanja":"ny",ny:"ny",nya:"ny","chicheŵa":"ny",chinyanja:"ny",chinese:"zh","中文 (zhōngwén), 汉语, 漢語":"zh",zh:"zh",zho:"zh",chi:"zh","zho + 13":"zh","中文 (zhōngwén)":"zh","汉语":"zh","漢語":"zh",chuvash:"cv","чӑваш чӗлхи":"cv",cv:"cv",chv:"cv",cornish:"kw",kernewek:"kw",kw:"kw",cor:"kw",corsican:"co","corsu, lingua corsa":"co",co:"co",cos:"co",corsu:"co","lingua corsa":"co",cree:"cr","ᓀᐦᐃᔭᐍᐏᐣ":"cr",cr:"cr",cre:"cr","cre + 6":"cr",croatian:"hr","hrvatski jezik":"hr",hr:"hr",hrv:"hr",czech:"cs","čeština, český jazyk":"cs",cs:"cs",ces:"cs",cze:"cs","čeština":"cs","český jazyk":"cs",danish:"da",dansk:"da",da:"da",dan:"da","divehi, dhivehi, maldivian":"dv","ދިވެހި":"dv",dv:"dv",div:"dv","dutch, flemish":"nl","nederlands, vlaams":"nl",nl:"nl",nld:"nl",dut:"nl",nederlands:"nl",vlaams:"nl",dzongkha:"dz","རྫོང་ཁ":"dz",dz:"dz",dzo:"dz",english:"en",en:"en",eng:"en",esperanto:"eo",eo:"eo",epo:"eo",estonian:"et","eesti, eesti keel":"et",et:"et",est:"et","est + 2":"et",eesti:"et","eesti keel":"et",ewe:"ee","eʋegbe":"ee",ee:"ee",faroese:"fo","føroyskt":"fo",fo:"fo",fao:"fo",fijian:"fj","vosa vakaviti":"fj",fj:"fj",fij:"fj",finnish:"fi","suomi, suomen kieli":"fi",fi:"fi",fin:"fi",suomi:"fi","suomen kieli":"fi",french:"fr","français, langue française":"fr",fr:"fr",fra:"fr",fre:"fr","français":"fr","langue française":"fr",fulah:"ff","fulfulde, pulaar, pular":"ff",ff:"ff",ful:"ff","ful + 9":"ff",fulfulde:"ff",pulaar:"ff",pular:"ff",galician:"gl",galego:"gl",gl:"gl",glg:"gl",georgian:"ka","ქართული":"ka",ka:"ka",kat:"ka",geo:"ka",german:"de",deutsch:"de",de:"de",deu:"de",ger:"de","greek (modern)":"el","ελληνικά":"el",el:"el",ell:"el",gre:"el","guaraní":"gn","avañe'ẽ":"gn",gn:"gn",grn:"gn","grn + 5":"gn",gujarati:"gu","ગુજરાતી":"gu",gu:"gu",guj:"gu","haitian, haitian creole":"ht","kreyòl ayisyen":"ht",ht:"ht",hat:"ht",hausa:"ha","(hausa) هَوُسَ":"ha",ha:"ha",hau:"ha","hebrew (modern)":"he","עברית":"he",he:"he",heb:"he",herero:"hz",otjiherero:"hz",hz:"hz",her:"hz",hindi:"hi","हिन्दी, हिंदी":"hi",hi:"hi",hin:"hi","हिन्दी":"hi","हिंदी":"hi","hiri motu":"ho",ho:"ho",hmo:"ho",hungarian:"hu",magyar:"hu",hu:"hu",hun:"hu",interlingua:"ia",ia:"ia",ina:"ia",indonesian:"id","bahasa indonesia":"id",id:"id",ind:"id",interlingue:"ie","originally called occidental; then interlingue after wwii":"ie",ie:"ie",ile:"ie",irish:"ga",gaeilge:"ga",ga:"ga",gle:"ga",igbo:"ig","asụsụ igbo":"ig",ig:"ig",ibo:"ig",inupiaq:"ik","iñupiaq, iñupiatun":"ik",ik:"ik",ipk:"ik","ipk + 2":"ik","iñupiaq":"ik","iñupiatun":"ik",ido:"io",io:"io",icelandic:"is","íslenska":"is",is:"is",isl:"is",ice:"is",italian:"it",italiano:"it",it:"it",ita:"it",inuktitut:"iu","ᐃᓄᒃᑎᑐᑦ":"iu",iu:"iu",iku:"iu","iku + 2":"iu",japanese:"ja","日本語 (にほんご)":"ja",ja:"ja",jpn:"ja",javanese:"jv","ꦧꦱꦗꦮ, basa jawa":"jv",jv:"jv",jav:"jv","ꦧꦱꦗꦮ":"jv","basa jawa":"jv","kalaallisut, greenlandic":"kl","kalaallisut, kalaallit oqaasii":"kl",kl:"kl",kal:"kl",kalaallisut:"kl","kalaallit oqaasii":"kl",kannada:"kn","ಕನ್ನಡ":"kn",kn:"kn",kan:"kn",kanuri:"kr",kr:"kr",kau:"kr","kau + 3":"kr",kashmiri:"ks","कश्मीरी, كشميري‎":"ks",ks:"ks",kas:"ks","कश्मीरी":"ks","كشميري‎":"ks",kazakh:"kk","қазақ тілі":"kk",kk:"kk",kaz:"kk","central khmer":"km","ខ្មែរ, ខេមរភាសា, ភាសាខ្មែរ":"km",km:"km",khm:"km","ខ្មែរ":"km","ខេមរភាសា":"km","ភាសាខ្មែរ":"km","kikuyu, gikuyu":"ki","gĩkũyũ":"ki",ki:"ki",kik:"ki",kinyarwanda:"rw",ikinyarwanda:"rw",rw:"rw",kin:"rw","kirghiz, kyrgyz":"ky","кыргызча, кыргыз тили":"ky",ky:"ky",kir:"ky","кыргызча":"ky","кыргыз тили":"ky",komi:"kv","коми кыв":"kv",kv:"kv",kom:"kv","kom + 2":"kv",kongo:"kg",kikongo:"kg",kg:"kg",kon:"kg","kon + 3":"kg",korean:"ko","한국어":"ko",ko:"ko",kor:"ko",kurdish:"ku","kurdî, كوردی‎":"ku",ku:"ku",kur:"ku","kur + 3":"ku","kurdî":"ku","كوردی‎":"ku","kuanyama, kwanyama":"kj",kuanyama:"kj",kj:"kj",kua:"kj",latin:"la","latine, lingua latina":"la",la:"la",lat:"la",latine:"la","lingua latina":"la","luxembourgish, letzeburgesch":"lb","lëtzebuergesch":"lb",lb:"lb",ltz:"lb",ganda:"lg",luganda:"lg",lg:"lg",lug:"lg","limburgan, limburger, limburgish":"li",limburgs:"li",li:"li",lim:"li",lingala:"ln","lingála":"ln",ln:"ln",lin:"ln",lao:"lo","ພາສາລາວ":"lo",lo:"lo",lithuanian:"lt","lietuvių kalba":"lt",lt:"lt",lit:"lt","luba-katanga":"lu",kiluba:"lu",lu:"lu",lub:"lu",latvian:"lv","latviešu valoda":"lv",lv:"lv",lav:"lv","lav + 2":"lv",manx:"gv","gaelg, gailck":"gv",gv:"gv",glv:"gv",gaelg:"gv",gailck:"gv",macedonian:"mk","македонски јазик":"mk",mk:"mk",mkd:"mk",mac:"mk",malagasy:"mg","fiteny malagasy":"mg",mg:"mg",mlg:"mg","mlg + 10":"mg",malay:"ms","bahasa melayu, بهاس ملايو‎":"ms",ms:"ms",msa:"ms",may:"ms","msa + 13":"ms","bahasa melayu":"ms","بهاس ملايو‎":"ms",malayalam:"ml","മലയാളം":"ml",ml:"ml",mal:"ml",maltese:"mt",malti:"mt",mt:"mt",mlt:"mt",maori:"mi","te reo māori":"mi",mi:"mi",mri:"mi",mao:"mi",marathi:"mr","मराठी":"mr",mr:"mr",mar:"mr",marshallese:"mh","kajin m̧ajeļ":"mh",mh:"mh",mah:"mh",mongolian:"mn","монгол хэл":"mn",mn:"mn",mon:"mn","mon + 2":"mn",nauru:"na","dorerin naoero":"na",na:"na",nau:"na","navajo, navaho":"nv","diné bizaad":"nv",nv:"nv",nav:"nv","north ndebele":"nd",isindebele:"nr",nd:"nd",nde:"nd",nepali:"ne","नेपाली":"ne",ne:"ne",nep:"ne",ndonga:"ng",owambo:"ng",ng:"ng",ndo:"ng","norwegian bokmål":"nb","norsk bokmål":"nb",nb:"nb",nob:"nb","norwegian nynorsk":"nn","norsk nynorsk":"nn",nn:"nn",nno:"nn",norwegian:"no",norsk:"no",no:"no",nor:"no","nor + 2":"no","sichuan yi, nuosu":"ii","ꆈꌠ꒿ nuosuhxop":"ii",ii:"ii",iii:"ii","south ndebele":"nr",nr:"nr",nbl:"nr",occitan:"oc","occitan, lenga d'òc":"oc",oc:"oc",oci:"oc","lenga d'òc":"oc",ojibwa:"oj","ᐊᓂᔑᓈᐯᒧᐎᓐ":"oj",oj:"oj",oji:"oj","oji + 7":"oj","church slavic, church slavonic, old church slavonic, old slavonic, old bulgarian":"cu","ѩзыкъ словѣньскъ":"cu",cu:"cu",chu:"cu",oromo:"om","afaan oromoo":"om",om:"om",orm:"om","orm + 4":"om",oriya:"or","ଓଡ଼ିଆ":"or",or:"or",ori:"or","ossetian, ossetic":"os","ирон æвзаг":"os",os:"os",oss:"os","panjabi, punjabi":"pa","ਪੰਜਾਬੀ":"pa",pa:"pa",pan:"pa",pali:"pi","पाऴि":"pi",pi:"pi",pli:"pi",persian:"fa","فارسی":"fa",fa:"fa",fas:"fa",per:"fa","fas + 2":"fa",polish:"pl","język polski, polszczyzna":"pl",pl:"pl",pol:"pl","język polski":"pl",polszczyzna:"pl","pashto, pushto":"ps","پښتو":"ps",ps:"ps",pus:"ps","pus + 3":"ps",portuguese:"pt","português":"pt",pt:"pt",por:"pt",quechua:"qu","runa simi, kichwa":"qu",qu:"qu",que:"qu","que + 44":"qu","runa simi":"qu",kichwa:"qu",romansh:"rm","rumantsch grischun":"rm",rm:"rm",roh:"rm",rundi:"rn",ikirundi:"rn",rn:"rn",run:"rn","romanian, moldavian, moldovan":"ro","română":"ro",ro:"ro",ron:"ro",rum:"ro",russian:"ru","русский":"ru",ru:"ru",rus:"ru",sanskrit:"sa","संस्कृतम्":"sa",sa:"sa",san:"sa",sardinian:"sc",sardu:"sc",sc:"sc",srd:"sc","srd + 4":"sc",sindhi:"sd","सिन्धी, سنڌي، سندھی‎":"sd",sd:"sd",snd:"sd","सिन्धी":"sd","سنڌي، سندھی‎":"sd","northern sami":"se","davvisámegiella":"se",se:"se",sme:"se",samoan:"sm","gagana fa'a samoa":"sm",sm:"sm",smo:"sm",sango:"sg","yângâ tî sängö":"sg",sg:"sg",sag:"sg",serbian:"sr","српски језик":"sr",sr:"sr",srp:"sr","gaelic, scottish gaelic":"gd","gàidhlig":"gd",gd:"gd",gla:"gd",shona:"sn",chishona:"sn",sn:"sn",sna:"sn","sinhala, sinhalese":"si","සිංහල":"si",si:"si",sin:"si",slovak:"sk","slovenčina, slovenský jazyk":"sk",sk:"sk",slk:"sk",slo:"sk","slovenčina":"sk","slovenský jazyk":"sk",slovenian:"sl","slovenski jezik, slovenščina":"sl",sl:"sl",slv:"sl","slovenski jezik":"sl","slovenščina":"sl",somali:"so","soomaaliga, af soomaali":"so",so:"so",som:"so",soomaaliga:"so","af soomaali":"so","southern sotho":"st",sesotho:"st",st:"st",sot:"st","spanish, castilian":"es","español":"es",es:"es",spa:"es",sundanese:"su","basa sunda":"su",su:"su",sun:"su",swahili:"sw",kiswahili:"sw",sw:"sw",swa:"sw","swa + 2":"sw",swati:"ss",siswati:"ss",ss:"ss",ssw:"ss",swedish:"sv",svenska:"sv",sv:"sv",swe:"sv",tamil:"ta","தமிழ்":"ta",ta:"ta",tam:"ta",telugu:"te","తెలుగు":"te",te:"te",tel:"te",tajik:"tg","тоҷикӣ, toçikī, تاجیکی‎":"tg",tg:"tg",tgk:"tg","тоҷикӣ":"tg","toçikī":"tg","تاجیکی‎":"tg",thai:"th","ไทย":"th",th:"th",tha:"th",tigrinya:"ti","ትግርኛ":"ti",ti:"ti",tir:"ti",tibetan:"bo","བོད་ཡིག":"bo",bo:"bo",bod:"bo",tib:"bo",turkmen:"tk","türkmen, түркмен":"tk",tk:"tk",tuk:"tk","türkmen":"tk","түркмен":"tk",tagalog:"tl","wikang tagalog":"tl",tl:"tl",tgl:"tl",tswana:"tn",setswana:"tn",tn:"tn",tsn:"tn","tonga (tonga islands)":"to","faka tonga":"to",to:"to",ton:"to",turkish:"tr","türkçe":"tr",tr:"tr",tur:"tr",tsonga:"ts",xitsonga:"ts",ts:"ts",tso:"ts",tatar:"tt","татар теле, tatar tele":"tt",tt:"tt",tat:"tt","татар теле":"tt","tatar tele":"tt",twi:"tw",tw:"tw",tahitian:"ty","reo tahiti":"ty",ty:"ty",tah:"ty","uighur, uyghur":"ug","ئۇيغۇرچە‎, uyghurche":"ug",ug:"ug",uig:"ug","ئۇيغۇرچە‎":"ug",uyghurche:"ug",ukrainian:"uk","українська":"uk",uk:"uk",ukr:"uk",urdu:"ur","اردو":"ur",ur:"ur",urd:"ur",uzbek:"uz","oʻzbek, ўзбек, أۇزبېك‎":"uz",uz:"uz",uzb:"uz","uzb + 2":"uz","oʻzbek":"uz","ўзбек":"uz","أۇزبېك‎":"uz",venda:"ve","tshivenḓa":"ve",ve:"ve",ven:"ve",vietnamese:"vi","tiếng việt":"vi",vi:"vi",vie:"vi","volapük":"vo",vo:"vo",vol:"vo",walloon:"wa",walon:"wa",wa:"wa",wln:"wa",welsh:"cy",cymraeg:"cy",cy:"cy",cym:"cy",wel:"cy",wolof:"wo",wollof:"wo",wo:"wo",wol:"wo","western frisian":"fy",frysk:"fy",fy:"fy",fry:"fy",xhosa:"xh",isixhosa:"xh",xh:"xh",xho:"xh",yiddish:"yi","ייִדיש":"yi",yi:"yi",yid:"yi","yid + 2":"yi",yoruba:"yo","yorùbá":"yo",yo:"yo",yor:"yo","zhuang, chuang":"za","saɯ cueŋƅ, saw cuengh":"za",za:"za",zha:"za","zha + 16":"za","saɯ cueŋƅ":"za","saw cuengh":"za",zulu:"zu",isizulu:"zu",zu:"zu",zul:"zu"};function reduce(from){return reductions[from.toLowerCase()]}var reduceTo6391={reduce:reduce,reductions:reductions};class circular_buffer{constructor(uCapacity){if(!Number.isInteger(uCapacity)){throw new RangeError(`Capacity must be an integer, received ${uCapacity}`)}if(uCapacity<0){throw new RangeError(`Capacity must be a non-negative integer, received ${uCapacity}`)}this._values=new Array(uCapacity);this._capacity=uCapacity;this._cursor=0;this._offset=0;this._length=0}get capacity(){return this._capacity}set capacity(newSize){this.resize(newSize)}get length(){return this._length}set length(newLength){if(newLength>this._capacity){throw new RangeError(`Requested new length [${newLength}] exceeds container capacity [${this._capacity}]`)}if(newLength<0){throw new RangeError(`Requested new length [${newLength}] cannot be negative`)}if(!Number.isInteger(newLength)){throw new RangeError(`Requested new length [${newLength}] must be an integer`)}if(this._length<=newLength){return}this._length=newLength}get available(){return this._capacity-this._length}get isEmpty(){return this._length===0}get isFull(){return this._length===this._capacity}get first(){if(this.isEmpty){throw new RangeError("Cannot return first element of an empty container")}return this.at(0)}get last(){if(this.isEmpty){throw new RangeError("Cannot return last element of an empty container")}return this.at(this.length-1)}static from(i,map_fn,t){const new_array=map_fn?Array.from(i,map_fn,t):Array.from(i);const target_length=new_array.length;const ncb=new circular_buffer(target_length);ncb._values=new_array;ncb._length=target_length;return ncb}push(v){if(this.isFull){throw new RangeError(`Cannot push, structure is full to capacity`)}this._values[(this._cursor+this._length++)%this._capacity]=v;return v}shove(v){let shoved;if(this._capacity===0){throw new RangeError(`Cannot shove, structure is zero-capacity`)}if(this.isFull){shoved=this.pop()}this.push(v);return shoved}fill(x){for(let i=0;i=this._capacity){this._cursor-=this._capacity}return cache}at(i){if(i<0){throw new RangeError(`circular_buffer does not support negative traversals; called at(${i})`)}if(!Number.isInteger(i)){throw new RangeError(`Accessors must be non-negative integers; called at(${i})`)}if(i>=this._capacity){throw new RangeError(`Requested cell ${i} exceeds container permanent capacity`)}if(i>=this._length){throw new RangeError(`Requested cell ${i} exceeds container current length`)}return this._values[(this._cursor+i)%this._capacity]}pos(i){return this.at(i-this.offset())}offset(){return this._offset}resize(newSize,preferEnd=false){this._values=this.toArray();this._cursor=0;const oldSize=this._length;this._length=Math.min(this._length,newSize);this._capacity=newSize;if(newSize>=oldSize){this._values.length=newSize}else{if(preferEnd){const tmp=this._values.slice(oldSize-newSize);this._values=tmp}else{this._values.length=newSize}}}toArray(){const startPoint=this._cursor%this._capacity;if(this._capacity>startPoint+this._length){return this._values.slice(startPoint,startPoint+this._length)}else{const base=this._values.slice(startPoint,this._capacity);base.push(...this._values.slice(0,this.length-(this._capacity-startPoint)));return base}}}const base_state_style={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style={shape:"component"};const base_terminal_state_style={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style={textColor:"white",backgroundColor:"indigo"};const base_start_state_style={backgroundColor:"yellow"};const base_active_start_state_style={backgroundColor:"yellowgreen"};const base_active_hooked_state_style={backgroundColor:"yellowgreen"};const base_end_state_style={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style={textColor:"white",backgroundColor:"darkgreen"};const base_theme={state:base_state_style,start:base_start_state_style,end:base_end_state_style,terminal:base_terminal_state_style,hooked:base_hooked_state_style,active:base_active_state_style,active_start:base_active_start_state_style,active_end:base_active_end_state_style,active_terminal:base_active_terminal_state_style,active_hooked:base_active_hooked_state_style,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};class JssmError extends Error{constructor(machine,message,JEEI){const{requested_state:requested_state}=JEEI===undefined?{requested_state:undefined}:JEEI;const follow_ups=[];if(machine){if(machine.state()!==undefined){follow_ups.push(`at "${machine.state()}"`)}}if(requested_state!==undefined){follow_ups.push(`requested "${requested_state}"`)}const complex_msg=`${(machine===null||machine===void 0?void 0:machine.instance_name())!==undefined?`[[${machine.instance_name()}]]: `:""}${message}${follow_ups.length?` (${follow_ups.join(", ")})`:""}`;super(complex_msg);this.name="JssmError";this.message=complex_msg;this.base_message=message;this.requested_state=requested_state}}const array_box_if_string=n=>typeof n==="string"?[n]:n;const weighted_rand_select=(options,probability_property="probability")=>{if(!Array.isArray(options)){throw new TypeError("options must be a non-empty array of objects")}if(!(typeof options[0]==="object")){throw new TypeError("options must be a non-empty array of objects")}const frand=cap=>Math.random()*cap,or_one=item=>item===undefined?1:item,prob_sum=options.reduce(((acc,val)=>acc+or_one(val[probability_property])),0),rnd=frand(prob_sum);let cursor=0,cursor_sum=0;while((cursor_sum+=or_one(options[cursor++][probability_property]))<=rnd){}return options[cursor-1]};function seq(n){if(!Number.isInteger(n)){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}if(n<0){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}return new Array(n).fill(true).map(((_,i)=>i))}const histograph=ar=>ar.sort().reduce(((m,v)=>(m.set(v,m.has(v)?m.get(v)+1:1),m)),new Map);const weighted_sample_select=(n,options,probability_property)=>seq(n).map((_i=>weighted_rand_select(options,probability_property)));const weighted_histo_key=(n,opts,prob_prop,extract)=>histograph(weighted_sample_select(n,opts,prob_prop).map((s=>s[extract])));function name_bind_prop_and_state(prop,state){if(typeof prop!=="string"){throw new JssmError(undefined,`Name of property must be a string; got ${prop}`)}if(typeof state!=="string"){throw new JssmError(undefined,`Name of state must be a string; got ${prop}`)}return JSON.stringify([prop,state])}const hook_name=(from,to)=>JSON.stringify([from,to]);const named_hook_name=(from,to,action)=>JSON.stringify([from,to,action]);const unique=arr=>arr.filter(((v,i,a)=>a.indexOf(v)===i));function find_repeated(arr){const uniqued=unique(arr);if(uniqued.length!==arr.length){const residue_keys=new Map;arr.forEach((k=>residue_keys.set(k,residue_keys.has(k)?residue_keys.get(k)+1:1)));uniqued.forEach((k=>residue_keys.set(k,residue_keys.get(k)-1)));return[...residue_keys.entries()].filter((e=>e[1]>0&&!Number.isNaN(e[0]))).map((e=>[e[0],e[1]+1]))}else{return[]}}const NegInfinity=Number.NEGATIVE_INFINITY,PosInfinity=Number.POSITIVE_INFINITY,Epsilon=Number.EPSILON,Pi=Math.PI,E=Math.E,Root2=Math.SQRT2,RootHalf=Math.SQRT1_2,Ln2=Math.LN2,Ln10=Math.LN10,Log2E=Math.LOG2E,Log10E=Math.LOG10E,MaxSafeInt=Number.MAX_SAFE_INTEGER,MinSafeInt=Number.MIN_SAFE_INTEGER,MaxPosNum=Number.MAX_VALUE,MinPosNum=Number.MIN_VALUE,Phi=1.618033988749895,EulerC=.5772156649015329;const gviz_shapes$1=["box3d","polygon","ellipse","oval","circle","point","egg","triangle","plaintext","plain","diamond","trapezium","parallelogram","house","pentagon","hexagon","septagon","octagon","doublecircle","doubleoctagon","tripleoctagon","invtriangle","invtrapezium","invhouse","Mdiamond","Msquare","Mcircle","rectangle","rect","square","star","none","underline","cylinder","note","tab","folder","box","component","promoter","cds","terminator","utr","primersite","restrictionsite","fivepoverhang","threepoverhang","noverhang","assembly","signature","insulator","ribosite","rnastab","proteasesite","proteinstab","rpromoter","rarrow","larrow","lpromoter","record"];const shapes$1=gviz_shapes$1;const named_colors$1=["AliceBlue","AntiqueWhite","Aqua","Aquamarine","Azure","Beige","Bisque","Black","BlanchedAlmond","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","CornflowerBlue","Cornsilk","Crimson","Cyan","DarkBlue","DarkCyan","DarkGoldenRod","DarkGray","DarkGrey","DarkGreen","DarkKhaki","DarkMagenta","DarkOliveGreen","Darkorange","DarkOrchid","DarkRed","DarkSalmon","DarkSeaGreen","DarkSlateBlue","DarkSlateGray","DarkSlateGrey","DarkTurquoise","DarkViolet","DeepPink","DeepSkyBlue","DimGray","DimGrey","DodgerBlue","FireBrick","FloralWhite","ForestGreen","Fuchsia","Gainsboro","GhostWhite","Gold","GoldenRod","Gray","Grey","Green","GreenYellow","HoneyDew","HotPink","IndianRed","Indigo","Ivory","Khaki","Lavender","LavenderBlush","LawnGreen","LemonChiffon","LightBlue","LightCoral","LightCyan","LightGoldenRodYellow","LightGray","LightGrey","LightGreen","LightPink","LightSalmon","LightSeaGreen","LightSkyBlue","LightSlateGray","LightSlateGrey","LightSteelBlue","LightYellow","Lime","LimeGreen","Linen","Magenta","Maroon","MediumAquaMarine","MediumBlue","MediumOrchid","MediumPurple","MediumSeaGreen","MediumSlateBlue","MediumSpringGreen","MediumTurquoise","MediumVioletRed","MidnightBlue","MintCream","MistyRose","Moccasin","NavajoWhite","Navy","OldLace","Olive","OliveDrab","Orange","OrangeRed","Orchid","PaleGoldenRod","PaleGreen","PaleTurquoise","PaleVioletRed","PapayaWhip","PeachPuff","Peru","Pink","Plum","PowderBlue","Purple","Red","RosyBrown","RoyalBlue","SaddleBrown","Salmon","SandyBrown","SeaGreen","SeaShell","Sienna","Silver","SkyBlue","SlateBlue","SlateGray","SlateGrey","Snow","SpringGreen","SteelBlue","Tan","Teal","Thistle","Tomato","Turquoise","Violet","Wheat","White","WhiteSmoke","Yellow","YellowGreen"];var constants=Object.freeze({__proto__:null,NegInfinity:NegInfinity,PosInfinity:PosInfinity,Epsilon:Epsilon,Pi:Pi,E:E,Root2:Root2,RootHalf:RootHalf,Ln2:Ln2,Ln10:Ln10,Log2E:Log2E,Log10E:Log10E,MaxSafeInt:MaxSafeInt,MinSafeInt:MinSafeInt,MaxPosNum:MaxPosNum,MinPosNum:MinPosNum,Phi:Phi,EulerC:EulerC,gviz_shapes:gviz_shapes$1,shapes:shapes$1,named_colors:named_colors$1});function peg$subclass(child,parent){function ctor(){this.constructor=child}ctor.prototype=parent.prototype;child.prototype=new ctor}function peg$SyntaxError(message,expected,found,location){this.message=message;this.expected=expected;this.found=found;this.location=location;this.name="SyntaxError";if(typeof Error.captureStackTrace==="function"){Error.captureStackTrace(this,peg$SyntaxError)}}peg$subclass(peg$SyntaxError,Error);peg$SyntaxError.buildMessage=function(expected,found){var DESCRIBE_EXPECTATION_FNS={literal:function(expectation){return'"'+literalEscape(expectation.text)+'"'},class:function(expectation){var escapedParts="",i;for(i=0;i0){for(i=1,j=1;i"),peg$c128="->",peg$c129=peg$literalExpectation("->",false),peg$c130="→",peg$c131=peg$literalExpectation("→",false),peg$c132=function(){return"->"},peg$c133=peg$otherExpectation("two way light arrow <->"),peg$c134="<->",peg$c135=peg$literalExpectation("<->",false),peg$c136="↔",peg$c137=peg$literalExpectation("↔",false),peg$c138=function(){return"<->"},peg$c139=peg$otherExpectation("back light arrow <-"),peg$c140="<-",peg$c141=peg$literalExpectation("<-",false),peg$c142="←",peg$c143=peg$literalExpectation("←",false),peg$c144=function(){return"<-"},peg$c145=peg$otherExpectation("forward fat arrow =>"),peg$c146="=>",peg$c147=peg$literalExpectation("=>",false),peg$c148="⇒",peg$c149=peg$literalExpectation("⇒",false),peg$c150=function(){return"=>"},peg$c151=peg$otherExpectation("two way fat arrow <=>"),peg$c152="<=>",peg$c153=peg$literalExpectation("<=>",false),peg$c154="⇔",peg$c155=peg$literalExpectation("⇔",false),peg$c156=function(){return"<=>"},peg$c157=peg$otherExpectation("back fat arrow <="),peg$c158="<=",peg$c159=peg$literalExpectation("<=",false),peg$c160="⇐",peg$c161=peg$literalExpectation("⇐",false),peg$c162=function(){return"<="},peg$c163=peg$otherExpectation("forward tilde arrow ~>"),peg$c164="~>",peg$c165=peg$literalExpectation("~>",false),peg$c166="↛",peg$c167=peg$literalExpectation("↛",false),peg$c168=function(){return"~>"},peg$c169=peg$otherExpectation("two way tilde arrow <~>"),peg$c170="<~>",peg$c171=peg$literalExpectation("<~>",false),peg$c172="↮",peg$c173=peg$literalExpectation("↮",false),peg$c174=function(){return"<~>"},peg$c175=peg$otherExpectation("back tilde arrow <~"),peg$c176="<~",peg$c177=peg$literalExpectation("<~",false),peg$c178="↚",peg$c179=peg$literalExpectation("↚",false),peg$c180=function(){return"<~"},peg$c181=peg$otherExpectation("light fat arrow <-=>"),peg$c182="<-=>",peg$c183=peg$literalExpectation("<-=>",false),peg$c184="←⇒",peg$c185=peg$literalExpectation("←⇒",false),peg$c186=function(){return"<-=>"},peg$c187=peg$otherExpectation("light tilde arrow <-~>"),peg$c188="<-~>",peg$c189=peg$literalExpectation("<-~>",false),peg$c190="←↛",peg$c191=peg$literalExpectation("←↛",false),peg$c192=function(){return"<-~>"},peg$c193=peg$otherExpectation("fat light arrow <=->"),peg$c194="<=->",peg$c195=peg$literalExpectation("<=->",false),peg$c196="⇐→",peg$c197=peg$literalExpectation("⇐→",false),peg$c198=function(){return"<=->"},peg$c199=peg$otherExpectation("fat tilde arrow <=~>"),peg$c200="<=~>",peg$c201=peg$literalExpectation("<=~>",false),peg$c202="⇐↛",peg$c203=peg$literalExpectation("⇐↛",false),peg$c204=function(){return"<=~>"},peg$c205=peg$otherExpectation("tilde light arrow <~->"),peg$c206="<~->",peg$c207=peg$literalExpectation("<~->",false),peg$c208="↚→",peg$c209=peg$literalExpectation("↚→",false),peg$c210=function(){return"<~->"},peg$c211=peg$otherExpectation("tilde fat arrow <~=>"),peg$c212="<~=>",peg$c213=peg$literalExpectation("<~=>",false),peg$c214="↚⇒",peg$c215=peg$literalExpectation("↚⇒",false),peg$c216=function(){return"<~=>"},peg$c217=peg$otherExpectation("light arrow"),peg$c218=peg$otherExpectation("fat arrow"),peg$c219=peg$otherExpectation("tilde arrow"),peg$c220=peg$otherExpectation("mixed arrow"),peg$c221=peg$otherExpectation("arrow"),peg$c222="true",peg$c223=peg$literalExpectation("true",false),peg$c224=function(){return true},peg$c225="false",peg$c226=peg$literalExpectation("false",false),peg$c227=function(){return false},peg$c228="regular",peg$c229=peg$literalExpectation("regular",false),peg$c230="rounded",peg$c231=peg$literalExpectation("rounded",false),peg$c232="lined",peg$c233=peg$literalExpectation("lined",false),peg$c234="solid",peg$c235=peg$literalExpectation("solid",false),peg$c236="dotted",peg$c237=peg$literalExpectation("dotted",false),peg$c238="dashed",peg$c239=peg$literalExpectation("dashed",false),peg$c240='"',peg$c241=peg$literalExpectation('"',false),peg$c242="\\",peg$c243=peg$literalExpectation("\\",false),peg$c244="/",peg$c245=peg$literalExpectation("/",false),peg$c246="b",peg$c247=peg$literalExpectation("b",false),peg$c248=function(){return"\b"},peg$c249="f",peg$c250=peg$literalExpectation("f",false),peg$c251=function(){return"\f"},peg$c252="n",peg$c253=peg$literalExpectation("n",false),peg$c254=function(){return"\n"},peg$c255="r",peg$c256=peg$literalExpectation("r",false),peg$c257=function(){return"\r"},peg$c258="t",peg$c259=peg$literalExpectation("t",false),peg$c260=function(){return"\t"},peg$c261="v",peg$c262=peg$literalExpectation("v",false),peg$c263=function(){return"\v"},peg$c264="u",peg$c265=peg$literalExpectation("u",false),peg$c266=function(digits){return String.fromCharCode(parseInt(digits,16))},peg$c267=function(Sequence){return Sequence},peg$c268="null",peg$c269=peg$literalExpectation("null",false),peg$c270=function(){return null},peg$c271="undefined",peg$c272=peg$literalExpectation("undefined",false),peg$c273=function(){return undefined},peg$c274=/^[ -!#-[\]-\u10FFFF]/,peg$c275=peg$classExpectation([[" ","!"],["#","["],["]","ჿ"],"F","F"],false,false),peg$c276="'",peg$c277=peg$literalExpectation("'",false),peg$c278=/^[ -&(-[\]-\u10FFFF]/,peg$c279=peg$classExpectation([[" ","&"],["(","["],["]","ჿ"],"F","F"],false,false),peg$c280=peg$otherExpectation("action label"),peg$c281=function(chars){return chars.join("")},peg$c282=/^[\n\r\u2028\u2029]/,peg$c283=peg$classExpectation(["\n","\r","\u2028","\u2029"],false,false),peg$c286="*/",peg$c287=peg$literalExpectation("*/",false),peg$c288=peg$anyExpectation(),peg$c289=peg$otherExpectation("block comment"),peg$c290="/*",peg$c291=peg$literalExpectation("/*",false),peg$c292=peg$otherExpectation("line comment"),peg$c293="//",peg$c294=peg$literalExpectation("//",false),peg$c295=peg$otherExpectation("whitespace"),peg$c296=/^[ \t\r\n\x0B]/,peg$c297=peg$classExpectation([" ","\t","\r","\n","\v"],false,false),peg$c298=peg$otherExpectation("string"),peg$c299=/^[0-9a-zA-Z._!$\^*!?,\x80-\uFFFF]/,peg$c300=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","_","!","$","^","*","!","?",",",["€","￿"]],false,false),peg$c301=/^[0-9a-zA-Z.+_\^()*&$#@!?,\x80-\uFFFF]/,peg$c302=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","+","_","^","(",")","*","&","$","#","@","!","?",",",["€","￿"]],false,false),peg$c303=peg$otherExpectation("atom"),peg$c304=function(firstletter,text){return firstletter+(text||[]).join("")},peg$c305=peg$otherExpectation("label"),peg$c306="0",peg$c307=peg$literalExpectation("0",false),peg$c308=/^[0-9]/,peg$c309=peg$classExpectation([["0","9"]],false,false),peg$c310=/^[1-9]/,peg$c311=peg$classExpectation([["1","9"]],false,false),peg$c312=/^[0-9a-f]/i,peg$c313=peg$classExpectation([["0","9"],["a","f"]],false,true),peg$c314=/^[0-1]/,peg$c315=peg$classExpectation([["0","1"]],false,false),peg$c316=peg$otherExpectation("nonneg number"),peg$c317=".",peg$c318=peg$literalExpectation(".",false),peg$c319=function(){return parseFloat(text())},peg$c320=peg$otherExpectation("number"),peg$c321=function(literal){return literal},peg$c322="NaN",peg$c323=peg$literalExpectation("NaN",false),peg$c324=function(){return NaN},peg$c325="NegativeInfinity",peg$c326=peg$literalExpectation("NegativeInfinity",false),peg$c327=function(){return Number.NEGATIVE_INFINITY},peg$c328="NegativeInf",peg$c329=peg$literalExpectation("NegativeInf",false),peg$c330="NegInfinity",peg$c331=peg$literalExpectation("NegInfinity",false),peg$c332="NegInf",peg$c333=peg$literalExpectation("NegInf",false),peg$c334="NInfinity",peg$c335=peg$literalExpectation("NInfinity",false),peg$c336="NInf",peg$c337=peg$literalExpectation("NInf",false),peg$c338="-∞",peg$c339=peg$literalExpectation("-∞",false),peg$c340="PInfinity",peg$c341=peg$literalExpectation("PInfinity",false),peg$c342=function(){return Number.POSITIVE_INFINITY},peg$c343="Infinity",peg$c344=peg$literalExpectation("Infinity",false),peg$c345="PInf",peg$c346=peg$literalExpectation("PInf",false),peg$c347="Inf",peg$c348=peg$literalExpectation("Inf",false),peg$c349="∞",peg$c350=peg$literalExpectation("∞",false),peg$c351="Epsilon",peg$c352=peg$literalExpectation("Epsilon",false),peg$c353=function(){return Number.EPSILON},peg$c354="𝜀",peg$c355=peg$literalExpectation("𝜀",false),peg$c356="ε",peg$c357=peg$literalExpectation("ε",false),peg$c358="Pi",peg$c359=peg$literalExpectation("Pi",false),peg$c360=function(){return Math.PI},peg$c361="𝜋",peg$c362=peg$literalExpectation("𝜋",false),peg$c363="π",peg$c364=peg$literalExpectation("π",false),peg$c365="EulerNumber",peg$c366=peg$literalExpectation("EulerNumber",false),peg$c367=function(){return Math.E},peg$c368="E",peg$c369=peg$literalExpectation("E",false),peg$c370="e",peg$c371=peg$literalExpectation("e",false),peg$c372="Ɛ",peg$c373=peg$literalExpectation("Ɛ",false),peg$c374="ℇ",peg$c375=peg$literalExpectation("ℇ",false),peg$c376="Root2",peg$c377=peg$literalExpectation("Root2",false),peg$c378=function(){return Math.SQRT2},peg$c379="RootHalf",peg$c380=peg$literalExpectation("RootHalf",false),peg$c381=function(){return Math.SQRT1_2},peg$c382="Ln2",peg$c383=peg$literalExpectation("Ln2",false),peg$c384=function(){return Math.LN2},peg$c385="NatLog2",peg$c386=peg$literalExpectation("NatLog2",false),peg$c387="Ln10",peg$c388=peg$literalExpectation("Ln10",false),peg$c389=function(){return Math.LN10},peg$c390="NatLog10",peg$c391=peg$literalExpectation("NatLog10",false),peg$c392="Log2E",peg$c393=peg$literalExpectation("Log2E",false),peg$c394=function(){return Math.LOG2E},peg$c395="Log10E",peg$c396=peg$literalExpectation("Log10E",false),peg$c397=function(){return Math.LOG10E},peg$c398="MaxSafeInt",peg$c399=peg$literalExpectation("MaxSafeInt",false),peg$c400=function(){return Number.MAX_SAFE_INTEGER},peg$c401="MinSafeInt",peg$c402=peg$literalExpectation("MinSafeInt",false),peg$c403=function(){return Number.MIN_SAFE_INTEGER},peg$c404="MaxPosNum",peg$c405=peg$literalExpectation("MaxPosNum",false),peg$c406=function(){return Number.MAX_VALUE},peg$c407="MinPosNum",peg$c408=peg$literalExpectation("MinPosNum",false),peg$c409=function(){return Number.MIN_VALUE},peg$c410="Phi",peg$c411=peg$literalExpectation("Phi",false),peg$c412=function(){return 1.618033988749895},peg$c413="𝜑",peg$c414=peg$literalExpectation("𝜑",false),peg$c415="𝜙",peg$c416=peg$literalExpectation("𝜙",false),peg$c417="ϕ",peg$c418=peg$literalExpectation("ϕ",false),peg$c419="φ",peg$c420=peg$literalExpectation("φ",false),peg$c421="EulerConstant",peg$c422=peg$literalExpectation("EulerConstant",false),peg$c423=function(){return.5772156649015329},peg$c424="γ",peg$c425=peg$literalExpectation("γ",false),peg$c426="𝛾",peg$c427=peg$literalExpectation("𝛾",false),peg$c428=peg$literalExpectation("e",true),peg$c429=/^[+\-]/,peg$c430=peg$classExpectation(["+","-"],false,false),peg$c431="0x",peg$c432=peg$literalExpectation("0x",true),peg$c433=function(digits){return parseInt(digits,16)},peg$c434="0b",peg$c435=peg$literalExpectation("0b",true),peg$c436=function(digits){return parseInt(digits,2)},peg$c437="0o",peg$c438=peg$literalExpectation("0o",true),peg$c439=function(digits){return parseInt(digits,8)},peg$c440=function(major,minor,patch){return{major:parseInt(major,10),minor:parseInt(minor,10),patch:parseInt(patch,10),full:text()}},peg$c451="http://",peg$c452=peg$literalExpectation("http://",false),peg$c453="https://",peg$c454=peg$literalExpectation("https://",false),peg$c455=/^[a-zA-Z0-9!*'():;@&=+$,\/?#[\]_.~\-]/,peg$c456=peg$classExpectation([["a","z"],["A","Z"],["0","9"],"!","*","'","(",")",":",";","@","&","=","+","$",",","/","?","#","[","]","_",".","~","-"],false,false),peg$c457=function(protocol){return text()},peg$c458="aliceblue",peg$c459=peg$literalExpectation("aliceblue",false),peg$c460=function(){return"#f0f8ffff"},peg$c461="AliceBlue",peg$c462=peg$literalExpectation("AliceBlue",false),peg$c463="antiquewhite",peg$c464=peg$literalExpectation("antiquewhite",false),peg$c465=function(){return"#faebd7ff"},peg$c466="AntiqueWhite",peg$c467=peg$literalExpectation("AntiqueWhite",false),peg$c468="aquamarine",peg$c469=peg$literalExpectation("aquamarine",false),peg$c470=function(){return"#7fffd4ff"},peg$c471="Aquamarine",peg$c472=peg$literalExpectation("Aquamarine",false),peg$c473="aqua",peg$c474=peg$literalExpectation("aqua",false),peg$c475=function(){return"#00ffffff"},peg$c476="Aqua",peg$c477=peg$literalExpectation("Aqua",false),peg$c478="azure",peg$c479=peg$literalExpectation("azure",false),peg$c480=function(){return"#f0ffffff"},peg$c481="Azure",peg$c482=peg$literalExpectation("Azure",false),peg$c483="beige",peg$c484=peg$literalExpectation("beige",false),peg$c485=function(){return"#f5f5dcff"},peg$c486="Beige",peg$c487=peg$literalExpectation("Beige",false),peg$c488="bisque",peg$c489=peg$literalExpectation("bisque",false),peg$c490=function(){return"#ffe4c4ff"},peg$c491="Bisque",peg$c492=peg$literalExpectation("Bisque",false),peg$c493="black",peg$c494=peg$literalExpectation("black",false),peg$c495=function(){return"#000000ff"},peg$c496="Black",peg$c497=peg$literalExpectation("Black",false),peg$c498="blanchedalmond",peg$c499=peg$literalExpectation("blanchedalmond",false),peg$c500=function(){return"#ffebcdff"},peg$c501="BlanchedAlmond",peg$c502=peg$literalExpectation("BlanchedAlmond",false),peg$c503="blueviolet",peg$c504=peg$literalExpectation("blueviolet",false),peg$c505=function(){return"#8a2be2ff"},peg$c506="BlueViolet",peg$c507=peg$literalExpectation("BlueViolet",false),peg$c508="blue",peg$c509=peg$literalExpectation("blue",false),peg$c510=function(){return"#0000ffff"},peg$c511="Blue",peg$c512=peg$literalExpectation("Blue",false),peg$c513="brown",peg$c514=peg$literalExpectation("brown",false),peg$c515=function(){return"#a52a2aff"},peg$c516="Brown",peg$c517=peg$literalExpectation("Brown",false),peg$c518="burlywood",peg$c519=peg$literalExpectation("burlywood",false),peg$c520=function(){return"#deb887ff"},peg$c521="BurlyWood",peg$c522=peg$literalExpectation("BurlyWood",false),peg$c523="cadetblue",peg$c524=peg$literalExpectation("cadetblue",false),peg$c525=function(){return"#5f9ea0ff"},peg$c526="CadetBlue",peg$c527=peg$literalExpectation("CadetBlue",false),peg$c528="chartreuse",peg$c529=peg$literalExpectation("chartreuse",false),peg$c530=function(){return"#7fff00ff"},peg$c531="Chartreuse",peg$c532=peg$literalExpectation("Chartreuse",false),peg$c533="chocolate",peg$c534=peg$literalExpectation("chocolate",false),peg$c535=function(){return"#d2691eff"},peg$c536="Chocolate",peg$c537=peg$literalExpectation("Chocolate",false),peg$c538="coral",peg$c539=peg$literalExpectation("coral",false),peg$c540=function(){return"#ff7f50ff"},peg$c541="Coral",peg$c542=peg$literalExpectation("Coral",false),peg$c543="cornflowerblue",peg$c544=peg$literalExpectation("cornflowerblue",false),peg$c545=function(){return"#6495edff"},peg$c546="CornflowerBlue",peg$c547=peg$literalExpectation("CornflowerBlue",false),peg$c548="cornsilk",peg$c549=peg$literalExpectation("cornsilk",false),peg$c550=function(){return"#fff8dcff"},peg$c551="Cornsilk",peg$c552=peg$literalExpectation("Cornsilk",false),peg$c553="crimson",peg$c554=peg$literalExpectation("crimson",false),peg$c555=function(){return"#dc143cff"},peg$c556="Crimson",peg$c557=peg$literalExpectation("Crimson",false),peg$c558="cyan",peg$c559=peg$literalExpectation("cyan",false),peg$c560="Cyan",peg$c561=peg$literalExpectation("Cyan",false),peg$c562="darkblue",peg$c563=peg$literalExpectation("darkblue",false),peg$c564=function(){return"#00008bff"},peg$c565="DarkBlue",peg$c566=peg$literalExpectation("DarkBlue",false),peg$c567="darkcyan",peg$c568=peg$literalExpectation("darkcyan",false),peg$c569=function(){return"#008b8bff"},peg$c570="DarkCyan",peg$c571=peg$literalExpectation("DarkCyan",false),peg$c572="darkgoldenrod",peg$c573=peg$literalExpectation("darkgoldenrod",false),peg$c574=function(){return"#b8860bff"},peg$c575="DarkGoldenRod",peg$c576=peg$literalExpectation("DarkGoldenRod",false),peg$c577="darkgray",peg$c578=peg$literalExpectation("darkgray",false),peg$c579=function(){return"#a9a9a9ff"},peg$c580="DarkGray",peg$c581=peg$literalExpectation("DarkGray",false),peg$c582="darkgrey",peg$c583=peg$literalExpectation("darkgrey",false),peg$c584="DarkGrey",peg$c585=peg$literalExpectation("DarkGrey",false),peg$c586="darkgreen",peg$c587=peg$literalExpectation("darkgreen",false),peg$c588=function(){return"#006400ff"},peg$c589="DarkGreen",peg$c590=peg$literalExpectation("DarkGreen",false),peg$c591="darkkhaki",peg$c592=peg$literalExpectation("darkkhaki",false),peg$c593=function(){return"#bdb76bff"},peg$c594="DarkKhaki",peg$c595=peg$literalExpectation("DarkKhaki",false),peg$c596="darkmagenta",peg$c597=peg$literalExpectation("darkmagenta",false),peg$c598=function(){return"#8b008bff"},peg$c599="DarkMagenta",peg$c600=peg$literalExpectation("DarkMagenta",false),peg$c601="darkolivegreen",peg$c602=peg$literalExpectation("darkolivegreen",false),peg$c603=function(){return"#556b2fff"},peg$c604="DarkOliveGreen",peg$c605=peg$literalExpectation("DarkOliveGreen",false),peg$c606="darkorange",peg$c607=peg$literalExpectation("darkorange",false),peg$c608=function(){return"#ff8c00ff"},peg$c609="Darkorange",peg$c610=peg$literalExpectation("Darkorange",false),peg$c611="darkorchid",peg$c612=peg$literalExpectation("darkorchid",false),peg$c613=function(){return"#9932ccff"},peg$c614="DarkOrchid",peg$c615=peg$literalExpectation("DarkOrchid",false),peg$c616="darkred",peg$c617=peg$literalExpectation("darkred",false),peg$c618=function(){return"#8b0000ff"},peg$c619="DarkRed",peg$c620=peg$literalExpectation("DarkRed",false),peg$c621="darksalmon",peg$c622=peg$literalExpectation("darksalmon",false),peg$c623=function(){return"#e9967aff"},peg$c624="DarkSalmon",peg$c625=peg$literalExpectation("DarkSalmon",false),peg$c626="darkseagreen",peg$c627=peg$literalExpectation("darkseagreen",false),peg$c628=function(){return"#8fbc8fff"},peg$c629="DarkSeaGreen",peg$c630=peg$literalExpectation("DarkSeaGreen",false),peg$c631="darkslateblue",peg$c632=peg$literalExpectation("darkslateblue",false),peg$c633=function(){return"#483d8bff"},peg$c634="DarkSlateBlue",peg$c635=peg$literalExpectation("DarkSlateBlue",false),peg$c636="darkslategray",peg$c637=peg$literalExpectation("darkslategray",false),peg$c638=function(){return"#2f4f4fff"},peg$c639="DarkSlateGray",peg$c640=peg$literalExpectation("DarkSlateGray",false),peg$c641="darkslategrey",peg$c642=peg$literalExpectation("darkslategrey",false),peg$c643="DarkSlateGrey",peg$c644=peg$literalExpectation("DarkSlateGrey",false),peg$c645="darkturquoise",peg$c646=peg$literalExpectation("darkturquoise",false),peg$c647=function(){return"#00ced1ff"},peg$c648="DarkTurquoise",peg$c649=peg$literalExpectation("DarkTurquoise",false),peg$c650="darkviolet",peg$c651=peg$literalExpectation("darkviolet",false),peg$c652=function(){return"#9400d3ff"},peg$c653="DarkViolet",peg$c654=peg$literalExpectation("DarkViolet",false),peg$c655="deeppink",peg$c656=peg$literalExpectation("deeppink",false),peg$c657=function(){return"#ff1493ff"},peg$c658="DeepPink",peg$c659=peg$literalExpectation("DeepPink",false),peg$c660="deepskyblue",peg$c661=peg$literalExpectation("deepskyblue",false),peg$c662=function(){return"#00bfffff"},peg$c663="DeepSkyBlue",peg$c664=peg$literalExpectation("DeepSkyBlue",false),peg$c665="dimgray",peg$c666=peg$literalExpectation("dimgray",false),peg$c667=function(){return"#696969ff"},peg$c668="DimGray",peg$c669=peg$literalExpectation("DimGray",false),peg$c670="dimgrey",peg$c671=peg$literalExpectation("dimgrey",false),peg$c672="DimGrey",peg$c673=peg$literalExpectation("DimGrey",false),peg$c674="dodgerblue",peg$c675=peg$literalExpectation("dodgerblue",false),peg$c676=function(){return"#1e90ffff"},peg$c677="DodgerBlue",peg$c678=peg$literalExpectation("DodgerBlue",false),peg$c679="firebrick",peg$c680=peg$literalExpectation("firebrick",false),peg$c681=function(){return"#b22222ff"},peg$c682="FireBrick",peg$c683=peg$literalExpectation("FireBrick",false),peg$c684="floralwhite",peg$c685=peg$literalExpectation("floralwhite",false),peg$c686=function(){return"#fffaf0ff"},peg$c687="FloralWhite",peg$c688=peg$literalExpectation("FloralWhite",false),peg$c689="forestgreen",peg$c690=peg$literalExpectation("forestgreen",false),peg$c691=function(){return"#228b22ff"},peg$c692="ForestGreen",peg$c693=peg$literalExpectation("ForestGreen",false),peg$c694="fuchsia",peg$c695=peg$literalExpectation("fuchsia",false),peg$c696=function(){return"#ff00ffff"},peg$c697="Fuchsia",peg$c698=peg$literalExpectation("Fuchsia",false),peg$c699="gainsboro",peg$c700=peg$literalExpectation("gainsboro",false),peg$c701=function(){return"#dcdcdcff"},peg$c702="Gainsboro",peg$c703=peg$literalExpectation("Gainsboro",false),peg$c704="ghostwhite",peg$c705=peg$literalExpectation("ghostwhite",false),peg$c706=function(){return"#f8f8ffff"},peg$c707="GhostWhite",peg$c708=peg$literalExpectation("GhostWhite",false),peg$c709="goldenrod",peg$c710=peg$literalExpectation("goldenrod",false),peg$c711=function(){return"#daa520ff"},peg$c712="GoldenRod",peg$c713=peg$literalExpectation("GoldenRod",false),peg$c714="gold",peg$c715=peg$literalExpectation("gold",false),peg$c716=function(){return"#ffd700ff"},peg$c717="Gold",peg$c718=peg$literalExpectation("Gold",false),peg$c719="gray",peg$c720=peg$literalExpectation("gray",false),peg$c721=function(){return"#808080ff"},peg$c722="Gray",peg$c723=peg$literalExpectation("Gray",false),peg$c724="grey",peg$c725=peg$literalExpectation("grey",false),peg$c726="Grey",peg$c727=peg$literalExpectation("Grey",false),peg$c728="greenyellow",peg$c729=peg$literalExpectation("greenyellow",false),peg$c730=function(){return"#adff2fff"},peg$c731="GreenYellow",peg$c732=peg$literalExpectation("GreenYellow",false),peg$c733="green",peg$c734=peg$literalExpectation("green",false),peg$c735=function(){return"#008000ff"},peg$c736="Green",peg$c737=peg$literalExpectation("Green",false),peg$c738="honeydew",peg$c739=peg$literalExpectation("honeydew",false),peg$c740=function(){return"#f0fff0ff"},peg$c741="HoneyDew",peg$c742=peg$literalExpectation("HoneyDew",false),peg$c743="hotpink",peg$c744=peg$literalExpectation("hotpink",false),peg$c745=function(){return"#ff69b4ff"},peg$c746="HotPink",peg$c747=peg$literalExpectation("HotPink",false),peg$c748="indianred",peg$c749=peg$literalExpectation("indianred",false),peg$c750=function(){return"#cd5c5cff"},peg$c751="IndianRed",peg$c752=peg$literalExpectation("IndianRed",false),peg$c753="indigo",peg$c754=peg$literalExpectation("indigo",false),peg$c755=function(){return"#4b0082ff"},peg$c756="Indigo",peg$c757=peg$literalExpectation("Indigo",false),peg$c758="ivory",peg$c759=peg$literalExpectation("ivory",false),peg$c760=function(){return"#fffff0ff"},peg$c761="Ivory",peg$c762=peg$literalExpectation("Ivory",false),peg$c763="khaki",peg$c764=peg$literalExpectation("khaki",false),peg$c765=function(){return"#f0e68cff"},peg$c766="Khaki",peg$c767=peg$literalExpectation("Khaki",false),peg$c768="lavenderblush",peg$c769=peg$literalExpectation("lavenderblush",false),peg$c770=function(){return"#fff0f5ff"},peg$c771="LavenderBlush",peg$c772=peg$literalExpectation("LavenderBlush",false),peg$c773="lavender",peg$c774=peg$literalExpectation("lavender",false),peg$c775=function(){return"#e6e6faff"},peg$c776="Lavender",peg$c777=peg$literalExpectation("Lavender",false),peg$c778="lawngreen",peg$c779=peg$literalExpectation("lawngreen",false),peg$c780=function(){return"#7cfc00ff"},peg$c781="LawnGreen",peg$c782=peg$literalExpectation("LawnGreen",false),peg$c783="lemonchiffon",peg$c784=peg$literalExpectation("lemonchiffon",false),peg$c785=function(){return"#fffacdff"},peg$c786="LemonChiffon",peg$c787=peg$literalExpectation("LemonChiffon",false),peg$c788="lightblue",peg$c789=peg$literalExpectation("lightblue",false),peg$c790=function(){return"#add8e6ff"},peg$c791="LightBlue",peg$c792=peg$literalExpectation("LightBlue",false),peg$c793="lightcoral",peg$c794=peg$literalExpectation("lightcoral",false),peg$c795=function(){return"#f08080ff"},peg$c796="LightCoral",peg$c797=peg$literalExpectation("LightCoral",false),peg$c798="lightcyan",peg$c799=peg$literalExpectation("lightcyan",false),peg$c800=function(){return"#e0ffffff"},peg$c801="LightCyan",peg$c802=peg$literalExpectation("LightCyan",false),peg$c803="lightgoldenrodyellow",peg$c804=peg$literalExpectation("lightgoldenrodyellow",false),peg$c805=function(){return"#fafad2ff"},peg$c806="LightGoldenRodYellow",peg$c807=peg$literalExpectation("LightGoldenRodYellow",false),peg$c808="lightgray",peg$c809=peg$literalExpectation("lightgray",false),peg$c810=function(){return"#d3d3d3ff"},peg$c811="LightGray",peg$c812=peg$literalExpectation("LightGray",false),peg$c813="lightgrey",peg$c814=peg$literalExpectation("lightgrey",false),peg$c815="LightGrey",peg$c816=peg$literalExpectation("LightGrey",false),peg$c817="lightgreen",peg$c818=peg$literalExpectation("lightgreen",false),peg$c819=function(){return"#90ee90ff"},peg$c820="LightGreen",peg$c821=peg$literalExpectation("LightGreen",false),peg$c822="lightpink",peg$c823=peg$literalExpectation("lightpink",false),peg$c824=function(){return"#ffb6c1ff"},peg$c825="LightPink",peg$c826=peg$literalExpectation("LightPink",false),peg$c827="lightsalmon",peg$c828=peg$literalExpectation("lightsalmon",false),peg$c829=function(){return"#ffa07aff"},peg$c830="LightSalmon",peg$c831=peg$literalExpectation("LightSalmon",false),peg$c832="lightseagreen",peg$c833=peg$literalExpectation("lightseagreen",false),peg$c834=function(){return"#20b2aaff"},peg$c835="LightSeaGreen",peg$c836=peg$literalExpectation("LightSeaGreen",false),peg$c837="lightskyblue",peg$c838=peg$literalExpectation("lightskyblue",false),peg$c839=function(){return"#87cefaff"},peg$c840="LightSkyBlue",peg$c841=peg$literalExpectation("LightSkyBlue",false),peg$c842="lightslategray",peg$c843=peg$literalExpectation("lightslategray",false),peg$c844=function(){return"#778899ff"},peg$c845="LightSlateGray",peg$c846=peg$literalExpectation("LightSlateGray",false),peg$c847="lightslategrey",peg$c848=peg$literalExpectation("lightslategrey",false),peg$c849="LightSlateGrey",peg$c850=peg$literalExpectation("LightSlateGrey",false),peg$c851="lightsteelblue",peg$c852=peg$literalExpectation("lightsteelblue",false),peg$c853=function(){return"#b0c4deff"},peg$c854="LightSteelBlue",peg$c855=peg$literalExpectation("LightSteelBlue",false),peg$c856="lightyellow",peg$c857=peg$literalExpectation("lightyellow",false),peg$c858=function(){return"#ffffe0ff"},peg$c859="LightYellow",peg$c860=peg$literalExpectation("LightYellow",false),peg$c861="limegreen",peg$c862=peg$literalExpectation("limegreen",false),peg$c863=function(){return"#32cd32ff"},peg$c864="LimeGreen",peg$c865=peg$literalExpectation("LimeGreen",false),peg$c866="lime",peg$c867=peg$literalExpectation("lime",false),peg$c868=function(){return"#00ff00ff"},peg$c869="Lime",peg$c870=peg$literalExpectation("Lime",false),peg$c871="linen",peg$c872=peg$literalExpectation("linen",false),peg$c873=function(){return"#faf0e6ff"},peg$c874="Linen",peg$c875=peg$literalExpectation("Linen",false),peg$c876="magenta",peg$c877=peg$literalExpectation("magenta",false),peg$c878="Magenta",peg$c879=peg$literalExpectation("Magenta",false),peg$c880="maroon",peg$c881=peg$literalExpectation("maroon",false),peg$c882=function(){return"#800000ff"},peg$c883="Maroon",peg$c884=peg$literalExpectation("Maroon",false),peg$c885="mediumaquamarine",peg$c886=peg$literalExpectation("mediumaquamarine",false),peg$c887=function(){return"#66cdaaff"},peg$c888="MediumAquaMarine",peg$c889=peg$literalExpectation("MediumAquaMarine",false),peg$c890="mediumblue",peg$c891=peg$literalExpectation("mediumblue",false),peg$c892=function(){return"#0000cdff"},peg$c893="MediumBlue",peg$c894=peg$literalExpectation("MediumBlue",false),peg$c895="mediumorchid",peg$c896=peg$literalExpectation("mediumorchid",false),peg$c897=function(){return"#ba55d3ff"},peg$c898="MediumOrchid",peg$c899=peg$literalExpectation("MediumOrchid",false),peg$c900="mediumpurple",peg$c901=peg$literalExpectation("mediumpurple",false),peg$c902=function(){return"#9370d8ff"},peg$c903="MediumPurple",peg$c904=peg$literalExpectation("MediumPurple",false),peg$c905="mediumseagreen",peg$c906=peg$literalExpectation("mediumseagreen",false),peg$c907=function(){return"#3cb371ff"},peg$c908="MediumSeaGreen",peg$c909=peg$literalExpectation("MediumSeaGreen",false),peg$c910="mediumslateblue",peg$c911=peg$literalExpectation("mediumslateblue",false),peg$c912=function(){return"#7b68eeff"},peg$c913="MediumSlateBlue",peg$c914=peg$literalExpectation("MediumSlateBlue",false),peg$c915="mediumspringgreen",peg$c916=peg$literalExpectation("mediumspringgreen",false),peg$c917=function(){return"#00fa9aff"},peg$c918="MediumSpringGreen",peg$c919=peg$literalExpectation("MediumSpringGreen",false),peg$c920="mediumturquoise",peg$c921=peg$literalExpectation("mediumturquoise",false),peg$c922=function(){return"#48d1ccff"},peg$c923="MediumTurquoise",peg$c924=peg$literalExpectation("MediumTurquoise",false),peg$c925="mediumvioletred",peg$c926=peg$literalExpectation("mediumvioletred",false),peg$c927=function(){return"#c71585ff"},peg$c928="MediumVioletRed",peg$c929=peg$literalExpectation("MediumVioletRed",false),peg$c930="midnightblue",peg$c931=peg$literalExpectation("midnightblue",false),peg$c932=function(){return"#191970ff"},peg$c933="MidnightBlue",peg$c934=peg$literalExpectation("MidnightBlue",false),peg$c935="mintcream",peg$c936=peg$literalExpectation("mintcream",false),peg$c937=function(){return"#f5fffaff"},peg$c938="MintCream",peg$c939=peg$literalExpectation("MintCream",false),peg$c940="mistyrose",peg$c941=peg$literalExpectation("mistyrose",false),peg$c942=function(){return"#ffe4e1ff"},peg$c943="MistyRose",peg$c944=peg$literalExpectation("MistyRose",false),peg$c945="moccasin",peg$c946=peg$literalExpectation("moccasin",false),peg$c947=function(){return"#ffe4b5ff"},peg$c948="Moccasin",peg$c949=peg$literalExpectation("Moccasin",false),peg$c950="navajowhite",peg$c951=peg$literalExpectation("navajowhite",false),peg$c952=function(){return"#ffdeadff"},peg$c953="NavajoWhite",peg$c954=peg$literalExpectation("NavajoWhite",false),peg$c955="navy",peg$c956=peg$literalExpectation("navy",false),peg$c957=function(){return"#000080ff"},peg$c958="Navy",peg$c959=peg$literalExpectation("Navy",false),peg$c960="oldlace",peg$c961=peg$literalExpectation("oldlace",false),peg$c962=function(){return"#fdf5e6ff"},peg$c963="OldLace",peg$c964=peg$literalExpectation("OldLace",false),peg$c965="olivedrab",peg$c966=peg$literalExpectation("olivedrab",false),peg$c967=function(){return"#6b8e23ff"},peg$c968="OliveDrab",peg$c969=peg$literalExpectation("OliveDrab",false),peg$c970="olive",peg$c971=peg$literalExpectation("olive",false),peg$c972=function(){return"#808000ff"},peg$c973="Olive",peg$c974=peg$literalExpectation("Olive",false),peg$c975="orangered",peg$c976=peg$literalExpectation("orangered",false),peg$c977=function(){return"#ff4500ff"},peg$c978="OrangeRed",peg$c979=peg$literalExpectation("OrangeRed",false),peg$c980="orange",peg$c981=peg$literalExpectation("orange",false),peg$c982=function(){return"#ffa500ff"},peg$c983="Orange",peg$c984=peg$literalExpectation("Orange",false),peg$c985="orchid",peg$c986=peg$literalExpectation("orchid",false),peg$c987=function(){return"#da70d6ff"},peg$c988="Orchid",peg$c989=peg$literalExpectation("Orchid",false),peg$c990="palegoldenrod",peg$c991=peg$literalExpectation("palegoldenrod",false),peg$c992=function(){return"#eee8aaff"},peg$c993="PaleGoldenRod",peg$c994=peg$literalExpectation("PaleGoldenRod",false),peg$c995="palegreen",peg$c996=peg$literalExpectation("palegreen",false),peg$c997=function(){return"#98fb98ff"},peg$c998="PaleGreen",peg$c999=peg$literalExpectation("PaleGreen",false),peg$c1000="paleturquoise",peg$c1001=peg$literalExpectation("paleturquoise",false),peg$c1002=function(){return"#afeeeeff"},peg$c1003="PaleTurquoise",peg$c1004=peg$literalExpectation("PaleTurquoise",false),peg$c1005="palevioletred",peg$c1006=peg$literalExpectation("palevioletred",false),peg$c1007=function(){return"#d87093ff"},peg$c1008="PaleVioletRed",peg$c1009=peg$literalExpectation("PaleVioletRed",false),peg$c1010="papayawhip",peg$c1011=peg$literalExpectation("papayawhip",false),peg$c1012=function(){return"#ffefd5ff"},peg$c1013="PapayaWhip",peg$c1014=peg$literalExpectation("PapayaWhip",false),peg$c1015="peachpuff",peg$c1016=peg$literalExpectation("peachpuff",false),peg$c1017=function(){return"#ffdab9ff"},peg$c1018="PeachPuff",peg$c1019=peg$literalExpectation("PeachPuff",false),peg$c1020="peru",peg$c1021=peg$literalExpectation("peru",false),peg$c1022=function(){return"#cd853fff"},peg$c1023="Peru",peg$c1024=peg$literalExpectation("Peru",false),peg$c1025="pink",peg$c1026=peg$literalExpectation("pink",false),peg$c1027=function(){return"#ffc0cbff"},peg$c1028="Pink",peg$c1029=peg$literalExpectation("Pink",false),peg$c1030="plum",peg$c1031=peg$literalExpectation("plum",false),peg$c1032=function(){return"#dda0ddff"},peg$c1033="Plum",peg$c1034=peg$literalExpectation("Plum",false),peg$c1035="powderblue",peg$c1036=peg$literalExpectation("powderblue",false),peg$c1037=function(){return"#b0e0e6ff"},peg$c1038="PowderBlue",peg$c1039=peg$literalExpectation("PowderBlue",false),peg$c1040="purple",peg$c1041=peg$literalExpectation("purple",false),peg$c1042=function(){return"#800080ff"},peg$c1043="Purple",peg$c1044=peg$literalExpectation("Purple",false),peg$c1045="red",peg$c1046=peg$literalExpectation("red",false),peg$c1047=function(){return"#ff0000ff"},peg$c1048="Red",peg$c1049=peg$literalExpectation("Red",false),peg$c1050="rosybrown",peg$c1051=peg$literalExpectation("rosybrown",false),peg$c1052=function(){return"#bc8f8fff"},peg$c1053="RosyBrown",peg$c1054=peg$literalExpectation("RosyBrown",false),peg$c1055="royalblue",peg$c1056=peg$literalExpectation("royalblue",false),peg$c1057=function(){return"#4169e1ff"},peg$c1058="RoyalBlue",peg$c1059=peg$literalExpectation("RoyalBlue",false),peg$c1060="saddlebrown",peg$c1061=peg$literalExpectation("saddlebrown",false),peg$c1062=function(){return"#8b4513ff"},peg$c1063="SaddleBrown",peg$c1064=peg$literalExpectation("SaddleBrown",false),peg$c1065="salmon",peg$c1066=peg$literalExpectation("salmon",false),peg$c1067=function(){return"#fa8072ff"},peg$c1068="Salmon",peg$c1069=peg$literalExpectation("Salmon",false),peg$c1070="sandybrown",peg$c1071=peg$literalExpectation("sandybrown",false),peg$c1072=function(){return"#f4a460ff"},peg$c1073="SandyBrown",peg$c1074=peg$literalExpectation("SandyBrown",false),peg$c1075="seagreen",peg$c1076=peg$literalExpectation("seagreen",false),peg$c1077=function(){return"#2e8b57ff"},peg$c1078="SeaGreen",peg$c1079=peg$literalExpectation("SeaGreen",false),peg$c1080="seashell",peg$c1081=peg$literalExpectation("seashell",false),peg$c1082=function(){return"#fff5eeff"},peg$c1083="SeaShell",peg$c1084=peg$literalExpectation("SeaShell",false),peg$c1085="sienna",peg$c1086=peg$literalExpectation("sienna",false),peg$c1087=function(){return"#a0522dff"},peg$c1088="Sienna",peg$c1089=peg$literalExpectation("Sienna",false),peg$c1090="silver",peg$c1091=peg$literalExpectation("silver",false),peg$c1092=function(){return"#c0c0c0ff"},peg$c1093="Silver",peg$c1094=peg$literalExpectation("Silver",false),peg$c1095="skyblue",peg$c1096=peg$literalExpectation("skyblue",false),peg$c1097=function(){return"#87ceebff"},peg$c1098="SkyBlue",peg$c1099=peg$literalExpectation("SkyBlue",false),peg$c1100="slateblue",peg$c1101=peg$literalExpectation("slateblue",false),peg$c1102=function(){return"#6a5acdff"},peg$c1103="SlateBlue",peg$c1104=peg$literalExpectation("SlateBlue",false),peg$c1105="slategray",peg$c1106=peg$literalExpectation("slategray",false),peg$c1107=function(){return"#708090ff"},peg$c1108="SlateGray",peg$c1109=peg$literalExpectation("SlateGray",false),peg$c1110="slategrey",peg$c1111=peg$literalExpectation("slategrey",false),peg$c1112="SlateGrey",peg$c1113=peg$literalExpectation("SlateGrey",false),peg$c1114="snow",peg$c1115=peg$literalExpectation("snow",false),peg$c1116=function(){return"#fffafaff"},peg$c1117="Snow",peg$c1118=peg$literalExpectation("Snow",false),peg$c1119="springgreen",peg$c1120=peg$literalExpectation("springgreen",false),peg$c1121=function(){return"#00ff7fff"},peg$c1122="SpringGreen",peg$c1123=peg$literalExpectation("SpringGreen",false),peg$c1124="steelblue",peg$c1125=peg$literalExpectation("steelblue",false),peg$c1126=function(){return"#4682b4ff"},peg$c1127="SteelBlue",peg$c1128=peg$literalExpectation("SteelBlue",false),peg$c1129="tan",peg$c1130=peg$literalExpectation("tan",false),peg$c1131=function(){return"#d2b48cff"},peg$c1132="Tan",peg$c1133=peg$literalExpectation("Tan",false),peg$c1134="teal",peg$c1135=peg$literalExpectation("teal",false),peg$c1136=function(){return"#008080ff"},peg$c1137="Teal",peg$c1138=peg$literalExpectation("Teal",false),peg$c1139="thistle",peg$c1140=peg$literalExpectation("thistle",false),peg$c1141=function(){return"#d8bfd8ff"},peg$c1142="Thistle",peg$c1143=peg$literalExpectation("Thistle",false),peg$c1144="tomato",peg$c1145=peg$literalExpectation("tomato",false),peg$c1146=function(){return"#ff6347ff"},peg$c1147="Tomato",peg$c1148=peg$literalExpectation("Tomato",false),peg$c1149="turquoise",peg$c1150=peg$literalExpectation("turquoise",false),peg$c1151=function(){return"#40e0d0ff"},peg$c1152="Turquoise",peg$c1153=peg$literalExpectation("Turquoise",false),peg$c1154="violet",peg$c1155=peg$literalExpectation("violet",false),peg$c1156=function(){return"#ee82eeff"},peg$c1157="Violet",peg$c1158=peg$literalExpectation("Violet",false),peg$c1159="wheat",peg$c1160=peg$literalExpectation("wheat",false),peg$c1161=function(){return"#f5deb3ff"},peg$c1162="Wheat",peg$c1163=peg$literalExpectation("Wheat",false),peg$c1164="whitesmoke",peg$c1165=peg$literalExpectation("whitesmoke",false),peg$c1166=function(){return"#f5f5f5ff"},peg$c1167="WhiteSmoke",peg$c1168=peg$literalExpectation("WhiteSmoke",false),peg$c1169="white",peg$c1170=peg$literalExpectation("white",false),peg$c1171=function(){return"#ffffffff"},peg$c1172="White",peg$c1173=peg$literalExpectation("White",false),peg$c1174="yellowgreen",peg$c1175=peg$literalExpectation("yellowgreen",false),peg$c1176=function(){return"#9acd32ff"},peg$c1177="YellowGreen",peg$c1178=peg$literalExpectation("YellowGreen",false),peg$c1179="yellow",peg$c1180=peg$literalExpectation("yellow",false),peg$c1181=function(){return"#ffff00ff"},peg$c1182="Yellow",peg$c1183=peg$literalExpectation("Yellow",false),peg$c1184=function(lab){return lab},peg$c1185="#",peg$c1186=peg$literalExpectation("#",false),peg$c1187=function(r,g,b){return`#${r}${r}${g}${g}${b}${b}ff`},peg$c1188=function(r1,r2,g1,g2,b1,b2){return`#${r1}${r2}${g1}${g2}${b1}${b2}ff`},peg$c1189=function(r,g,b,a){return`#${r}${r}${g}${g}${b}${b}${a}${a}`},peg$c1190=function(r1,r2,g1,g2,b1,b2,a1,a2){return`#${r1}${r2}${g1}${g2}${b1}${b2}${a1}${a2}`},peg$c1191=peg$otherExpectation("color"),peg$c1192="arc_label",peg$c1193=peg$literalExpectation("arc_label",false),peg$c1194="head_label",peg$c1195=peg$literalExpectation("head_label",false),peg$c1196="tail_label",peg$c1197=peg$literalExpectation("tail_label",false),peg$c1198=":",peg$c1199=peg$literalExpectation(":",false),peg$c1200=";",peg$c1201=peg$literalExpectation(";",false),peg$c1202=function(key,value){return{key:key,value:value}},peg$c1203=peg$otherExpectation("single edge color"),peg$c1204="edge_color",peg$c1205=peg$literalExpectation("edge_color",false),peg$c1206=function(value){return{key:"single_edge_color",value:value}},peg$c1207=peg$otherExpectation("transition line style"),peg$c1208="line-style",peg$c1209=peg$literalExpectation("line-style",false),peg$c1210=function(value){return{key:"transition_line_style",value:value}},peg$c1211="{",peg$c1212=peg$literalExpectation("{",false),peg$c1213="}",peg$c1214=peg$literalExpectation("}",false),peg$c1215=function(items){return items},peg$c1216="%",peg$c1217=peg$literalExpectation("%",false),peg$c1218=function(value){return{key:"arrow probability",value:value}},peg$c1219="[",peg$c1220=peg$literalExpectation("[",false),peg$c1221="]",peg$c1222=peg$literalExpectation("]",false),peg$c1223=function(names){return names.map((i=>i[0]))},peg$c1224="+|",peg$c1225=peg$literalExpectation("+|",false),peg$c1226=function(nzd,dd){return{key:"stripe",value:parseInt(`${nzd}${dd}`,10)}},peg$c1227="-|",peg$c1228=peg$literalExpectation("-|",false),peg$c1229=function(nzd,dd){return{key:"stripe",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1230="+",peg$c1231=peg$literalExpectation("+",false),peg$c1232=function(nzd,dd){return{key:"cycle",value:parseInt(`${nzd}${dd}`,10)}},peg$c1233="-",peg$c1234=peg$literalExpectation("-",false),peg$c1235=function(nzd,dd){return{key:"cycle",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1236="+0",peg$c1237=peg$literalExpectation("+0",false),peg$c1238=function(){return{key:"cycle",value:0}},peg$c1239=function(r_action,r_prob,l_desc,arrow,r_desc,l_prob,l_action,label,tail){const base={kind:arrow,to:label};if(tail&&tail!==[]){base.se=tail}if(l_desc){base.l_desc=l_desc}if(r_desc){base.r_desc=r_desc}if(l_action){base.l_action=l_action}if(r_action){base.r_action=r_action}if(l_prob){base.l_probability=l_prob.value}if(r_prob){base.r_probability=r_prob.value}return base},peg$c1240=function(label,se){const base={key:"transition",from:label};if(se&&se!==[]){base.se=se}return base},peg$c1241="whargarbl",peg$c1242=peg$literalExpectation("whargarbl",false),peg$c1243="todo",peg$c1244=peg$literalExpectation("todo",false),peg$c1245=function(validationkey,value){return{key:validationkey,value:value}},peg$c1246="validation",peg$c1247=peg$literalExpectation("validation",false),peg$c1248="};",peg$c1249=peg$literalExpectation("};",false),peg$c1250=function(validation_items){return{config_kind:"validation",config_items:validation_items||[]}},peg$c1251="dot",peg$c1252=peg$literalExpectation("dot",false),peg$c1253="circo",peg$c1254=peg$literalExpectation("circo",false),peg$c1255="fdp",peg$c1256=peg$literalExpectation("fdp",false),peg$c1257="neato",peg$c1258=peg$literalExpectation("neato",false),peg$c1259="state",peg$c1260=peg$literalExpectation("state",false),peg$c1261=function(state_items){return{key:"default_state_config",value:state_items||[]}},peg$c1262="start_state",peg$c1263=peg$literalExpectation("start_state",false),peg$c1264=function(state_items){return{key:"default_start_state_config",value:state_items||[]}},peg$c1265="end_state",peg$c1266=peg$literalExpectation("end_state",false),peg$c1267=function(state_items){return{key:"default_end_state_config",value:state_items||[]}},peg$c1268="active_state",peg$c1269=peg$literalExpectation("active_state",false),peg$c1270=function(state_items){return{key:"default_active_state_config",value:state_items||[]}},peg$c1271="terminal_state",peg$c1272=peg$literalExpectation("terminal_state",false),peg$c1273=function(state_items){return{key:"default_terminal_state_config",value:state_items||[]}},peg$c1274="hooked_state",peg$c1275=peg$literalExpectation("hooked_state",false),peg$c1276=function(state_items){return{key:"default_hooked_state_config",value:state_items||[]}},peg$c1277=function(actionkey,value){return{key:actionkey,value:value}},peg$c1278="action",peg$c1279=peg$literalExpectation("action",false),peg$c1280=function(action_items){return{config_kind:"action",config_items:action_items||[]}},peg$c1281=function(key,value){return{key:key,value:value}},peg$c1282=peg$otherExpectation("graph default edge color"),peg$c1283=function(value){return{key:"graph_default_edge_color",value:value}},peg$c1284="transition",peg$c1285=peg$literalExpectation("transition",false),peg$c1286=function(transition_items){return{config_kind:"transition",config_items:transition_items||[]}},peg$c1287="graph_layout",peg$c1288=peg$literalExpectation("graph_layout",false),peg$c1289=function(value){return{key:"graph_layout",value:value}},peg$c1290="start_states",peg$c1291=peg$literalExpectation("start_states",false),peg$c1292=function(value){return{key:"start_states",value:value}},peg$c1293="end_states",peg$c1294=peg$literalExpectation("end_states",false),peg$c1295=function(value){return{key:"end_states",value:value}},peg$c1296="graph_bg_color",peg$c1297=peg$literalExpectation("graph_bg_color",false),peg$c1298=function(value){return{key:"graph_bg_color",value:value}},peg$c1299=peg$otherExpectation("configuration"),peg$c1300="MIT",peg$c1301=peg$literalExpectation("MIT",false),peg$c1302="BSD 2-clause",peg$c1303=peg$literalExpectation("BSD 2-clause",false),peg$c1304="BSD 3-clause",peg$c1305=peg$literalExpectation("BSD 3-clause",false),peg$c1306="Apache 2.0",peg$c1307=peg$literalExpectation("Apache 2.0",false),peg$c1308="Mozilla 2.0",peg$c1309=peg$literalExpectation("Mozilla 2.0",false),peg$c1310="Public domain",peg$c1311=peg$literalExpectation("Public domain",false),peg$c1312="GPL v2",peg$c1313=peg$literalExpectation("GPL v2",false),peg$c1314="GPL v3",peg$c1315=peg$literalExpectation("GPL v3",false),peg$c1316="LGPL v2.1",peg$c1317=peg$literalExpectation("LGPL v2.1",false),peg$c1318="LGPL v3.0",peg$c1319=peg$literalExpectation("LGPL v3.0",false),peg$c1320="Unknown",peg$c1321=peg$literalExpectation("Unknown",false),peg$c1322=peg$otherExpectation("direction"),peg$c1323="up",peg$c1324=peg$literalExpectation("up",false),peg$c1325="right",peg$c1326=peg$literalExpectation("right",false),peg$c1327="down",peg$c1328=peg$literalExpectation("down",false),peg$c1329="left",peg$c1330=peg$literalExpectation("left",false),peg$c1331=peg$otherExpectation("hook definition (open/closed)"),peg$c1332="open",peg$c1333=peg$literalExpectation("open",false),peg$c1334="closed",peg$c1335=peg$literalExpectation("closed",false),peg$c1336="machine_author",peg$c1337=peg$literalExpectation("machine_author",false),peg$c1338=function(value){return{key:"machine_author",value:value}},peg$c1339="machine_contributor",peg$c1340=peg$literalExpectation("machine_contributor",false),peg$c1341=function(value){return{key:"machine_contributor",value:value}},peg$c1342="machine_comment",peg$c1343=peg$literalExpectation("machine_comment",false),peg$c1344=function(value){return{key:"machine_comment",value:value}},peg$c1345="machine_definition",peg$c1346=peg$literalExpectation("machine_definition",false),peg$c1347=function(value){return{key:"machine_definition",value:value}},peg$c1348="machine_name",peg$c1349=peg$literalExpectation("machine_name",false),peg$c1350=function(value){return{key:"machine_name",value:value}},peg$c1354="machine_version",peg$c1355=peg$literalExpectation("machine_version",false),peg$c1356=function(value){return{key:"machine_version",value:value}},peg$c1357="machine_license",peg$c1358=peg$literalExpectation("machine_license",false),peg$c1359=function(value){return{key:"machine_license",value:value}},peg$c1360="machine_language",peg$c1361=peg$literalExpectation("machine_language",false),peg$c1362=function(value){return{key:"machine_language",value:value}},peg$c1363="fsl_version",peg$c1364=peg$literalExpectation("fsl_version",false),peg$c1365=function(value){return{key:"fsl_version",value:value}},peg$c1366="theme",peg$c1367=peg$literalExpectation("theme",false),peg$c1368=function(value){return{key:"theme",value:value}},peg$c1369="flow",peg$c1370=peg$literalExpectation("flow",false),peg$c1371=function(value){return{key:"flow",value:value}},peg$c1372="hooks",peg$c1373=peg$literalExpectation("hooks",false),peg$c1374=function(value){return{key:"hook_definition",value:value}},peg$c1375="dot_preamble",peg$c1376=peg$literalExpectation("dot_preamble",false),peg$c1377=function(value){return{key:"dot_preamble",value:value}},peg$c1378=peg$otherExpectation("machine attribute"),peg$c1379="label",peg$c1380=peg$literalExpectation("label",false),peg$c1381=function(value){return{key:"state-label",value:value}},peg$c1382="color",peg$c1383=peg$literalExpectation("color",false),peg$c1384=function(value){return{key:"color",value:value}},peg$c1385=peg$otherExpectation("text color"),peg$c1386="text-color",peg$c1387=peg$literalExpectation("text-color",false),peg$c1388=function(value){return{key:"text-color",value:value}},peg$c1389=peg$otherExpectation("background color"),peg$c1390="background-color",peg$c1391=peg$literalExpectation("background-color",false),peg$c1392=function(value){return{key:"background-color",value:value}},peg$c1393=peg$otherExpectation("border color"),peg$c1394="border-color",peg$c1395=peg$literalExpectation("border-color",false),peg$c1396=function(value){return{key:"border-color",value:value}},peg$c1397=peg$otherExpectation("shape"),peg$c1398="shape",peg$c1399=peg$literalExpectation("shape",false),peg$c1400=function(value){return{key:"shape",value:value}},peg$c1401=peg$otherExpectation("corners"),peg$c1402="corners",peg$c1403=peg$literalExpectation("corners",false),peg$c1404=function(value){return{key:"corners",value:value}},peg$c1405=peg$otherExpectation("linestyle"),peg$c1406=function(value){return{key:"line-style",value:value}},peg$c1407="linestyle",peg$c1408=peg$literalExpectation("linestyle",false),peg$c1409=peg$otherExpectation("state property"),peg$c1410="property",peg$c1411=peg$literalExpectation("property",false),peg$c1412=function(name,value){return{key:"state_property",name:name,value:value}},peg$c1413="required",peg$c1414=peg$literalExpectation("required",false),peg$c1415=function(name,value){return{key:"state_property",name:name,value:value,required:true}},peg$c1416=function(name,value){return{key:"state_declaration",name:name,value:value}},peg$c1417="&",peg$c1418=peg$literalExpectation("&",false),peg$c1419=function(name,value){return{key:"named_list",name:name,value:value}},peg$c1420=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value,required:true}},peg$c1421=function(name){return{key:"property_definition",name:name,required:true}},peg$c1422=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value}},peg$c1423=function(name){return{key:"property_definition",name:name}},peg$c1424="arrange",peg$c1425=peg$literalExpectation("arrange",false),peg$c1426=function(value){return{key:"arrange_declaration",value:value}},peg$c1427="arrange-start",peg$c1428=peg$literalExpectation("arrange-start",false),peg$c1429=function(value){return{key:"arrange_start_declaration",value:value}},peg$c1430="arrange-end",peg$c1431=peg$literalExpectation("arrange-end",false),peg$c1432=function(value){return{key:"arrange_end_declaration",value:value}},peg$c1433=peg$otherExpectation("arrange declaration"),peg$currPos=0,peg$savedPos=0,peg$posDetailsCache=[{line:1,column:1}],peg$maxFailPos=0,peg$maxFailExpected=[],peg$silentFails=0,peg$result;if("startRule"in options){if(!(options.startRule in peg$startRuleFunctions)){throw new Error("Can't start parsing from rule \""+options.startRule+'".')}peg$startRuleFunction=peg$startRuleFunctions[options.startRule]}function text(){return input.substring(peg$savedPos,peg$currPos)}function peg$literalExpectation(text,ignoreCase){return{type:"literal",text:text,ignoreCase:ignoreCase}}function peg$classExpectation(parts,inverted,ignoreCase){return{type:"class",parts:parts,inverted:inverted,ignoreCase:ignoreCase}}function peg$anyExpectation(){return{type:"any"}}function peg$endExpectation(){return{type:"end"}}function peg$otherExpectation(description){return{type:"other",description:description}}function peg$computePosDetails(pos){var details=peg$posDetailsCache[pos],p;if(details){return details}else{p=pos-1;while(!peg$posDetailsCache[p]){p--}details=peg$posDetailsCache[p];details={line:details.line,column:details.column};while(ppeg$maxFailPos){peg$maxFailPos=peg$currPos;peg$maxFailExpected=[]}peg$maxFailExpected.push(expected)}function peg$buildStructuredError(expected,found,location){return new peg$SyntaxError(peg$SyntaxError.buildMessage(expected,found),expected,found,location)}function peg$parseDocument(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseTermList();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c0(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTheme(){var s0;if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s0=peg$c3;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c5){s0=peg$c5;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c6)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c7){s0=peg$c7;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c8)}}}}}return s0}function peg$parseGvizShape(){var s0;if(input.substr(peg$currPos,5)===peg$c9){s0=peg$c9;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c10)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c11){s0=peg$c11;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c12)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c13){s0=peg$c13;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c14)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c15){s0=peg$c15;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c16)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c17){s0=peg$c17;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c18)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c19){s0=peg$c19;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c20)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c21){s0=peg$c21;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c22)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c23){s0=peg$c23;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c24)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c25){s0=peg$c25;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c26)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c27){s0=peg$c27;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c28)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c29){s0=peg$c29;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c30)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c31){s0=peg$c31;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c32)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c33){s0=peg$c33;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c34)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c35){s0=peg$c35;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c36)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c37){s0=peg$c37;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c38)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c39){s0=peg$c39;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c40)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c41){s0=peg$c41;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c42)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c43){s0=peg$c43;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c44)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c45){s0=peg$c45;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c46)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c47){s0=peg$c47;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c48)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c49){s0=peg$c49;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c50)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c51){s0=peg$c51;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c52)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c53){s0=peg$c53;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c54)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c55){s0=peg$c55;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c56)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c57){s0=peg$c57;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c58)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c59){s0=peg$c59;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c60)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c61){s0=peg$c61;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c62)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c63){s0=peg$c63;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c64)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c65){s0=peg$c65;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c66)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c67){s0=peg$c67;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c68)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c69){s0=peg$c69;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c70)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c71){s0=peg$c71;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c72)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c73){s0=peg$c73;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c74)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c75){s0=peg$c75;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c76)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c77){s0=peg$c77;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c78)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c79){s0=peg$c79;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c80)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c81){s0=peg$c81;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c82)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c83){s0=peg$c83;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c84)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c85){s0=peg$c85;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c86)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c87){s0=peg$c87;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c88)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c89){s0=peg$c89;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c90)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c91){s0=peg$c91;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c92)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c93){s0=peg$c93;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c94)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,15)===peg$c95){s0=peg$c95;peg$currPos+=15}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c96)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c97){s0=peg$c97;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c98)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,14)===peg$c99){s0=peg$c99;peg$currPos+=14}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c100)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c101){s0=peg$c101;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c102)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c103){s0=peg$c103;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c104)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c105){s0=peg$c105;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c106)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c107){s0=peg$c107;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c108)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c109){s0=peg$c109;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c110)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c111){s0=peg$c111;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c112)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c113){s0=peg$c113;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c114)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c115){s0=peg$c115;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c116)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c117){s0=peg$c117;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c118)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c119){s0=peg$c119;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c120)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c121){s0=peg$c121;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c122)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c123){s0=peg$c123;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c124)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c125){s0=peg$c125;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c126)}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseForwardLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c128){s0=peg$c128;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c129)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8594){s1=peg$c130;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c131)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c132()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c127)}}return s0}function peg$parseTwoWayLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c134){s0=peg$c134;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c135)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8596){s1=peg$c136;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c137)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c138()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c133)}}return s0}function peg$parseBackLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c140){s0=peg$c140;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c141)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8592){s1=peg$c142;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c144()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c139)}}return s0}function peg$parseForwardFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c146){s0=peg$c146;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c147)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8658){s1=peg$c148;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c149)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c150()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c145)}}return s0}function peg$parseTwoWayFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c152){s0=peg$c152;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c153)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8660){s1=peg$c154;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c156()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c151)}}return s0}function peg$parseBackFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c158){s0=peg$c158;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c159)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8656){s1=peg$c160;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c161)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c162()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c157)}}return s0}function peg$parseForwardTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c164){s0=peg$c164;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c165)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8603){s1=peg$c166;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c167)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c168()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c163)}}return s0}function peg$parseTwoWayTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c170){s0=peg$c170;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c171)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8622){s1=peg$c172;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c174()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c169)}}return s0}function peg$parseBackTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c176){s0=peg$c176;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c177)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8602){s1=peg$c178;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c179)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c180()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c175)}}return s0}function peg$parseLightFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c182){s0=peg$c182;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c183)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c184){s1=peg$c184;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c185)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c186()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c181)}}return s0}function peg$parseLightTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c188){s0=peg$c188;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c189)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c190){s1=peg$c190;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c191)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c192()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c187)}}return s0}function peg$parseFatLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c194){s0=peg$c194;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c195)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c196){s1=peg$c196;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c197)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c198()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c193)}}return s0}function peg$parseFatTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c200){s0=peg$c200;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c201)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c202){s1=peg$c202;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c203)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c204()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c199)}}return s0}function peg$parseTildeLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c206){s0=peg$c206;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c207)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c208){s1=peg$c208;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c209)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c210()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c205)}}return s0}function peg$parseTildeFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c212){s0=peg$c212;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c213)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c214){s1=peg$c214;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c215)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c216()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c211)}}return s0}function peg$parseLightArrow(){var s0;peg$silentFails++;s0=peg$parseForwardLightArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayLightArrow();if(s0===peg$FAILED){s0=peg$parseBackLightArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c217)}}return s0}function peg$parseFatArrow(){var s0;peg$silentFails++;s0=peg$parseForwardFatArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayFatArrow();if(s0===peg$FAILED){s0=peg$parseBackFatArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c218)}}return s0}function peg$parseTildeArrow(){var s0;peg$silentFails++;s0=peg$parseForwardTildeArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayTildeArrow();if(s0===peg$FAILED){s0=peg$parseBackTildeArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c219)}}return s0}function peg$parseMixedArrow(){var s0;peg$silentFails++;s0=peg$parseLightFatArrow();if(s0===peg$FAILED){s0=peg$parseLightTildeArrow();if(s0===peg$FAILED){s0=peg$parseFatLightArrow();if(s0===peg$FAILED){s0=peg$parseFatTildeArrow();if(s0===peg$FAILED){s0=peg$parseTildeLightArrow();if(s0===peg$FAILED){s0=peg$parseTildeFatArrow()}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c220)}}return s0}function peg$parseArrow(){var s0;peg$silentFails++;s0=peg$parseMixedArrow();if(s0===peg$FAILED){s0=peg$parseLightArrow();if(s0===peg$FAILED){s0=peg$parseFatArrow();if(s0===peg$FAILED){s0=peg$parseTildeArrow()}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c221)}}return s0}function peg$parseBoolean(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c222){s1=peg$c222;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c223)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c224()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c225){s1=peg$c225;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c226)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c227()}s0=s1}return s0}function peg$parseCorners(){var s0;if(input.substr(peg$currPos,7)===peg$c228){s0=peg$c228;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c229)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c230){s0=peg$c230;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c231)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c232){s0=peg$c232;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c233)}}}}return s0}function peg$parseLineStyle(){var s0;if(input.substr(peg$currPos,5)===peg$c234){s0=peg$c234;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c235)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c236){s0=peg$c236;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c237)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c238){s0=peg$c238;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c239)}}}}return s0}function peg$parseChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===34){s2=peg$c240;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseNull(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c268){s1=peg$c268;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c269)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c270()}s0=s1;return s0}function peg$parseUndefined(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c271){s1=peg$c271;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c272)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c273()}s0=s1;return s0}function peg$parseEscape(){var s0;if(input.charCodeAt(peg$currPos)===92){s0=peg$c242;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}return s0}function peg$parseQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===34){s0=peg$c240;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}return s0}function peg$parseUnescaped(){var s0;if(peg$c274.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c275)}}return s0}function peg$parseActionLabelChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseActionLabelUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===39){s2=peg$c276;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseActionLabelQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===39){s0=peg$c276;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}return s0}function peg$parseActionLabelUnescaped(){var s0;if(peg$c278.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c279)}}return s0}function peg$parseActionLabel(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseActionLabelQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseActionLabelChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseActionLabelChar()}if(s2!==peg$FAILED){s3=peg$parseActionLabelQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c280)}}return s0}function peg$parseLineTerminator(){var s0;if(peg$c282.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c283)}}return s0}function peg$parseBlockCommentTail(){var s0,s1,s2;if(input.substr(peg$currPos,2)===peg$c286){s0=peg$c286;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c287)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseBlockComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c290){s1=peg$c290;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c291)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c289)}}return s0}function peg$parseEOF(){var s0,s1;s0=peg$currPos;peg$silentFails++;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}peg$silentFails--;if(s1===peg$FAILED){s0=void 0}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLineCommentTail(){var s0,s1,s2;s0=peg$parseLineTerminator();if(s0===peg$FAILED){s0=peg$parseEOF();if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseLineComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c293){s1=peg$c293;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c294)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c292)}}return s0}function peg$parseWS(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;s1=peg$parseBlockComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseLineComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=[];if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}if(s2!==peg$FAILED){while(s2!==peg$FAILED){s1.push(s2);if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}}}else{s1=peg$FAILED}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c295)}}return s0}function peg$parseString(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseChar()}if(s2!==peg$FAILED){s3=peg$parseQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c298)}}return s0}function peg$parseAtomFirstLetter(){var s0;if(peg$c299.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c300)}}return s0}function peg$parseAtomLetter(){var s0;if(peg$c301.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c302)}}return s0}function peg$parseAtom(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseAtomFirstLetter();if(s1!==peg$FAILED){s2=[];s3=peg$parseAtomLetter();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseAtomLetter()}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c304(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c303)}}return s0}function peg$parseLabel(){var s0;peg$silentFails++;s0=peg$parseAtom();if(s0===peg$FAILED){s0=peg$parseString()}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c305)}}return s0}function peg$parseIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseDecimalDigit(){var s0;if(peg$c308.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c309)}}return s0}function peg$parseNonZeroDigit(){var s0;if(peg$c310.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c311)}}return s0}function peg$parseHexDigit(){var s0;if(peg$c312.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c313)}}return s0}function peg$parseBinaryDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseOctalDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseNonNegNumber(){var s0,s1,s2,s3,s4;peg$silentFails++;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c316)}}return s0}function peg$parseJsNumericLiteral(){var s0,s1;peg$silentFails++;s0=peg$currPos;s1=peg$parseJsHexIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsBinaryIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonJsOctalIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c322){s1=peg$c322;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c323)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c324()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c325){s1=peg$c325;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c326)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c328){s1=peg$c328;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c329)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c330){s1=peg$c330;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c331)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c332){s1=peg$c332;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c333)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c334){s1=peg$c334;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c335)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c336){s1=peg$c336;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c337)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c338){s1=peg$c338;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c339)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c340){s1=peg$c340;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c341)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c343){s1=peg$c343;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c344)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c345){s1=peg$c345;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c346)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c347){s1=peg$c347;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c348)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8734){s1=peg$c349;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c350)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c351){s1=peg$c351;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c352)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c354){s1=peg$c354;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c355)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===949){s1=peg$c356;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c357)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c358){s1=peg$c358;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c359)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c361){s1=peg$c361;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c362)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===960){s1=peg$c363;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c364)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c365){s1=peg$c365;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c366)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===69){s1=peg$c368;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c369)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===101){s1=peg$c370;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c371)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===400){s1=peg$c372;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c373)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8455){s1=peg$c374;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c375)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c376){s1=peg$c376;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c377)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c378()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c379){s1=peg$c379;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c380)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c381()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c382){s1=peg$c382;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c383)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c385){s1=peg$c385;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c386)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c387){s1=peg$c387;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c388)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c390){s1=peg$c390;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c391)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c392){s1=peg$c392;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c393)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c394()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c395){s1=peg$c395;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c396)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c397()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c398){s1=peg$c398;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c399)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c400()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c401){s1=peg$c401;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c402)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c403()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c404){s1=peg$c404;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c405)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c406()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c407){s1=peg$c407;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c408)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c409()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c410){s1=peg$c410;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c411)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c413){s1=peg$c413;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c414)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c415){s1=peg$c415;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c416)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===981){s1=peg$c417;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c418)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===966){s1=peg$c419;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c420)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c421){s1=peg$c421;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c422)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c426){s1=peg$c426;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c427)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c320)}}return s0}function peg$parseJsDecimalLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseJsNExponentPart();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===46){s1=peg$c317;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s3=peg$parseJsNExponentPart();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseJsNExponentPart();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseJsDecimalIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseJsNExponentPart(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseJsNExponentIndicator();if(s1!==peg$FAILED){s2=peg$parseJsNSignedInteger();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsNExponentIndicator(){var s0;if(input.substr(peg$currPos,1).toLowerCase()===peg$c370){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c428)}}return s0}function peg$parseJsNSignedInteger(){var s0,s1,s2,s3;s0=peg$currPos;if(peg$c429.test(input.charAt(peg$currPos))){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c430)}}if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsHexIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c431){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c432)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseHexDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseHexDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c433(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsBinaryIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c434){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c435)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseBinaryDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseBinaryDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c436(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNonJsOctalIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c437){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c438)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseOctalDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseOctalDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c439(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSemVer(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=peg$parseIntegerLiteral();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s4=peg$c317;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s4!==peg$FAILED){s5=peg$parseIntegerLiteral();if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c440(s1,s3,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseUrlProtocol(){var s0;if(input.substr(peg$currPos,7)===peg$c451){s0=peg$c451;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c452)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c453){s0=peg$c453;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c454)}}}return s0}function peg$parseURL(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseUrlProtocol();if(s1!==peg$FAILED){s2=[];if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}}}else{s2=peg$FAILED}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c457();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSvgColorLabel(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c458){s1=peg$c458;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c459)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c461){s1=peg$c461;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c462)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c463){s1=peg$c463;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c464)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c466){s1=peg$c466;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c467)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c468){s1=peg$c468;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c469)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c471){s1=peg$c471;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c472)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c473){s1=peg$c473;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c474)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c476){s1=peg$c476;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c477)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c478){s1=peg$c478;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c479)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c481){s1=peg$c481;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c482)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c483){s1=peg$c483;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c484)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c486){s1=peg$c486;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c487)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c488){s1=peg$c488;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c489)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c491){s1=peg$c491;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c492)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c493){s1=peg$c493;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c494)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c496){s1=peg$c496;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c497)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c498){s1=peg$c498;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c499)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c501){s1=peg$c501;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c502)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c503){s1=peg$c503;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c504)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c506){s1=peg$c506;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c507)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c508){s1=peg$c508;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c509)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c511){s1=peg$c511;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c512)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c513){s1=peg$c513;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c514)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c516){s1=peg$c516;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c517)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c518){s1=peg$c518;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c519)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c521){s1=peg$c521;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c522)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c523){s1=peg$c523;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c524)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c526){s1=peg$c526;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c527)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c528){s1=peg$c528;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c529)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c531){s1=peg$c531;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c532)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c533){s1=peg$c533;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c534)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c536){s1=peg$c536;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c537)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c538){s1=peg$c538;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c539)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c541){s1=peg$c541;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c542)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c543){s1=peg$c543;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c544)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c546){s1=peg$c546;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c547)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c548){s1=peg$c548;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c549)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c551){s1=peg$c551;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c552)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c553){s1=peg$c553;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c554)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c556){s1=peg$c556;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c557)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c558){s1=peg$c558;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c559)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c560){s1=peg$c560;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c561)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c562){s1=peg$c562;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c563)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c565){s1=peg$c565;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c566)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c567){s1=peg$c567;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c568)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c570){s1=peg$c570;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c571)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c572){s1=peg$c572;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c573)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c575){s1=peg$c575;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c576)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c577){s1=peg$c577;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c578)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c580){s1=peg$c580;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c581)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c582){s1=peg$c582;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c583)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c584){s1=peg$c584;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c585)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c586){s1=peg$c586;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c587)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c589){s1=peg$c589;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c590)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c591){s1=peg$c591;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c592)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c594){s1=peg$c594;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c595)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c596){s1=peg$c596;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c597)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c599){s1=peg$c599;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c600)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c601){s1=peg$c601;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c602)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c604){s1=peg$c604;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c605)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c606){s1=peg$c606;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c607)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c609){s1=peg$c609;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c610)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c611){s1=peg$c611;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c612)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c614){s1=peg$c614;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c615)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c616){s1=peg$c616;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c617)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c619){s1=peg$c619;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c620)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c621){s1=peg$c621;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c622)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c624){s1=peg$c624;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c625)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c626){s1=peg$c626;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c627)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c629){s1=peg$c629;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c630)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c631){s1=peg$c631;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c632)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c634){s1=peg$c634;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c635)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c636){s1=peg$c636;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c637)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c639){s1=peg$c639;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c640)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c641){s1=peg$c641;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c642)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c643){s1=peg$c643;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c644)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c645){s1=peg$c645;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c646)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c648){s1=peg$c648;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c649)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c650){s1=peg$c650;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c651)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c653){s1=peg$c653;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c654)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c655){s1=peg$c655;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c656)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c658){s1=peg$c658;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c659)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c660){s1=peg$c660;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c661)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c663){s1=peg$c663;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c664)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c665){s1=peg$c665;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c666)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c668){s1=peg$c668;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c669)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c670){s1=peg$c670;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c671)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c672){s1=peg$c672;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c673)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c674){s1=peg$c674;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c675)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c677){s1=peg$c677;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c678)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c679){s1=peg$c679;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c680)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c682){s1=peg$c682;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c683)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c684){s1=peg$c684;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c685)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c687){s1=peg$c687;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c688)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c689){s1=peg$c689;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c690)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c692){s1=peg$c692;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c693)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c694){s1=peg$c694;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c695)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c697){s1=peg$c697;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c698)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c699){s1=peg$c699;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c700)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c702){s1=peg$c702;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c703)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c704){s1=peg$c704;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c705)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c707){s1=peg$c707;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c708)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c709){s1=peg$c709;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c710)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c712){s1=peg$c712;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c713)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c714){s1=peg$c714;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c715)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c717){s1=peg$c717;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c718)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c719){s1=peg$c719;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c720)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c722){s1=peg$c722;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c723)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c724){s1=peg$c724;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c725)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c726){s1=peg$c726;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c727)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c728){s1=peg$c728;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c729)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c731){s1=peg$c731;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c732)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c733){s1=peg$c733;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c734)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c736){s1=peg$c736;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c737)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c738){s1=peg$c738;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c739)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c741){s1=peg$c741;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c742)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c743){s1=peg$c743;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c744)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c746){s1=peg$c746;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c747)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c748){s1=peg$c748;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c749)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c751){s1=peg$c751;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c752)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c753){s1=peg$c753;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c754)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c756){s1=peg$c756;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c757)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c758){s1=peg$c758;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c759)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c761){s1=peg$c761;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c762)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c763){s1=peg$c763;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c764)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c766){s1=peg$c766;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c767)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c768){s1=peg$c768;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c769)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c771){s1=peg$c771;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c772)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c773){s1=peg$c773;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c774)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c776){s1=peg$c776;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c777)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c778){s1=peg$c778;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c779)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c781){s1=peg$c781;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c782)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c783){s1=peg$c783;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c784)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c786){s1=peg$c786;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c787)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c788){s1=peg$c788;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c789)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c791){s1=peg$c791;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c792)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c793){s1=peg$c793;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c794)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c796){s1=peg$c796;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c797)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c798){s1=peg$c798;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c799)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c801){s1=peg$c801;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c802)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c803){s1=peg$c803;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c804)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c806){s1=peg$c806;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c807)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c808){s1=peg$c808;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c809)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c811){s1=peg$c811;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c812)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c813){s1=peg$c813;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c814)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c815){s1=peg$c815;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c816)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c817){s1=peg$c817;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c818)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c820){s1=peg$c820;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c821)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c822){s1=peg$c822;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c823)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c825){s1=peg$c825;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c826)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c827){s1=peg$c827;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c828)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c830){s1=peg$c830;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c831)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c832){s1=peg$c832;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c833)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c835){s1=peg$c835;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c836)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c837){s1=peg$c837;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c838)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c840){s1=peg$c840;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c841)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c842){s1=peg$c842;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c843)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c845){s1=peg$c845;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c846)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c847){s1=peg$c847;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c848)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c849){s1=peg$c849;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c850)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c851){s1=peg$c851;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c852)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c854){s1=peg$c854;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c855)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c856){s1=peg$c856;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c857)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c859){s1=peg$c859;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c860)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c861){s1=peg$c861;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c862)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c864){s1=peg$c864;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c865)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c866){s1=peg$c866;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c867)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c869){s1=peg$c869;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c870)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c871){s1=peg$c871;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c872)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c874){s1=peg$c874;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c875)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c876){s1=peg$c876;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c877)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c878){s1=peg$c878;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c879)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c880){s1=peg$c880;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c881)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c883){s1=peg$c883;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c884)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c885){s1=peg$c885;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c886)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c888){s1=peg$c888;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c889)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c890){s1=peg$c890;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c891)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c893){s1=peg$c893;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c894)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c895){s1=peg$c895;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c896)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c898){s1=peg$c898;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c899)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c900){s1=peg$c900;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c901)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c903){s1=peg$c903;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c904)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c905){s1=peg$c905;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c906)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c908){s1=peg$c908;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c909)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c910){s1=peg$c910;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c911)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c913){s1=peg$c913;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c914)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c915){s1=peg$c915;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c916)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c918){s1=peg$c918;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c919)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c920){s1=peg$c920;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c921)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c923){s1=peg$c923;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c924)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c925){s1=peg$c925;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c926)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c928){s1=peg$c928;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c929)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c930){s1=peg$c930;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c931)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c933){s1=peg$c933;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c934)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c935){s1=peg$c935;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c936)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c938){s1=peg$c938;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c939)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c940){s1=peg$c940;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c941)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c943){s1=peg$c943;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c944)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c945){s1=peg$c945;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c946)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c948){s1=peg$c948;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c949)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c950){s1=peg$c950;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c951)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c953){s1=peg$c953;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c954)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c955){s1=peg$c955;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c956)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c958){s1=peg$c958;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c959)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c960){s1=peg$c960;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c961)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c963){s1=peg$c963;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c964)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c965){s1=peg$c965;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c966)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c968){s1=peg$c968;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c969)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c970){s1=peg$c970;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c971)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c973){s1=peg$c973;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c974)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c975){s1=peg$c975;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c976)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c978){s1=peg$c978;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c979)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c980){s1=peg$c980;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c981)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c983){s1=peg$c983;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c984)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c985){s1=peg$c985;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c986)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c988){s1=peg$c988;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c989)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c990){s1=peg$c990;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c991)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c993){s1=peg$c993;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c994)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c995){s1=peg$c995;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c996)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c998){s1=peg$c998;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c999)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1000){s1=peg$c1000;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1001)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1003){s1=peg$c1003;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1004)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1005){s1=peg$c1005;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1006)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1008){s1=peg$c1008;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1009)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1010){s1=peg$c1010;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1011)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1013){s1=peg$c1013;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1014)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1015){s1=peg$c1015;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1016)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1018){s1=peg$c1018;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1019)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1020){s1=peg$c1020;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1021)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1023){s1=peg$c1023;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1024)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1025){s1=peg$c1025;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1026)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1028){s1=peg$c1028;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1029)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1030){s1=peg$c1030;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1031)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1033){s1=peg$c1033;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1034)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1035){s1=peg$c1035;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1036)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1038){s1=peg$c1038;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1039)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1040){s1=peg$c1040;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1041)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1043){s1=peg$c1043;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1044)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1045){s1=peg$c1045;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1046)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1048){s1=peg$c1048;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1049)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1050){s1=peg$c1050;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1051)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1053){s1=peg$c1053;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1054)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1055){s1=peg$c1055;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1056)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1058){s1=peg$c1058;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1059)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1060){s1=peg$c1060;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1061)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1063){s1=peg$c1063;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1064)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1065){s1=peg$c1065;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1066)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1068){s1=peg$c1068;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1069)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1070){s1=peg$c1070;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1071)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1073){s1=peg$c1073;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1074)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1075){s1=peg$c1075;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1076)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1078){s1=peg$c1078;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1079)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1080){s1=peg$c1080;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1081)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1083){s1=peg$c1083;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1084)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1085){s1=peg$c1085;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1086)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1088){s1=peg$c1088;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1089)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1090){s1=peg$c1090;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1091)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1093){s1=peg$c1093;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1094)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1095){s1=peg$c1095;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1096)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1098){s1=peg$c1098;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1099)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1100){s1=peg$c1100;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1101)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1103){s1=peg$c1103;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1104)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1105){s1=peg$c1105;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1106)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1108){s1=peg$c1108;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1109)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1110){s1=peg$c1110;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1111)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1112){s1=peg$c1112;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1113)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1114){s1=peg$c1114;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1115)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1117){s1=peg$c1117;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1118)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1119){s1=peg$c1119;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1120)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1122){s1=peg$c1122;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1123)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1124){s1=peg$c1124;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1125)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1127){s1=peg$c1127;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1128)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1129){s1=peg$c1129;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1130)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1132){s1=peg$c1132;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1133)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1134){s1=peg$c1134;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1135)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1137){s1=peg$c1137;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1138)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1139){s1=peg$c1139;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1140)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1142){s1=peg$c1142;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1144){s1=peg$c1144;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1145)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1147){s1=peg$c1147;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1148)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1149){s1=peg$c1149;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1150)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1152){s1=peg$c1152;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1153)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1154){s1=peg$c1154;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1157){s1=peg$c1157;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1158)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1159){s1=peg$c1159;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1160)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1162){s1=peg$c1162;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1163)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1164){s1=peg$c1164;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1165)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1167){s1=peg$c1167;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1168)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1169){s1=peg$c1169;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1170)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1172){s1=peg$c1172;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1174){s1=peg$c1174;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1175)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1177){s1=peg$c1177;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1178)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1179){s1=peg$c1179;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1180)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1182){s1=peg$c1182;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1183)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseSvgColor(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseSvgColorLabel();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1184(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb3(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1187(s2,s3,s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb6(){var s0,s1,s2,s3,s4,s5,s6,s7,s8;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseWS();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){peg$savedPos=s0;s1=peg$c1188(s2,s3,s4,s5,s6,s7);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba4(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1189(s2,s3,s4,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba8(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s10=peg$parseWS();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){peg$savedPos=s0;s1=peg$c1190(s2,s3,s4,s5,s6,s7,s8,s9);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseColor(){var s0;peg$silentFails++;s0=peg$parseSvgColor();if(s0===peg$FAILED){s0=peg$parseRgba8();if(s0===peg$FAILED){s0=peg$parseRgb6();if(s0===peg$FAILED){s0=peg$parseRgba4();if(s0===peg$FAILED){s0=peg$parseRgb3()}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseArrowItemKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1192){s0=peg$c1192;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1193)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1194){s0=peg$c1194;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1195)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1196){s0=peg$c1196;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1197)}}}}return s0}function peg$parseArrowItem(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseArrowItemKey();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1202(s2,s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSingleEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1206(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1203)}}return s0}function peg$parseTransitionLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1210(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1207)}}return s0}function peg$parseArrowItems(){var s0,s1;s0=peg$parseSingleEdgeColor();if(s0===peg$FAILED){s0=peg$parseTransitionLineStyle();if(s0===peg$FAILED){s0=[];s1=peg$parseArrowItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseArrowItem()}}else{s0=peg$FAILED}}}return s0}function peg$parseArrowDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseArrowItems();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrowProbability(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseNonNegNumber();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===37){s2=peg$c1216;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1217)}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1218(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelList(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===91){s1=peg$c1219;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1220)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}while(s4!==peg$FAILED){s3.push(s4);s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===93){s4=peg$c1221;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1222)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1223(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelOrLabelList(){var s0;s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}return s0}function peg$parseStripe(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1224){s1=peg$c1224;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1225)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1226(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1227){s1=peg$c1227;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1228)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1229(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseCycle(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===43){s1=peg$c1230;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1231)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1232(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===45){s1=peg$c1233;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1234)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1235(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1236){s1=peg$c1236;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1237)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1238()}s0=s1}}return s0}function peg$parseArrowTarget(){var s0;s0=peg$parseStripe();if(s0===peg$FAILED){s0=peg$parseCycle();if(s0===peg$FAILED){s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}}}return s0}function peg$parseSubexp(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15,s16,s17,s18;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseActionLabel();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseArrowProbability();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseArrowDesc();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseArrow();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){s10=peg$parseArrowDesc();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){s12=peg$parseArrowProbability();if(s12===peg$FAILED){s12=null}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){s14=peg$parseActionLabel();if(s14===peg$FAILED){s14=null}if(s14!==peg$FAILED){s15=peg$parseWS();if(s15===peg$FAILED){s15=null}if(s15!==peg$FAILED){s16=peg$parseArrowTarget();if(s16!==peg$FAILED){s17=peg$parseWS();if(s17===peg$FAILED){s17=null}if(s17!==peg$FAILED){s18=peg$parseSubexp();if(s18===peg$FAILED){s18=null}if(s18!==peg$FAILED){peg$savedPos=s0;s1=peg$c1239(s2,s4,s6,s8,s10,s12,s14,s16,s18);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseExp(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseArrowTarget();if(s1!==peg$FAILED){s2=peg$parseSubexp();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1240(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseValidationItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseValidationKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1245(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationItems(){var s0,s1;s0=[];s1=peg$parseValidationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseValidationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigValidation(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1246){s2=peg$c1246;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1247)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseValidationItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1250(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseGvizLayout(){var s0;if(input.substr(peg$currPos,3)===peg$c1251){s0=peg$c1251;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1252)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1253){s0=peg$c1253;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1254)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c1255){s0=peg$c1255;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1256)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1257){s0=peg$c1257;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1258)}}}}}return s0}function peg$parseStateItems(){var s0,s1;s0=[];s1=peg$parseStateDeclarationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseStateDeclarationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1261(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1262){s2=peg$c1262;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1263)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1264(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1265){s2=peg$c1265;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1266)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1267(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigActiveState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1268){s2=peg$c1268;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1269)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1270(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigTerminalState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1271){s2=peg$c1271;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1272)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1273(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigHookedState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1274){s2=peg$c1274;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1275)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1276(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigAnyState(){var s0;s0=peg$parseConfigState();if(s0===peg$FAILED){s0=peg$parseConfigStartState();if(s0===peg$FAILED){s0=peg$parseConfigEndState();if(s0===peg$FAILED){s0=peg$parseConfigActiveState();if(s0===peg$FAILED){s0=peg$parseConfigTerminalState();if(s0===peg$FAILED){s0=peg$parseConfigHookedState()}}}}}return s0}function peg$parseActionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseActionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseActionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1277(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseActionItems(){var s0,s1;s0=[];s1=peg$parseActionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseActionItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigAction(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1278){s2=peg$c1278;peg$currPos+=6}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1279)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseActionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1280(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseTransitionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseTransitionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1281(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionItems(){var s0,s1;s0=peg$parseGraphDefaultEdgeColor();if(s0===peg$FAILED){s0=[];s1=peg$parseTransitionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTransitionItem()}}else{s0=peg$FAILED}}return s0}function peg$parseGraphDefaultEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1283(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1282)}}return s0}function peg$parseConfigTransition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1284){s2=peg$c1284;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1285)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseTransitionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1286(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphLayout(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1287){s2=peg$c1287;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1288)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizLayout();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1289(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1290){s2=peg$c1290;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1291)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1292(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1293){s2=peg$c1293;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1294)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1295(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphBgColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1296){s2=peg$c1296;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1297)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1298(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfig(){var s0;peg$silentFails++;s0=peg$parseConfigGraphLayout();if(s0===peg$FAILED){s0=peg$parseConfigStartNodes();if(s0===peg$FAILED){s0=peg$parseConfigEndNodes();if(s0===peg$FAILED){s0=peg$parseConfigTransition();if(s0===peg$FAILED){s0=peg$parseConfigAction();if(s0===peg$FAILED){s0=peg$parseConfigAnyState();if(s0===peg$FAILED){s0=peg$parseConfigValidation();if(s0===peg$FAILED){s0=peg$parseConfigGraphBgColor()}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1299)}}return s0}function peg$parseLicenseOrLabelOrList(){var s0;if(input.substr(peg$currPos,3)===peg$c1300){s0=peg$c1300;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1301)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1302){s0=peg$c1302;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1303)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1304){s0=peg$c1304;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1305)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1306){s0=peg$c1306;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1307)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1308){s0=peg$c1308;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1309)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c1310){s0=peg$c1310;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1311)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1312){s0=peg$c1312;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1313)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1314){s0=peg$c1314;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1315)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1316){s0=peg$c1316;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1317)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1318){s0=peg$c1318;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1319)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1320){s0=peg$c1320;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1321)}}if(s0===peg$FAILED){s0=peg$parseLabel();if(s0===peg$FAILED){s0=peg$parseLabelList()}}}}}}}}}}}}return s0}function peg$parseDirection(){var s0;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c1323){s0=peg$c1323;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1324)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1325){s0=peg$c1325;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1326)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1327){s0=peg$c1327;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1328)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1329){s0=peg$c1329;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1330)}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1322)}}return s0}function peg$parseHookDefinition(){var s0;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c1332){s0=peg$c1332;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1333)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1334){s0=peg$c1334;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1335)}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1331)}}return s0}function peg$parseMachineAuthor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1336){s2=peg$c1336;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1337)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1338(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineContributor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,19)===peg$c1339){s2=peg$c1339;peg$currPos+=19}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1340)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1341(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineComment(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1342){s2=peg$c1342;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1343)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1344(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,18)===peg$c1345){s2=peg$c1345;peg$currPos+=18}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1346)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseURL();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1347(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineName(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1348){s2=peg$c1348;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1349)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1350(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1354){s2=peg$c1354;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1355)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1356(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLicense(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1357){s2=peg$c1357;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1358)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLicenseOrLabelOrList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1359(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLanguage(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1360){s2=peg$c1360;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1361)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1362(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseFslVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1363){s2=peg$c1363;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1364)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1365(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineTheme(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1366){s2=peg$c1366;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1367)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseTheme();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1368(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineFlow(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1369){s2=peg$c1369;peg$currPos+=4}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1370)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseDirection();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1371(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineHookDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1372){s2=peg$c1372;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1373)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseHookDefinition();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1374(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseDotPreamble(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1375){s2=peg$c1375;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1376)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseString();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1377(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineAttribute(){var s0;peg$silentFails++;s0=peg$parseFslVersion();if(s0===peg$FAILED){s0=peg$parseMachineName();if(s0===peg$FAILED){s0=peg$parseMachineAuthor();if(s0===peg$FAILED){s0=peg$parseMachineContributor();if(s0===peg$FAILED){s0=peg$parseMachineComment();if(s0===peg$FAILED){s0=peg$parseMachineDefinition();if(s0===peg$FAILED){s0=peg$parseMachineVersion();if(s0===peg$FAILED){s0=peg$parseMachineLicense();if(s0===peg$FAILED){s0=peg$parseMachineLanguage();if(s0===peg$FAILED){s0=peg$parseMachineTheme();if(s0===peg$FAILED){s0=peg$parseDotPreamble();if(s0===peg$FAILED){s0=peg$parseMachineFlow();if(s0===peg$FAILED){s0=peg$parseMachineHookDefinition()}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1378)}}return s0}function peg$parsePropertyVal(){var s0;s0=peg$parseString();if(s0===peg$FAILED){s0=peg$parseBoolean();if(s0===peg$FAILED){s0=peg$parseJsNumericLiteral();if(s0===peg$FAILED){s0=peg$parseNull();if(s0===peg$FAILED){s0=peg$parseUndefined()}}}}return s0}function peg$parseSdStateLabel(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1379){s2=peg$c1379;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1380)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1381(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1382){s2=peg$c1382;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1383)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1384(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateTextColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1386){s2=peg$c1386;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1387)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1388(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1385)}}return s0}function peg$parseSdStateBackgroundColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1390){s2=peg$c1390;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1391)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1392(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1389)}}return s0}function peg$parseSdStateBorderColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1394){s2=peg$c1394;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1395)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1396(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1393)}}return s0}function peg$parseSdStateShape(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1398){s2=peg$c1398;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1399)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizShape();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1400(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1397)}}return s0}function peg$parseSdStateCorners(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1402){s2=peg$c1402;peg$currPos+=7}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1403)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseCorners();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1404(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1401)}}return s0}function peg$parseSdStateLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1407){s2=peg$c1407;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1408)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1405)}}return s0}function peg$parseSdStateProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1412(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1415(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1409)}}return s0}function peg$parseStateDeclarationItem(){var s0;s0=peg$parseSdStateLabel();if(s0===peg$FAILED){s0=peg$parseSdStateColor();if(s0===peg$FAILED){s0=peg$parseSdStateTextColor();if(s0===peg$FAILED){s0=peg$parseSdStateBackgroundColor();if(s0===peg$FAILED){s0=peg$parseSdStateBorderColor();if(s0===peg$FAILED){s0=peg$parseSdStateShape();if(s0===peg$FAILED){s0=peg$parseSdStateCorners();if(s0===peg$FAILED){s0=peg$parseSdStateLineStyle();if(s0===peg$FAILED){s0=peg$parseSdStateProperty()}}}}}}}}return s0}function peg$parseStateDeclarationDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$parseStateDeclarationItem();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseStateDeclarationItem()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseStateDeclaration(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateDeclarationDesc();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1416(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNamedList(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===38){s2=peg$c1417;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1418)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseLabelOrLabelList();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1419(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1420(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s6=peg$c1413;peg$currPos+=8}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1421(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1422(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s6=peg$c1200;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){peg$savedPos=s0;s1=peg$c1423(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}}return s0}function peg$parseRegularArrangeDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1424){s1=peg$c1424;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1425)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1426(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeStartDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1427){s1=peg$c1427;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1428)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1429(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeEndDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1430){s1=peg$c1430;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1431)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1432(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeDeclaration(){var s0;peg$silentFails++;s0=peg$parseArrangeStartDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeEndDeclaration();if(s0===peg$FAILED){s0=peg$parseRegularArrangeDeclaration()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1433)}}return s0}function peg$parseTerm(){var s0;s0=peg$parseExp();if(s0===peg$FAILED){s0=peg$parseStateDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeDeclaration();if(s0===peg$FAILED){s0=peg$parseNamedList();if(s0===peg$FAILED){s0=peg$parseMachineAttribute();if(s0===peg$FAILED){s0=peg$parseMachineProperty();if(s0===peg$FAILED){s0=peg$parseConfig()}}}}}}return s0}function peg$parseTermList(){var s0,s1;s0=[];s1=peg$parseTerm();while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTerm()}return s0}peg$result=peg$startRuleFunction();if(peg$result!==peg$FAILED&&peg$currPos===input.length){return peg$result}else{if(peg$result!==peg$FAILED&&peg$currPos":case"→":case"=>":case"⇒":case"~>":case"↛":return"right";case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"left";case"<->":case"↔":case"<-=>":case"←⇒":case"←=>":case"<-⇒":case"<-~>":case"←↛":case"←~>":case"<-↛":case"<=>":case"⇔":case"<=->":case"⇐→":case"⇐->":case"<=→":case"<=~>":case"⇐↛":case"⇐~>":case"<=↛":case"<~>":case"↮":case"<~->":case"↚→":case"↚->":case"<~→":case"<~=>":case"↚⇒":case"↚=>":case"<~⇒":return"both";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_left_kind(arrow){switch(String(arrow)){case"->":case"→":case"=>":case"⇒":case"~>":case"↛":return"none";case"<-":case"←":case"<->":case"↔":case"<-=>":case"←⇒":case"<-~>":case"←↛":return"legal";case"<=":case"⇐":case"<=>":case"⇔":case"<=->":case"⇐→":case"<=~>":case"⇐↛":return"main";case"<~":case"↚":case"<~>":case"↮":case"<~->":case"↚→":case"<~=>":case"↚⇒":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_right_kind(arrow){switch(String(arrow)){case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"none";case"->":case"→":case"<->":case"↔":case"<=->":case"⇐→":case"<~->":case"↚→":return"legal";case"=>":case"⇒":case"<=>":case"⇔":case"<-=>":case"←⇒":case"<~=>":case"↚⇒":return"main";case"~>":case"↛":case"<~>":case"↮":case"<-~>":case"←↛":case"<=~>":case"⇐↛":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function makeTransition(this_se,from,to,isRight,_wasList,_wasIndex){const kind=isRight?arrow_right_kind(this_se.kind):arrow_left_kind(this_se.kind),edge={from:from,to:to,kind:kind,forced_only:kind==="forced",main_path:kind==="main"};const action=isRight?"r_action":"l_action",probability=isRight?"r_probability":"l_probability";if(this_se[action]){edge.action=this_se[action]}if(this_se[probability]){edge.probability=this_se[probability]}return edge}function wrap_parse(input,options){return peg$parse(input,options||{})}function compile_rule_transition_step(acc,from,to,this_se,next_se){const edges=[];const uFrom=Array.isArray(from)?from:[from],uTo=Array.isArray(to)?to:[to];uFrom.map((f=>{uTo.map((t=>{const right=makeTransition(this_se,f,t,true);if(right.kind!=="none"){edges.push(right)}const left=makeTransition(this_se,t,f,false);if(left.kind!=="none"){edges.push(left)}}))}));const new_acc=acc.concat(edges);if(next_se){return compile_rule_transition_step(new_acc,to,next_se.to,next_se,next_se.se)}else{return new_acc}}function compile_rule_handle_transition(rule){return compile_rule_transition_step([],rule.from,rule.se.to,rule.se,rule.se.se)}function compile_rule_handler(rule){if(rule.key==="transition"){return{agg_as:"transition",val:compile_rule_handle_transition(rule)}}if(rule.key==="machine_language"){return{agg_as:"machine_language",val:reduceTo6391.reduce(rule.value)}}if(rule.key==="property_definition"){const ret={agg_as:"property_definition",val:{name:rule.name}};if(rule.hasOwnProperty("default_value")){ret.val.default_value=rule.default_value}if(rule.hasOwnProperty("required")){ret.val.required=rule.required}return ret}if(rule.key==="state_declaration"){if(!rule.name){throw new JssmError(undefined,"State declarations must have a name")}return{agg_as:"state_declaration",val:{state:rule.name,declarations:rule.value}}}if(["arrange_declaration","arrange_start_declaration","arrange_end_declaration"].includes(rule.key)){return{agg_as:rule.key,val:[rule.value]}}const tautologies=["graph_layout","start_states","end_states","machine_name","machine_version","machine_comment","machine_author","machine_contributor","machine_definition","machine_reference","machine_license","fsl_version","state_config","theme","flow","dot_preamble","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_active_state_config","default_terminal_state_config"];if(tautologies.includes(rule.key)){return{agg_as:rule.key,val:rule.value}}throw new JssmError(undefined,`compile_rule_handler: Unknown rule: ${JSON.stringify(rule)}`)}function compile(tree){const results={graph_layout:[],transition:[],start_states:[],end_states:[],state_config:[],state_declaration:[],fsl_version:[],machine_author:[],machine_comment:[],machine_contributor:[],machine_definition:[],machine_language:[],machine_license:[],machine_name:[],machine_reference:[],property_definition:[],state_property:{},theme:[],flow:[],dot_preamble:[],arrange_declaration:[],arrange_start_declaration:[],arrange_end_declaration:[],machine_version:[],default_state_config:[],default_active_state_config:[],default_hooked_state_config:[],default_terminal_state_config:[],default_start_state_config:[],default_end_state_config:[]};tree.map((tr=>{const rule=compile_rule_handler(tr),agg_as=rule.agg_as,val=rule.val;results[agg_as]=results[agg_as].concat(val)}));const property_keys=results["property_definition"].map((pd=>pd.name)),repeat_props=find_repeated(property_keys);if(repeat_props.length){throw new JssmError(undefined,`Cannot repeat property definitions. Saw ${JSON.stringify(repeat_props)}`)}const assembled_transitions=[].concat(...results["transition"]);const result_cfg={start_states:results.start_states.length?results.start_states:[assembled_transitions[0].from],end_states:results.end_states,transitions:assembled_transitions,state_property:[]};const oneOnlyKeys=["graph_layout","machine_name","machine_version","machine_comment","fsl_version","machine_license","machine_definition","machine_language","theme","flow","dot_preamble"];oneOnlyKeys.map((oneOnlyKey=>{if(results[oneOnlyKey].length>1){throw new JssmError(undefined,`May only have one ${oneOnlyKey} statement maximum: ${JSON.stringify(results[oneOnlyKey])}`)}else{if(results[oneOnlyKey].length){result_cfg[oneOnlyKey]=results[oneOnlyKey][0]}}}));["arrange_declaration","arrange_start_declaration","arrange_end_declaration","machine_author","machine_contributor","machine_reference","state_declaration","property_definition","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_terminal_state_config","default_active_state_config"].map((multiKey=>{if(results[multiKey].length){result_cfg[multiKey]=results[multiKey]}}));results.state_declaration.forEach((sd=>{sd.declarations.forEach((decl=>{if(decl.key==="state_property"){const label=name_bind_prop_and_state(decl.name,sd.state);if(result_cfg.state_property.findIndex((c=>c.name===label))!==-1){throw new JssmError(undefined,`A state may only bind a property once (${sd.state} re-binds ${decl.name})`)}else{result_cfg.state_property.push({name:label,default_value:decl.value})}}}))}));return result_cfg}function make(plan){return compile(wrap_parse(plan))}function transfer_state_properties(state_decl){state_decl.declarations.map((d=>{switch(d.key){case"shape":state_decl.shape=d.value;break;case"color":state_decl.color=d.value;break;case"corners":state_decl.corners=d.value;break;case"line-style":state_decl.lineStyle=d.value;break;case"text-color":state_decl.textColor=d.value;break;case"background-color":state_decl.backgroundColor=d.value;break;case"state-label":state_decl.stateLabel=d.value;break;case"border-color":state_decl.borderColor=d.value;break;case"state_property":state_decl.property={name:d.name,value:d.value};break;default:throw new JssmError(undefined,`Unknown state property: '${JSON.stringify(d)}'`)}}));return state_decl}function state_style_condense(jssk){const state_style={};if(Array.isArray(jssk)){jssk.forEach(((key,i)=>{if(typeof key!=="object"){throw new JssmError(this,`invalid state item ${i} in state_style_condense list: ${JSON.stringify(key)}`)}switch(key.key){case"shape":if(state_style.shape!==undefined){throw new JssmError(this,`cannot redefine 'shape' in state_style_condense, already defined`)}state_style.shape=key.value;break;case"color":if(state_style.color!==undefined){throw new JssmError(this,`cannot redefine 'color' in state_style_condense, already defined`)}state_style.color=key.value;break;case"text-color":if(state_style.textColor!==undefined){throw new JssmError(this,`cannot redefine 'text-color' in state_style_condense, already defined`)}state_style.textColor=key.value;break;case"corners":if(state_style.corners!==undefined){throw new JssmError(this,`cannot redefine 'corners' in state_style_condense, already defined`)}state_style.corners=key.value;break;case"line-style":if(state_style.lineStyle!==undefined){throw new JssmError(this,`cannot redefine 'line-style' in state_style_condense, already defined`)}state_style.lineStyle=key.value;break;case"background-color":if(state_style.backgroundColor!==undefined){throw new JssmError(this,`cannot redefine 'background-color' in state_style_condense, already defined`)}state_style.backgroundColor=key.value;break;case"state-label":if(state_style.stateLabel!==undefined){throw new JssmError(this,`cannot redefine 'state-label' in state_style_condense, already defined`)}state_style.stateLabel=key.value;break;case"border-color":if(state_style.borderColor!==undefined){throw new JssmError(this,`cannot redefine 'border-color' in state_style_condense, already defined`)}state_style.borderColor=key.value;break;default:throw new JssmError(this,`unknown state style key in condense: ${key.key}`)}}))}else if(jssk===undefined);else{throw new JssmError(this,"state_style_condense received a non-array")}return state_style}class Machine{constructor({start_states:start_states,end_states:end_states=[],complete:complete=[],transitions:transitions,machine_author:machine_author,machine_comment:machine_comment,machine_contributor:machine_contributor,machine_definition:machine_definition,machine_language:machine_language,machine_license:machine_license,machine_name:machine_name,machine_version:machine_version,state_declaration:state_declaration,property_definition:property_definition,state_property:state_property,fsl_version:fsl_version,dot_preamble:dot_preamble=undefined,arrange_declaration:arrange_declaration=[],arrange_start_declaration:arrange_start_declaration=[],arrange_end_declaration:arrange_end_declaration=[],theme:theme="default",flow:flow="down",graph_layout:graph_layout="dot",instance_name:instance_name,history:history,data:data,default_state_config:default_state_config,default_active_state_config:default_active_state_config,default_hooked_state_config:default_hooked_state_config,default_terminal_state_config:default_terminal_state_config,default_start_state_config:default_start_state_config,default_end_state_config:default_end_state_config}){this._instance_name=instance_name;this._state=start_states[0];this._states=new Map;this._state_declarations=new Map;this._edges=[];this._edge_map=new Map;this._named_transitions=new Map;this._actions=new Map;this._reverse_actions=new Map;this._reverse_action_targets=new Map;this._start_states=new Set(start_states);this._end_states=new Set(end_states);this._machine_author=array_box_if_string(machine_author);this._machine_comment=machine_comment;this._machine_contributor=array_box_if_string(machine_contributor);this._machine_definition=machine_definition;this._machine_language=machine_language;this._machine_license=machine_license;this._machine_name=machine_name;this._machine_version=machine_version;this._raw_state_declaration=state_declaration||[];this._fsl_version=fsl_version;this._arrange_declaration=arrange_declaration;this._arrange_start_declaration=arrange_start_declaration;this._arrange_end_declaration=arrange_end_declaration;this._dot_preamble=dot_preamble;this._theme=theme;this._flow=flow;this._graph_layout=graph_layout;this._has_hooks=false;this._has_basic_hooks=false;this._has_named_hooks=false;this._has_entry_hooks=false;this._has_exit_hooks=false;this._has_global_action_hooks=false;this._has_transition_hooks=true;this._hooks=new Map;this._named_hooks=new Map;this._entry_hooks=new Map;this._exit_hooks=new Map;this._global_action_hooks=new Map;this._any_action_hook=undefined;this._standard_transition_hook=undefined;this._main_transition_hook=undefined;this._forced_transition_hook=undefined;this._any_transition_hook=undefined;this._has_post_hooks=false;this._has_post_basic_hooks=false;this._has_post_named_hooks=false;this._has_post_entry_hooks=false;this._has_post_exit_hooks=false;this._has_post_global_action_hooks=false;this._has_post_transition_hooks=true;this._post_hooks=new Map;this._post_named_hooks=new Map;this._post_entry_hooks=new Map;this._post_exit_hooks=new Map;this._post_global_action_hooks=new Map;this._post_any_action_hook=undefined;this._post_standard_transition_hook=undefined;this._post_main_transition_hook=undefined;this._post_forced_transition_hook=undefined;this._post_any_transition_hook=undefined;this._data=data;this._property_keys=new Set;this._default_properties=new Map;this._state_properties=new Map;this._required_properties=new Set;this._state_style=state_style_condense(default_state_config);this._active_state_style=state_style_condense(default_active_state_config);this._hooked_state_style=state_style_condense(default_hooked_state_config);this._terminal_state_style=state_style_condense(default_terminal_state_config);this._start_state_style=state_style_condense(default_start_state_config);this._end_state_style=state_style_condense(default_end_state_config);this._history_length=history||0;this._history=new circular_buffer(this._history_length);this._state_labels=new Map;if(state_declaration){state_declaration.map((state_decl=>{if(this._state_declarations.has(state_decl.state)){throw new JssmError(this,`Added the same state declaration twice: ${JSON.stringify(state_decl.state)}`)}this._state_declarations.set(state_decl.state,transfer_state_properties(state_decl))}))}[...this._state_declarations].map((sd=>{const[key,decl]=sd,labelled=decl.declarations.filter((d=>d.key==="state-label"));if(labelled.length>1){throw new JssmError(this,`state ${key} may only have one state-label; has ${labelled.length}`)}if(labelled.length===1){this._state_labels.set(key,labelled[0].value)}}));transitions.map((tr=>{if(tr.from===undefined){throw new JssmError(this,`transition must define 'from': ${JSON.stringify(tr)}`)}if(tr.to===undefined){throw new JssmError(this,`transition must define 'to': ${JSON.stringify(tr)}`)}const cursor_from=this._states.get(tr.from)||{name:tr.from,from:[],to:[],complete:complete.includes(tr.from)};if(!this._states.has(tr.from)){this._new_state(cursor_from)}const cursor_to=this._states.get(tr.to)||{name:tr.to,from:[],to:[],complete:complete.includes(tr.to)};if(!this._states.has(tr.to)){this._new_state(cursor_to)}if(cursor_from.to.includes(tr.to)){throw new JssmError(this,`already has ${JSON.stringify(tr.from)} to ${JSON.stringify(tr.to)}`)}else{cursor_from.to.push(tr.to);cursor_to.from.push(tr.from)}this._edges.push(tr);const thisEdgeId=this._edges.length-1;if(tr.name){if(this._named_transitions.has(tr.name)){throw new JssmError(this,`named transition "${JSON.stringify(tr.name)}" already created`)}else{this._named_transitions.set(tr.name,thisEdgeId)}}const from_mapping=this._edge_map.get(tr.from)||new Map;if(!this._edge_map.has(tr.from)){this._edge_map.set(tr.from,from_mapping)}from_mapping.set(tr.to,thisEdgeId);if(tr.action){let actionMap=this._actions.get(tr.action);if(!actionMap){actionMap=new Map;this._actions.set(tr.action,actionMap)}if(actionMap.has(tr.from)){throw new JssmError(this,`action ${JSON.stringify(tr.action)} already attached to origin ${JSON.stringify(tr.from)}`)}else{actionMap.set(tr.from,thisEdgeId)}let rActionMap=this._reverse_actions.get(tr.from);if(!rActionMap){rActionMap=new Map;this._reverse_actions.set(tr.from,rActionMap)}rActionMap.set(tr.action,thisEdgeId);if(!this._reverse_action_targets.has(tr.to)){this._reverse_action_targets.set(tr.to,new Map)}}}));if(Array.isArray(property_definition)){property_definition.forEach((pr=>{this._property_keys.add(pr.name);if(pr.hasOwnProperty("default_value")){this._default_properties.set(pr.name,pr.default_value)}if(pr.hasOwnProperty("required")&&pr.required===true){this._required_properties.add(pr.name)}}))}if(Array.isArray(state_property)){state_property.forEach((sp=>{this._state_properties.set(sp.name,sp.default_value)}))}this._state_properties.forEach(((_value,key)=>{const inside=JSON.parse(key);if(Array.isArray(inside)){const j_property=inside[0];if(typeof j_property==="string"){const j_state=inside[1];if(typeof j_state==="string"){if(!this.known_prop(j_property)){throw new JssmError(this,`State "${j_state}" has property "${j_property}" which is not globally declared`)}}}}}));this._required_properties.forEach((dp_key=>{if(this._default_properties.has(dp_key)){throw new JssmError(this,`The property "${dp_key}" is required, but also has a default; these conflict`)}this.states().forEach((s=>{const bound_name=name_bind_prop_and_state(dp_key,s);if(!this._state_properties.has(bound_name)){throw new JssmError(this,`State "${s}" is missing required property "${dp_key}"`)}}))}))}_new_state(state_config){if(this._states.has(state_config.name)){throw new JssmError(this,`state ${JSON.stringify(state_config.name)} already exists`)}this._states.set(state_config.name,state_config);return state_config.name}state(){return this._state}label_for(state){return this._state_labels.get(state)}data(){return this._data}prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{return undefined}}strict_prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{throw new JssmError(this,`Strictly requested a prop '${name}' which doesn't exist on current state '${this.state()}' and has no default`)}}props(){const ret={};this.known_props().forEach((p=>ret[p]=this.prop(p)));return ret}known_prop(prop_name){return this._property_keys.has(prop_name)}known_props(){return[...this._property_keys]}is_start_state(whichState){return this._start_states.has(whichState)}is_end_state(whichState){return this._end_states.has(whichState)}state_is_final(whichState){return this.state_is_terminal(whichState)||this.state_is_complete(whichState)}is_final(){return this.state_is_final(this.state())}serialize(comment){return{comment:comment,state:this._state,data:this._data,jssm_version:version,history:this._history.toArray(),history_capacity:this._history.capacity,timestamp:(new Date).getTime()}}graph_layout(){return this._graph_layout}dot_preamble(){return this._dot_preamble}machine_author(){return this._machine_author}machine_comment(){return this._machine_comment}machine_contributor(){return this._machine_contributor}machine_definition(){return this._machine_definition}machine_language(){return this._machine_language}machine_license(){return this._machine_license}machine_name(){return this._machine_name}machine_version(){return this._machine_version}raw_state_declarations(){return this._raw_state_declaration}state_declaration(which){return this._state_declarations.get(which)}state_declarations(){return this._state_declarations}fsl_version(){return this._fsl_version}machine_state(){return{internal_state_impl_version:1,actions:this._actions,edge_map:this._edge_map,edges:this._edges,named_transitions:this._named_transitions,reverse_actions:this._reverse_actions,state:this._state,states:this._states}}states(){return Array.from(this._states.keys())}state_for(whichState){const state=this._states.get(whichState);if(state){return state}else{throw new JssmError(this,"No such state",{requested_state:whichState})}}has_state(whichState){return this._states.get(whichState)!==undefined}list_edges(){return this._edges}list_named_transitions(){return this._named_transitions}list_actions(){return Array.from(this._actions.keys())}theme(){return this._theme}flow(){return this._flow}get_transition_by_state_names(from,to){const emg=this._edge_map.get(from);if(emg){return emg.get(to)}else{return undefined}}lookup_transition_for(from,to){const id=this.get_transition_by_state_names(from,to);return id===undefined||id===null?undefined:this._edges[id]}list_transitions(whichState=this.state()){return{entrances:this.list_entrances(whichState),exits:this.list_exits(whichState)}}list_entrances(whichState=this.state()){return(this._states.get(whichState)||{from:undefined}).from||[]}list_exits(whichState=this.state()){return(this._states.get(whichState)||{to:undefined}).to||[]}probable_exits_for(whichState){const wstate=this._states.get(whichState);if(!wstate){throw new JssmError(this,`No such state ${JSON.stringify(whichState)} in probable_exits_for`)}const wstate_to=wstate.to,wtf=wstate_to.map((ws=>this.lookup_transition_for(this.state(),ws))).filter(Boolean);return wtf}probabilistic_transition(){const selected=weighted_rand_select(this.probable_exits_for(this.state()));return this.transition(selected.to)}probabilistic_walk(n){return seq(n).map((()=>{const state_was=this.state();this.probabilistic_transition();return state_was})).concat([this.state()])}probabilistic_histo_walk(n){return histograph(this.probabilistic_walk(n))}actions(whichState=this.state()){const wstate=this._reverse_actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_states_having_action(whichState){const wstate=this._actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_exit_actions(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>filtered.action))}probable_action_exits(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>({action:filtered.action,probability:filtered.probability})))}is_unenterable(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_entrances(whichState).length===0}has_unenterables(){return this.states().some((x=>this.is_unenterable(x)))}is_terminal(){return this.state_is_terminal(this.state())}state_is_terminal(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_exits(whichState).length===0}has_terminals(){return this.states().some((x=>this.state_is_terminal(x)))}is_complete(){return this.state_is_complete(this.state())}state_is_complete(whichState){const wstate=this._states.get(whichState);if(wstate){return wstate.complete}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}has_completes(){return this.states().some((x=>this.state_is_complete(x)))}set_hook(HookDesc){switch(HookDesc.kind){case"hook":this._hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_hooks=true;this._has_basic_hooks=true;break;case"named":this._named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_hooks=true;this._has_named_hooks=true;break;case"global action":this._global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_hooks=true;this._has_global_action_hooks=true;break;case"any action":this._any_action_hook=HookDesc.handler;this._has_hooks=true;break;case"standard transition":this._standard_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"main transition":this._main_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"forced transition":this._forced_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"any transition":this._any_transition_hook=HookDesc.handler;this._has_hooks=true;break;case"entry":this._entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_hooks=true;this._has_entry_hooks=true;break;case"exit":this._exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_hooks=true;this._has_exit_hooks=true;break;case"post hook":this._post_hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_post_hooks=true;this._has_post_basic_hooks=true;break;case"post named":this._post_named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_post_hooks=true;this._has_post_named_hooks=true;break;case"post global action":this._post_global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_post_hooks=true;this._has_post_global_action_hooks=true;break;case"post any action":this._post_any_action_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post standard transition":this._post_standard_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post main transition":this._post_main_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post forced transition":this._post_forced_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post any transition":this._post_any_transition_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post entry":this._post_entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_post_entry_hooks=true;this._has_post_hooks=true;break;case"post exit":this._post_exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_post_exit_hooks=true;this._has_post_hooks=true;break;default:throw new JssmError(this,`Unknown hook type ${HookDesc.kind}, should be impossible`)}}hook(from,to,handler){this.set_hook({kind:"hook",from:from,to:to,handler:handler});return this}hook_action(from,to,action,handler){this.set_hook({kind:"named",from:from,to:to,action:action,handler:handler});return this}hook_global_action(action,handler){this.set_hook({kind:"global action",action:action,handler:handler});return this}hook_any_action(handler){this.set_hook({kind:"any action",handler:handler});return this}hook_standard_transition(handler){this.set_hook({kind:"standard transition",handler:handler});return this}hook_main_transition(handler){this.set_hook({kind:"main transition",handler:handler});return this}hook_forced_transition(handler){this.set_hook({kind:"forced transition",handler:handler});return this}hook_any_transition(handler){this.set_hook({kind:"any transition",handler:handler});return this}hook_entry(to,handler){this.set_hook({kind:"entry",to:to,handler:handler});return this}hook_exit(from,handler){this.set_hook({kind:"exit",from:from,handler:handler});return this}post_hook(from,to,handler){this.set_hook({kind:"post hook",from:from,to:to,handler:handler});return this}post_hook_action(from,to,action,handler){this.set_hook({kind:"post named",from:from,to:to,action:action,handler:handler});return this}post_hook_global_action(action,handler){this.set_hook({kind:"post global action",action:action,handler:handler});return this}post_hook_any_action(handler){this.set_hook({kind:"post any action",handler:handler});return this}post_hook_standard_transition(handler){this.set_hook({kind:"post standard transition",handler:handler});return this}post_hook_main_transition(handler){this.set_hook({kind:"post main transition",handler:handler});return this}post_hook_forced_transition(handler){this.set_hook({kind:"post forced transition",handler:handler});return this}post_hook_any_transition(handler){this.set_hook({kind:"post any transition",handler:handler});return this}post_hook_entry(to,handler){this.set_hook({kind:"post entry",to:to,handler:handler});return this}post_hook_exit(from,handler){this.set_hook({kind:"post exit",from:from,handler:handler});return this}edges_between(from,to){return this._edges.filter((edge=>edge.from===from&&edge.to===to))}transition_impl(newStateOrAction,newData,wasForced,wasAction){let valid=false,trans_type,newState,fromAction=undefined;if(wasForced){if(this.valid_force_transition(newStateOrAction,newData)){valid=true;trans_type="forced";newState=newStateOrAction}}else if(wasAction){if(this.valid_action(newStateOrAction,newData)){const edge=this.current_action_edge_for(newStateOrAction);valid=true;trans_type=edge.kind;newState=edge.to;fromAction=newStateOrAction}}else{if(this.valid_transition(newStateOrAction,newData)){if(this._has_transition_hooks){trans_type=this.edges_between(this._state,newStateOrAction)[0].kind}valid=true;newState=newStateOrAction}}const hook_args={data:this._data,action:fromAction,from:this._state,to:newState,forced:wasForced,trans_type:trans_type};if(valid){if(this._has_hooks){function update_fields(res){if(res.hasOwnProperty("data")){hook_args.data=res.data;data_changed=true}}let data_changed=false;if(wasAction){const outcome=abstract_hook_step(this._any_action_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome);const outcome2=abstract_hook_step(this._global_action_hooks.get(newStateOrAction),hook_args);if(outcome2.pass===false){return false}update_fields(outcome2)}if(this._any_transition_hook!==undefined){const outcome=abstract_hook_step(this._any_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_exit_hooks){const outcome=abstract_hook_step(this._exit_hooks.get(this._state),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_named_hooks){if(wasAction){const nhn=named_hook_name(this._state,newState,newStateOrAction),outcome=abstract_hook_step(this._named_hooks.get(nhn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}}if(this._has_basic_hooks){const hn=hook_name(this._state,newState),outcome=abstract_hook_step(this._hooks.get(hn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="legal"){const outcome=abstract_hook_step(this._standard_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="main"){const outcome=abstract_hook_step(this._main_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="forced"){const outcome=abstract_hook_step(this._forced_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_entry_hooks){const outcome=abstract_hook_step(this._entry_hooks.get(newState),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState;if(data_changed){this._data=hook_args.data}}else{if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState}}else{return false}if(this._has_post_hooks){if(wasAction){if(this._post_any_action_hook!==undefined){this._post_any_action_hook(hook_args)}const pgah=this._post_global_action_hooks.get(hook_args.action);if(pgah!==undefined){pgah(hook_args)}}if(this._post_any_transition_hook!==undefined){this._post_any_transition_hook(hook_args)}if(this._has_post_exit_hooks){const peh=this._post_exit_hooks.get(hook_args.from);if(peh!==undefined){peh(hook_args)}}if(this._has_post_named_hooks){if(wasAction){const nhn=named_hook_name(hook_args.from,hook_args.to,hook_args.action),pnh=this._post_named_hooks.get(nhn);if(pnh!==undefined){pnh(hook_args)}}}if(this._has_post_basic_hooks){const hook=this._post_hooks.get(hook_name(hook_args.from,hook_args.to));if(hook!==undefined){hook(hook_args)}}if(trans_type==="legal"){if(this._post_standard_transition_hook!==undefined){this._post_standard_transition_hook(hook_args)}}if(trans_type==="main"){if(this._post_main_transition_hook!==undefined){this._post_main_transition_hook(hook_args)}}if(trans_type==="forced"){if(this._post_forced_transition_hook!==undefined){this._post_forced_transition_hook(hook_args)}}if(this._has_post_entry_hooks){const hook=this._post_entry_hooks.get(hook_args.to);if(hook!==undefined){hook(hook_args)}}}return true}get history(){return this._history.toArray()}get history_inclusive(){const ret=this._history.toArray();ret.push([this.state(),this.data()]);return ret}get history_length(){return this._history_length}set history_length(to){this._history_length=to;this._history.resize(to,true)}action(actionName,newData){return this.transition_impl(actionName,newData,false,true)}get standard_state_style(){return this._state_style}get hooked_state_style(){return this._hooked_state_style}get start_state_style(){return this._start_state_style}get end_state_style(){return this._end_state_style}get terminal_state_style(){return this._terminal_state_style}get active_state_style(){return this._active_state_style}has_hooks(state){return false}style_for(state){const themes=[];const layers=[base_theme.state];themes.map((theme=>{if(theme.state){layers.push(theme.state)}}));if(this._state_style){layers.push(this._state_style)}if(this.has_hooks(state)){layers.push(base_theme.hooked);themes.map((theme=>{if(theme.hooked){layers.push(theme.hooked)}}));if(this._hooked_state_style){layers.push(this._hooked_state_style)}}if(this.state_is_terminal(state)){layers.push(base_theme.terminal);themes.map((theme=>{if(theme.terminal){layers.push(theme.terminal)}}));if(this._terminal_state_style){layers.push(this._terminal_state_style)}}if(this.is_start_state(state)){layers.push(base_theme.start);themes.map((theme=>{if(theme.start){layers.push(theme.start)}}));if(this._start_state_style){layers.push(this._start_state_style)}}if(this.is_end_state(state)){layers.push(base_theme.end);themes.map((theme=>{if(theme.end){layers.push(theme.end)}}));if(this._end_state_style){layers.push(this._end_state_style)}}if(this.state()===state){layers.push(base_theme.active);themes.map((theme=>{if(theme.active){layers.push(theme.active)}}));if(this._active_state_style){layers.push(this._active_state_style)}}const individual_style={},decl=this._state_declarations.get(state);individual_style.color=decl===null||decl===void 0?void 0:decl.color;individual_style.textColor=decl===null||decl===void 0?void 0:decl.textColor;individual_style.borderColor=decl===null||decl===void 0?void 0:decl.borderColor;individual_style.backgroundColor=decl===null||decl===void 0?void 0:decl.backgroundColor;individual_style.lineStyle=decl===null||decl===void 0?void 0:decl.lineStyle;individual_style.corners=decl===null||decl===void 0?void 0:decl.corners;individual_style.shape=decl===null||decl===void 0?void 0:decl.shape;layers.push(individual_style);return layers.reduce(((acc,cur)=>{const composite_state=acc;Object.keys(cur).forEach((key=>{var _a;return composite_state[key]=(_a=cur[key])!==null&&_a!==void 0?_a:composite_state[key]}));return composite_state}),{})}do(actionName,newData){return this.transition_impl(actionName,newData,false,true)}transition(newState,newData){return this.transition_impl(newState,newData,false,false)}go(newState,newData){return this.transition_impl(newState,newData,false,false)}force_transition(newState,newData){return this.transition_impl(newState,newData,true,false)}current_action_for(action){const action_base=this._actions.get(action);return action_base?action_base.get(this.state()):undefined}current_action_edge_for(action){const idx=this.current_action_for(action);if(idx===undefined||idx===null){throw new JssmError(this,`No such action ${JSON.stringify(action)}`)}return this._edges[idx]}valid_action(action,_newData){return this.current_action_for(action)!==undefined}valid_transition(newState,_newData){const transition_for=this.lookup_transition_for(this.state(),newState);if(!transition_for){return false}if(transition_for.forced_only){return false}return true}valid_force_transition(newState,_newData){return this.lookup_transition_for(this.state(),newState)!==undefined}instance_name(){return this._instance_name}sm(template_strings,...remainder){return sm(template_strings,...remainder)}}function sm(template_strings,...remainder){return new Machine(make(template_strings.reduce(((acc,val,idx)=>`${acc}${remainder[idx-1]}${val}`))))}function from(MachineAsString,ExtraConstructorFields){const to_decorate=make(MachineAsString);if(ExtraConstructorFields!==undefined){Object.keys(ExtraConstructorFields).map((key=>to_decorate[key]=ExtraConstructorFields[key]))}return new Machine(to_decorate)}function is_hook_complex_result(hr){if(typeof hr==="object"){if(typeof hr.pass==="boolean"){return true}}return false}function is_hook_rejection(hr){if(hr===true){return false}if(hr===undefined){return false}if(hr===false){return true}if(is_hook_complex_result(hr)){return!hr.pass}throw new TypeError("unknown hook rejection type result")}function abstract_hook_step(maybe_hook,hook_args){if(maybe_hook!==undefined){const result=maybe_hook(hook_args);if(result===undefined){return{pass:true}}if(result===true){return{pass:true}}if(result===false){return{pass:false}}if(is_hook_complex_result(result)){return result}throw new TypeError(`Unknown hook result type ${result}`)}else{return{pass:true}}}function deserialize(machine_string,ser){const machine=from(machine_string,{data:ser.data,history:ser.history_capacity});machine._state=ser.state;ser.history.forEach((history_item=>machine._history.push(history_item)));return machine}exports.Machine=Machine;exports.abstract_hook_step=abstract_hook_step;exports.arrow_direction=arrow_direction;exports.arrow_left_kind=arrow_left_kind;exports.arrow_right_kind=arrow_right_kind;exports.compile=compile;exports.constants=constants;exports.deserialize=deserialize;exports.find_repeated=find_repeated;exports.from=from;exports.gviz_shapes=gviz_shapes;exports.histograph=histograph;exports.is_hook_complex_result=is_hook_complex_result;exports.is_hook_rejection=is_hook_rejection;exports.make=make;exports.named_colors=named_colors;exports.parse=wrap_parse;exports.seq=seq;exports.shapes=shapes;exports.sm=sm;exports.state_style_condense=state_style_condense;exports.transfer_state_properties=transfer_state_properties;exports.unique=unique;exports.version=version;exports.weighted_histo_key=weighted_histo_key;exports.weighted_rand_select=weighted_rand_select;exports.weighted_sample_select=weighted_sample_select;Object.defineProperty(exports,"__esModule",{value:true});return exports}({}); +var jssm=function(exports){"use strict";var reductions={abkhazian:"ab","аҧсуа бызшәа, аҧсшәа":"ab",ab:"ab",abk:"ab","аҧсуа бызшәа":"ab","аҧсшәа":"ab",afar:"aa",afaraf:"aa",aa:"aa",aar:"aa",afrikaans:"af",af:"af",afr:"af",akan:"ak",ak:"ak",aka:"ak","aka + 2":"ak",albanian:"sq",shqip:"sq",sq:"sq",sqi:"sq",alb:"sq","sqi + 4":"sq",amharic:"am","አማርኛ":"am",am:"am",amh:"am",arabic:"ar","العربية":"ar",ar:"ar",ara:"ar","ara + 30":"ar",aragonese:"an","aragonés":"an",an:"an",arg:"an",armenian:"hy","հայերեն":"hy",hy:"hy",hye:"hy",arm:"hy",assamese:"as","অসমীয়া":"as",as:"as",asm:"as",avaric:"av","авар мацӏ, магӏарул мацӏ":"av",av:"av",ava:"av","авар мацӏ":"av","магӏарул мацӏ":"av",avestan:"ae",avesta:"ae",ae:"ae",ave:"ae",aymara:"ay","aymar aru":"ay",ay:"ay",aym:"ay","aym + 2":"ay",azerbaijani:"az","azərbaycan dili":"az",az:"az",aze:"az","aze + 2":"az",bambara:"bm",bamanankan:"bm",bm:"bm",bam:"bm",bashkir:"ba","башҡорт теле":"ba",ba:"ba",bak:"ba",basque:"eu","euskara, euskera":"eu",eu:"eu",eus:"eu",baq:"eu",euskara:"eu",euskera:"eu",belarusian:"be","беларуская мова":"be",be:"be",bel:"be",bengali:"bn","বাংলা":"bn",bn:"bn",ben:"bn","bihari languages":"bh","भोजपुरी":"bh",bh:"bh",bih:"bh",bislama:"bi",bi:"bi",bis:"bi",bosnian:"bs","bosanski jezik":"bs",bs:"bs",bos:"bs",breton:"br",brezhoneg:"br",br:"br",bre:"br",bulgarian:"bg","български език":"bg",bg:"bg",bul:"bg",burmese:"my","ဗမာစာ":"my",my:"my",mya:"my",bur:"my","catalan, valencian":"ca","català, valencià":"ca",ca:"ca",cat:"ca","català":"ca","valencià":"ca",chamorro:"ch",chamoru:"ch",ch:"ch",cha:"ch",chechen:"ce","нохчийн мотт":"ce",ce:"ce",che:"ce","chichewa, chewa, nyanja":"ny","chicheŵa, chinyanja":"ny",ny:"ny",nya:"ny","chicheŵa":"ny",chinyanja:"ny",chinese:"zh","中文 (zhōngwén), 汉语, 漢語":"zh",zh:"zh",zho:"zh",chi:"zh","zho + 13":"zh","中文 (zhōngwén)":"zh","汉语":"zh","漢語":"zh",chuvash:"cv","чӑваш чӗлхи":"cv",cv:"cv",chv:"cv",cornish:"kw",kernewek:"kw",kw:"kw",cor:"kw",corsican:"co","corsu, lingua corsa":"co",co:"co",cos:"co",corsu:"co","lingua corsa":"co",cree:"cr","ᓀᐦᐃᔭᐍᐏᐣ":"cr",cr:"cr",cre:"cr","cre + 6":"cr",croatian:"hr","hrvatski jezik":"hr",hr:"hr",hrv:"hr",czech:"cs","čeština, český jazyk":"cs",cs:"cs",ces:"cs",cze:"cs","čeština":"cs","český jazyk":"cs",danish:"da",dansk:"da",da:"da",dan:"da","divehi, dhivehi, maldivian":"dv","ދިވެހި":"dv",dv:"dv",div:"dv","dutch, flemish":"nl","nederlands, vlaams":"nl",nl:"nl",nld:"nl",dut:"nl",nederlands:"nl",vlaams:"nl",dzongkha:"dz","རྫོང་ཁ":"dz",dz:"dz",dzo:"dz",english:"en",en:"en",eng:"en",esperanto:"eo",eo:"eo",epo:"eo",estonian:"et","eesti, eesti keel":"et",et:"et",est:"et","est + 2":"et",eesti:"et","eesti keel":"et",ewe:"ee","eʋegbe":"ee",ee:"ee",faroese:"fo","føroyskt":"fo",fo:"fo",fao:"fo",fijian:"fj","vosa vakaviti":"fj",fj:"fj",fij:"fj",finnish:"fi","suomi, suomen kieli":"fi",fi:"fi",fin:"fi",suomi:"fi","suomen kieli":"fi",french:"fr","français, langue française":"fr",fr:"fr",fra:"fr",fre:"fr","français":"fr","langue française":"fr",fulah:"ff","fulfulde, pulaar, pular":"ff",ff:"ff",ful:"ff","ful + 9":"ff",fulfulde:"ff",pulaar:"ff",pular:"ff",galician:"gl",galego:"gl",gl:"gl",glg:"gl",georgian:"ka","ქართული":"ka",ka:"ka",kat:"ka",geo:"ka",german:"de",deutsch:"de",de:"de",deu:"de",ger:"de","greek (modern)":"el","ελληνικά":"el",el:"el",ell:"el",gre:"el","guaraní":"gn","avañe'ẽ":"gn",gn:"gn",grn:"gn","grn + 5":"gn",gujarati:"gu","ગુજરાતી":"gu",gu:"gu",guj:"gu","haitian, haitian creole":"ht","kreyòl ayisyen":"ht",ht:"ht",hat:"ht",hausa:"ha","(hausa) هَوُسَ":"ha",ha:"ha",hau:"ha","hebrew (modern)":"he","עברית":"he",he:"he",heb:"he",herero:"hz",otjiherero:"hz",hz:"hz",her:"hz",hindi:"hi","हिन्दी, हिंदी":"hi",hi:"hi",hin:"hi","हिन्दी":"hi","हिंदी":"hi","hiri motu":"ho",ho:"ho",hmo:"ho",hungarian:"hu",magyar:"hu",hu:"hu",hun:"hu",interlingua:"ia",ia:"ia",ina:"ia",indonesian:"id","bahasa indonesia":"id",id:"id",ind:"id",interlingue:"ie","originally called occidental; then interlingue after wwii":"ie",ie:"ie",ile:"ie",irish:"ga",gaeilge:"ga",ga:"ga",gle:"ga",igbo:"ig","asụsụ igbo":"ig",ig:"ig",ibo:"ig",inupiaq:"ik","iñupiaq, iñupiatun":"ik",ik:"ik",ipk:"ik","ipk + 2":"ik","iñupiaq":"ik","iñupiatun":"ik",ido:"io",io:"io",icelandic:"is","íslenska":"is",is:"is",isl:"is",ice:"is",italian:"it",italiano:"it",it:"it",ita:"it",inuktitut:"iu","ᐃᓄᒃᑎᑐᑦ":"iu",iu:"iu",iku:"iu","iku + 2":"iu",japanese:"ja","日本語 (にほんご)":"ja",ja:"ja",jpn:"ja",javanese:"jv","ꦧꦱꦗꦮ, basa jawa":"jv",jv:"jv",jav:"jv","ꦧꦱꦗꦮ":"jv","basa jawa":"jv","kalaallisut, greenlandic":"kl","kalaallisut, kalaallit oqaasii":"kl",kl:"kl",kal:"kl",kalaallisut:"kl","kalaallit oqaasii":"kl",kannada:"kn","ಕನ್ನಡ":"kn",kn:"kn",kan:"kn",kanuri:"kr",kr:"kr",kau:"kr","kau + 3":"kr",kashmiri:"ks","कश्मीरी, كشميري‎":"ks",ks:"ks",kas:"ks","कश्मीरी":"ks","كشميري‎":"ks",kazakh:"kk","қазақ тілі":"kk",kk:"kk",kaz:"kk","central khmer":"km","ខ្មែរ, ខេមរភាសា, ភាសាខ្មែរ":"km",km:"km",khm:"km","ខ្មែរ":"km","ខេមរភាសា":"km","ភាសាខ្មែរ":"km","kikuyu, gikuyu":"ki","gĩkũyũ":"ki",ki:"ki",kik:"ki",kinyarwanda:"rw",ikinyarwanda:"rw",rw:"rw",kin:"rw","kirghiz, kyrgyz":"ky","кыргызча, кыргыз тили":"ky",ky:"ky",kir:"ky","кыргызча":"ky","кыргыз тили":"ky",komi:"kv","коми кыв":"kv",kv:"kv",kom:"kv","kom + 2":"kv",kongo:"kg",kikongo:"kg",kg:"kg",kon:"kg","kon + 3":"kg",korean:"ko","한국어":"ko",ko:"ko",kor:"ko",kurdish:"ku","kurdî, كوردی‎":"ku",ku:"ku",kur:"ku","kur + 3":"ku","kurdî":"ku","كوردی‎":"ku","kuanyama, kwanyama":"kj",kuanyama:"kj",kj:"kj",kua:"kj",latin:"la","latine, lingua latina":"la",la:"la",lat:"la",latine:"la","lingua latina":"la","luxembourgish, letzeburgesch":"lb","lëtzebuergesch":"lb",lb:"lb",ltz:"lb",ganda:"lg",luganda:"lg",lg:"lg",lug:"lg","limburgan, limburger, limburgish":"li",limburgs:"li",li:"li",lim:"li",lingala:"ln","lingála":"ln",ln:"ln",lin:"ln",lao:"lo","ພາສາລາວ":"lo",lo:"lo",lithuanian:"lt","lietuvių kalba":"lt",lt:"lt",lit:"lt","luba-katanga":"lu",kiluba:"lu",lu:"lu",lub:"lu",latvian:"lv","latviešu valoda":"lv",lv:"lv",lav:"lv","lav + 2":"lv",manx:"gv","gaelg, gailck":"gv",gv:"gv",glv:"gv",gaelg:"gv",gailck:"gv",macedonian:"mk","македонски јазик":"mk",mk:"mk",mkd:"mk",mac:"mk",malagasy:"mg","fiteny malagasy":"mg",mg:"mg",mlg:"mg","mlg + 10":"mg",malay:"ms","bahasa melayu, بهاس ملايو‎":"ms",ms:"ms",msa:"ms",may:"ms","msa + 13":"ms","bahasa melayu":"ms","بهاس ملايو‎":"ms",malayalam:"ml","മലയാളം":"ml",ml:"ml",mal:"ml",maltese:"mt",malti:"mt",mt:"mt",mlt:"mt",maori:"mi","te reo māori":"mi",mi:"mi",mri:"mi",mao:"mi",marathi:"mr","मराठी":"mr",mr:"mr",mar:"mr",marshallese:"mh","kajin m̧ajeļ":"mh",mh:"mh",mah:"mh",mongolian:"mn","монгол хэл":"mn",mn:"mn",mon:"mn","mon + 2":"mn",nauru:"na","dorerin naoero":"na",na:"na",nau:"na","navajo, navaho":"nv","diné bizaad":"nv",nv:"nv",nav:"nv","north ndebele":"nd",isindebele:"nr",nd:"nd",nde:"nd",nepali:"ne","नेपाली":"ne",ne:"ne",nep:"ne",ndonga:"ng",owambo:"ng",ng:"ng",ndo:"ng","norwegian bokmål":"nb","norsk bokmål":"nb",nb:"nb",nob:"nb","norwegian nynorsk":"nn","norsk nynorsk":"nn",nn:"nn",nno:"nn",norwegian:"no",norsk:"no",no:"no",nor:"no","nor + 2":"no","sichuan yi, nuosu":"ii","ꆈꌠ꒿ nuosuhxop":"ii",ii:"ii",iii:"ii","south ndebele":"nr",nr:"nr",nbl:"nr",occitan:"oc","occitan, lenga d'òc":"oc",oc:"oc",oci:"oc","lenga d'òc":"oc",ojibwa:"oj","ᐊᓂᔑᓈᐯᒧᐎᓐ":"oj",oj:"oj",oji:"oj","oji + 7":"oj","church slavic, church slavonic, old church slavonic, old slavonic, old bulgarian":"cu","ѩзыкъ словѣньскъ":"cu",cu:"cu",chu:"cu",oromo:"om","afaan oromoo":"om",om:"om",orm:"om","orm + 4":"om",oriya:"or","ଓଡ଼ିଆ":"or",or:"or",ori:"or","ossetian, ossetic":"os","ирон æвзаг":"os",os:"os",oss:"os","panjabi, punjabi":"pa","ਪੰਜਾਬੀ":"pa",pa:"pa",pan:"pa",pali:"pi","पाऴि":"pi",pi:"pi",pli:"pi",persian:"fa","فارسی":"fa",fa:"fa",fas:"fa",per:"fa","fas + 2":"fa",polish:"pl","język polski, polszczyzna":"pl",pl:"pl",pol:"pl","język polski":"pl",polszczyzna:"pl","pashto, pushto":"ps","پښتو":"ps",ps:"ps",pus:"ps","pus + 3":"ps",portuguese:"pt","português":"pt",pt:"pt",por:"pt",quechua:"qu","runa simi, kichwa":"qu",qu:"qu",que:"qu","que + 44":"qu","runa simi":"qu",kichwa:"qu",romansh:"rm","rumantsch grischun":"rm",rm:"rm",roh:"rm",rundi:"rn",ikirundi:"rn",rn:"rn",run:"rn","romanian, moldavian, moldovan":"ro","română":"ro",ro:"ro",ron:"ro",rum:"ro",russian:"ru","русский":"ru",ru:"ru",rus:"ru",sanskrit:"sa","संस्कृतम्":"sa",sa:"sa",san:"sa",sardinian:"sc",sardu:"sc",sc:"sc",srd:"sc","srd + 4":"sc",sindhi:"sd","सिन्धी, سنڌي، سندھی‎":"sd",sd:"sd",snd:"sd","सिन्धी":"sd","سنڌي، سندھی‎":"sd","northern sami":"se","davvisámegiella":"se",se:"se",sme:"se",samoan:"sm","gagana fa'a samoa":"sm",sm:"sm",smo:"sm",sango:"sg","yângâ tî sängö":"sg",sg:"sg",sag:"sg",serbian:"sr","српски језик":"sr",sr:"sr",srp:"sr","gaelic, scottish gaelic":"gd","gàidhlig":"gd",gd:"gd",gla:"gd",shona:"sn",chishona:"sn",sn:"sn",sna:"sn","sinhala, sinhalese":"si","සිංහල":"si",si:"si",sin:"si",slovak:"sk","slovenčina, slovenský jazyk":"sk",sk:"sk",slk:"sk",slo:"sk","slovenčina":"sk","slovenský jazyk":"sk",slovenian:"sl","slovenski jezik, slovenščina":"sl",sl:"sl",slv:"sl","slovenski jezik":"sl","slovenščina":"sl",somali:"so","soomaaliga, af soomaali":"so",so:"so",som:"so",soomaaliga:"so","af soomaali":"so","southern sotho":"st",sesotho:"st",st:"st",sot:"st","spanish, castilian":"es","español":"es",es:"es",spa:"es",sundanese:"su","basa sunda":"su",su:"su",sun:"su",swahili:"sw",kiswahili:"sw",sw:"sw",swa:"sw","swa + 2":"sw",swati:"ss",siswati:"ss",ss:"ss",ssw:"ss",swedish:"sv",svenska:"sv",sv:"sv",swe:"sv",tamil:"ta","தமிழ்":"ta",ta:"ta",tam:"ta",telugu:"te","తెలుగు":"te",te:"te",tel:"te",tajik:"tg","тоҷикӣ, toçikī, تاجیکی‎":"tg",tg:"tg",tgk:"tg","тоҷикӣ":"tg","toçikī":"tg","تاجیکی‎":"tg",thai:"th","ไทย":"th",th:"th",tha:"th",tigrinya:"ti","ትግርኛ":"ti",ti:"ti",tir:"ti",tibetan:"bo","བོད་ཡིག":"bo",bo:"bo",bod:"bo",tib:"bo",turkmen:"tk","türkmen, түркмен":"tk",tk:"tk",tuk:"tk","türkmen":"tk","түркмен":"tk",tagalog:"tl","wikang tagalog":"tl",tl:"tl",tgl:"tl",tswana:"tn",setswana:"tn",tn:"tn",tsn:"tn","tonga (tonga islands)":"to","faka tonga":"to",to:"to",ton:"to",turkish:"tr","türkçe":"tr",tr:"tr",tur:"tr",tsonga:"ts",xitsonga:"ts",ts:"ts",tso:"ts",tatar:"tt","татар теле, tatar tele":"tt",tt:"tt",tat:"tt","татар теле":"tt","tatar tele":"tt",twi:"tw",tw:"tw",tahitian:"ty","reo tahiti":"ty",ty:"ty",tah:"ty","uighur, uyghur":"ug","ئۇيغۇرچە‎, uyghurche":"ug",ug:"ug",uig:"ug","ئۇيغۇرچە‎":"ug",uyghurche:"ug",ukrainian:"uk","українська":"uk",uk:"uk",ukr:"uk",urdu:"ur","اردو":"ur",ur:"ur",urd:"ur",uzbek:"uz","oʻzbek, ўзбек, أۇزبېك‎":"uz",uz:"uz",uzb:"uz","uzb + 2":"uz","oʻzbek":"uz","ўзбек":"uz","أۇزبېك‎":"uz",venda:"ve","tshivenḓa":"ve",ve:"ve",ven:"ve",vietnamese:"vi","tiếng việt":"vi",vi:"vi",vie:"vi","volapük":"vo",vo:"vo",vol:"vo",walloon:"wa",walon:"wa",wa:"wa",wln:"wa",welsh:"cy",cymraeg:"cy",cy:"cy",cym:"cy",wel:"cy",wolof:"wo",wollof:"wo",wo:"wo",wol:"wo","western frisian":"fy",frysk:"fy",fy:"fy",fry:"fy",xhosa:"xh",isixhosa:"xh",xh:"xh",xho:"xh",yiddish:"yi","ייִדיש":"yi",yi:"yi",yid:"yi","yid + 2":"yi",yoruba:"yo","yorùbá":"yo",yo:"yo",yor:"yo","zhuang, chuang":"za","saɯ cueŋƅ, saw cuengh":"za",za:"za",zha:"za","zha + 16":"za","saɯ cueŋƅ":"za","saw cuengh":"za",zulu:"zu",isizulu:"zu",zu:"zu",zul:"zu"};function reduce(from){return reductions[from.toLowerCase()]}var reduceTo6391={reduce:reduce,reductions:reductions};class circular_buffer{constructor(uCapacity){if(!Number.isInteger(uCapacity)){throw new RangeError(`Capacity must be an integer, received ${uCapacity}`)}if(uCapacity<0){throw new RangeError(`Capacity must be a non-negative integer, received ${uCapacity}`)}this._values=new Array(uCapacity);this._capacity=uCapacity;this._cursor=0;this._offset=0;this._length=0}get capacity(){return this._capacity}set capacity(newSize){this.resize(newSize)}get length(){return this._length}set length(newLength){if(newLength>this._capacity){throw new RangeError(`Requested new length [${newLength}] exceeds container capacity [${this._capacity}]`)}if(newLength<0){throw new RangeError(`Requested new length [${newLength}] cannot be negative`)}if(!Number.isInteger(newLength)){throw new RangeError(`Requested new length [${newLength}] must be an integer`)}if(this._length<=newLength){return}this._length=newLength}get available(){return this._capacity-this._length}get isEmpty(){return this._length===0}get isFull(){return this._length===this._capacity}get first(){if(this.isEmpty){throw new RangeError("Cannot return first element of an empty container")}return this.at(0)}get last(){if(this.isEmpty){throw new RangeError("Cannot return last element of an empty container")}return this.at(this.length-1)}static from(i,map_fn,t){const new_array=map_fn?Array.from(i,map_fn,t):Array.from(i);const target_length=new_array.length;const ncb=new circular_buffer(target_length);ncb._values=new_array;ncb._length=target_length;return ncb}push(v){if(this.isFull){throw new RangeError(`Cannot push, structure is full to capacity`)}this._values[(this._cursor+this._length++)%this._capacity]=v;return v}shove(v){let shoved;if(this._capacity===0){throw new RangeError(`Cannot shove, structure is zero-capacity`)}if(this.isFull){shoved=this.pop()}this.push(v);return shoved}fill(x){for(let i=0;i=this._capacity){this._cursor-=this._capacity}return cache}at(i){if(i<0){throw new RangeError(`circular_buffer does not support negative traversals; called at(${i})`)}if(!Number.isInteger(i)){throw new RangeError(`Accessors must be non-negative integers; called at(${i})`)}if(i>=this._capacity){throw new RangeError(`Requested cell ${i} exceeds container permanent capacity`)}if(i>=this._length){throw new RangeError(`Requested cell ${i} exceeds container current length`)}return this._values[(this._cursor+i)%this._capacity]}pos(i){return this.at(i-this.offset())}offset(){return this._offset}resize(newSize,preferEnd=false){this._values=this.toArray();this._cursor=0;const oldSize=this._length;this._length=Math.min(this._length,newSize);this._capacity=newSize;if(newSize>=oldSize){this._values.length=newSize}else{if(preferEnd){const tmp=this._values.slice(oldSize-newSize);this._values=tmp}else{this._values.length=newSize}}}toArray(){const startPoint=this._cursor%this._capacity;if(this._capacity>startPoint+this._length){return this._values.slice(startPoint,startPoint+this._length)}else{const base=this._values.slice(startPoint,this._capacity);base.push(...this._values.slice(0,this.length-(this._capacity-startPoint)));return base}}}const base_state_style$3={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style$3={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style$3={shape:"component"};const base_terminal_state_style$3={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style$3={textColor:"white",backgroundColor:"indigo"};const base_start_state_style$3={backgroundColor:"yellow"};const base_active_start_state_style$3={backgroundColor:"yellowgreen"};const base_active_hooked_state_style$3={backgroundColor:"yellowgreen"};const base_end_state_style$3={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style$3={textColor:"white",backgroundColor:"darkgreen"};const base_theme={state:base_state_style$3,start:base_start_state_style$3,end:base_end_state_style$3,terminal:base_terminal_state_style$3,hooked:base_hooked_state_style$3,active:base_active_state_style$3,active_start:base_active_start_state_style$3,active_end:base_active_end_state_style$3,active_terminal:base_active_terminal_state_style$3,active_hooked:base_active_hooked_state_style$3,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};const base_state_style$2={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style$2={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style$2={shape:"component"};const base_terminal_state_style$2={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style$2={textColor:"white",backgroundColor:"indigo"};const base_start_state_style$2={backgroundColor:"yellow"};const base_active_start_state_style$2={backgroundColor:"yellowgreen"};const base_active_hooked_state_style$2={backgroundColor:"yellowgreen"};const base_end_state_style$2={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style$2={textColor:"white",backgroundColor:"darkgreen"};const default_theme={state:base_state_style$2,start:base_start_state_style$2,end:base_end_state_style$2,terminal:base_terminal_state_style$2,hooked:base_hooked_state_style$2,active:base_active_state_style$2,active_start:base_active_start_state_style$2,active_end:base_active_end_state_style$2,active_terminal:base_active_terminal_state_style$2,active_hooked:base_active_hooked_state_style$2,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};const base_state_style$1={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style$1={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style$1={shape:"component"};const base_terminal_state_style$1={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style$1={textColor:"white",backgroundColor:"indigo"};const base_start_state_style$1={backgroundColor:"yellow"};const base_active_start_state_style$1={backgroundColor:"yellowgreen"};const base_active_hooked_state_style$1={backgroundColor:"yellowgreen"};const base_end_state_style$1={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style$1={textColor:"white",backgroundColor:"darkgreen"};const modern_theme={state:base_state_style$1,start:base_start_state_style$1,end:base_end_state_style$1,terminal:base_terminal_state_style$1,hooked:base_hooked_state_style$1,active:base_active_state_style$1,active_start:base_active_start_state_style$1,active_end:base_active_end_state_style$1,active_terminal:base_active_terminal_state_style$1,active_hooked:base_active_hooked_state_style$1,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};const base_state_style={shape:"rectangle",backgroundColor:"khaki",textColor:"black",borderColor:"black"};const base_active_state_style={textColor:"white",backgroundColor:"dodgerblue4"};const base_hooked_state_style={shape:"component"};const base_terminal_state_style={textColor:"white",backgroundColor:"crimson"};const base_active_terminal_state_style={textColor:"white",backgroundColor:"indigo"};const base_start_state_style={backgroundColor:"yellow"};const base_active_start_state_style={backgroundColor:"yellowgreen"};const base_active_hooked_state_style={backgroundColor:"yellowgreen"};const base_end_state_style={textColor:"white",backgroundColor:"darkolivegreen"};const base_active_end_state_style={textColor:"white",backgroundColor:"darkgreen"};const ocean_theme={state:base_state_style,start:base_start_state_style,end:base_end_state_style,terminal:base_terminal_state_style,hooked:base_hooked_state_style,active:base_active_state_style,active_start:base_active_start_state_style,active_end:base_active_end_state_style,active_terminal:base_active_terminal_state_style,active_hooked:base_active_hooked_state_style,legal:undefined,main:undefined,forced:undefined,action:undefined,graph:undefined,title:undefined};class JssmError extends Error{constructor(machine,message,JEEI){const{requested_state:requested_state}=JEEI===undefined?{requested_state:undefined}:JEEI;const follow_ups=[];if(machine){if(machine.state()!==undefined){follow_ups.push(`at "${machine.state()}"`)}}if(requested_state!==undefined){follow_ups.push(`requested "${requested_state}"`)}const complex_msg=`${(machine===null||machine===void 0?void 0:machine.instance_name())!==undefined?`[[${machine.instance_name()}]]: `:""}${message}${follow_ups.length?` (${follow_ups.join(", ")})`:""}`;super(complex_msg);this.name="JssmError";this.message=complex_msg;this.base_message=message;this.requested_state=requested_state}}const array_box_if_string=n=>typeof n==="string"?[n]:n;const weighted_rand_select=(options,probability_property="probability")=>{if(!Array.isArray(options)){throw new TypeError("options must be a non-empty array of objects")}if(!(typeof options[0]==="object")){throw new TypeError("options must be a non-empty array of objects")}const frand=cap=>Math.random()*cap,or_one=item=>item===undefined?1:item,prob_sum=options.reduce(((acc,val)=>acc+or_one(val[probability_property])),0),rnd=frand(prob_sum);let cursor=0,cursor_sum=0;while((cursor_sum+=or_one(options[cursor++][probability_property]))<=rnd){}return options[cursor-1]};function seq(n){if(!Number.isInteger(n)){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}if(n<0){throw new TypeError("seq/1 takes a non-negative integer n as an argument")}return new Array(n).fill(true).map(((_,i)=>i))}const histograph=ar=>ar.sort().reduce(((m,v)=>(m.set(v,m.has(v)?m.get(v)+1:1),m)),new Map);const weighted_sample_select=(n,options,probability_property)=>seq(n).map((_i=>weighted_rand_select(options,probability_property)));const weighted_histo_key=(n,opts,prob_prop,extract)=>histograph(weighted_sample_select(n,opts,prob_prop).map((s=>s[extract])));function name_bind_prop_and_state(prop,state){if(typeof prop!=="string"){throw new JssmError(undefined,`Name of property must be a string; got ${prop}`)}if(typeof state!=="string"){throw new JssmError(undefined,`Name of state must be a string; got ${prop}`)}return JSON.stringify([prop,state])}const hook_name=(from,to)=>JSON.stringify([from,to]);const named_hook_name=(from,to,action)=>JSON.stringify([from,to,action]);const unique=arr=>arr.filter(((v,i,a)=>a.indexOf(v)===i));function find_repeated(arr){const uniqued=unique(arr);if(uniqued.length!==arr.length){const residue_keys=new Map;arr.forEach((k=>residue_keys.set(k,residue_keys.has(k)?residue_keys.get(k)+1:1)));uniqued.forEach((k=>residue_keys.set(k,residue_keys.get(k)-1)));return[...residue_keys.entries()].filter((e=>e[1]>0&&!Number.isNaN(e[0]))).map((e=>[e[0],e[1]+1]))}else{return[]}}const NegInfinity=Number.NEGATIVE_INFINITY,PosInfinity=Number.POSITIVE_INFINITY,Epsilon=Number.EPSILON,Pi=Math.PI,E=Math.E,Root2=Math.SQRT2,RootHalf=Math.SQRT1_2,Ln2=Math.LN2,Ln10=Math.LN10,Log2E=Math.LOG2E,Log10E=Math.LOG10E,MaxSafeInt=Number.MAX_SAFE_INTEGER,MinSafeInt=Number.MIN_SAFE_INTEGER,MaxPosNum=Number.MAX_VALUE,MinPosNum=Number.MIN_VALUE,Phi=1.618033988749895,EulerC=.5772156649015329;const gviz_shapes$1=["box3d","polygon","ellipse","oval","circle","point","egg","triangle","plaintext","plain","diamond","trapezium","parallelogram","house","pentagon","hexagon","septagon","octagon","doublecircle","doubleoctagon","tripleoctagon","invtriangle","invtrapezium","invhouse","Mdiamond","Msquare","Mcircle","rectangle","rect","square","star","none","underline","cylinder","note","tab","folder","box","component","promoter","cds","terminator","utr","primersite","restrictionsite","fivepoverhang","threepoverhang","noverhang","assembly","signature","insulator","ribosite","rnastab","proteasesite","proteinstab","rpromoter","rarrow","larrow","lpromoter","record"];const shapes$1=gviz_shapes$1;const named_colors$1=["AliceBlue","AntiqueWhite","Aqua","Aquamarine","Azure","Beige","Bisque","Black","BlanchedAlmond","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","CornflowerBlue","Cornsilk","Crimson","Cyan","DarkBlue","DarkCyan","DarkGoldenRod","DarkGray","DarkGrey","DarkGreen","DarkKhaki","DarkMagenta","DarkOliveGreen","Darkorange","DarkOrchid","DarkRed","DarkSalmon","DarkSeaGreen","DarkSlateBlue","DarkSlateGray","DarkSlateGrey","DarkTurquoise","DarkViolet","DeepPink","DeepSkyBlue","DimGray","DimGrey","DodgerBlue","FireBrick","FloralWhite","ForestGreen","Fuchsia","Gainsboro","GhostWhite","Gold","GoldenRod","Gray","Grey","Green","GreenYellow","HoneyDew","HotPink","IndianRed","Indigo","Ivory","Khaki","Lavender","LavenderBlush","LawnGreen","LemonChiffon","LightBlue","LightCoral","LightCyan","LightGoldenRodYellow","LightGray","LightGrey","LightGreen","LightPink","LightSalmon","LightSeaGreen","LightSkyBlue","LightSlateGray","LightSlateGrey","LightSteelBlue","LightYellow","Lime","LimeGreen","Linen","Magenta","Maroon","MediumAquaMarine","MediumBlue","MediumOrchid","MediumPurple","MediumSeaGreen","MediumSlateBlue","MediumSpringGreen","MediumTurquoise","MediumVioletRed","MidnightBlue","MintCream","MistyRose","Moccasin","NavajoWhite","Navy","OldLace","Olive","OliveDrab","Orange","OrangeRed","Orchid","PaleGoldenRod","PaleGreen","PaleTurquoise","PaleVioletRed","PapayaWhip","PeachPuff","Peru","Pink","Plum","PowderBlue","Purple","Red","RosyBrown","RoyalBlue","SaddleBrown","Salmon","SandyBrown","SeaGreen","SeaShell","Sienna","Silver","SkyBlue","SlateBlue","SlateGray","SlateGrey","Snow","SpringGreen","SteelBlue","Tan","Teal","Thistle","Tomato","Turquoise","Violet","Wheat","White","WhiteSmoke","Yellow","YellowGreen"];var constants=Object.freeze({__proto__:null,NegInfinity:NegInfinity,PosInfinity:PosInfinity,Epsilon:Epsilon,Pi:Pi,E:E,Root2:Root2,RootHalf:RootHalf,Ln2:Ln2,Ln10:Ln10,Log2E:Log2E,Log10E:Log10E,MaxSafeInt:MaxSafeInt,MinSafeInt:MinSafeInt,MaxPosNum:MaxPosNum,MinPosNum:MinPosNum,Phi:Phi,EulerC:EulerC,gviz_shapes:gviz_shapes$1,shapes:shapes$1,named_colors:named_colors$1});function peg$subclass(child,parent){function ctor(){this.constructor=child}ctor.prototype=parent.prototype;child.prototype=new ctor}function peg$SyntaxError(message,expected,found,location){this.message=message;this.expected=expected;this.found=found;this.location=location;this.name="SyntaxError";if(typeof Error.captureStackTrace==="function"){Error.captureStackTrace(this,peg$SyntaxError)}}peg$subclass(peg$SyntaxError,Error);peg$SyntaxError.buildMessage=function(expected,found){var DESCRIBE_EXPECTATION_FNS={literal:function(expectation){return'"'+literalEscape(expectation.text)+'"'},class:function(expectation){var escapedParts="",i;for(i=0;i0){for(i=1,j=1;i"),peg$c128="->",peg$c129=peg$literalExpectation("->",false),peg$c130="→",peg$c131=peg$literalExpectation("→",false),peg$c132=function(){return"->"},peg$c133=peg$otherExpectation("two way light arrow <->"),peg$c134="<->",peg$c135=peg$literalExpectation("<->",false),peg$c136="↔",peg$c137=peg$literalExpectation("↔",false),peg$c138=function(){return"<->"},peg$c139=peg$otherExpectation("back light arrow <-"),peg$c140="<-",peg$c141=peg$literalExpectation("<-",false),peg$c142="←",peg$c143=peg$literalExpectation("←",false),peg$c144=function(){return"<-"},peg$c145=peg$otherExpectation("forward fat arrow =>"),peg$c146="=>",peg$c147=peg$literalExpectation("=>",false),peg$c148="⇒",peg$c149=peg$literalExpectation("⇒",false),peg$c150=function(){return"=>"},peg$c151=peg$otherExpectation("two way fat arrow <=>"),peg$c152="<=>",peg$c153=peg$literalExpectation("<=>",false),peg$c154="⇔",peg$c155=peg$literalExpectation("⇔",false),peg$c156=function(){return"<=>"},peg$c157=peg$otherExpectation("back fat arrow <="),peg$c158="<=",peg$c159=peg$literalExpectation("<=",false),peg$c160="⇐",peg$c161=peg$literalExpectation("⇐",false),peg$c162=function(){return"<="},peg$c163=peg$otherExpectation("forward tilde arrow ~>"),peg$c164="~>",peg$c165=peg$literalExpectation("~>",false),peg$c166="↛",peg$c167=peg$literalExpectation("↛",false),peg$c168=function(){return"~>"},peg$c169=peg$otherExpectation("two way tilde arrow <~>"),peg$c170="<~>",peg$c171=peg$literalExpectation("<~>",false),peg$c172="↮",peg$c173=peg$literalExpectation("↮",false),peg$c174=function(){return"<~>"},peg$c175=peg$otherExpectation("back tilde arrow <~"),peg$c176="<~",peg$c177=peg$literalExpectation("<~",false),peg$c178="↚",peg$c179=peg$literalExpectation("↚",false),peg$c180=function(){return"<~"},peg$c181=peg$otherExpectation("light fat arrow <-=>"),peg$c182="<-=>",peg$c183=peg$literalExpectation("<-=>",false),peg$c184="←⇒",peg$c185=peg$literalExpectation("←⇒",false),peg$c186=function(){return"<-=>"},peg$c187=peg$otherExpectation("light tilde arrow <-~>"),peg$c188="<-~>",peg$c189=peg$literalExpectation("<-~>",false),peg$c190="←↛",peg$c191=peg$literalExpectation("←↛",false),peg$c192=function(){return"<-~>"},peg$c193=peg$otherExpectation("fat light arrow <=->"),peg$c194="<=->",peg$c195=peg$literalExpectation("<=->",false),peg$c196="⇐→",peg$c197=peg$literalExpectation("⇐→",false),peg$c198=function(){return"<=->"},peg$c199=peg$otherExpectation("fat tilde arrow <=~>"),peg$c200="<=~>",peg$c201=peg$literalExpectation("<=~>",false),peg$c202="⇐↛",peg$c203=peg$literalExpectation("⇐↛",false),peg$c204=function(){return"<=~>"},peg$c205=peg$otherExpectation("tilde light arrow <~->"),peg$c206="<~->",peg$c207=peg$literalExpectation("<~->",false),peg$c208="↚→",peg$c209=peg$literalExpectation("↚→",false),peg$c210=function(){return"<~->"},peg$c211=peg$otherExpectation("tilde fat arrow <~=>"),peg$c212="<~=>",peg$c213=peg$literalExpectation("<~=>",false),peg$c214="↚⇒",peg$c215=peg$literalExpectation("↚⇒",false),peg$c216=function(){return"<~=>"},peg$c217=peg$otherExpectation("light arrow"),peg$c218=peg$otherExpectation("fat arrow"),peg$c219=peg$otherExpectation("tilde arrow"),peg$c220=peg$otherExpectation("mixed arrow"),peg$c221=peg$otherExpectation("arrow"),peg$c222="true",peg$c223=peg$literalExpectation("true",false),peg$c224=function(){return true},peg$c225="false",peg$c226=peg$literalExpectation("false",false),peg$c227=function(){return false},peg$c228="regular",peg$c229=peg$literalExpectation("regular",false),peg$c230="rounded",peg$c231=peg$literalExpectation("rounded",false),peg$c232="lined",peg$c233=peg$literalExpectation("lined",false),peg$c234="solid",peg$c235=peg$literalExpectation("solid",false),peg$c236="dotted",peg$c237=peg$literalExpectation("dotted",false),peg$c238="dashed",peg$c239=peg$literalExpectation("dashed",false),peg$c240='"',peg$c241=peg$literalExpectation('"',false),peg$c242="\\",peg$c243=peg$literalExpectation("\\",false),peg$c244="/",peg$c245=peg$literalExpectation("/",false),peg$c246="b",peg$c247=peg$literalExpectation("b",false),peg$c248=function(){return"\b"},peg$c249="f",peg$c250=peg$literalExpectation("f",false),peg$c251=function(){return"\f"},peg$c252="n",peg$c253=peg$literalExpectation("n",false),peg$c254=function(){return"\n"},peg$c255="r",peg$c256=peg$literalExpectation("r",false),peg$c257=function(){return"\r"},peg$c258="t",peg$c259=peg$literalExpectation("t",false),peg$c260=function(){return"\t"},peg$c261="v",peg$c262=peg$literalExpectation("v",false),peg$c263=function(){return"\v"},peg$c264="u",peg$c265=peg$literalExpectation("u",false),peg$c266=function(digits){return String.fromCharCode(parseInt(digits,16))},peg$c267=function(Sequence){return Sequence},peg$c268="null",peg$c269=peg$literalExpectation("null",false),peg$c270=function(){return null},peg$c271="undefined",peg$c272=peg$literalExpectation("undefined",false),peg$c273=function(){return undefined},peg$c274=/^[ -!#-[\]-\u10FFFF]/,peg$c275=peg$classExpectation([[" ","!"],["#","["],["]","ჿ"],"F","F"],false,false),peg$c276="'",peg$c277=peg$literalExpectation("'",false),peg$c278=/^[ -&(-[\]-\u10FFFF]/,peg$c279=peg$classExpectation([[" ","&"],["(","["],["]","ჿ"],"F","F"],false,false),peg$c280=peg$otherExpectation("action label"),peg$c281=function(chars){return chars.join("")},peg$c282=/^[\n\r\u2028\u2029]/,peg$c283=peg$classExpectation(["\n","\r","\u2028","\u2029"],false,false),peg$c286="*/",peg$c287=peg$literalExpectation("*/",false),peg$c288=peg$anyExpectation(),peg$c289=peg$otherExpectation("block comment"),peg$c290="/*",peg$c291=peg$literalExpectation("/*",false),peg$c292=peg$otherExpectation("line comment"),peg$c293="//",peg$c294=peg$literalExpectation("//",false),peg$c295=peg$otherExpectation("whitespace"),peg$c296=/^[ \t\r\n\x0B]/,peg$c297=peg$classExpectation([" ","\t","\r","\n","\v"],false,false),peg$c298=peg$otherExpectation("string"),peg$c299=/^[0-9a-zA-Z._!$\^*!?,\x80-\uFFFF]/,peg$c300=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","_","!","$","^","*","!","?",",",["€","￿"]],false,false),peg$c301=/^[0-9a-zA-Z.+_\^()*&$#@!?,\x80-\uFFFF]/,peg$c302=peg$classExpectation([["0","9"],["a","z"],["A","Z"],".","+","_","^","(",")","*","&","$","#","@","!","?",",",["€","￿"]],false,false),peg$c303=peg$otherExpectation("atom"),peg$c304=function(firstletter,text){return firstletter+(text||[]).join("")},peg$c305=peg$otherExpectation("label"),peg$c306="0",peg$c307=peg$literalExpectation("0",false),peg$c308=/^[0-9]/,peg$c309=peg$classExpectation([["0","9"]],false,false),peg$c310=/^[1-9]/,peg$c311=peg$classExpectation([["1","9"]],false,false),peg$c312=/^[0-9a-f]/i,peg$c313=peg$classExpectation([["0","9"],["a","f"]],false,true),peg$c314=/^[0-1]/,peg$c315=peg$classExpectation([["0","1"]],false,false),peg$c316=peg$otherExpectation("nonneg number"),peg$c317=".",peg$c318=peg$literalExpectation(".",false),peg$c319=function(){return parseFloat(text())},peg$c320=peg$otherExpectation("number"),peg$c321=function(literal){return literal},peg$c322="NaN",peg$c323=peg$literalExpectation("NaN",false),peg$c324=function(){return NaN},peg$c325="NegativeInfinity",peg$c326=peg$literalExpectation("NegativeInfinity",false),peg$c327=function(){return Number.NEGATIVE_INFINITY},peg$c328="NegativeInf",peg$c329=peg$literalExpectation("NegativeInf",false),peg$c330="NegInfinity",peg$c331=peg$literalExpectation("NegInfinity",false),peg$c332="NegInf",peg$c333=peg$literalExpectation("NegInf",false),peg$c334="NInfinity",peg$c335=peg$literalExpectation("NInfinity",false),peg$c336="NInf",peg$c337=peg$literalExpectation("NInf",false),peg$c338="-∞",peg$c339=peg$literalExpectation("-∞",false),peg$c340="PInfinity",peg$c341=peg$literalExpectation("PInfinity",false),peg$c342=function(){return Number.POSITIVE_INFINITY},peg$c343="Infinity",peg$c344=peg$literalExpectation("Infinity",false),peg$c345="PInf",peg$c346=peg$literalExpectation("PInf",false),peg$c347="Inf",peg$c348=peg$literalExpectation("Inf",false),peg$c349="∞",peg$c350=peg$literalExpectation("∞",false),peg$c351="Epsilon",peg$c352=peg$literalExpectation("Epsilon",false),peg$c353=function(){return Number.EPSILON},peg$c354="𝜀",peg$c355=peg$literalExpectation("𝜀",false),peg$c356="ε",peg$c357=peg$literalExpectation("ε",false),peg$c358="Pi",peg$c359=peg$literalExpectation("Pi",false),peg$c360=function(){return Math.PI},peg$c361="𝜋",peg$c362=peg$literalExpectation("𝜋",false),peg$c363="π",peg$c364=peg$literalExpectation("π",false),peg$c365="EulerNumber",peg$c366=peg$literalExpectation("EulerNumber",false),peg$c367=function(){return Math.E},peg$c368="E",peg$c369=peg$literalExpectation("E",false),peg$c370="e",peg$c371=peg$literalExpectation("e",false),peg$c372="Ɛ",peg$c373=peg$literalExpectation("Ɛ",false),peg$c374="ℇ",peg$c375=peg$literalExpectation("ℇ",false),peg$c376="Root2",peg$c377=peg$literalExpectation("Root2",false),peg$c378=function(){return Math.SQRT2},peg$c379="RootHalf",peg$c380=peg$literalExpectation("RootHalf",false),peg$c381=function(){return Math.SQRT1_2},peg$c382="Ln2",peg$c383=peg$literalExpectation("Ln2",false),peg$c384=function(){return Math.LN2},peg$c385="NatLog2",peg$c386=peg$literalExpectation("NatLog2",false),peg$c387="Ln10",peg$c388=peg$literalExpectation("Ln10",false),peg$c389=function(){return Math.LN10},peg$c390="NatLog10",peg$c391=peg$literalExpectation("NatLog10",false),peg$c392="Log2E",peg$c393=peg$literalExpectation("Log2E",false),peg$c394=function(){return Math.LOG2E},peg$c395="Log10E",peg$c396=peg$literalExpectation("Log10E",false),peg$c397=function(){return Math.LOG10E},peg$c398="MaxSafeInt",peg$c399=peg$literalExpectation("MaxSafeInt",false),peg$c400=function(){return Number.MAX_SAFE_INTEGER},peg$c401="MinSafeInt",peg$c402=peg$literalExpectation("MinSafeInt",false),peg$c403=function(){return Number.MIN_SAFE_INTEGER},peg$c404="MaxPosNum",peg$c405=peg$literalExpectation("MaxPosNum",false),peg$c406=function(){return Number.MAX_VALUE},peg$c407="MinPosNum",peg$c408=peg$literalExpectation("MinPosNum",false),peg$c409=function(){return Number.MIN_VALUE},peg$c410="Phi",peg$c411=peg$literalExpectation("Phi",false),peg$c412=function(){return 1.618033988749895},peg$c413="𝜑",peg$c414=peg$literalExpectation("𝜑",false),peg$c415="𝜙",peg$c416=peg$literalExpectation("𝜙",false),peg$c417="ϕ",peg$c418=peg$literalExpectation("ϕ",false),peg$c419="φ",peg$c420=peg$literalExpectation("φ",false),peg$c421="EulerConstant",peg$c422=peg$literalExpectation("EulerConstant",false),peg$c423=function(){return.5772156649015329},peg$c424="γ",peg$c425=peg$literalExpectation("γ",false),peg$c426="𝛾",peg$c427=peg$literalExpectation("𝛾",false),peg$c428=peg$literalExpectation("e",true),peg$c429=/^[+\-]/,peg$c430=peg$classExpectation(["+","-"],false,false),peg$c431="0x",peg$c432=peg$literalExpectation("0x",true),peg$c433=function(digits){return parseInt(digits,16)},peg$c434="0b",peg$c435=peg$literalExpectation("0b",true),peg$c436=function(digits){return parseInt(digits,2)},peg$c437="0o",peg$c438=peg$literalExpectation("0o",true),peg$c439=function(digits){return parseInt(digits,8)},peg$c440=function(major,minor,patch){return{major:parseInt(major,10),minor:parseInt(minor,10),patch:parseInt(patch,10),full:text()}},peg$c451="http://",peg$c452=peg$literalExpectation("http://",false),peg$c453="https://",peg$c454=peg$literalExpectation("https://",false),peg$c455=/^[a-zA-Z0-9!*'():;@&=+$,\/?#[\]_.~\-]/,peg$c456=peg$classExpectation([["a","z"],["A","Z"],["0","9"],"!","*","'","(",")",":",";","@","&","=","+","$",",","/","?","#","[","]","_",".","~","-"],false,false),peg$c457=function(protocol){return text()},peg$c458="aliceblue",peg$c459=peg$literalExpectation("aliceblue",false),peg$c460=function(){return"#f0f8ffff"},peg$c461="AliceBlue",peg$c462=peg$literalExpectation("AliceBlue",false),peg$c463="antiquewhite",peg$c464=peg$literalExpectation("antiquewhite",false),peg$c465=function(){return"#faebd7ff"},peg$c466="AntiqueWhite",peg$c467=peg$literalExpectation("AntiqueWhite",false),peg$c468="aquamarine",peg$c469=peg$literalExpectation("aquamarine",false),peg$c470=function(){return"#7fffd4ff"},peg$c471="Aquamarine",peg$c472=peg$literalExpectation("Aquamarine",false),peg$c473="aqua",peg$c474=peg$literalExpectation("aqua",false),peg$c475=function(){return"#00ffffff"},peg$c476="Aqua",peg$c477=peg$literalExpectation("Aqua",false),peg$c478="azure",peg$c479=peg$literalExpectation("azure",false),peg$c480=function(){return"#f0ffffff"},peg$c481="Azure",peg$c482=peg$literalExpectation("Azure",false),peg$c483="beige",peg$c484=peg$literalExpectation("beige",false),peg$c485=function(){return"#f5f5dcff"},peg$c486="Beige",peg$c487=peg$literalExpectation("Beige",false),peg$c488="bisque",peg$c489=peg$literalExpectation("bisque",false),peg$c490=function(){return"#ffe4c4ff"},peg$c491="Bisque",peg$c492=peg$literalExpectation("Bisque",false),peg$c493="black",peg$c494=peg$literalExpectation("black",false),peg$c495=function(){return"#000000ff"},peg$c496="Black",peg$c497=peg$literalExpectation("Black",false),peg$c498="blanchedalmond",peg$c499=peg$literalExpectation("blanchedalmond",false),peg$c500=function(){return"#ffebcdff"},peg$c501="BlanchedAlmond",peg$c502=peg$literalExpectation("BlanchedAlmond",false),peg$c503="blueviolet",peg$c504=peg$literalExpectation("blueviolet",false),peg$c505=function(){return"#8a2be2ff"},peg$c506="BlueViolet",peg$c507=peg$literalExpectation("BlueViolet",false),peg$c508="blue",peg$c509=peg$literalExpectation("blue",false),peg$c510=function(){return"#0000ffff"},peg$c511="Blue",peg$c512=peg$literalExpectation("Blue",false),peg$c513="brown",peg$c514=peg$literalExpectation("brown",false),peg$c515=function(){return"#a52a2aff"},peg$c516="Brown",peg$c517=peg$literalExpectation("Brown",false),peg$c518="burlywood",peg$c519=peg$literalExpectation("burlywood",false),peg$c520=function(){return"#deb887ff"},peg$c521="BurlyWood",peg$c522=peg$literalExpectation("BurlyWood",false),peg$c523="cadetblue",peg$c524=peg$literalExpectation("cadetblue",false),peg$c525=function(){return"#5f9ea0ff"},peg$c526="CadetBlue",peg$c527=peg$literalExpectation("CadetBlue",false),peg$c528="chartreuse",peg$c529=peg$literalExpectation("chartreuse",false),peg$c530=function(){return"#7fff00ff"},peg$c531="Chartreuse",peg$c532=peg$literalExpectation("Chartreuse",false),peg$c533="chocolate",peg$c534=peg$literalExpectation("chocolate",false),peg$c535=function(){return"#d2691eff"},peg$c536="Chocolate",peg$c537=peg$literalExpectation("Chocolate",false),peg$c538="coral",peg$c539=peg$literalExpectation("coral",false),peg$c540=function(){return"#ff7f50ff"},peg$c541="Coral",peg$c542=peg$literalExpectation("Coral",false),peg$c543="cornflowerblue",peg$c544=peg$literalExpectation("cornflowerblue",false),peg$c545=function(){return"#6495edff"},peg$c546="CornflowerBlue",peg$c547=peg$literalExpectation("CornflowerBlue",false),peg$c548="cornsilk",peg$c549=peg$literalExpectation("cornsilk",false),peg$c550=function(){return"#fff8dcff"},peg$c551="Cornsilk",peg$c552=peg$literalExpectation("Cornsilk",false),peg$c553="crimson",peg$c554=peg$literalExpectation("crimson",false),peg$c555=function(){return"#dc143cff"},peg$c556="Crimson",peg$c557=peg$literalExpectation("Crimson",false),peg$c558="cyan",peg$c559=peg$literalExpectation("cyan",false),peg$c560="Cyan",peg$c561=peg$literalExpectation("Cyan",false),peg$c562="darkblue",peg$c563=peg$literalExpectation("darkblue",false),peg$c564=function(){return"#00008bff"},peg$c565="DarkBlue",peg$c566=peg$literalExpectation("DarkBlue",false),peg$c567="darkcyan",peg$c568=peg$literalExpectation("darkcyan",false),peg$c569=function(){return"#008b8bff"},peg$c570="DarkCyan",peg$c571=peg$literalExpectation("DarkCyan",false),peg$c572="darkgoldenrod",peg$c573=peg$literalExpectation("darkgoldenrod",false),peg$c574=function(){return"#b8860bff"},peg$c575="DarkGoldenRod",peg$c576=peg$literalExpectation("DarkGoldenRod",false),peg$c577="darkgray",peg$c578=peg$literalExpectation("darkgray",false),peg$c579=function(){return"#a9a9a9ff"},peg$c580="DarkGray",peg$c581=peg$literalExpectation("DarkGray",false),peg$c582="darkgrey",peg$c583=peg$literalExpectation("darkgrey",false),peg$c584="DarkGrey",peg$c585=peg$literalExpectation("DarkGrey",false),peg$c586="darkgreen",peg$c587=peg$literalExpectation("darkgreen",false),peg$c588=function(){return"#006400ff"},peg$c589="DarkGreen",peg$c590=peg$literalExpectation("DarkGreen",false),peg$c591="darkkhaki",peg$c592=peg$literalExpectation("darkkhaki",false),peg$c593=function(){return"#bdb76bff"},peg$c594="DarkKhaki",peg$c595=peg$literalExpectation("DarkKhaki",false),peg$c596="darkmagenta",peg$c597=peg$literalExpectation("darkmagenta",false),peg$c598=function(){return"#8b008bff"},peg$c599="DarkMagenta",peg$c600=peg$literalExpectation("DarkMagenta",false),peg$c601="darkolivegreen",peg$c602=peg$literalExpectation("darkolivegreen",false),peg$c603=function(){return"#556b2fff"},peg$c604="DarkOliveGreen",peg$c605=peg$literalExpectation("DarkOliveGreen",false),peg$c606="darkorange",peg$c607=peg$literalExpectation("darkorange",false),peg$c608=function(){return"#ff8c00ff"},peg$c609="Darkorange",peg$c610=peg$literalExpectation("Darkorange",false),peg$c611="darkorchid",peg$c612=peg$literalExpectation("darkorchid",false),peg$c613=function(){return"#9932ccff"},peg$c614="DarkOrchid",peg$c615=peg$literalExpectation("DarkOrchid",false),peg$c616="darkred",peg$c617=peg$literalExpectation("darkred",false),peg$c618=function(){return"#8b0000ff"},peg$c619="DarkRed",peg$c620=peg$literalExpectation("DarkRed",false),peg$c621="darksalmon",peg$c622=peg$literalExpectation("darksalmon",false),peg$c623=function(){return"#e9967aff"},peg$c624="DarkSalmon",peg$c625=peg$literalExpectation("DarkSalmon",false),peg$c626="darkseagreen",peg$c627=peg$literalExpectation("darkseagreen",false),peg$c628=function(){return"#8fbc8fff"},peg$c629="DarkSeaGreen",peg$c630=peg$literalExpectation("DarkSeaGreen",false),peg$c631="darkslateblue",peg$c632=peg$literalExpectation("darkslateblue",false),peg$c633=function(){return"#483d8bff"},peg$c634="DarkSlateBlue",peg$c635=peg$literalExpectation("DarkSlateBlue",false),peg$c636="darkslategray",peg$c637=peg$literalExpectation("darkslategray",false),peg$c638=function(){return"#2f4f4fff"},peg$c639="DarkSlateGray",peg$c640=peg$literalExpectation("DarkSlateGray",false),peg$c641="darkslategrey",peg$c642=peg$literalExpectation("darkslategrey",false),peg$c643="DarkSlateGrey",peg$c644=peg$literalExpectation("DarkSlateGrey",false),peg$c645="darkturquoise",peg$c646=peg$literalExpectation("darkturquoise",false),peg$c647=function(){return"#00ced1ff"},peg$c648="DarkTurquoise",peg$c649=peg$literalExpectation("DarkTurquoise",false),peg$c650="darkviolet",peg$c651=peg$literalExpectation("darkviolet",false),peg$c652=function(){return"#9400d3ff"},peg$c653="DarkViolet",peg$c654=peg$literalExpectation("DarkViolet",false),peg$c655="deeppink",peg$c656=peg$literalExpectation("deeppink",false),peg$c657=function(){return"#ff1493ff"},peg$c658="DeepPink",peg$c659=peg$literalExpectation("DeepPink",false),peg$c660="deepskyblue",peg$c661=peg$literalExpectation("deepskyblue",false),peg$c662=function(){return"#00bfffff"},peg$c663="DeepSkyBlue",peg$c664=peg$literalExpectation("DeepSkyBlue",false),peg$c665="dimgray",peg$c666=peg$literalExpectation("dimgray",false),peg$c667=function(){return"#696969ff"},peg$c668="DimGray",peg$c669=peg$literalExpectation("DimGray",false),peg$c670="dimgrey",peg$c671=peg$literalExpectation("dimgrey",false),peg$c672="DimGrey",peg$c673=peg$literalExpectation("DimGrey",false),peg$c674="dodgerblue",peg$c675=peg$literalExpectation("dodgerblue",false),peg$c676=function(){return"#1e90ffff"},peg$c677="DodgerBlue",peg$c678=peg$literalExpectation("DodgerBlue",false),peg$c679="firebrick",peg$c680=peg$literalExpectation("firebrick",false),peg$c681=function(){return"#b22222ff"},peg$c682="FireBrick",peg$c683=peg$literalExpectation("FireBrick",false),peg$c684="floralwhite",peg$c685=peg$literalExpectation("floralwhite",false),peg$c686=function(){return"#fffaf0ff"},peg$c687="FloralWhite",peg$c688=peg$literalExpectation("FloralWhite",false),peg$c689="forestgreen",peg$c690=peg$literalExpectation("forestgreen",false),peg$c691=function(){return"#228b22ff"},peg$c692="ForestGreen",peg$c693=peg$literalExpectation("ForestGreen",false),peg$c694="fuchsia",peg$c695=peg$literalExpectation("fuchsia",false),peg$c696=function(){return"#ff00ffff"},peg$c697="Fuchsia",peg$c698=peg$literalExpectation("Fuchsia",false),peg$c699="gainsboro",peg$c700=peg$literalExpectation("gainsboro",false),peg$c701=function(){return"#dcdcdcff"},peg$c702="Gainsboro",peg$c703=peg$literalExpectation("Gainsboro",false),peg$c704="ghostwhite",peg$c705=peg$literalExpectation("ghostwhite",false),peg$c706=function(){return"#f8f8ffff"},peg$c707="GhostWhite",peg$c708=peg$literalExpectation("GhostWhite",false),peg$c709="goldenrod",peg$c710=peg$literalExpectation("goldenrod",false),peg$c711=function(){return"#daa520ff"},peg$c712="GoldenRod",peg$c713=peg$literalExpectation("GoldenRod",false),peg$c714="gold",peg$c715=peg$literalExpectation("gold",false),peg$c716=function(){return"#ffd700ff"},peg$c717="Gold",peg$c718=peg$literalExpectation("Gold",false),peg$c719="gray",peg$c720=peg$literalExpectation("gray",false),peg$c721=function(){return"#808080ff"},peg$c722="Gray",peg$c723=peg$literalExpectation("Gray",false),peg$c724="grey",peg$c725=peg$literalExpectation("grey",false),peg$c726="Grey",peg$c727=peg$literalExpectation("Grey",false),peg$c728="greenyellow",peg$c729=peg$literalExpectation("greenyellow",false),peg$c730=function(){return"#adff2fff"},peg$c731="GreenYellow",peg$c732=peg$literalExpectation("GreenYellow",false),peg$c733="green",peg$c734=peg$literalExpectation("green",false),peg$c735=function(){return"#008000ff"},peg$c736="Green",peg$c737=peg$literalExpectation("Green",false),peg$c738="honeydew",peg$c739=peg$literalExpectation("honeydew",false),peg$c740=function(){return"#f0fff0ff"},peg$c741="HoneyDew",peg$c742=peg$literalExpectation("HoneyDew",false),peg$c743="hotpink",peg$c744=peg$literalExpectation("hotpink",false),peg$c745=function(){return"#ff69b4ff"},peg$c746="HotPink",peg$c747=peg$literalExpectation("HotPink",false),peg$c748="indianred",peg$c749=peg$literalExpectation("indianred",false),peg$c750=function(){return"#cd5c5cff"},peg$c751="IndianRed",peg$c752=peg$literalExpectation("IndianRed",false),peg$c753="indigo",peg$c754=peg$literalExpectation("indigo",false),peg$c755=function(){return"#4b0082ff"},peg$c756="Indigo",peg$c757=peg$literalExpectation("Indigo",false),peg$c758="ivory",peg$c759=peg$literalExpectation("ivory",false),peg$c760=function(){return"#fffff0ff"},peg$c761="Ivory",peg$c762=peg$literalExpectation("Ivory",false),peg$c763="khaki",peg$c764=peg$literalExpectation("khaki",false),peg$c765=function(){return"#f0e68cff"},peg$c766="Khaki",peg$c767=peg$literalExpectation("Khaki",false),peg$c768="lavenderblush",peg$c769=peg$literalExpectation("lavenderblush",false),peg$c770=function(){return"#fff0f5ff"},peg$c771="LavenderBlush",peg$c772=peg$literalExpectation("LavenderBlush",false),peg$c773="lavender",peg$c774=peg$literalExpectation("lavender",false),peg$c775=function(){return"#e6e6faff"},peg$c776="Lavender",peg$c777=peg$literalExpectation("Lavender",false),peg$c778="lawngreen",peg$c779=peg$literalExpectation("lawngreen",false),peg$c780=function(){return"#7cfc00ff"},peg$c781="LawnGreen",peg$c782=peg$literalExpectation("LawnGreen",false),peg$c783="lemonchiffon",peg$c784=peg$literalExpectation("lemonchiffon",false),peg$c785=function(){return"#fffacdff"},peg$c786="LemonChiffon",peg$c787=peg$literalExpectation("LemonChiffon",false),peg$c788="lightblue",peg$c789=peg$literalExpectation("lightblue",false),peg$c790=function(){return"#add8e6ff"},peg$c791="LightBlue",peg$c792=peg$literalExpectation("LightBlue",false),peg$c793="lightcoral",peg$c794=peg$literalExpectation("lightcoral",false),peg$c795=function(){return"#f08080ff"},peg$c796="LightCoral",peg$c797=peg$literalExpectation("LightCoral",false),peg$c798="lightcyan",peg$c799=peg$literalExpectation("lightcyan",false),peg$c800=function(){return"#e0ffffff"},peg$c801="LightCyan",peg$c802=peg$literalExpectation("LightCyan",false),peg$c803="lightgoldenrodyellow",peg$c804=peg$literalExpectation("lightgoldenrodyellow",false),peg$c805=function(){return"#fafad2ff"},peg$c806="LightGoldenRodYellow",peg$c807=peg$literalExpectation("LightGoldenRodYellow",false),peg$c808="lightgray",peg$c809=peg$literalExpectation("lightgray",false),peg$c810=function(){return"#d3d3d3ff"},peg$c811="LightGray",peg$c812=peg$literalExpectation("LightGray",false),peg$c813="lightgrey",peg$c814=peg$literalExpectation("lightgrey",false),peg$c815="LightGrey",peg$c816=peg$literalExpectation("LightGrey",false),peg$c817="lightgreen",peg$c818=peg$literalExpectation("lightgreen",false),peg$c819=function(){return"#90ee90ff"},peg$c820="LightGreen",peg$c821=peg$literalExpectation("LightGreen",false),peg$c822="lightpink",peg$c823=peg$literalExpectation("lightpink",false),peg$c824=function(){return"#ffb6c1ff"},peg$c825="LightPink",peg$c826=peg$literalExpectation("LightPink",false),peg$c827="lightsalmon",peg$c828=peg$literalExpectation("lightsalmon",false),peg$c829=function(){return"#ffa07aff"},peg$c830="LightSalmon",peg$c831=peg$literalExpectation("LightSalmon",false),peg$c832="lightseagreen",peg$c833=peg$literalExpectation("lightseagreen",false),peg$c834=function(){return"#20b2aaff"},peg$c835="LightSeaGreen",peg$c836=peg$literalExpectation("LightSeaGreen",false),peg$c837="lightskyblue",peg$c838=peg$literalExpectation("lightskyblue",false),peg$c839=function(){return"#87cefaff"},peg$c840="LightSkyBlue",peg$c841=peg$literalExpectation("LightSkyBlue",false),peg$c842="lightslategray",peg$c843=peg$literalExpectation("lightslategray",false),peg$c844=function(){return"#778899ff"},peg$c845="LightSlateGray",peg$c846=peg$literalExpectation("LightSlateGray",false),peg$c847="lightslategrey",peg$c848=peg$literalExpectation("lightslategrey",false),peg$c849="LightSlateGrey",peg$c850=peg$literalExpectation("LightSlateGrey",false),peg$c851="lightsteelblue",peg$c852=peg$literalExpectation("lightsteelblue",false),peg$c853=function(){return"#b0c4deff"},peg$c854="LightSteelBlue",peg$c855=peg$literalExpectation("LightSteelBlue",false),peg$c856="lightyellow",peg$c857=peg$literalExpectation("lightyellow",false),peg$c858=function(){return"#ffffe0ff"},peg$c859="LightYellow",peg$c860=peg$literalExpectation("LightYellow",false),peg$c861="limegreen",peg$c862=peg$literalExpectation("limegreen",false),peg$c863=function(){return"#32cd32ff"},peg$c864="LimeGreen",peg$c865=peg$literalExpectation("LimeGreen",false),peg$c866="lime",peg$c867=peg$literalExpectation("lime",false),peg$c868=function(){return"#00ff00ff"},peg$c869="Lime",peg$c870=peg$literalExpectation("Lime",false),peg$c871="linen",peg$c872=peg$literalExpectation("linen",false),peg$c873=function(){return"#faf0e6ff"},peg$c874="Linen",peg$c875=peg$literalExpectation("Linen",false),peg$c876="magenta",peg$c877=peg$literalExpectation("magenta",false),peg$c878="Magenta",peg$c879=peg$literalExpectation("Magenta",false),peg$c880="maroon",peg$c881=peg$literalExpectation("maroon",false),peg$c882=function(){return"#800000ff"},peg$c883="Maroon",peg$c884=peg$literalExpectation("Maroon",false),peg$c885="mediumaquamarine",peg$c886=peg$literalExpectation("mediumaquamarine",false),peg$c887=function(){return"#66cdaaff"},peg$c888="MediumAquaMarine",peg$c889=peg$literalExpectation("MediumAquaMarine",false),peg$c890="mediumblue",peg$c891=peg$literalExpectation("mediumblue",false),peg$c892=function(){return"#0000cdff"},peg$c893="MediumBlue",peg$c894=peg$literalExpectation("MediumBlue",false),peg$c895="mediumorchid",peg$c896=peg$literalExpectation("mediumorchid",false),peg$c897=function(){return"#ba55d3ff"},peg$c898="MediumOrchid",peg$c899=peg$literalExpectation("MediumOrchid",false),peg$c900="mediumpurple",peg$c901=peg$literalExpectation("mediumpurple",false),peg$c902=function(){return"#9370d8ff"},peg$c903="MediumPurple",peg$c904=peg$literalExpectation("MediumPurple",false),peg$c905="mediumseagreen",peg$c906=peg$literalExpectation("mediumseagreen",false),peg$c907=function(){return"#3cb371ff"},peg$c908="MediumSeaGreen",peg$c909=peg$literalExpectation("MediumSeaGreen",false),peg$c910="mediumslateblue",peg$c911=peg$literalExpectation("mediumslateblue",false),peg$c912=function(){return"#7b68eeff"},peg$c913="MediumSlateBlue",peg$c914=peg$literalExpectation("MediumSlateBlue",false),peg$c915="mediumspringgreen",peg$c916=peg$literalExpectation("mediumspringgreen",false),peg$c917=function(){return"#00fa9aff"},peg$c918="MediumSpringGreen",peg$c919=peg$literalExpectation("MediumSpringGreen",false),peg$c920="mediumturquoise",peg$c921=peg$literalExpectation("mediumturquoise",false),peg$c922=function(){return"#48d1ccff"},peg$c923="MediumTurquoise",peg$c924=peg$literalExpectation("MediumTurquoise",false),peg$c925="mediumvioletred",peg$c926=peg$literalExpectation("mediumvioletred",false),peg$c927=function(){return"#c71585ff"},peg$c928="MediumVioletRed",peg$c929=peg$literalExpectation("MediumVioletRed",false),peg$c930="midnightblue",peg$c931=peg$literalExpectation("midnightblue",false),peg$c932=function(){return"#191970ff"},peg$c933="MidnightBlue",peg$c934=peg$literalExpectation("MidnightBlue",false),peg$c935="mintcream",peg$c936=peg$literalExpectation("mintcream",false),peg$c937=function(){return"#f5fffaff"},peg$c938="MintCream",peg$c939=peg$literalExpectation("MintCream",false),peg$c940="mistyrose",peg$c941=peg$literalExpectation("mistyrose",false),peg$c942=function(){return"#ffe4e1ff"},peg$c943="MistyRose",peg$c944=peg$literalExpectation("MistyRose",false),peg$c945="moccasin",peg$c946=peg$literalExpectation("moccasin",false),peg$c947=function(){return"#ffe4b5ff"},peg$c948="Moccasin",peg$c949=peg$literalExpectation("Moccasin",false),peg$c950="navajowhite",peg$c951=peg$literalExpectation("navajowhite",false),peg$c952=function(){return"#ffdeadff"},peg$c953="NavajoWhite",peg$c954=peg$literalExpectation("NavajoWhite",false),peg$c955="navy",peg$c956=peg$literalExpectation("navy",false),peg$c957=function(){return"#000080ff"},peg$c958="Navy",peg$c959=peg$literalExpectation("Navy",false),peg$c960="oldlace",peg$c961=peg$literalExpectation("oldlace",false),peg$c962=function(){return"#fdf5e6ff"},peg$c963="OldLace",peg$c964=peg$literalExpectation("OldLace",false),peg$c965="olivedrab",peg$c966=peg$literalExpectation("olivedrab",false),peg$c967=function(){return"#6b8e23ff"},peg$c968="OliveDrab",peg$c969=peg$literalExpectation("OliveDrab",false),peg$c970="olive",peg$c971=peg$literalExpectation("olive",false),peg$c972=function(){return"#808000ff"},peg$c973="Olive",peg$c974=peg$literalExpectation("Olive",false),peg$c975="orangered",peg$c976=peg$literalExpectation("orangered",false),peg$c977=function(){return"#ff4500ff"},peg$c978="OrangeRed",peg$c979=peg$literalExpectation("OrangeRed",false),peg$c980="orange",peg$c981=peg$literalExpectation("orange",false),peg$c982=function(){return"#ffa500ff"},peg$c983="Orange",peg$c984=peg$literalExpectation("Orange",false),peg$c985="orchid",peg$c986=peg$literalExpectation("orchid",false),peg$c987=function(){return"#da70d6ff"},peg$c988="Orchid",peg$c989=peg$literalExpectation("Orchid",false),peg$c990="palegoldenrod",peg$c991=peg$literalExpectation("palegoldenrod",false),peg$c992=function(){return"#eee8aaff"},peg$c993="PaleGoldenRod",peg$c994=peg$literalExpectation("PaleGoldenRod",false),peg$c995="palegreen",peg$c996=peg$literalExpectation("palegreen",false),peg$c997=function(){return"#98fb98ff"},peg$c998="PaleGreen",peg$c999=peg$literalExpectation("PaleGreen",false),peg$c1000="paleturquoise",peg$c1001=peg$literalExpectation("paleturquoise",false),peg$c1002=function(){return"#afeeeeff"},peg$c1003="PaleTurquoise",peg$c1004=peg$literalExpectation("PaleTurquoise",false),peg$c1005="palevioletred",peg$c1006=peg$literalExpectation("palevioletred",false),peg$c1007=function(){return"#d87093ff"},peg$c1008="PaleVioletRed",peg$c1009=peg$literalExpectation("PaleVioletRed",false),peg$c1010="papayawhip",peg$c1011=peg$literalExpectation("papayawhip",false),peg$c1012=function(){return"#ffefd5ff"},peg$c1013="PapayaWhip",peg$c1014=peg$literalExpectation("PapayaWhip",false),peg$c1015="peachpuff",peg$c1016=peg$literalExpectation("peachpuff",false),peg$c1017=function(){return"#ffdab9ff"},peg$c1018="PeachPuff",peg$c1019=peg$literalExpectation("PeachPuff",false),peg$c1020="peru",peg$c1021=peg$literalExpectation("peru",false),peg$c1022=function(){return"#cd853fff"},peg$c1023="Peru",peg$c1024=peg$literalExpectation("Peru",false),peg$c1025="pink",peg$c1026=peg$literalExpectation("pink",false),peg$c1027=function(){return"#ffc0cbff"},peg$c1028="Pink",peg$c1029=peg$literalExpectation("Pink",false),peg$c1030="plum",peg$c1031=peg$literalExpectation("plum",false),peg$c1032=function(){return"#dda0ddff"},peg$c1033="Plum",peg$c1034=peg$literalExpectation("Plum",false),peg$c1035="powderblue",peg$c1036=peg$literalExpectation("powderblue",false),peg$c1037=function(){return"#b0e0e6ff"},peg$c1038="PowderBlue",peg$c1039=peg$literalExpectation("PowderBlue",false),peg$c1040="purple",peg$c1041=peg$literalExpectation("purple",false),peg$c1042=function(){return"#800080ff"},peg$c1043="Purple",peg$c1044=peg$literalExpectation("Purple",false),peg$c1045="red",peg$c1046=peg$literalExpectation("red",false),peg$c1047=function(){return"#ff0000ff"},peg$c1048="Red",peg$c1049=peg$literalExpectation("Red",false),peg$c1050="rosybrown",peg$c1051=peg$literalExpectation("rosybrown",false),peg$c1052=function(){return"#bc8f8fff"},peg$c1053="RosyBrown",peg$c1054=peg$literalExpectation("RosyBrown",false),peg$c1055="royalblue",peg$c1056=peg$literalExpectation("royalblue",false),peg$c1057=function(){return"#4169e1ff"},peg$c1058="RoyalBlue",peg$c1059=peg$literalExpectation("RoyalBlue",false),peg$c1060="saddlebrown",peg$c1061=peg$literalExpectation("saddlebrown",false),peg$c1062=function(){return"#8b4513ff"},peg$c1063="SaddleBrown",peg$c1064=peg$literalExpectation("SaddleBrown",false),peg$c1065="salmon",peg$c1066=peg$literalExpectation("salmon",false),peg$c1067=function(){return"#fa8072ff"},peg$c1068="Salmon",peg$c1069=peg$literalExpectation("Salmon",false),peg$c1070="sandybrown",peg$c1071=peg$literalExpectation("sandybrown",false),peg$c1072=function(){return"#f4a460ff"},peg$c1073="SandyBrown",peg$c1074=peg$literalExpectation("SandyBrown",false),peg$c1075="seagreen",peg$c1076=peg$literalExpectation("seagreen",false),peg$c1077=function(){return"#2e8b57ff"},peg$c1078="SeaGreen",peg$c1079=peg$literalExpectation("SeaGreen",false),peg$c1080="seashell",peg$c1081=peg$literalExpectation("seashell",false),peg$c1082=function(){return"#fff5eeff"},peg$c1083="SeaShell",peg$c1084=peg$literalExpectation("SeaShell",false),peg$c1085="sienna",peg$c1086=peg$literalExpectation("sienna",false),peg$c1087=function(){return"#a0522dff"},peg$c1088="Sienna",peg$c1089=peg$literalExpectation("Sienna",false),peg$c1090="silver",peg$c1091=peg$literalExpectation("silver",false),peg$c1092=function(){return"#c0c0c0ff"},peg$c1093="Silver",peg$c1094=peg$literalExpectation("Silver",false),peg$c1095="skyblue",peg$c1096=peg$literalExpectation("skyblue",false),peg$c1097=function(){return"#87ceebff"},peg$c1098="SkyBlue",peg$c1099=peg$literalExpectation("SkyBlue",false),peg$c1100="slateblue",peg$c1101=peg$literalExpectation("slateblue",false),peg$c1102=function(){return"#6a5acdff"},peg$c1103="SlateBlue",peg$c1104=peg$literalExpectation("SlateBlue",false),peg$c1105="slategray",peg$c1106=peg$literalExpectation("slategray",false),peg$c1107=function(){return"#708090ff"},peg$c1108="SlateGray",peg$c1109=peg$literalExpectation("SlateGray",false),peg$c1110="slategrey",peg$c1111=peg$literalExpectation("slategrey",false),peg$c1112="SlateGrey",peg$c1113=peg$literalExpectation("SlateGrey",false),peg$c1114="snow",peg$c1115=peg$literalExpectation("snow",false),peg$c1116=function(){return"#fffafaff"},peg$c1117="Snow",peg$c1118=peg$literalExpectation("Snow",false),peg$c1119="springgreen",peg$c1120=peg$literalExpectation("springgreen",false),peg$c1121=function(){return"#00ff7fff"},peg$c1122="SpringGreen",peg$c1123=peg$literalExpectation("SpringGreen",false),peg$c1124="steelblue",peg$c1125=peg$literalExpectation("steelblue",false),peg$c1126=function(){return"#4682b4ff"},peg$c1127="SteelBlue",peg$c1128=peg$literalExpectation("SteelBlue",false),peg$c1129="tan",peg$c1130=peg$literalExpectation("tan",false),peg$c1131=function(){return"#d2b48cff"},peg$c1132="Tan",peg$c1133=peg$literalExpectation("Tan",false),peg$c1134="teal",peg$c1135=peg$literalExpectation("teal",false),peg$c1136=function(){return"#008080ff"},peg$c1137="Teal",peg$c1138=peg$literalExpectation("Teal",false),peg$c1139="thistle",peg$c1140=peg$literalExpectation("thistle",false),peg$c1141=function(){return"#d8bfd8ff"},peg$c1142="Thistle",peg$c1143=peg$literalExpectation("Thistle",false),peg$c1144="tomato",peg$c1145=peg$literalExpectation("tomato",false),peg$c1146=function(){return"#ff6347ff"},peg$c1147="Tomato",peg$c1148=peg$literalExpectation("Tomato",false),peg$c1149="turquoise",peg$c1150=peg$literalExpectation("turquoise",false),peg$c1151=function(){return"#40e0d0ff"},peg$c1152="Turquoise",peg$c1153=peg$literalExpectation("Turquoise",false),peg$c1154="violet",peg$c1155=peg$literalExpectation("violet",false),peg$c1156=function(){return"#ee82eeff"},peg$c1157="Violet",peg$c1158=peg$literalExpectation("Violet",false),peg$c1159="wheat",peg$c1160=peg$literalExpectation("wheat",false),peg$c1161=function(){return"#f5deb3ff"},peg$c1162="Wheat",peg$c1163=peg$literalExpectation("Wheat",false),peg$c1164="whitesmoke",peg$c1165=peg$literalExpectation("whitesmoke",false),peg$c1166=function(){return"#f5f5f5ff"},peg$c1167="WhiteSmoke",peg$c1168=peg$literalExpectation("WhiteSmoke",false),peg$c1169="white",peg$c1170=peg$literalExpectation("white",false),peg$c1171=function(){return"#ffffffff"},peg$c1172="White",peg$c1173=peg$literalExpectation("White",false),peg$c1174="yellowgreen",peg$c1175=peg$literalExpectation("yellowgreen",false),peg$c1176=function(){return"#9acd32ff"},peg$c1177="YellowGreen",peg$c1178=peg$literalExpectation("YellowGreen",false),peg$c1179="yellow",peg$c1180=peg$literalExpectation("yellow",false),peg$c1181=function(){return"#ffff00ff"},peg$c1182="Yellow",peg$c1183=peg$literalExpectation("Yellow",false),peg$c1184=function(lab){return lab},peg$c1185="#",peg$c1186=peg$literalExpectation("#",false),peg$c1187=function(r,g,b){return`#${r}${r}${g}${g}${b}${b}ff`},peg$c1188=function(r1,r2,g1,g2,b1,b2){return`#${r1}${r2}${g1}${g2}${b1}${b2}ff`},peg$c1189=function(r,g,b,a){return`#${r}${r}${g}${g}${b}${b}${a}${a}`},peg$c1190=function(r1,r2,g1,g2,b1,b2,a1,a2){return`#${r1}${r2}${g1}${g2}${b1}${b2}${a1}${a2}`},peg$c1191=peg$otherExpectation("color"),peg$c1192="arc_label",peg$c1193=peg$literalExpectation("arc_label",false),peg$c1194="head_label",peg$c1195=peg$literalExpectation("head_label",false),peg$c1196="tail_label",peg$c1197=peg$literalExpectation("tail_label",false),peg$c1198=":",peg$c1199=peg$literalExpectation(":",false),peg$c1200=";",peg$c1201=peg$literalExpectation(";",false),peg$c1202=function(key,value){return{key:key,value:value}},peg$c1203=peg$otherExpectation("single edge color"),peg$c1204="edge_color",peg$c1205=peg$literalExpectation("edge_color",false),peg$c1206=function(value){return{key:"single_edge_color",value:value}},peg$c1207=peg$otherExpectation("transition line style"),peg$c1208="line-style",peg$c1209=peg$literalExpectation("line-style",false),peg$c1210=function(value){return{key:"transition_line_style",value:value}},peg$c1211="{",peg$c1212=peg$literalExpectation("{",false),peg$c1213="}",peg$c1214=peg$literalExpectation("}",false),peg$c1215=function(items){return items},peg$c1216="%",peg$c1217=peg$literalExpectation("%",false),peg$c1218=function(value){return{key:"arrow probability",value:value}},peg$c1219="[",peg$c1220=peg$literalExpectation("[",false),peg$c1221="]",peg$c1222=peg$literalExpectation("]",false),peg$c1223=function(names){return names.map((i=>i[0]))},peg$c1224="+|",peg$c1225=peg$literalExpectation("+|",false),peg$c1226=function(nzd,dd){return{key:"stripe",value:parseInt(`${nzd}${dd}`,10)}},peg$c1227="-|",peg$c1228=peg$literalExpectation("-|",false),peg$c1229=function(nzd,dd){return{key:"stripe",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1230="+",peg$c1231=peg$literalExpectation("+",false),peg$c1232=function(nzd,dd){return{key:"cycle",value:parseInt(`${nzd}${dd}`,10)}},peg$c1233="-",peg$c1234=peg$literalExpectation("-",false),peg$c1235=function(nzd,dd){return{key:"cycle",value:-1*parseInt(`${nzd}${dd}`,10)}},peg$c1236="+0",peg$c1237=peg$literalExpectation("+0",false),peg$c1238=function(){return{key:"cycle",value:0}},peg$c1239=function(r_action,r_prob,l_desc,arrow,r_desc,l_prob,l_action,label,tail){const base={kind:arrow,to:label};if(tail&&tail!==[]){base.se=tail}if(l_desc){base.l_desc=l_desc}if(r_desc){base.r_desc=r_desc}if(l_action){base.l_action=l_action}if(r_action){base.r_action=r_action}if(l_prob){base.l_probability=l_prob.value}if(r_prob){base.r_probability=r_prob.value}return base},peg$c1240=function(label,se){const base={key:"transition",from:label};if(se&&se!==[]){base.se=se}return base},peg$c1241="whargarbl",peg$c1242=peg$literalExpectation("whargarbl",false),peg$c1243="todo",peg$c1244=peg$literalExpectation("todo",false),peg$c1245=function(validationkey,value){return{key:validationkey,value:value}},peg$c1246="validation",peg$c1247=peg$literalExpectation("validation",false),peg$c1248="};",peg$c1249=peg$literalExpectation("};",false),peg$c1250=function(validation_items){return{config_kind:"validation",config_items:validation_items||[]}},peg$c1251="dot",peg$c1252=peg$literalExpectation("dot",false),peg$c1253="circo",peg$c1254=peg$literalExpectation("circo",false),peg$c1255="fdp",peg$c1256=peg$literalExpectation("fdp",false),peg$c1257="neato",peg$c1258=peg$literalExpectation("neato",false),peg$c1259="state",peg$c1260=peg$literalExpectation("state",false),peg$c1261=function(state_items){return{key:"default_state_config",value:state_items||[]}},peg$c1262="start_state",peg$c1263=peg$literalExpectation("start_state",false),peg$c1264=function(state_items){return{key:"default_start_state_config",value:state_items||[]}},peg$c1265="end_state",peg$c1266=peg$literalExpectation("end_state",false),peg$c1267=function(state_items){return{key:"default_end_state_config",value:state_items||[]}},peg$c1268="active_state",peg$c1269=peg$literalExpectation("active_state",false),peg$c1270=function(state_items){return{key:"default_active_state_config",value:state_items||[]}},peg$c1271="terminal_state",peg$c1272=peg$literalExpectation("terminal_state",false),peg$c1273=function(state_items){return{key:"default_terminal_state_config",value:state_items||[]}},peg$c1274="hooked_state",peg$c1275=peg$literalExpectation("hooked_state",false),peg$c1276=function(state_items){return{key:"default_hooked_state_config",value:state_items||[]}},peg$c1277=function(actionkey,value){return{key:actionkey,value:value}},peg$c1278="action",peg$c1279=peg$literalExpectation("action",false),peg$c1280=function(action_items){return{config_kind:"action",config_items:action_items||[]}},peg$c1281=function(key,value){return{key:key,value:value}},peg$c1282=peg$otherExpectation("graph default edge color"),peg$c1283=function(value){return{key:"graph_default_edge_color",value:value}},peg$c1284="transition",peg$c1285=peg$literalExpectation("transition",false),peg$c1286=function(transition_items){return{config_kind:"transition",config_items:transition_items||[]}},peg$c1287="graph_layout",peg$c1288=peg$literalExpectation("graph_layout",false),peg$c1289=function(value){return{key:"graph_layout",value:value}},peg$c1290="start_states",peg$c1291=peg$literalExpectation("start_states",false),peg$c1292=function(value){return{key:"start_states",value:value}},peg$c1293="end_states",peg$c1294=peg$literalExpectation("end_states",false),peg$c1295=function(value){return{key:"end_states",value:value}},peg$c1296="graph_bg_color",peg$c1297=peg$literalExpectation("graph_bg_color",false),peg$c1298=function(value){return{key:"graph_bg_color",value:value}},peg$c1299=peg$otherExpectation("configuration"),peg$c1300="MIT",peg$c1301=peg$literalExpectation("MIT",false),peg$c1302="BSD 2-clause",peg$c1303=peg$literalExpectation("BSD 2-clause",false),peg$c1304="BSD 3-clause",peg$c1305=peg$literalExpectation("BSD 3-clause",false),peg$c1306="Apache 2.0",peg$c1307=peg$literalExpectation("Apache 2.0",false),peg$c1308="Mozilla 2.0",peg$c1309=peg$literalExpectation("Mozilla 2.0",false),peg$c1310="Public domain",peg$c1311=peg$literalExpectation("Public domain",false),peg$c1312="GPL v2",peg$c1313=peg$literalExpectation("GPL v2",false),peg$c1314="GPL v3",peg$c1315=peg$literalExpectation("GPL v3",false),peg$c1316="LGPL v2.1",peg$c1317=peg$literalExpectation("LGPL v2.1",false),peg$c1318="LGPL v3.0",peg$c1319=peg$literalExpectation("LGPL v3.0",false),peg$c1320="Unknown",peg$c1321=peg$literalExpectation("Unknown",false),peg$c1322=peg$otherExpectation("direction"),peg$c1323="up",peg$c1324=peg$literalExpectation("up",false),peg$c1325="right",peg$c1326=peg$literalExpectation("right",false),peg$c1327="down",peg$c1328=peg$literalExpectation("down",false),peg$c1329="left",peg$c1330=peg$literalExpectation("left",false),peg$c1331=peg$otherExpectation("hook definition (open/closed)"),peg$c1332="open",peg$c1333=peg$literalExpectation("open",false),peg$c1334="closed",peg$c1335=peg$literalExpectation("closed",false),peg$c1336="machine_author",peg$c1337=peg$literalExpectation("machine_author",false),peg$c1338=function(value){return{key:"machine_author",value:value}},peg$c1339="machine_contributor",peg$c1340=peg$literalExpectation("machine_contributor",false),peg$c1341=function(value){return{key:"machine_contributor",value:value}},peg$c1342="machine_comment",peg$c1343=peg$literalExpectation("machine_comment",false),peg$c1344=function(value){return{key:"machine_comment",value:value}},peg$c1345="machine_definition",peg$c1346=peg$literalExpectation("machine_definition",false),peg$c1347=function(value){return{key:"machine_definition",value:value}},peg$c1348="machine_name",peg$c1349=peg$literalExpectation("machine_name",false),peg$c1350=function(value){return{key:"machine_name",value:value}},peg$c1354="machine_version",peg$c1355=peg$literalExpectation("machine_version",false),peg$c1356=function(value){return{key:"machine_version",value:value}},peg$c1357="machine_license",peg$c1358=peg$literalExpectation("machine_license",false),peg$c1359=function(value){return{key:"machine_license",value:value}},peg$c1360="machine_language",peg$c1361=peg$literalExpectation("machine_language",false),peg$c1362=function(value){return{key:"machine_language",value:value}},peg$c1363="fsl_version",peg$c1364=peg$literalExpectation("fsl_version",false),peg$c1365=function(value){return{key:"fsl_version",value:value}},peg$c1366="theme",peg$c1367=peg$literalExpectation("theme",false),peg$c1368=function(value){return{key:"theme",value:value}},peg$c1369="flow",peg$c1370=peg$literalExpectation("flow",false),peg$c1371=function(value){return{key:"flow",value:value}},peg$c1372="hooks",peg$c1373=peg$literalExpectation("hooks",false),peg$c1374=function(value){return{key:"hook_definition",value:value}},peg$c1375="dot_preamble",peg$c1376=peg$literalExpectation("dot_preamble",false),peg$c1377=function(value){return{key:"dot_preamble",value:value}},peg$c1378=peg$otherExpectation("machine attribute"),peg$c1379="label",peg$c1380=peg$literalExpectation("label",false),peg$c1381=function(value){return{key:"state-label",value:value}},peg$c1382="color",peg$c1383=peg$literalExpectation("color",false),peg$c1384=function(value){return{key:"color",value:value}},peg$c1385=peg$otherExpectation("text color"),peg$c1386="text-color",peg$c1387=peg$literalExpectation("text-color",false),peg$c1388=function(value){return{key:"text-color",value:value}},peg$c1389=peg$otherExpectation("background color"),peg$c1390="background-color",peg$c1391=peg$literalExpectation("background-color",false),peg$c1392=function(value){return{key:"background-color",value:value}},peg$c1393=peg$otherExpectation("border color"),peg$c1394="border-color",peg$c1395=peg$literalExpectation("border-color",false),peg$c1396=function(value){return{key:"border-color",value:value}},peg$c1397=peg$otherExpectation("shape"),peg$c1398="shape",peg$c1399=peg$literalExpectation("shape",false),peg$c1400=function(value){return{key:"shape",value:value}},peg$c1401=peg$otherExpectation("corners"),peg$c1402="corners",peg$c1403=peg$literalExpectation("corners",false),peg$c1404=function(value){return{key:"corners",value:value}},peg$c1405=peg$otherExpectation("linestyle"),peg$c1406=function(value){return{key:"line-style",value:value}},peg$c1407="linestyle",peg$c1408=peg$literalExpectation("linestyle",false),peg$c1409=peg$otherExpectation("state property"),peg$c1410="property",peg$c1411=peg$literalExpectation("property",false),peg$c1412=function(name,value){return{key:"state_property",name:name,value:value}},peg$c1413="required",peg$c1414=peg$literalExpectation("required",false),peg$c1415=function(name,value){return{key:"state_property",name:name,value:value,required:true}},peg$c1416=function(name,value){return{key:"state_declaration",name:name,value:value}},peg$c1417="&",peg$c1418=peg$literalExpectation("&",false),peg$c1419=function(name,value){return{key:"named_list",name:name,value:value}},peg$c1420=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value,required:true}},peg$c1421=function(name){return{key:"property_definition",name:name,required:true}},peg$c1422=function(name,default_value){return{key:"property_definition",name:name,default_value:default_value}},peg$c1423=function(name){return{key:"property_definition",name:name}},peg$c1424="arrange",peg$c1425=peg$literalExpectation("arrange",false),peg$c1426=function(value){return{key:"arrange_declaration",value:value}},peg$c1427="arrange-start",peg$c1428=peg$literalExpectation("arrange-start",false),peg$c1429=function(value){return{key:"arrange_start_declaration",value:value}},peg$c1430="arrange-end",peg$c1431=peg$literalExpectation("arrange-end",false),peg$c1432=function(value){return{key:"arrange_end_declaration",value:value}},peg$c1433=peg$otherExpectation("arrange declaration"),peg$currPos=0,peg$savedPos=0,peg$posDetailsCache=[{line:1,column:1}],peg$maxFailPos=0,peg$maxFailExpected=[],peg$silentFails=0,peg$result;if("startRule"in options){if(!(options.startRule in peg$startRuleFunctions)){throw new Error("Can't start parsing from rule \""+options.startRule+'".')}peg$startRuleFunction=peg$startRuleFunctions[options.startRule]}function text(){return input.substring(peg$savedPos,peg$currPos)}function peg$literalExpectation(text,ignoreCase){return{type:"literal",text:text,ignoreCase:ignoreCase}}function peg$classExpectation(parts,inverted,ignoreCase){return{type:"class",parts:parts,inverted:inverted,ignoreCase:ignoreCase}}function peg$anyExpectation(){return{type:"any"}}function peg$endExpectation(){return{type:"end"}}function peg$otherExpectation(description){return{type:"other",description:description}}function peg$computePosDetails(pos){var details=peg$posDetailsCache[pos],p;if(details){return details}else{p=pos-1;while(!peg$posDetailsCache[p]){p--}details=peg$posDetailsCache[p];details={line:details.line,column:details.column};while(ppeg$maxFailPos){peg$maxFailPos=peg$currPos;peg$maxFailExpected=[]}peg$maxFailExpected.push(expected)}function peg$buildStructuredError(expected,found,location){return new peg$SyntaxError(peg$SyntaxError.buildMessage(expected,found),expected,found,location)}function peg$parseDocument(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseTermList();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c0(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTheme(){var s0;if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s0=peg$c3;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c5){s0=peg$c5;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c6)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c7){s0=peg$c7;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c8)}}}}}return s0}function peg$parseGvizShape(){var s0;if(input.substr(peg$currPos,5)===peg$c9){s0=peg$c9;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c10)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c11){s0=peg$c11;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c12)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c13){s0=peg$c13;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c14)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c15){s0=peg$c15;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c16)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c17){s0=peg$c17;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c18)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c19){s0=peg$c19;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c20)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c21){s0=peg$c21;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c22)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c23){s0=peg$c23;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c24)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c25){s0=peg$c25;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c26)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c27){s0=peg$c27;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c28)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c29){s0=peg$c29;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c30)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c31){s0=peg$c31;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c32)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c33){s0=peg$c33;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c34)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c35){s0=peg$c35;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c36)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c37){s0=peg$c37;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c38)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c39){s0=peg$c39;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c40)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c41){s0=peg$c41;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c42)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c43){s0=peg$c43;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c44)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c45){s0=peg$c45;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c46)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c47){s0=peg$c47;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c48)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c49){s0=peg$c49;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c50)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c51){s0=peg$c51;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c52)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c53){s0=peg$c53;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c54)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c55){s0=peg$c55;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c56)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c57){s0=peg$c57;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c58)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c59){s0=peg$c59;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c60)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c61){s0=peg$c61;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c62)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c63){s0=peg$c63;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c64)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c65){s0=peg$c65;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c66)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c67){s0=peg$c67;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c68)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c69){s0=peg$c69;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c70)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1){s0=peg$c1;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c2)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c71){s0=peg$c71;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c72)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c73){s0=peg$c73;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c74)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c75){s0=peg$c75;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c76)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c77){s0=peg$c77;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c78)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c79){s0=peg$c79;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c80)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c81){s0=peg$c81;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c82)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c83){s0=peg$c83;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c84)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c85){s0=peg$c85;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c86)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c87){s0=peg$c87;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c88)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c89){s0=peg$c89;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c90)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c91){s0=peg$c91;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c92)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c93){s0=peg$c93;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c94)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,15)===peg$c95){s0=peg$c95;peg$currPos+=15}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c96)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c97){s0=peg$c97;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c98)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,14)===peg$c99){s0=peg$c99;peg$currPos+=14}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c100)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c101){s0=peg$c101;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c102)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c103){s0=peg$c103;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c104)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c105){s0=peg$c105;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c106)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c107){s0=peg$c107;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c108)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c109){s0=peg$c109;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c110)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c111){s0=peg$c111;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c112)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c113){s0=peg$c113;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c114)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c115){s0=peg$c115;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c116)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c117){s0=peg$c117;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c118)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c119){s0=peg$c119;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c120)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c121){s0=peg$c121;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c122)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c123){s0=peg$c123;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c124)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c125){s0=peg$c125;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c126)}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseForwardLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c128){s0=peg$c128;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c129)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8594){s1=peg$c130;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c131)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c132()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c127)}}return s0}function peg$parseTwoWayLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c134){s0=peg$c134;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c135)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8596){s1=peg$c136;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c137)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c138()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c133)}}return s0}function peg$parseBackLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c140){s0=peg$c140;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c141)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8592){s1=peg$c142;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c144()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c139)}}return s0}function peg$parseForwardFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c146){s0=peg$c146;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c147)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8658){s1=peg$c148;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c149)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c150()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c145)}}return s0}function peg$parseTwoWayFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c152){s0=peg$c152;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c153)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8660){s1=peg$c154;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c156()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c151)}}return s0}function peg$parseBackFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c158){s0=peg$c158;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c159)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8656){s1=peg$c160;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c161)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c162()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c157)}}return s0}function peg$parseForwardTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c164){s0=peg$c164;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c165)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8603){s1=peg$c166;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c167)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c168()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c163)}}return s0}function peg$parseTwoWayTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,3)===peg$c170){s0=peg$c170;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c171)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8622){s1=peg$c172;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c174()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c169)}}return s0}function peg$parseBackTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c176){s0=peg$c176;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c177)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8602){s1=peg$c178;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c179)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c180()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c175)}}return s0}function peg$parseLightFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c182){s0=peg$c182;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c183)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c184){s1=peg$c184;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c185)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c186()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c181)}}return s0}function peg$parseLightTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c188){s0=peg$c188;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c189)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c190){s1=peg$c190;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c191)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c192()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c187)}}return s0}function peg$parseFatLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c194){s0=peg$c194;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c195)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c196){s1=peg$c196;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c197)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c198()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c193)}}return s0}function peg$parseFatTildeArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c200){s0=peg$c200;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c201)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c202){s1=peg$c202;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c203)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c204()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c199)}}return s0}function peg$parseTildeLightArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c206){s0=peg$c206;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c207)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c208){s1=peg$c208;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c209)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c210()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c205)}}return s0}function peg$parseTildeFatArrow(){var s0,s1;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c212){s0=peg$c212;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c213)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c214){s1=peg$c214;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c215)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c216()}s0=s1}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c211)}}return s0}function peg$parseLightArrow(){var s0;peg$silentFails++;s0=peg$parseForwardLightArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayLightArrow();if(s0===peg$FAILED){s0=peg$parseBackLightArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c217)}}return s0}function peg$parseFatArrow(){var s0;peg$silentFails++;s0=peg$parseForwardFatArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayFatArrow();if(s0===peg$FAILED){s0=peg$parseBackFatArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c218)}}return s0}function peg$parseTildeArrow(){var s0;peg$silentFails++;s0=peg$parseForwardTildeArrow();if(s0===peg$FAILED){s0=peg$parseTwoWayTildeArrow();if(s0===peg$FAILED){s0=peg$parseBackTildeArrow()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c219)}}return s0}function peg$parseMixedArrow(){var s0;peg$silentFails++;s0=peg$parseLightFatArrow();if(s0===peg$FAILED){s0=peg$parseLightTildeArrow();if(s0===peg$FAILED){s0=peg$parseFatLightArrow();if(s0===peg$FAILED){s0=peg$parseFatTildeArrow();if(s0===peg$FAILED){s0=peg$parseTildeLightArrow();if(s0===peg$FAILED){s0=peg$parseTildeFatArrow()}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c220)}}return s0}function peg$parseArrow(){var s0;peg$silentFails++;s0=peg$parseMixedArrow();if(s0===peg$FAILED){s0=peg$parseLightArrow();if(s0===peg$FAILED){s0=peg$parseFatArrow();if(s0===peg$FAILED){s0=peg$parseTildeArrow()}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c221)}}return s0}function peg$parseBoolean(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c222){s1=peg$c222;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c223)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c224()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c225){s1=peg$c225;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c226)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c227()}s0=s1}return s0}function peg$parseCorners(){var s0;if(input.substr(peg$currPos,7)===peg$c228){s0=peg$c228;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c229)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c230){s0=peg$c230;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c231)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c232){s0=peg$c232;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c233)}}}}return s0}function peg$parseLineStyle(){var s0;if(input.substr(peg$currPos,5)===peg$c234){s0=peg$c234;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c235)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c236){s0=peg$c236;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c237)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c238){s0=peg$c238;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c239)}}}}return s0}function peg$parseChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===34){s2=peg$c240;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseNull(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c268){s1=peg$c268;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c269)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c270()}s0=s1;return s0}function peg$parseUndefined(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c271){s1=peg$c271;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c272)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c273()}s0=s1;return s0}function peg$parseEscape(){var s0;if(input.charCodeAt(peg$currPos)===92){s0=peg$c242;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}return s0}function peg$parseQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===34){s0=peg$c240;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c241)}}return s0}function peg$parseUnescaped(){var s0;if(peg$c274.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c275)}}return s0}function peg$parseActionLabelChar(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$parseActionLabelUnescaped();if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseEscape();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===39){s2=peg$c276;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===92){s2=peg$c242;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c243)}}if(s2===peg$FAILED){if(input.charCodeAt(peg$currPos)===47){s2=peg$c244;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c245)}}if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===98){s3=peg$c246;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c247)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c248()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===102){s3=peg$c249;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c250)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c251()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===110){s3=peg$c252;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c253)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c254()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===114){s3=peg$c255;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c256)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c257()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===116){s3=peg$c258;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c259)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c260()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===118){s3=peg$c261;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c262)}}if(s3!==peg$FAILED){peg$savedPos=s2;s3=peg$c263()}s2=s3;if(s2===peg$FAILED){s2=peg$currPos;if(input.charCodeAt(peg$currPos)===117){s3=peg$c264;peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c265)}}if(s3!==peg$FAILED){s4=peg$currPos;s5=peg$currPos;s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s6=[s6,s7,s8,s9];s5=s6}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}}else{peg$currPos=s5;s5=peg$FAILED}if(s5!==peg$FAILED){s4=input.substring(s4,peg$currPos)}else{s4=s5}if(s4!==peg$FAILED){peg$savedPos=s2;s3=peg$c266(s4);s2=s3}else{peg$currPos=s2;s2=peg$FAILED}}else{peg$currPos=s2;s2=peg$FAILED}}}}}}}}}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c267(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseActionLabelQuoteMark(){var s0;if(input.charCodeAt(peg$currPos)===39){s0=peg$c276;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c277)}}return s0}function peg$parseActionLabelUnescaped(){var s0;if(peg$c278.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c279)}}return s0}function peg$parseActionLabel(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseActionLabelQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseActionLabelChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseActionLabelChar()}if(s2!==peg$FAILED){s3=peg$parseActionLabelQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c280)}}return s0}function peg$parseLineTerminator(){var s0;if(peg$c282.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c283)}}return s0}function peg$parseBlockCommentTail(){var s0,s1,s2;if(input.substr(peg$currPos,2)===peg$c286){s0=peg$c286;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c287)}}if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseBlockComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c290){s1=peg$c290;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c291)}}if(s1!==peg$FAILED){s2=peg$parseBlockCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c289)}}return s0}function peg$parseEOF(){var s0,s1;s0=peg$currPos;peg$silentFails++;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}peg$silentFails--;if(s1===peg$FAILED){s0=void 0}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLineCommentTail(){var s0,s1,s2;s0=peg$parseLineTerminator();if(s0===peg$FAILED){s0=peg$parseEOF();if(s0===peg$FAILED){s0=peg$currPos;if(input.length>peg$currPos){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c288)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseLineComment(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c293){s1=peg$c293;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c294)}}if(s1!==peg$FAILED){s2=peg$parseLineCommentTail();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c292)}}return s0}function peg$parseWS(){var s0,s1,s2;peg$silentFails++;s0=peg$currPos;s1=peg$parseBlockComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseLineComment();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=[];if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}if(s2!==peg$FAILED){while(s2!==peg$FAILED){s1.push(s2);if(peg$c296.test(input.charAt(peg$currPos))){s2=input.charAt(peg$currPos);peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c297)}}}}else{s1=peg$FAILED}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c295)}}return s0}function peg$parseString(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseQuoteMark();if(s1!==peg$FAILED){s2=[];s3=peg$parseChar();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseChar()}if(s2!==peg$FAILED){s3=peg$parseQuoteMark();if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c281(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c298)}}return s0}function peg$parseAtomFirstLetter(){var s0;if(peg$c299.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c300)}}return s0}function peg$parseAtomLetter(){var s0;if(peg$c301.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c302)}}return s0}function peg$parseAtom(){var s0,s1,s2,s3;peg$silentFails++;s0=peg$currPos;s1=peg$parseAtomFirstLetter();if(s1!==peg$FAILED){s2=[];s3=peg$parseAtomLetter();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseAtomLetter()}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c304(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c303)}}return s0}function peg$parseLabel(){var s0;peg$silentFails++;s0=peg$parseAtom();if(s0===peg$FAILED){s0=peg$parseString()}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c305)}}return s0}function peg$parseIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseDecimalDigit(){var s0;if(peg$c308.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c309)}}return s0}function peg$parseNonZeroDigit(){var s0;if(peg$c310.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c311)}}return s0}function peg$parseHexDigit(){var s0;if(peg$c312.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c313)}}return s0}function peg$parseBinaryDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseOctalDigit(){var s0;if(peg$c314.test(input.charAt(peg$currPos))){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c315)}}return s0}function peg$parseNonNegNumber(){var s0,s1,s2,s3,s4;peg$silentFails++;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c316)}}return s0}function peg$parseJsNumericLiteral(){var s0,s1;peg$silentFails++;s0=peg$currPos;s1=peg$parseJsHexIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsBinaryIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonJsOctalIntegerLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalLiteral();if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c321(s1)}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c322){s1=peg$c322;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c323)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c324()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c325){s1=peg$c325;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c326)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c328){s1=peg$c328;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c329)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c330){s1=peg$c330;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c331)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c332){s1=peg$c332;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c333)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c334){s1=peg$c334;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c335)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c336){s1=peg$c336;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c337)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c338){s1=peg$c338;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c339)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c327()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c340){s1=peg$c340;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c341)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c343){s1=peg$c343;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c344)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c345){s1=peg$c345;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c346)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c347){s1=peg$c347;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c348)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8734){s1=peg$c349;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c350)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c342()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c351){s1=peg$c351;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c352)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c354){s1=peg$c354;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c355)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===949){s1=peg$c356;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c357)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c353()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c358){s1=peg$c358;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c359)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c361){s1=peg$c361;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c362)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===960){s1=peg$c363;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c364)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c360()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c365){s1=peg$c365;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c366)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===69){s1=peg$c368;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c369)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===101){s1=peg$c370;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c371)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===400){s1=peg$c372;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c373)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===8455){s1=peg$c374;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c375)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c367()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c376){s1=peg$c376;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c377)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c378()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c379){s1=peg$c379;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c380)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c381()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c382){s1=peg$c382;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c383)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c385){s1=peg$c385;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c386)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c384()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c387){s1=peg$c387;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c388)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c390){s1=peg$c390;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c391)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c389()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c392){s1=peg$c392;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c393)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c394()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c395){s1=peg$c395;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c396)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c397()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c398){s1=peg$c398;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c399)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c400()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c401){s1=peg$c401;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c402)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c403()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c404){s1=peg$c404;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c405)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c406()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c407){s1=peg$c407;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c408)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c409()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c410){s1=peg$c410;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c411)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c413){s1=peg$c413;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c414)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c415){s1=peg$c415;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c416)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===981){s1=peg$c417;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c418)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===966){s1=peg$c419;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c420)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c412()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c421){s1=peg$c421;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c422)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c426){s1=peg$c426;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c427)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===947){s1=peg$c424;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c425)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c423()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c320)}}return s0}function peg$parseJsDecimalLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){s4=peg$parseJsNExponentPart();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===46){s1=peg$c317;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s3=peg$parseJsNExponentPart();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseJsDecimalIntegerLiteral();if(s1!==peg$FAILED){s2=peg$parseJsNExponentPart();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c319();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}return s0}function peg$parseJsDecimalIntegerLiteral(){var s0,s1,s2,s3;if(input.charCodeAt(peg$currPos)===48){s0=peg$c306;peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c307)}}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseNonZeroDigit();if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseJsNExponentPart(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseJsNExponentIndicator();if(s1!==peg$FAILED){s2=peg$parseJsNSignedInteger();if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsNExponentIndicator(){var s0;if(input.substr(peg$currPos,1).toLowerCase()===peg$c370){s0=input.charAt(peg$currPos);peg$currPos++}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c428)}}return s0}function peg$parseJsNSignedInteger(){var s0,s1,s2,s3;s0=peg$currPos;if(peg$c429.test(input.charAt(peg$currPos))){s1=input.charAt(peg$currPos);peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c430)}}if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=[];s3=peg$parseDecimalDigit();if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);s3=peg$parseDecimalDigit()}}else{s2=peg$FAILED}if(s2!==peg$FAILED){s1=[s1,s2];s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsHexIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c431){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c432)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseHexDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseHexDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c433(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseJsBinaryIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c434){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c435)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseBinaryDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseBinaryDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c436(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNonJsOctalIntegerLiteral(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2).toLowerCase()===peg$c437){s1=input.substr(peg$currPos,2);peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c438)}}if(s1!==peg$FAILED){s2=peg$currPos;s3=[];s4=peg$parseOctalDigit();if(s4!==peg$FAILED){while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseOctalDigit()}}else{s3=peg$FAILED}if(s3!==peg$FAILED){s2=input.substring(s2,peg$currPos)}else{s2=s3}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c439(s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSemVer(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseIntegerLiteral();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s2=peg$c317;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s2!==peg$FAILED){s3=peg$parseIntegerLiteral();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===46){s4=peg$c317;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c318)}}if(s4!==peg$FAILED){s5=peg$parseIntegerLiteral();if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c440(s1,s3,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseUrlProtocol(){var s0;if(input.substr(peg$currPos,7)===peg$c451){s0=peg$c451;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c452)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,8)===peg$c453){s0=peg$c453;peg$currPos+=8}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c454)}}}return s0}function peg$parseURL(){var s0,s1,s2,s3;s0=peg$currPos;s1=peg$parseUrlProtocol();if(s1!==peg$FAILED){s2=[];if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}if(s3!==peg$FAILED){while(s3!==peg$FAILED){s2.push(s3);if(peg$c455.test(input.charAt(peg$currPos))){s3=input.charAt(peg$currPos);peg$currPos++}else{s3=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c456)}}}}else{s2=peg$FAILED}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c457();s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSvgColorLabel(){var s0,s1;s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c458){s1=peg$c458;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c459)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c461){s1=peg$c461;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c462)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c460()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c463){s1=peg$c463;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c464)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c466){s1=peg$c466;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c467)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c465()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c468){s1=peg$c468;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c469)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c471){s1=peg$c471;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c472)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c470()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c473){s1=peg$c473;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c474)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c476){s1=peg$c476;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c477)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c478){s1=peg$c478;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c479)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c481){s1=peg$c481;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c482)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c480()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c483){s1=peg$c483;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c484)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c486){s1=peg$c486;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c487)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c485()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c488){s1=peg$c488;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c489)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c491){s1=peg$c491;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c492)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c490()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c493){s1=peg$c493;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c494)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c496){s1=peg$c496;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c497)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c495()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c498){s1=peg$c498;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c499)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c501){s1=peg$c501;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c502)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c500()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c503){s1=peg$c503;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c504)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c506){s1=peg$c506;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c507)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c505()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c508){s1=peg$c508;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c509)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c511){s1=peg$c511;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c512)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c510()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c513){s1=peg$c513;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c514)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c516){s1=peg$c516;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c517)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c515()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c518){s1=peg$c518;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c519)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c521){s1=peg$c521;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c522)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c520()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c523){s1=peg$c523;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c524)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c526){s1=peg$c526;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c527)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c525()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c528){s1=peg$c528;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c529)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c531){s1=peg$c531;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c532)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c530()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c533){s1=peg$c533;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c534)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c536){s1=peg$c536;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c537)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c535()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c538){s1=peg$c538;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c539)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c541){s1=peg$c541;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c542)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c540()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c543){s1=peg$c543;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c544)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c546){s1=peg$c546;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c547)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c545()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c548){s1=peg$c548;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c549)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c551){s1=peg$c551;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c552)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c550()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c553){s1=peg$c553;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c554)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c556){s1=peg$c556;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c557)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c555()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c558){s1=peg$c558;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c559)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c560){s1=peg$c560;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c561)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c475()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c562){s1=peg$c562;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c563)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c565){s1=peg$c565;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c566)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c564()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c567){s1=peg$c567;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c568)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c570){s1=peg$c570;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c571)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c569()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c572){s1=peg$c572;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c573)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c575){s1=peg$c575;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c576)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c574()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c577){s1=peg$c577;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c578)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c580){s1=peg$c580;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c581)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c582){s1=peg$c582;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c583)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c584){s1=peg$c584;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c585)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c579()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c586){s1=peg$c586;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c587)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c589){s1=peg$c589;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c590)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c588()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c591){s1=peg$c591;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c592)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c594){s1=peg$c594;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c595)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c593()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c596){s1=peg$c596;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c597)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c599){s1=peg$c599;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c600)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c598()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c601){s1=peg$c601;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c602)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c604){s1=peg$c604;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c605)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c603()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c606){s1=peg$c606;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c607)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c609){s1=peg$c609;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c610)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c608()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c611){s1=peg$c611;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c612)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c614){s1=peg$c614;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c615)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c613()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c616){s1=peg$c616;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c617)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c619){s1=peg$c619;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c620)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c618()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c621){s1=peg$c621;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c622)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c624){s1=peg$c624;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c625)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c623()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c626){s1=peg$c626;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c627)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c629){s1=peg$c629;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c630)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c628()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c631){s1=peg$c631;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c632)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c634){s1=peg$c634;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c635)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c633()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c636){s1=peg$c636;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c637)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c639){s1=peg$c639;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c640)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c641){s1=peg$c641;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c642)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c643){s1=peg$c643;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c644)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c638()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c645){s1=peg$c645;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c646)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c648){s1=peg$c648;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c649)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c647()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c650){s1=peg$c650;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c651)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c653){s1=peg$c653;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c654)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c652()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c655){s1=peg$c655;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c656)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c658){s1=peg$c658;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c659)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c657()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c660){s1=peg$c660;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c661)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c663){s1=peg$c663;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c664)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c662()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c665){s1=peg$c665;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c666)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c668){s1=peg$c668;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c669)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c670){s1=peg$c670;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c671)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c672){s1=peg$c672;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c673)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c667()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c674){s1=peg$c674;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c675)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c677){s1=peg$c677;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c678)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c676()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c679){s1=peg$c679;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c680)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c682){s1=peg$c682;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c683)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c681()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c684){s1=peg$c684;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c685)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c687){s1=peg$c687;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c688)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c686()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c689){s1=peg$c689;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c690)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c692){s1=peg$c692;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c693)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c691()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c694){s1=peg$c694;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c695)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c697){s1=peg$c697;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c698)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c699){s1=peg$c699;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c700)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c702){s1=peg$c702;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c703)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c701()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c704){s1=peg$c704;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c705)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c707){s1=peg$c707;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c708)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c706()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c709){s1=peg$c709;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c710)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c712){s1=peg$c712;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c713)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c711()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c714){s1=peg$c714;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c715)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c717){s1=peg$c717;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c718)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c716()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c719){s1=peg$c719;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c720)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c722){s1=peg$c722;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c723)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c724){s1=peg$c724;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c725)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c726){s1=peg$c726;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c727)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c721()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c728){s1=peg$c728;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c729)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c731){s1=peg$c731;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c732)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c730()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c733){s1=peg$c733;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c734)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c736){s1=peg$c736;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c737)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c735()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c738){s1=peg$c738;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c739)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c741){s1=peg$c741;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c742)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c740()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c743){s1=peg$c743;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c744)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c746){s1=peg$c746;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c747)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c745()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c748){s1=peg$c748;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c749)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c751){s1=peg$c751;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c752)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c750()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c753){s1=peg$c753;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c754)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c756){s1=peg$c756;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c757)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c755()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c758){s1=peg$c758;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c759)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c761){s1=peg$c761;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c762)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c760()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c763){s1=peg$c763;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c764)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c766){s1=peg$c766;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c767)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c765()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c768){s1=peg$c768;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c769)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c771){s1=peg$c771;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c772)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c770()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c773){s1=peg$c773;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c774)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c776){s1=peg$c776;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c777)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c775()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c778){s1=peg$c778;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c779)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c781){s1=peg$c781;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c782)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c780()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c783){s1=peg$c783;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c784)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c786){s1=peg$c786;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c787)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c785()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c788){s1=peg$c788;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c789)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c791){s1=peg$c791;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c792)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c790()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c793){s1=peg$c793;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c794)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c796){s1=peg$c796;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c797)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c795()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c798){s1=peg$c798;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c799)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c801){s1=peg$c801;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c802)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c800()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c803){s1=peg$c803;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c804)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,20)===peg$c806){s1=peg$c806;peg$currPos+=20}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c807)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c805()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c808){s1=peg$c808;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c809)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c811){s1=peg$c811;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c812)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c813){s1=peg$c813;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c814)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c815){s1=peg$c815;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c816)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c810()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c817){s1=peg$c817;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c818)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c820){s1=peg$c820;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c821)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c819()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c822){s1=peg$c822;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c823)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c825){s1=peg$c825;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c826)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c824()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c827){s1=peg$c827;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c828)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c830){s1=peg$c830;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c831)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c829()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c832){s1=peg$c832;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c833)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c835){s1=peg$c835;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c836)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c834()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c837){s1=peg$c837;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c838)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c840){s1=peg$c840;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c841)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c839()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c842){s1=peg$c842;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c843)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c845){s1=peg$c845;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c846)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c847){s1=peg$c847;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c848)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c849){s1=peg$c849;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c850)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c844()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c851){s1=peg$c851;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c852)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c854){s1=peg$c854;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c855)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c853()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c856){s1=peg$c856;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c857)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c859){s1=peg$c859;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c860)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c858()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c861){s1=peg$c861;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c862)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c864){s1=peg$c864;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c865)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c863()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c866){s1=peg$c866;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c867)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c869){s1=peg$c869;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c870)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c868()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c871){s1=peg$c871;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c872)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c874){s1=peg$c874;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c875)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c873()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c876){s1=peg$c876;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c877)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c878){s1=peg$c878;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c879)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c696()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c880){s1=peg$c880;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c881)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c883){s1=peg$c883;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c884)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c882()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c885){s1=peg$c885;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c886)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,16)===peg$c888){s1=peg$c888;peg$currPos+=16}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c889)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c887()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c890){s1=peg$c890;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c891)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c893){s1=peg$c893;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c894)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c892()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c895){s1=peg$c895;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c896)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c898){s1=peg$c898;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c899)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c897()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c900){s1=peg$c900;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c901)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c903){s1=peg$c903;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c904)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c902()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c905){s1=peg$c905;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c906)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,14)===peg$c908){s1=peg$c908;peg$currPos+=14}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c909)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c907()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c910){s1=peg$c910;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c911)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c913){s1=peg$c913;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c914)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c912()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c915){s1=peg$c915;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c916)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,17)===peg$c918){s1=peg$c918;peg$currPos+=17}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c919)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c917()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c920){s1=peg$c920;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c921)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c923){s1=peg$c923;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c924)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c922()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c925){s1=peg$c925;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c926)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,15)===peg$c928){s1=peg$c928;peg$currPos+=15}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c929)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c927()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c930){s1=peg$c930;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c931)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,12)===peg$c933){s1=peg$c933;peg$currPos+=12}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c934)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c932()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c935){s1=peg$c935;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c936)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c938){s1=peg$c938;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c939)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c937()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c940){s1=peg$c940;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c941)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c943){s1=peg$c943;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c944)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c942()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c945){s1=peg$c945;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c946)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c948){s1=peg$c948;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c949)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c947()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c950){s1=peg$c950;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c951)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c953){s1=peg$c953;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c954)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c952()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c955){s1=peg$c955;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c956)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c958){s1=peg$c958;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c959)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c957()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c960){s1=peg$c960;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c961)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c963){s1=peg$c963;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c964)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c962()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c965){s1=peg$c965;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c966)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c968){s1=peg$c968;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c969)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c967()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c970){s1=peg$c970;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c971)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c973){s1=peg$c973;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c974)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c972()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c975){s1=peg$c975;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c976)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c978){s1=peg$c978;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c979)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c977()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c980){s1=peg$c980;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c981)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c983){s1=peg$c983;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c984)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c982()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c985){s1=peg$c985;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c986)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c988){s1=peg$c988;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c989)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c987()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c990){s1=peg$c990;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c991)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c993){s1=peg$c993;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c994)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c992()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c995){s1=peg$c995;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c996)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c998){s1=peg$c998;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c999)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c997()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1000){s1=peg$c1000;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1001)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1003){s1=peg$c1003;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1004)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1002()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1005){s1=peg$c1005;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1006)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1008){s1=peg$c1008;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1009)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1007()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1010){s1=peg$c1010;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1011)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1013){s1=peg$c1013;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1014)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1012()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1015){s1=peg$c1015;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1016)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1018){s1=peg$c1018;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1019)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1017()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1020){s1=peg$c1020;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1021)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1023){s1=peg$c1023;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1024)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1022()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1025){s1=peg$c1025;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1026)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1028){s1=peg$c1028;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1029)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1027()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1030){s1=peg$c1030;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1031)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1033){s1=peg$c1033;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1034)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1032()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1035){s1=peg$c1035;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1036)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1038){s1=peg$c1038;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1039)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1037()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1040){s1=peg$c1040;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1041)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1043){s1=peg$c1043;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1044)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1042()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1045){s1=peg$c1045;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1046)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1048){s1=peg$c1048;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1049)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1047()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1050){s1=peg$c1050;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1051)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1053){s1=peg$c1053;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1054)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1052()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1055){s1=peg$c1055;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1056)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1058){s1=peg$c1058;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1059)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1057()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1060){s1=peg$c1060;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1061)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1063){s1=peg$c1063;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1064)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1062()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1065){s1=peg$c1065;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1066)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1068){s1=peg$c1068;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1069)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1067()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1070){s1=peg$c1070;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1071)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1073){s1=peg$c1073;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1074)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1072()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1075){s1=peg$c1075;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1076)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1078){s1=peg$c1078;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1079)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1077()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1080){s1=peg$c1080;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1081)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,8)===peg$c1083){s1=peg$c1083;peg$currPos+=8}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1084)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1082()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1085){s1=peg$c1085;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1086)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1088){s1=peg$c1088;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1089)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1087()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1090){s1=peg$c1090;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1091)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1093){s1=peg$c1093;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1094)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1092()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1095){s1=peg$c1095;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1096)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1098){s1=peg$c1098;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1099)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1097()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1100){s1=peg$c1100;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1101)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1103){s1=peg$c1103;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1104)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1102()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1105){s1=peg$c1105;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1106)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1108){s1=peg$c1108;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1109)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1110){s1=peg$c1110;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1111)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1112){s1=peg$c1112;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1113)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1107()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1114){s1=peg$c1114;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1115)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1117){s1=peg$c1117;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1118)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1116()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1119){s1=peg$c1119;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1120)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1122){s1=peg$c1122;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1123)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1121()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1124){s1=peg$c1124;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1125)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1127){s1=peg$c1127;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1128)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1126()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1129){s1=peg$c1129;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1130)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,3)===peg$c1132){s1=peg$c1132;peg$currPos+=3}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1133)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1131()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1134){s1=peg$c1134;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1135)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,4)===peg$c1137){s1=peg$c1137;peg$currPos+=4}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1138)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1136()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1139){s1=peg$c1139;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1140)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1142){s1=peg$c1142;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1143)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1141()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1144){s1=peg$c1144;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1145)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1147){s1=peg$c1147;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1148)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1146()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1149){s1=peg$c1149;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1150)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,9)===peg$c1152){s1=peg$c1152;peg$currPos+=9}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1153)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1151()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1154){s1=peg$c1154;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1155)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1157){s1=peg$c1157;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1158)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1156()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1159){s1=peg$c1159;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1160)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1162){s1=peg$c1162;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1163)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1161()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1164){s1=peg$c1164;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1165)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,10)===peg$c1167){s1=peg$c1167;peg$currPos+=10}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1168)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1166()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1169){s1=peg$c1169;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1170)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,5)===peg$c1172){s1=peg$c1172;peg$currPos+=5}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1173)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1171()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1174){s1=peg$c1174;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1175)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1177){s1=peg$c1177;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1178)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1176()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1179){s1=peg$c1179;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1180)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1;if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,6)===peg$c1182){s1=peg$c1182;peg$currPos+=6}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1183)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1181()}s0=s1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s0}function peg$parseSvgColor(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseSvgColorLabel();if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1184(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb3(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1187(s2,s3,s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgb6(){var s0,s1,s2,s3,s4,s5,s6,s7,s8;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseWS();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){peg$savedPos=s0;s1=peg$c1188(s2,s3,s4,s5,s6,s7);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba4(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1189(s2,s3,s4,s5);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseRgba8(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===35){s1=peg$c1185;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1186)}}if(s1!==peg$FAILED){s2=peg$parseHexDigit();if(s2!==peg$FAILED){s3=peg$parseHexDigit();if(s3!==peg$FAILED){s4=peg$parseHexDigit();if(s4!==peg$FAILED){s5=peg$parseHexDigit();if(s5!==peg$FAILED){s6=peg$parseHexDigit();if(s6!==peg$FAILED){s7=peg$parseHexDigit();if(s7!==peg$FAILED){s8=peg$parseHexDigit();if(s8!==peg$FAILED){s9=peg$parseHexDigit();if(s9!==peg$FAILED){s10=peg$parseWS();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){peg$savedPos=s0;s1=peg$c1190(s2,s3,s4,s5,s6,s7,s8,s9);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseColor(){var s0;peg$silentFails++;s0=peg$parseSvgColor();if(s0===peg$FAILED){s0=peg$parseRgba8();if(s0===peg$FAILED){s0=peg$parseRgb6();if(s0===peg$FAILED){s0=peg$parseRgba4();if(s0===peg$FAILED){s0=peg$parseRgb3()}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseArrowItemKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1192){s0=peg$c1192;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1193)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1194){s0=peg$c1194;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1195)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1196){s0=peg$c1196;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1197)}}}}return s0}function peg$parseArrowItem(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseArrowItemKey();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1202(s2,s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseSingleEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1206(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1203)}}return s0}function peg$parseTransitionLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1210(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1207)}}return s0}function peg$parseArrowItems(){var s0,s1;s0=peg$parseSingleEdgeColor();if(s0===peg$FAILED){s0=peg$parseTransitionLineStyle();if(s0===peg$FAILED){s0=[];s1=peg$parseArrowItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseArrowItem()}}else{s0=peg$FAILED}}}return s0}function peg$parseArrowDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseArrowItems();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrowProbability(){var s0,s1,s2;s0=peg$currPos;s1=peg$parseNonNegNumber();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===37){s2=peg$c1216;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1217)}}if(s2!==peg$FAILED){peg$savedPos=s0;s1=peg$c1218(s1);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelList(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===91){s1=peg$c1219;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1220)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}while(s4!==peg$FAILED){s3.push(s4);s4=peg$currPos;s5=peg$parseLabel();if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s5=[s5,s6];s4=s5}else{peg$currPos=s4;s4=peg$FAILED}}else{peg$currPos=s4;s4=peg$FAILED}}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===93){s4=peg$c1221;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1222)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1223(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseLabelOrLabelList(){var s0;s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}return s0}function peg$parseStripe(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1224){s1=peg$c1224;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1225)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1226(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1227){s1=peg$c1227;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1228)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1229(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}return s0}function peg$parseCycle(){var s0,s1,s2,s3,s4;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===43){s1=peg$c1230;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1231)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1232(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.charCodeAt(peg$currPos)===45){s1=peg$c1233;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1234)}}if(s1!==peg$FAILED){s2=peg$parseNonZeroDigit();if(s2!==peg$FAILED){s3=[];s4=peg$parseDecimalDigit();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseDecimalDigit()}if(s3!==peg$FAILED){peg$savedPos=s0;s1=peg$c1235(s2,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;if(input.substr(peg$currPos,2)===peg$c1236){s1=peg$c1236;peg$currPos+=2}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1237)}}if(s1!==peg$FAILED){peg$savedPos=s0;s1=peg$c1238()}s0=s1}}return s0}function peg$parseArrowTarget(){var s0;s0=peg$parseStripe();if(s0===peg$FAILED){s0=peg$parseCycle();if(s0===peg$FAILED){s0=peg$parseLabelList();if(s0===peg$FAILED){s0=peg$parseLabel()}}}return s0}function peg$parseSubexp(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15,s16,s17,s18;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){s2=peg$parseActionLabel();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseArrowProbability();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseArrowDesc();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseArrow();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){s10=peg$parseArrowDesc();if(s10===peg$FAILED){s10=null}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){s12=peg$parseArrowProbability();if(s12===peg$FAILED){s12=null}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){s14=peg$parseActionLabel();if(s14===peg$FAILED){s14=null}if(s14!==peg$FAILED){s15=peg$parseWS();if(s15===peg$FAILED){s15=null}if(s15!==peg$FAILED){s16=peg$parseArrowTarget();if(s16!==peg$FAILED){s17=peg$parseWS();if(s17===peg$FAILED){s17=null}if(s17!==peg$FAILED){s18=peg$parseSubexp();if(s18===peg$FAILED){s18=null}if(s18!==peg$FAILED){peg$savedPos=s0;s1=peg$c1239(s2,s4,s6,s8,s10,s12,s14,s16,s18);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseExp(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;s1=peg$parseArrowTarget();if(s1!==peg$FAILED){s2=peg$parseSubexp();if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1240(s1,s2);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseValidationItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseValidationKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1245(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseValidationItems(){var s0,s1;s0=[];s1=peg$parseValidationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseValidationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigValidation(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1246){s2=peg$c1246;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1247)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseValidationItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1250(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseGvizLayout(){var s0;if(input.substr(peg$currPos,3)===peg$c1251){s0=peg$c1251;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1252)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1253){s0=peg$c1253;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1254)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,3)===peg$c1255){s0=peg$c1255;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1256)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1257){s0=peg$c1257;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1258)}}}}}return s0}function peg$parseStateItems(){var s0,s1;s0=[];s1=peg$parseStateDeclarationItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseStateDeclarationItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1261(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1262){s2=peg$c1262;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1263)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1264(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1265){s2=peg$c1265;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1266)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1267(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigActiveState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1268){s2=peg$c1268;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1269)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1270(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigTerminalState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1271){s2=peg$c1271;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1272)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1273(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigHookedState(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1274){s2=peg$c1274;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1275)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1276(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigAnyState(){var s0;s0=peg$parseConfigState();if(s0===peg$FAILED){s0=peg$parseConfigStartState();if(s0===peg$FAILED){s0=peg$parseConfigEndState();if(s0===peg$FAILED){s0=peg$parseConfigActiveState();if(s0===peg$FAILED){s0=peg$parseConfigTerminalState();if(s0===peg$FAILED){s0=peg$parseConfigHookedState()}}}}}return s0}function peg$parseActionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseActionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseActionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1277(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseActionItems(){var s0,s1;s0=[];s1=peg$parseActionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseActionItem()}}else{s0=peg$FAILED}return s0}function peg$parseConfigAction(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1278){s2=peg$c1278;peg$currPos+=6}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1279)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseActionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1280(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionKey(){var s0;if(input.substr(peg$currPos,9)===peg$c1241){s0=peg$c1241;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1242)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1243){s0=peg$c1243;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1244)}}}return s0}function peg$parseTransitionItem(){var s0,s1,s2,s3,s4;s0=peg$currPos;s1=peg$parseTransitionKey();if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s2=peg$c1198;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s2!==peg$FAILED){s3=peg$parseLabel();if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s4=peg$c1200;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s4!==peg$FAILED){peg$savedPos=s0;s1=peg$c1281(s1,s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseTransitionItems(){var s0,s1;s0=peg$parseGraphDefaultEdgeColor();if(s0===peg$FAILED){s0=[];s1=peg$parseTransitionItem();if(s1!==peg$FAILED){while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTransitionItem()}}else{s0=peg$FAILED}}return s0}function peg$parseGraphDefaultEdgeColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1204){s2=peg$c1204;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1205)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1283(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1282)}}return s0}function peg$parseConfigTransition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1284){s2=peg$c1284;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1285)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===123){s6=peg$c1211;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseTransitionItems();if(s8===peg$FAILED){s8=null}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.substr(peg$currPos,2)===peg$c1248){s10=peg$c1248;peg$currPos+=2}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1249)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1286(s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphLayout(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1287){s2=peg$c1287;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1288)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizLayout();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1289(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigStartNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1290){s2=peg$c1290;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1291)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1292(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigEndNodes(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1293){s2=peg$c1293;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1294)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1295(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfigGraphBgColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1296){s2=peg$c1296;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1297)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1298(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseConfig(){var s0;peg$silentFails++;s0=peg$parseConfigGraphLayout();if(s0===peg$FAILED){s0=peg$parseConfigStartNodes();if(s0===peg$FAILED){s0=peg$parseConfigEndNodes();if(s0===peg$FAILED){s0=peg$parseConfigTransition();if(s0===peg$FAILED){s0=peg$parseConfigAction();if(s0===peg$FAILED){s0=peg$parseConfigAnyState();if(s0===peg$FAILED){s0=peg$parseConfigValidation();if(s0===peg$FAILED){s0=peg$parseConfigGraphBgColor()}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1299)}}return s0}function peg$parseLicenseOrLabelOrList(){var s0;if(input.substr(peg$currPos,3)===peg$c1300){s0=peg$c1300;peg$currPos+=3}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1301)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1302){s0=peg$c1302;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1303)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1304){s0=peg$c1304;peg$currPos+=12}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1305)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1306){s0=peg$c1306;peg$currPos+=10}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1307)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1308){s0=peg$c1308;peg$currPos+=11}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1309)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,13)===peg$c1310){s0=peg$c1310;peg$currPos+=13}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1311)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1312){s0=peg$c1312;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1313)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1314){s0=peg$c1314;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1315)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1316){s0=peg$c1316;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1317)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1318){s0=peg$c1318;peg$currPos+=9}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1319)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1320){s0=peg$c1320;peg$currPos+=7}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1321)}}if(s0===peg$FAILED){s0=peg$parseLabel();if(s0===peg$FAILED){s0=peg$parseLabelList()}}}}}}}}}}}}return s0}function peg$parseDirection(){var s0;peg$silentFails++;if(input.substr(peg$currPos,2)===peg$c1323){s0=peg$c1323;peg$currPos+=2}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1324)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1325){s0=peg$c1325;peg$currPos+=5}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1326)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1327){s0=peg$c1327;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1328)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1329){s0=peg$c1329;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1330)}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1322)}}return s0}function peg$parseHookDefinition(){var s0;peg$silentFails++;if(input.substr(peg$currPos,4)===peg$c1332){s0=peg$c1332;peg$currPos+=4}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1333)}}if(s0===peg$FAILED){if(input.substr(peg$currPos,6)===peg$c1334){s0=peg$c1334;peg$currPos+=6}else{s0=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1335)}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1331)}}return s0}function peg$parseMachineAuthor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,14)===peg$c1336){s2=peg$c1336;peg$currPos+=14}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1337)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1338(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineContributor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,19)===peg$c1339){s2=peg$c1339;peg$currPos+=19}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1340)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1341(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineComment(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1342){s2=peg$c1342;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1343)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabelOrLabelList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1344(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,18)===peg$c1345){s2=peg$c1345;peg$currPos+=18}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1346)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseURL();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1347(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineName(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1348){s2=peg$c1348;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1349)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1350(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1354){s2=peg$c1354;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1355)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1356(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLicense(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,15)===peg$c1357){s2=peg$c1357;peg$currPos+=15}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1358)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLicenseOrLabelOrList();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1359(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineLanguage(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1360){s2=peg$c1360;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1361)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1362(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseFslVersion(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,11)===peg$c1363){s2=peg$c1363;peg$currPos+=11}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1364)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseSemVer();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1365(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineTheme(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1366){s2=peg$c1366;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1367)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseTheme();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1368(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineFlow(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,4)===peg$c1369){s2=peg$c1369;peg$currPos+=4}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1370)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseDirection();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1371(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineHookDefinition(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1372){s2=peg$c1372;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1373)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseHookDefinition();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1374(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseDotPreamble(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1375){s2=peg$c1375;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1376)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseString();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1377(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineAttribute(){var s0;peg$silentFails++;s0=peg$parseFslVersion();if(s0===peg$FAILED){s0=peg$parseMachineName();if(s0===peg$FAILED){s0=peg$parseMachineAuthor();if(s0===peg$FAILED){s0=peg$parseMachineContributor();if(s0===peg$FAILED){s0=peg$parseMachineComment();if(s0===peg$FAILED){s0=peg$parseMachineDefinition();if(s0===peg$FAILED){s0=peg$parseMachineVersion();if(s0===peg$FAILED){s0=peg$parseMachineLicense();if(s0===peg$FAILED){s0=peg$parseMachineLanguage();if(s0===peg$FAILED){s0=peg$parseMachineTheme();if(s0===peg$FAILED){s0=peg$parseDotPreamble();if(s0===peg$FAILED){s0=peg$parseMachineFlow();if(s0===peg$FAILED){s0=peg$parseMachineHookDefinition()}}}}}}}}}}}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1378)}}return s0}function peg$parsePropertyVal(){var s0;s0=peg$parseString();if(s0===peg$FAILED){s0=peg$parseBoolean();if(s0===peg$FAILED){s0=peg$parseJsNumericLiteral();if(s0===peg$FAILED){s0=peg$parseNull();if(s0===peg$FAILED){s0=peg$parseUndefined()}}}}return s0}function peg$parseSdStateLabel(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1379){s2=peg$c1379;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1380)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLabel();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1381(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1382){s2=peg$c1382;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1383)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1384(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1191)}}return s0}function peg$parseSdStateTextColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1386){s2=peg$c1386;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1387)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1388(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1385)}}return s0}function peg$parseSdStateBackgroundColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,16)===peg$c1390){s2=peg$c1390;peg$currPos+=16}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1391)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1392(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1389)}}return s0}function peg$parseSdStateBorderColor(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,12)===peg$c1394){s2=peg$c1394;peg$currPos+=12}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1395)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseColor();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1396(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1393)}}return s0}function peg$parseSdStateShape(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1398){s2=peg$c1398;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1399)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseGvizShape();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1400(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1397)}}return s0}function peg$parseSdStateCorners(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c1402){s2=peg$c1402;peg$currPos+=7}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1403)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseCorners();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1404(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1401)}}return s0}function peg$parseSdStateLineStyle(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,10)===peg$c1208){s2=peg$c1208;peg$currPos+=10}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1209)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,9)===peg$c1407){s2=peg$c1407;peg$currPos+=9}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1408)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseLineStyle();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1406(s6);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1405)}}return s0}function peg$parseSdStateProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;peg$silentFails++;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1412(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s4=peg$c1198;peg$currPos++}else{s4=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){s6=peg$parseAtom();if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1415(s6,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}peg$silentFails--;if(s0===peg$FAILED){s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1409)}}return s0}function peg$parseStateDeclarationItem(){var s0;s0=peg$parseSdStateLabel();if(s0===peg$FAILED){s0=peg$parseSdStateColor();if(s0===peg$FAILED){s0=peg$parseSdStateTextColor();if(s0===peg$FAILED){s0=peg$parseSdStateBackgroundColor();if(s0===peg$FAILED){s0=peg$parseSdStateBorderColor();if(s0===peg$FAILED){s0=peg$parseSdStateShape();if(s0===peg$FAILED){s0=peg$parseSdStateCorners();if(s0===peg$FAILED){s0=peg$parseSdStateLineStyle();if(s0===peg$FAILED){s0=peg$parseSdStateProperty()}}}}}}}}return s0}function peg$parseStateDeclarationDesc(){var s0,s1,s2,s3,s4,s5;s0=peg$currPos;if(input.charCodeAt(peg$currPos)===123){s1=peg$c1211;peg$currPos++}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1212)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=[];s4=peg$parseStateDeclarationItem();while(s4!==peg$FAILED){s3.push(s4);s4=peg$parseStateDeclarationItem()}if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===125){s5=peg$c1213;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1214)}}if(s5!==peg$FAILED){peg$savedPos=s0;s1=peg$c1215(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseStateDeclaration(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,5)===peg$c1259){s2=peg$c1259;peg$currPos+=5}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1260)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseStateDeclarationDesc();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1416(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseNamedList(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.charCodeAt(peg$currPos)===38){s2=peg$c1417;peg$currPos++}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1418)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3===peg$FAILED){s3=null}if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===58){s6=peg$c1198;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1199)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){s8=peg$parseLabelOrLabelList();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1419(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseMachineProperty(){var s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13;s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s10=peg$c1413;peg$currPos+=8}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s12=peg$c1200;peg$currPos++}else{s12=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s12!==peg$FAILED){s13=peg$parseWS();if(s13===peg$FAILED){s13=null}if(s13!==peg$FAILED){peg$savedPos=s0;s1=peg$c1420(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1413){s6=peg$c1413;peg$currPos+=8}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1414)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s8=peg$c1200;peg$currPos++}else{s8=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){peg$savedPos=s0;s1=peg$c1421(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5!==peg$FAILED){if(input.substr(peg$currPos,7)===peg$c3){s6=peg$c3;peg$currPos+=7}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c4)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7!==peg$FAILED){s8=peg$parsePropertyVal();if(s8!==peg$FAILED){s9=peg$parseWS();if(s9===peg$FAILED){s9=null}if(s9!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s10=peg$c1200;peg$currPos++}else{s10=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s10!==peg$FAILED){s11=peg$parseWS();if(s11===peg$FAILED){s11=null}if(s11!==peg$FAILED){peg$savedPos=s0;s1=peg$c1422(s4,s8);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}if(s0===peg$FAILED){s0=peg$currPos;s1=peg$parseWS();if(s1===peg$FAILED){s1=null}if(s1!==peg$FAILED){if(input.substr(peg$currPos,8)===peg$c1410){s2=peg$c1410;peg$currPos+=8}else{s2=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1411)}}if(s2!==peg$FAILED){s3=peg$parseWS();if(s3!==peg$FAILED){s4=peg$parseLabel();if(s4!==peg$FAILED){s5=peg$parseWS();if(s5===peg$FAILED){s5=null}if(s5!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s6=peg$c1200;peg$currPos++}else{s6=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s6!==peg$FAILED){s7=peg$parseWS();if(s7===peg$FAILED){s7=null}if(s7!==peg$FAILED){peg$savedPos=s0;s1=peg$c1423(s4);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}}}return s0}function peg$parseRegularArrangeDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,7)===peg$c1424){s1=peg$c1424;peg$currPos+=7}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1425)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1426(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeStartDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,13)===peg$c1427){s1=peg$c1427;peg$currPos+=13}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1428)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1429(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeEndDeclaration(){var s0,s1,s2,s3,s4,s5,s6;s0=peg$currPos;if(input.substr(peg$currPos,11)===peg$c1430){s1=peg$c1430;peg$currPos+=11}else{s1=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1431)}}if(s1!==peg$FAILED){s2=peg$parseWS();if(s2===peg$FAILED){s2=null}if(s2!==peg$FAILED){s3=peg$parseLabelOrLabelList();if(s3!==peg$FAILED){s4=peg$parseWS();if(s4===peg$FAILED){s4=null}if(s4!==peg$FAILED){if(input.charCodeAt(peg$currPos)===59){s5=peg$c1200;peg$currPos++}else{s5=peg$FAILED;if(peg$silentFails===0){peg$fail(peg$c1201)}}if(s5!==peg$FAILED){s6=peg$parseWS();if(s6===peg$FAILED){s6=null}if(s6!==peg$FAILED){peg$savedPos=s0;s1=peg$c1432(s3);s0=s1}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}}else{peg$currPos=s0;s0=peg$FAILED}return s0}function peg$parseArrangeDeclaration(){var s0;peg$silentFails++;s0=peg$parseArrangeStartDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeEndDeclaration();if(s0===peg$FAILED){s0=peg$parseRegularArrangeDeclaration()}}peg$silentFails--;if(s0===peg$FAILED){if(peg$silentFails===0){peg$fail(peg$c1433)}}return s0}function peg$parseTerm(){var s0;s0=peg$parseExp();if(s0===peg$FAILED){s0=peg$parseStateDeclaration();if(s0===peg$FAILED){s0=peg$parseArrangeDeclaration();if(s0===peg$FAILED){s0=peg$parseNamedList();if(s0===peg$FAILED){s0=peg$parseMachineAttribute();if(s0===peg$FAILED){s0=peg$parseMachineProperty();if(s0===peg$FAILED){s0=peg$parseConfig()}}}}}}return s0}function peg$parseTermList(){var s0,s1;s0=[];s1=peg$parseTerm();while(s1!==peg$FAILED){s0.push(s1);s1=peg$parseTerm()}return s0}peg$result=peg$startRuleFunction();if(peg$result!==peg$FAILED&&peg$currPos===input.length){return peg$result}else{if(peg$result!==peg$FAILED&&peg$currPos":case"→":case"=>":case"⇒":case"~>":case"↛":return"right";case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"left";case"<->":case"↔":case"<-=>":case"←⇒":case"←=>":case"<-⇒":case"<-~>":case"←↛":case"←~>":case"<-↛":case"<=>":case"⇔":case"<=->":case"⇐→":case"⇐->":case"<=→":case"<=~>":case"⇐↛":case"⇐~>":case"<=↛":case"<~>":case"↮":case"<~->":case"↚→":case"↚->":case"<~→":case"<~=>":case"↚⇒":case"↚=>":case"<~⇒":return"both";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_left_kind(arrow){switch(String(arrow)){case"->":case"→":case"=>":case"⇒":case"~>":case"↛":return"none";case"<-":case"←":case"<->":case"↔":case"<-=>":case"←⇒":case"<-~>":case"←↛":return"legal";case"<=":case"⇐":case"<=>":case"⇔":case"<=->":case"⇐→":case"<=~>":case"⇐↛":return"main";case"<~":case"↚":case"<~>":case"↮":case"<~->":case"↚→":case"<~=>":case"↚⇒":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function arrow_right_kind(arrow){switch(String(arrow)){case"<-":case"←":case"<=":case"⇐":case"<~":case"↚":return"none";case"->":case"→":case"<->":case"↔":case"<=->":case"⇐→":case"<~->":case"↚→":return"legal";case"=>":case"⇒":case"<=>":case"⇔":case"<-=>":case"←⇒":case"<~=>":case"↚⇒":return"main";case"~>":case"↛":case"<~>":case"↮":case"<-~>":case"←↛":case"<=~>":case"⇐↛":return"forced";default:throw new JssmError(undefined,`arrow_direction: unknown arrow type ${arrow}`)}}function makeTransition(this_se,from,to,isRight,_wasList,_wasIndex){const kind=isRight?arrow_right_kind(this_se.kind):arrow_left_kind(this_se.kind),edge={from:from,to:to,kind:kind,forced_only:kind==="forced",main_path:kind==="main"};const action=isRight?"r_action":"l_action",probability=isRight?"r_probability":"l_probability";if(this_se[action]){edge.action=this_se[action]}if(this_se[probability]){edge.probability=this_se[probability]}return edge}function wrap_parse(input,options){return peg$parse(input,options||{})}function compile_rule_transition_step(acc,from,to,this_se,next_se){const edges=[];const uFrom=Array.isArray(from)?from:[from],uTo=Array.isArray(to)?to:[to];uFrom.map((f=>{uTo.map((t=>{const right=makeTransition(this_se,f,t,true);if(right.kind!=="none"){edges.push(right)}const left=makeTransition(this_se,t,f,false);if(left.kind!=="none"){edges.push(left)}}))}));const new_acc=acc.concat(edges);if(next_se){return compile_rule_transition_step(new_acc,to,next_se.to,next_se,next_se.se)}else{return new_acc}}function compile_rule_handle_transition(rule){return compile_rule_transition_step([],rule.from,rule.se.to,rule.se,rule.se.se)}function compile_rule_handler(rule){if(rule.key==="transition"){return{agg_as:"transition",val:compile_rule_handle_transition(rule)}}if(rule.key==="machine_language"){return{agg_as:"machine_language",val:reduceTo6391.reduce(rule.value)}}if(rule.key==="property_definition"){const ret={agg_as:"property_definition",val:{name:rule.name}};if(rule.hasOwnProperty("default_value")){ret.val.default_value=rule.default_value}if(rule.hasOwnProperty("required")){ret.val.required=rule.required}return ret}if(rule.key==="state_declaration"){if(!rule.name){throw new JssmError(undefined,"State declarations must have a name")}return{agg_as:"state_declaration",val:{state:rule.name,declarations:rule.value}}}if(["arrange_declaration","arrange_start_declaration","arrange_end_declaration"].includes(rule.key)){return{agg_as:rule.key,val:[rule.value]}}const tautologies=["graph_layout","start_states","end_states","machine_name","machine_version","machine_comment","machine_author","machine_contributor","machine_definition","machine_reference","machine_license","fsl_version","state_config","theme","flow","dot_preamble","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_active_state_config","default_terminal_state_config"];if(tautologies.includes(rule.key)){return{agg_as:rule.key,val:rule.value}}throw new JssmError(undefined,`compile_rule_handler: Unknown rule: ${JSON.stringify(rule)}`)}function compile(tree){const results={graph_layout:[],transition:[],start_states:[],end_states:[],state_config:[],state_declaration:[],fsl_version:[],machine_author:[],machine_comment:[],machine_contributor:[],machine_definition:[],machine_language:[],machine_license:[],machine_name:[],machine_reference:[],property_definition:[],state_property:{},theme:[],flow:[],dot_preamble:[],arrange_declaration:[],arrange_start_declaration:[],arrange_end_declaration:[],machine_version:[],default_state_config:[],default_active_state_config:[],default_hooked_state_config:[],default_terminal_state_config:[],default_start_state_config:[],default_end_state_config:[]};tree.map((tr=>{const rule=compile_rule_handler(tr),agg_as=rule.agg_as,val=rule.val;results[agg_as]=results[agg_as].concat(val)}));const property_keys=results["property_definition"].map((pd=>pd.name)),repeat_props=find_repeated(property_keys);if(repeat_props.length){throw new JssmError(undefined,`Cannot repeat property definitions. Saw ${JSON.stringify(repeat_props)}`)}const assembled_transitions=[].concat(...results["transition"]);const result_cfg={start_states:results.start_states.length?results.start_states:[assembled_transitions[0].from],end_states:results.end_states,transitions:assembled_transitions,state_property:[]};const oneOnlyKeys=["graph_layout","machine_name","machine_version","machine_comment","fsl_version","machine_license","machine_definition","machine_language","theme","flow","dot_preamble"];oneOnlyKeys.map((oneOnlyKey=>{if(results[oneOnlyKey].length>1){throw new JssmError(undefined,`May only have one ${oneOnlyKey} statement maximum: ${JSON.stringify(results[oneOnlyKey])}`)}else{if(results[oneOnlyKey].length){result_cfg[oneOnlyKey]=results[oneOnlyKey][0]}}}));["arrange_declaration","arrange_start_declaration","arrange_end_declaration","machine_author","machine_contributor","machine_reference","state_declaration","property_definition","default_state_config","default_start_state_config","default_end_state_config","default_hooked_state_config","default_terminal_state_config","default_active_state_config"].map((multiKey=>{if(results[multiKey].length){result_cfg[multiKey]=results[multiKey]}}));results.state_declaration.forEach((sd=>{sd.declarations.forEach((decl=>{if(decl.key==="state_property"){const label=name_bind_prop_and_state(decl.name,sd.state);if(result_cfg.state_property.findIndex((c=>c.name===label))!==-1){throw new JssmError(undefined,`A state may only bind a property once (${sd.state} re-binds ${decl.name})`)}else{result_cfg.state_property.push({name:label,default_value:decl.value})}}}))}));return result_cfg}function make(plan){return compile(wrap_parse(plan))}function transfer_state_properties(state_decl){state_decl.declarations.map((d=>{switch(d.key){case"shape":state_decl.shape=d.value;break;case"color":state_decl.color=d.value;break;case"corners":state_decl.corners=d.value;break;case"line-style":state_decl.lineStyle=d.value;break;case"text-color":state_decl.textColor=d.value;break;case"background-color":state_decl.backgroundColor=d.value;break;case"state-label":state_decl.stateLabel=d.value;break;case"border-color":state_decl.borderColor=d.value;break;case"state_property":state_decl.property={name:d.name,value:d.value};break;default:throw new JssmError(undefined,`Unknown state property: '${JSON.stringify(d)}'`)}}));return state_decl}function state_style_condense(jssk){const state_style={};if(Array.isArray(jssk)){jssk.forEach(((key,i)=>{if(typeof key!=="object"){throw new JssmError(this,`invalid state item ${i} in state_style_condense list: ${JSON.stringify(key)}`)}switch(key.key){case"shape":if(state_style.shape!==undefined){throw new JssmError(this,`cannot redefine 'shape' in state_style_condense, already defined`)}state_style.shape=key.value;break;case"color":if(state_style.color!==undefined){throw new JssmError(this,`cannot redefine 'color' in state_style_condense, already defined`)}state_style.color=key.value;break;case"text-color":if(state_style.textColor!==undefined){throw new JssmError(this,`cannot redefine 'text-color' in state_style_condense, already defined`)}state_style.textColor=key.value;break;case"corners":if(state_style.corners!==undefined){throw new JssmError(this,`cannot redefine 'corners' in state_style_condense, already defined`)}state_style.corners=key.value;break;case"line-style":if(state_style.lineStyle!==undefined){throw new JssmError(this,`cannot redefine 'line-style' in state_style_condense, already defined`)}state_style.lineStyle=key.value;break;case"background-color":if(state_style.backgroundColor!==undefined){throw new JssmError(this,`cannot redefine 'background-color' in state_style_condense, already defined`)}state_style.backgroundColor=key.value;break;case"state-label":if(state_style.stateLabel!==undefined){throw new JssmError(this,`cannot redefine 'state-label' in state_style_condense, already defined`)}state_style.stateLabel=key.value;break;case"border-color":if(state_style.borderColor!==undefined){throw new JssmError(this,`cannot redefine 'border-color' in state_style_condense, already defined`)}state_style.borderColor=key.value;break;default:throw new JssmError(this,`unknown state style key in condense: ${key.key}`)}}))}else if(jssk===undefined);else{throw new JssmError(this,"state_style_condense received a non-array")}return state_style}class Machine{constructor({start_states:start_states,end_states:end_states=[],complete:complete=[],transitions:transitions,machine_author:machine_author,machine_comment:machine_comment,machine_contributor:machine_contributor,machine_definition:machine_definition,machine_language:machine_language,machine_license:machine_license,machine_name:machine_name,machine_version:machine_version,state_declaration:state_declaration,property_definition:property_definition,state_property:state_property,fsl_version:fsl_version,dot_preamble:dot_preamble=undefined,arrange_declaration:arrange_declaration=[],arrange_start_declaration:arrange_start_declaration=[],arrange_end_declaration:arrange_end_declaration=[],theme:theme="default",flow:flow="down",graph_layout:graph_layout="dot",instance_name:instance_name,history:history,data:data,default_state_config:default_state_config,default_active_state_config:default_active_state_config,default_hooked_state_config:default_hooked_state_config,default_terminal_state_config:default_terminal_state_config,default_start_state_config:default_start_state_config,default_end_state_config:default_end_state_config}){this._instance_name=instance_name;this._state=start_states[0];this._states=new Map;this._state_declarations=new Map;this._edges=[];this._edge_map=new Map;this._named_transitions=new Map;this._actions=new Map;this._reverse_actions=new Map;this._reverse_action_targets=new Map;this._start_states=new Set(start_states);this._end_states=new Set(end_states);this._machine_author=array_box_if_string(machine_author);this._machine_comment=machine_comment;this._machine_contributor=array_box_if_string(machine_contributor);this._machine_definition=machine_definition;this._machine_language=machine_language;this._machine_license=machine_license;this._machine_name=machine_name;this._machine_version=machine_version;this._raw_state_declaration=state_declaration||[];this._fsl_version=fsl_version;this._arrange_declaration=arrange_declaration;this._arrange_start_declaration=arrange_start_declaration;this._arrange_end_declaration=arrange_end_declaration;this._dot_preamble=dot_preamble;this._themes=[theme];this._flow=flow;this._graph_layout=graph_layout;this._has_hooks=false;this._has_basic_hooks=false;this._has_named_hooks=false;this._has_entry_hooks=false;this._has_exit_hooks=false;this._has_global_action_hooks=false;this._has_transition_hooks=true;this._hooks=new Map;this._named_hooks=new Map;this._entry_hooks=new Map;this._exit_hooks=new Map;this._global_action_hooks=new Map;this._any_action_hook=undefined;this._standard_transition_hook=undefined;this._main_transition_hook=undefined;this._forced_transition_hook=undefined;this._any_transition_hook=undefined;this._has_post_hooks=false;this._has_post_basic_hooks=false;this._has_post_named_hooks=false;this._has_post_entry_hooks=false;this._has_post_exit_hooks=false;this._has_post_global_action_hooks=false;this._has_post_transition_hooks=true;this._post_hooks=new Map;this._post_named_hooks=new Map;this._post_entry_hooks=new Map;this._post_exit_hooks=new Map;this._post_global_action_hooks=new Map;this._post_any_action_hook=undefined;this._post_standard_transition_hook=undefined;this._post_main_transition_hook=undefined;this._post_forced_transition_hook=undefined;this._post_any_transition_hook=undefined;this._data=data;this._property_keys=new Set;this._default_properties=new Map;this._state_properties=new Map;this._required_properties=new Set;this._state_style=state_style_condense(default_state_config);this._active_state_style=state_style_condense(default_active_state_config);this._hooked_state_style=state_style_condense(default_hooked_state_config);this._terminal_state_style=state_style_condense(default_terminal_state_config);this._start_state_style=state_style_condense(default_start_state_config);this._end_state_style=state_style_condense(default_end_state_config);this._history_length=history||0;this._history=new circular_buffer(this._history_length);this._state_labels=new Map;if(state_declaration){state_declaration.map((state_decl=>{if(this._state_declarations.has(state_decl.state)){throw new JssmError(this,`Added the same state declaration twice: ${JSON.stringify(state_decl.state)}`)}this._state_declarations.set(state_decl.state,transfer_state_properties(state_decl))}))}[...this._state_declarations].map((sd=>{const[key,decl]=sd,labelled=decl.declarations.filter((d=>d.key==="state-label"));if(labelled.length>1){throw new JssmError(this,`state ${key} may only have one state-label; has ${labelled.length}`)}if(labelled.length===1){this._state_labels.set(key,labelled[0].value)}}));transitions.map((tr=>{if(tr.from===undefined){throw new JssmError(this,`transition must define 'from': ${JSON.stringify(tr)}`)}if(tr.to===undefined){throw new JssmError(this,`transition must define 'to': ${JSON.stringify(tr)}`)}const cursor_from=this._states.get(tr.from)||{name:tr.from,from:[],to:[],complete:complete.includes(tr.from)};if(!this._states.has(tr.from)){this._new_state(cursor_from)}const cursor_to=this._states.get(tr.to)||{name:tr.to,from:[],to:[],complete:complete.includes(tr.to)};if(!this._states.has(tr.to)){this._new_state(cursor_to)}if(cursor_from.to.includes(tr.to)){throw new JssmError(this,`already has ${JSON.stringify(tr.from)} to ${JSON.stringify(tr.to)}`)}else{cursor_from.to.push(tr.to);cursor_to.from.push(tr.from)}this._edges.push(tr);const thisEdgeId=this._edges.length-1;if(tr.name){if(this._named_transitions.has(tr.name)){throw new JssmError(this,`named transition "${JSON.stringify(tr.name)}" already created`)}else{this._named_transitions.set(tr.name,thisEdgeId)}}const from_mapping=this._edge_map.get(tr.from)||new Map;if(!this._edge_map.has(tr.from)){this._edge_map.set(tr.from,from_mapping)}from_mapping.set(tr.to,thisEdgeId);if(tr.action){let actionMap=this._actions.get(tr.action);if(!actionMap){actionMap=new Map;this._actions.set(tr.action,actionMap)}if(actionMap.has(tr.from)){throw new JssmError(this,`action ${JSON.stringify(tr.action)} already attached to origin ${JSON.stringify(tr.from)}`)}else{actionMap.set(tr.from,thisEdgeId)}let rActionMap=this._reverse_actions.get(tr.from);if(!rActionMap){rActionMap=new Map;this._reverse_actions.set(tr.from,rActionMap)}rActionMap.set(tr.action,thisEdgeId);if(!this._reverse_action_targets.has(tr.to)){this._reverse_action_targets.set(tr.to,new Map)}}}));if(Array.isArray(property_definition)){property_definition.forEach((pr=>{this._property_keys.add(pr.name);if(pr.hasOwnProperty("default_value")){this._default_properties.set(pr.name,pr.default_value)}if(pr.hasOwnProperty("required")&&pr.required===true){this._required_properties.add(pr.name)}}))}if(Array.isArray(state_property)){state_property.forEach((sp=>{this._state_properties.set(sp.name,sp.default_value)}))}this._state_properties.forEach(((_value,key)=>{const inside=JSON.parse(key);if(Array.isArray(inside)){const j_property=inside[0];if(typeof j_property==="string"){const j_state=inside[1];if(typeof j_state==="string"){if(!this.known_prop(j_property)){throw new JssmError(this,`State "${j_state}" has property "${j_property}" which is not globally declared`)}}}}}));this._required_properties.forEach((dp_key=>{if(this._default_properties.has(dp_key)){throw new JssmError(this,`The property "${dp_key}" is required, but also has a default; these conflict`)}this.states().forEach((s=>{const bound_name=name_bind_prop_and_state(dp_key,s);if(!this._state_properties.has(bound_name)){throw new JssmError(this,`State "${s}" is missing required property "${dp_key}"`)}}))}))}_new_state(state_config){if(this._states.has(state_config.name)){throw new JssmError(this,`state ${JSON.stringify(state_config.name)} already exists`)}this._states.set(state_config.name,state_config);return state_config.name}state(){return this._state}label_for(state){return this._state_labels.get(state)}data(){return this._data}prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{return undefined}}strict_prop(name){const bound_name=name_bind_prop_and_state(name,this.state());if(this._state_properties.has(bound_name)){return this._state_properties.get(bound_name)}else if(this._default_properties.has(name)){return this._default_properties.get(name)}else{throw new JssmError(this,`Strictly requested a prop '${name}' which doesn't exist on current state '${this.state()}' and has no default`)}}props(){const ret={};this.known_props().forEach((p=>ret[p]=this.prop(p)));return ret}known_prop(prop_name){return this._property_keys.has(prop_name)}known_props(){return[...this._property_keys]}is_start_state(whichState){return this._start_states.has(whichState)}is_end_state(whichState){return this._end_states.has(whichState)}state_is_final(whichState){return this.state_is_terminal(whichState)||this.state_is_complete(whichState)}is_final(){return this.state_is_final(this.state())}serialize(comment){return{comment:comment,state:this._state,data:this._data,jssm_version:version,history:this._history.toArray(),history_capacity:this._history.capacity,timestamp:(new Date).getTime()}}graph_layout(){return this._graph_layout}dot_preamble(){return this._dot_preamble}machine_author(){return this._machine_author}machine_comment(){return this._machine_comment}machine_contributor(){return this._machine_contributor}machine_definition(){return this._machine_definition}machine_language(){return this._machine_language}machine_license(){return this._machine_license}machine_name(){return this._machine_name}machine_version(){return this._machine_version}raw_state_declarations(){return this._raw_state_declaration}state_declaration(which){return this._state_declarations.get(which)}state_declarations(){return this._state_declarations}fsl_version(){return this._fsl_version}machine_state(){return{internal_state_impl_version:1,actions:this._actions,edge_map:this._edge_map,edges:this._edges,named_transitions:this._named_transitions,reverse_actions:this._reverse_actions,state:this._state,states:this._states}}states(){return Array.from(this._states.keys())}state_for(whichState){const state=this._states.get(whichState);if(state){return state}else{throw new JssmError(this,"No such state",{requested_state:whichState})}}has_state(whichState){return this._states.get(whichState)!==undefined}list_edges(){return this._edges}list_named_transitions(){return this._named_transitions}list_actions(){return Array.from(this._actions.keys())}theme(){return this._themes[0]}themes(){return this._themes}flow(){return this._flow}get_transition_by_state_names(from,to){const emg=this._edge_map.get(from);if(emg){return emg.get(to)}else{return undefined}}lookup_transition_for(from,to){const id=this.get_transition_by_state_names(from,to);return id===undefined||id===null?undefined:this._edges[id]}list_transitions(whichState=this.state()){return{entrances:this.list_entrances(whichState),exits:this.list_exits(whichState)}}list_entrances(whichState=this.state()){return(this._states.get(whichState)||{from:undefined}).from||[]}list_exits(whichState=this.state()){return(this._states.get(whichState)||{to:undefined}).to||[]}probable_exits_for(whichState){const wstate=this._states.get(whichState);if(!wstate){throw new JssmError(this,`No such state ${JSON.stringify(whichState)} in probable_exits_for`)}const wstate_to=wstate.to,wtf=wstate_to.map((ws=>this.lookup_transition_for(this.state(),ws))).filter(Boolean);return wtf}probabilistic_transition(){const selected=weighted_rand_select(this.probable_exits_for(this.state()));return this.transition(selected.to)}probabilistic_walk(n){return seq(n).map((()=>{const state_was=this.state();this.probabilistic_transition();return state_was})).concat([this.state()])}probabilistic_histo_walk(n){return histograph(this.probabilistic_walk(n))}actions(whichState=this.state()){const wstate=this._reverse_actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_states_having_action(whichState){const wstate=this._actions.get(whichState);if(wstate){return Array.from(wstate.keys())}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}list_exit_actions(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>filtered.action))}probable_action_exits(whichState=this.state()){const ra_base=this._reverse_actions.get(whichState);if(!ra_base){throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}return Array.from(ra_base.values()).map((edgeId=>this._edges[edgeId])).filter((o=>o.from===whichState)).map((filtered=>({action:filtered.action,probability:filtered.probability})))}is_unenterable(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_entrances(whichState).length===0}has_unenterables(){return this.states().some((x=>this.is_unenterable(x)))}is_terminal(){return this.state_is_terminal(this.state())}state_is_terminal(whichState){if(!this.has_state(whichState)){throw new JssmError(this,`No such state ${whichState}`)}return this.list_exits(whichState).length===0}has_terminals(){return this.states().some((x=>this.state_is_terminal(x)))}is_complete(){return this.state_is_complete(this.state())}state_is_complete(whichState){const wstate=this._states.get(whichState);if(wstate){return wstate.complete}else{throw new JssmError(this,`No such state ${JSON.stringify(whichState)}`)}}has_completes(){return this.states().some((x=>this.state_is_complete(x)))}set_hook(HookDesc){switch(HookDesc.kind){case"hook":this._hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_hooks=true;this._has_basic_hooks=true;break;case"named":this._named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_hooks=true;this._has_named_hooks=true;break;case"global action":this._global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_hooks=true;this._has_global_action_hooks=true;break;case"any action":this._any_action_hook=HookDesc.handler;this._has_hooks=true;break;case"standard transition":this._standard_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"main transition":this._main_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"forced transition":this._forced_transition_hook=HookDesc.handler;this._has_transition_hooks=true;this._has_hooks=true;break;case"any transition":this._any_transition_hook=HookDesc.handler;this._has_hooks=true;break;case"entry":this._entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_hooks=true;this._has_entry_hooks=true;break;case"exit":this._exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_hooks=true;this._has_exit_hooks=true;break;case"post hook":this._post_hooks.set(hook_name(HookDesc.from,HookDesc.to),HookDesc.handler);this._has_post_hooks=true;this._has_post_basic_hooks=true;break;case"post named":this._post_named_hooks.set(named_hook_name(HookDesc.from,HookDesc.to,HookDesc.action),HookDesc.handler);this._has_post_hooks=true;this._has_post_named_hooks=true;break;case"post global action":this._post_global_action_hooks.set(HookDesc.action,HookDesc.handler);this._has_post_hooks=true;this._has_post_global_action_hooks=true;break;case"post any action":this._post_any_action_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post standard transition":this._post_standard_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post main transition":this._post_main_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post forced transition":this._post_forced_transition_hook=HookDesc.handler;this._has_post_transition_hooks=true;this._has_post_hooks=true;break;case"post any transition":this._post_any_transition_hook=HookDesc.handler;this._has_post_hooks=true;break;case"post entry":this._post_entry_hooks.set(HookDesc.to,HookDesc.handler);this._has_post_entry_hooks=true;this._has_post_hooks=true;break;case"post exit":this._post_exit_hooks.set(HookDesc.from,HookDesc.handler);this._has_post_exit_hooks=true;this._has_post_hooks=true;break;default:throw new JssmError(this,`Unknown hook type ${HookDesc.kind}, should be impossible`)}}hook(from,to,handler){this.set_hook({kind:"hook",from:from,to:to,handler:handler});return this}hook_action(from,to,action,handler){this.set_hook({kind:"named",from:from,to:to,action:action,handler:handler});return this}hook_global_action(action,handler){this.set_hook({kind:"global action",action:action,handler:handler});return this}hook_any_action(handler){this.set_hook({kind:"any action",handler:handler});return this}hook_standard_transition(handler){this.set_hook({kind:"standard transition",handler:handler});return this}hook_main_transition(handler){this.set_hook({kind:"main transition",handler:handler});return this}hook_forced_transition(handler){this.set_hook({kind:"forced transition",handler:handler});return this}hook_any_transition(handler){this.set_hook({kind:"any transition",handler:handler});return this}hook_entry(to,handler){this.set_hook({kind:"entry",to:to,handler:handler});return this}hook_exit(from,handler){this.set_hook({kind:"exit",from:from,handler:handler});return this}post_hook(from,to,handler){this.set_hook({kind:"post hook",from:from,to:to,handler:handler});return this}post_hook_action(from,to,action,handler){this.set_hook({kind:"post named",from:from,to:to,action:action,handler:handler});return this}post_hook_global_action(action,handler){this.set_hook({kind:"post global action",action:action,handler:handler});return this}post_hook_any_action(handler){this.set_hook({kind:"post any action",handler:handler});return this}post_hook_standard_transition(handler){this.set_hook({kind:"post standard transition",handler:handler});return this}post_hook_main_transition(handler){this.set_hook({kind:"post main transition",handler:handler});return this}post_hook_forced_transition(handler){this.set_hook({kind:"post forced transition",handler:handler});return this}post_hook_any_transition(handler){this.set_hook({kind:"post any transition",handler:handler});return this}post_hook_entry(to,handler){this.set_hook({kind:"post entry",to:to,handler:handler});return this}post_hook_exit(from,handler){this.set_hook({kind:"post exit",from:from,handler:handler});return this}edges_between(from,to){return this._edges.filter((edge=>edge.from===from&&edge.to===to))}transition_impl(newStateOrAction,newData,wasForced,wasAction){let valid=false,trans_type,newState,fromAction=undefined;if(wasForced){if(this.valid_force_transition(newStateOrAction,newData)){valid=true;trans_type="forced";newState=newStateOrAction}}else if(wasAction){if(this.valid_action(newStateOrAction,newData)){const edge=this.current_action_edge_for(newStateOrAction);valid=true;trans_type=edge.kind;newState=edge.to;fromAction=newStateOrAction}}else{if(this.valid_transition(newStateOrAction,newData)){if(this._has_transition_hooks){trans_type=this.edges_between(this._state,newStateOrAction)[0].kind}valid=true;newState=newStateOrAction}}const hook_args={data:this._data,action:fromAction,from:this._state,to:newState,forced:wasForced,trans_type:trans_type};if(valid){if(this._has_hooks){function update_fields(res){if(res.hasOwnProperty("data")){hook_args.data=res.data;data_changed=true}}let data_changed=false;if(wasAction){const outcome=abstract_hook_step(this._any_action_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome);const outcome2=abstract_hook_step(this._global_action_hooks.get(newStateOrAction),hook_args);if(outcome2.pass===false){return false}update_fields(outcome2)}if(this._any_transition_hook!==undefined){const outcome=abstract_hook_step(this._any_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_exit_hooks){const outcome=abstract_hook_step(this._exit_hooks.get(this._state),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_named_hooks){if(wasAction){const nhn=named_hook_name(this._state,newState,newStateOrAction),outcome=abstract_hook_step(this._named_hooks.get(nhn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}}if(this._has_basic_hooks){const hn=hook_name(this._state,newState),outcome=abstract_hook_step(this._hooks.get(hn),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="legal"){const outcome=abstract_hook_step(this._standard_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="main"){const outcome=abstract_hook_step(this._main_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(trans_type==="forced"){const outcome=abstract_hook_step(this._forced_transition_hook,hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._has_entry_hooks){const outcome=abstract_hook_step(this._entry_hooks.get(newState),hook_args);if(outcome.pass===false){return false}update_fields(outcome)}if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState;if(data_changed){this._data=hook_args.data}}else{if(this._history_length){this._history.shove([this._state,this._data])}this._state=newState}}else{return false}if(this._has_post_hooks){if(wasAction){if(this._post_any_action_hook!==undefined){this._post_any_action_hook(hook_args)}const pgah=this._post_global_action_hooks.get(hook_args.action);if(pgah!==undefined){pgah(hook_args)}}if(this._post_any_transition_hook!==undefined){this._post_any_transition_hook(hook_args)}if(this._has_post_exit_hooks){const peh=this._post_exit_hooks.get(hook_args.from);if(peh!==undefined){peh(hook_args)}}if(this._has_post_named_hooks){if(wasAction){const nhn=named_hook_name(hook_args.from,hook_args.to,hook_args.action),pnh=this._post_named_hooks.get(nhn);if(pnh!==undefined){pnh(hook_args)}}}if(this._has_post_basic_hooks){const hook=this._post_hooks.get(hook_name(hook_args.from,hook_args.to));if(hook!==undefined){hook(hook_args)}}if(trans_type==="legal"){if(this._post_standard_transition_hook!==undefined){this._post_standard_transition_hook(hook_args)}}if(trans_type==="main"){if(this._post_main_transition_hook!==undefined){this._post_main_transition_hook(hook_args)}}if(trans_type==="forced"){if(this._post_forced_transition_hook!==undefined){this._post_forced_transition_hook(hook_args)}}if(this._has_post_entry_hooks){const hook=this._post_entry_hooks.get(hook_args.to);if(hook!==undefined){hook(hook_args)}}}return true}get history(){return this._history.toArray()}get history_inclusive(){const ret=this._history.toArray();ret.push([this.state(),this.data()]);return ret}get history_length(){return this._history_length}set history_length(to){this._history_length=to;this._history.resize(to,true)}action(actionName,newData){return this.transition_impl(actionName,newData,false,true)}get standard_state_style(){return this._state_style}get hooked_state_style(){return this._hooked_state_style}get start_state_style(){return this._start_state_style}get end_state_style(){return this._end_state_style}get terminal_state_style(){return this._terminal_state_style}get active_state_style(){return this._active_state_style}has_hooks(state){return false}style_for(state){const themes=[];const layers=[base_theme.state];themes.map((theme=>{if(theme.state){layers.push(theme.state)}}));if(this._state_style){layers.push(this._state_style)}if(this.has_hooks(state)){layers.push(base_theme.hooked);themes.map((theme=>{if(theme.hooked){layers.push(theme.hooked)}}));if(this._hooked_state_style){layers.push(this._hooked_state_style)}}if(this.state_is_terminal(state)){layers.push(base_theme.terminal);themes.map((theme=>{if(theme.terminal){layers.push(theme.terminal)}}));if(this._terminal_state_style){layers.push(this._terminal_state_style)}}if(this.is_start_state(state)){layers.push(base_theme.start);themes.map((theme=>{if(theme.start){layers.push(theme.start)}}));if(this._start_state_style){layers.push(this._start_state_style)}}if(this.is_end_state(state)){layers.push(base_theme.end);themes.map((theme=>{if(theme.end){layers.push(theme.end)}}));if(this._end_state_style){layers.push(this._end_state_style)}}if(this.state()===state){layers.push(base_theme.active);themes.map((theme=>{if(theme.active){layers.push(theme.active)}}));if(this._active_state_style){layers.push(this._active_state_style)}}const individual_style={},decl=this._state_declarations.get(state);individual_style.color=decl===null||decl===void 0?void 0:decl.color;individual_style.textColor=decl===null||decl===void 0?void 0:decl.textColor;individual_style.borderColor=decl===null||decl===void 0?void 0:decl.borderColor;individual_style.backgroundColor=decl===null||decl===void 0?void 0:decl.backgroundColor;individual_style.lineStyle=decl===null||decl===void 0?void 0:decl.lineStyle;individual_style.corners=decl===null||decl===void 0?void 0:decl.corners;individual_style.shape=decl===null||decl===void 0?void 0:decl.shape;layers.push(individual_style);return layers.reduce(((acc,cur)=>{const composite_state=acc;Object.keys(cur).forEach((key=>{var _a;return composite_state[key]=(_a=cur[key])!==null&&_a!==void 0?_a:composite_state[key]}));return composite_state}),{})}do(actionName,newData){return this.transition_impl(actionName,newData,false,true)}transition(newState,newData){return this.transition_impl(newState,newData,false,false)}go(newState,newData){return this.transition_impl(newState,newData,false,false)}force_transition(newState,newData){return this.transition_impl(newState,newData,true,false)}current_action_for(action){const action_base=this._actions.get(action);return action_base?action_base.get(this.state()):undefined}current_action_edge_for(action){const idx=this.current_action_for(action);if(idx===undefined||idx===null){throw new JssmError(this,`No such action ${JSON.stringify(action)}`)}return this._edges[idx]}valid_action(action,_newData){return this.current_action_for(action)!==undefined}valid_transition(newState,_newData){const transition_for=this.lookup_transition_for(this.state(),newState);if(!transition_for){return false}if(transition_for.forced_only){return false}return true}valid_force_transition(newState,_newData){return this.lookup_transition_for(this.state(),newState)!==undefined}instance_name(){return this._instance_name}sm(template_strings,...remainder){return sm(template_strings,...remainder)}}function sm(template_strings,...remainder){return new Machine(make(template_strings.reduce(((acc,val,idx)=>`${acc}${remainder[idx-1]}${val}`))))}function from(MachineAsString,ExtraConstructorFields){const to_decorate=make(MachineAsString);if(ExtraConstructorFields!==undefined){Object.keys(ExtraConstructorFields).map((key=>to_decorate[key]=ExtraConstructorFields[key]))}return new Machine(to_decorate)}function is_hook_complex_result(hr){if(typeof hr==="object"){if(typeof hr.pass==="boolean"){return true}}return false}function is_hook_rejection(hr){if(hr===true){return false}if(hr===undefined){return false}if(hr===false){return true}if(is_hook_complex_result(hr)){return!hr.pass}throw new TypeError("unknown hook rejection type result")}function abstract_hook_step(maybe_hook,hook_args){if(maybe_hook!==undefined){const result=maybe_hook(hook_args);if(result===undefined){return{pass:true}}if(result===true){return{pass:true}}if(result===false){return{pass:false}}if(is_hook_complex_result(result)){return result}throw new TypeError(`Unknown hook result type ${result}`)}else{return{pass:true}}}function deserialize(machine_string,ser){const machine=from(machine_string,{data:ser.data,history:ser.history_capacity});machine._state=ser.state;ser.history.forEach((history_item=>machine._history.push(history_item)));return machine}exports.Machine=Machine;exports.abstract_hook_step=abstract_hook_step;exports.arrow_direction=arrow_direction;exports.arrow_left_kind=arrow_left_kind;exports.arrow_right_kind=arrow_right_kind;exports.compile=compile;exports.constants=constants;exports.deserialize=deserialize;exports.find_repeated=find_repeated;exports.from=from;exports.gviz_shapes=gviz_shapes;exports.histograph=histograph;exports.is_hook_complex_result=is_hook_complex_result;exports.is_hook_rejection=is_hook_rejection;exports.make=make;exports.named_colors=named_colors;exports.parse=wrap_parse;exports.seq=seq;exports.shapes=shapes;exports.sm=sm;exports.state_style_condense=state_style_condense;exports.transfer_state_properties=transfer_state_properties;exports.unique=unique;exports.version=version;exports.weighted_histo_key=weighted_histo_key;exports.weighted_rand_select=weighted_rand_select;exports.weighted_sample_select=weighted_sample_select;Object.defineProperty(exports,"__esModule",{value:true});return exports}({}); diff --git a/dist/jssm.es5.iife.nonmin.js b/dist/jssm.es5.iife.nonmin.js index 5233fc74..b3c5b386 100644 --- a/dist/jssm.es5.iife.nonmin.js +++ b/dist/jssm.es5.iife.nonmin.js @@ -871,6 +871,177 @@ var jssm = (function (exports) { class circular_buffer{constructor(uCapacity){if(!Number.isInteger(uCapacity)){throw new RangeError(`Capacity must be an integer, received ${uCapacity}`)}if(uCapacity<0){throw new RangeError(`Capacity must be a non-negative integer, received ${uCapacity}`)}this._values=new Array(uCapacity);this._capacity=uCapacity;this._cursor=0;this._offset=0;this._length=0;}get capacity(){return this._capacity}set capacity(newSize){this.resize(newSize);}get length(){return this._length}set length(newLength){if(newLength>this._capacity){throw new RangeError(`Requested new length [${newLength}] exceeds container capacity [${this._capacity}]`)}if(newLength<0){throw new RangeError(`Requested new length [${newLength}] cannot be negative`)}if(!Number.isInteger(newLength)){throw new RangeError(`Requested new length [${newLength}] must be an integer`)}if(this._length<=newLength){return}this._length=newLength;}get available(){return this._capacity-this._length}get isEmpty(){return this._length===0}get isFull(){return this._length===this._capacity}get first(){if(this.isEmpty){throw new RangeError("Cannot return first element of an empty container")}return this.at(0)}get last(){if(this.isEmpty){throw new RangeError("Cannot return last element of an empty container")}return this.at(this.length-1)}static from(i,map_fn,t){const new_array=map_fn?Array.from(i,map_fn,t):Array.from(i);const target_length=new_array.length;const ncb=new circular_buffer(target_length);ncb._values=new_array;ncb._length=target_length;return ncb}push(v){if(this.isFull){throw new RangeError(`Cannot push, structure is full to capacity`)}this._values[(this._cursor+this._length++)%this._capacity]=v;return v}shove(v){let shoved;if(this._capacity===0){throw new RangeError(`Cannot shove, structure is zero-capacity`)}if(this.isFull){shoved=this.pop();}this.push(v);return shoved}fill(x){for(let i=0;i=this._capacity){this._cursor-=this._capacity;}return cache}at(i){if(i<0){throw new RangeError(`circular_buffer does not support negative traversals; called at(${i})`)}if(!Number.isInteger(i)){throw new RangeError(`Accessors must be non-negative integers; called at(${i})`)}if(i>=this._capacity){throw new RangeError(`Requested cell ${i} exceeds container permanent capacity`)}if(i>=this._length){throw new RangeError(`Requested cell ${i} exceeds container current length`)}return this._values[(this._cursor+i)%this._capacity]}pos(i){return this.at(i-this.offset())}offset(){return this._offset}resize(newSize,preferEnd=false){this._values=this.toArray();this._cursor=0;const oldSize=this._length;this._length=Math.min(this._length,newSize);this._capacity=newSize;if(newSize>=oldSize){this._values.length=newSize;}else {if(preferEnd){const tmp=this._values.slice(oldSize-newSize);this._values=tmp;}else {this._values.length=newSize;}}}toArray(){const startPoint=this._cursor%this._capacity;if(this._capacity>startPoint+this._length){return this._values.slice(startPoint,startPoint+this._length)}else {const base=this._values.slice(startPoint,this._capacity);base.push(...this._values.slice(0,this.length-(this._capacity-startPoint)));return base}}} + const base_state_style$3 = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' + }; + const base_active_state_style$3 = { + textColor: 'white', + backgroundColor: 'dodgerblue4' + }; + const base_hooked_state_style$3 = { + shape: 'component' + }; + const base_terminal_state_style$3 = { + textColor: 'white', + backgroundColor: 'crimson' + }; + const base_active_terminal_state_style$3 = { + textColor: 'white', + backgroundColor: 'indigo' + }; + const base_start_state_style$3 = { + backgroundColor: 'yellow' + }; + const base_active_start_state_style$3 = { + backgroundColor: 'yellowgreen' + }; + const base_active_hooked_state_style$3 = { + backgroundColor: 'yellowgreen' + }; + const base_end_state_style$3 = { + textColor: 'white', + backgroundColor: 'darkolivegreen' + }; + const base_active_end_state_style$3 = { + textColor: 'white', + backgroundColor: 'darkgreen' + }; + const base_theme = { + state: base_state_style$3, + start: base_start_state_style$3, + end: base_end_state_style$3, + terminal: base_terminal_state_style$3, + hooked: base_hooked_state_style$3, + active: base_active_state_style$3, + active_start: base_active_start_state_style$3, + active_end: base_active_end_state_style$3, + active_terminal: base_active_terminal_state_style$3, + active_hooked: base_active_hooked_state_style$3, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME + }; + + const base_state_style$2 = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' + }; + const base_active_state_style$2 = { + textColor: 'white', + backgroundColor: 'dodgerblue4' + }; + const base_hooked_state_style$2 = { + shape: 'component' + }; + const base_terminal_state_style$2 = { + textColor: 'white', + backgroundColor: 'crimson' + }; + const base_active_terminal_state_style$2 = { + textColor: 'white', + backgroundColor: 'indigo' + }; + const base_start_state_style$2 = { + backgroundColor: 'yellow' + }; + const base_active_start_state_style$2 = { + backgroundColor: 'yellowgreen' + }; + const base_active_hooked_state_style$2 = { + backgroundColor: 'yellowgreen' + }; + const base_end_state_style$2 = { + textColor: 'white', + backgroundColor: 'darkolivegreen' + }; + const base_active_end_state_style$2 = { + textColor: 'white', + backgroundColor: 'darkgreen' + }; + const default_theme = { + state: base_state_style$2, + start: base_start_state_style$2, + end: base_end_state_style$2, + terminal: base_terminal_state_style$2, + hooked: base_hooked_state_style$2, + active: base_active_state_style$2, + active_start: base_active_start_state_style$2, + active_end: base_active_end_state_style$2, + active_terminal: base_active_terminal_state_style$2, + active_hooked: base_active_hooked_state_style$2, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME + }; + + const base_state_style$1 = { + shape: 'rectangle', + backgroundColor: 'khaki', + textColor: 'black', + borderColor: 'black' + }; + const base_active_state_style$1 = { + textColor: 'white', + backgroundColor: 'dodgerblue4' + }; + const base_hooked_state_style$1 = { + shape: 'component' + }; + const base_terminal_state_style$1 = { + textColor: 'white', + backgroundColor: 'crimson' + }; + const base_active_terminal_state_style$1 = { + textColor: 'white', + backgroundColor: 'indigo' + }; + const base_start_state_style$1 = { + backgroundColor: 'yellow' + }; + const base_active_start_state_style$1 = { + backgroundColor: 'yellowgreen' + }; + const base_active_hooked_state_style$1 = { + backgroundColor: 'yellowgreen' + }; + const base_end_state_style$1 = { + textColor: 'white', + backgroundColor: 'darkolivegreen' + }; + const base_active_end_state_style$1 = { + textColor: 'white', + backgroundColor: 'darkgreen' + }; + const modern_theme = { + state: base_state_style$1, + start: base_start_state_style$1, + end: base_end_state_style$1, + terminal: base_terminal_state_style$1, + hooked: base_hooked_state_style$1, + active: base_active_state_style$1, + active_start: base_active_start_state_style$1, + active_end: base_active_end_state_style$1, + active_terminal: base_active_terminal_state_style$1, + active_hooked: base_active_hooked_state_style$1, + legal: undefined, + main: undefined, + forced: undefined, + action: undefined, + graph: undefined, + title: undefined // TODO FIXME + }; + const base_state_style = { shape: 'rectangle', backgroundColor: 'khaki', @@ -909,7 +1080,7 @@ var jssm = (function (exports) { textColor: 'white', backgroundColor: 'darkgreen' }; - const base_theme = { + const ocean_theme = { state: base_state_style, start: base_start_state_style, end: base_end_state_style, @@ -18883,6 +19054,10 @@ var jssm = (function (exports) { const version = "5.81.3"; // whargarbl lots of these return arrays could/should be sets + const themes = new Map(); + themes.set('default', default_theme); + themes.set('modern', modern_theme); + themes.set('ocean', ocean_theme); const { shapes, gviz_shapes, named_colors } = constants; /* eslint-disable complexity */ /********* @@ -19562,7 +19737,7 @@ var jssm = (function (exports) { this._arrange_start_declaration = arrange_start_declaration; this._arrange_end_declaration = arrange_end_declaration; this._dot_preamble = dot_preamble; - this._theme = theme; + this._themes = [theme]; this._flow = flow; this._graph_layout = graph_layout; this._has_hooks = false; @@ -20255,7 +20430,10 @@ var jssm = (function (exports) { return Array.from(this._actions.keys()); } theme() { - return this._theme; // constructor sets this to "default" otherwise + return this._themes[0]; // returns topmost only + } + themes() { + return this._themes; // constructor sets this to "default" otherwise } flow() { return this._flow; diff --git a/docs/docs/assets/search.js b/docs/docs/assets/search.js index 6d6c6590..9f9e721f 100644 --- a/docs/docs/assets/search.js +++ b/docs/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"4\":\"Namespace\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\",\"16777216\":\"Reference\"},\"rows\":[{\"id\":0,\"kind\":2,\"name\":\"jssm\",\"url\":\"modules/jssm.html\",\"classes\":\"tsd-kind-module\"},{\"id\":1,\"kind\":64,\"name\":\"transfer_state_properties\",\"url\":\"modules/jssm.html#transfer_state_properties\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":2,\"kind\":128,\"name\":\"Machine\",\"url\":\"classes/jssm.Machine.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":3,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/jssm.Machine.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"jssm.Machine\"},{\"id\":4,\"kind\":1024,\"name\":\"_state\",\"url\":\"classes/jssm.Machine.html#_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":5,\"kind\":1024,\"name\":\"_states\",\"url\":\"classes/jssm.Machine.html#_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":6,\"kind\":1024,\"name\":\"_edges\",\"url\":\"classes/jssm.Machine.html#_edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":7,\"kind\":1024,\"name\":\"_edge_map\",\"url\":\"classes/jssm.Machine.html#_edge_map\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":8,\"kind\":1024,\"name\":\"_named_transitions\",\"url\":\"classes/jssm.Machine.html#_named_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":9,\"kind\":1024,\"name\":\"_actions\",\"url\":\"classes/jssm.Machine.html#_actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":10,\"kind\":1024,\"name\":\"_reverse_actions\",\"url\":\"classes/jssm.Machine.html#_reverse_actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":11,\"kind\":1024,\"name\":\"_reverse_action_targets\",\"url\":\"classes/jssm.Machine.html#_reverse_action_targets\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":12,\"kind\":1024,\"name\":\"_start_states\",\"url\":\"classes/jssm.Machine.html#_start_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":13,\"kind\":1024,\"name\":\"_end_states\",\"url\":\"classes/jssm.Machine.html#_end_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":14,\"kind\":1024,\"name\":\"_machine_author\",\"url\":\"classes/jssm.Machine.html#_machine_author\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":15,\"kind\":1024,\"name\":\"_machine_comment\",\"url\":\"classes/jssm.Machine.html#_machine_comment\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":16,\"kind\":1024,\"name\":\"_machine_contributor\",\"url\":\"classes/jssm.Machine.html#_machine_contributor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":17,\"kind\":1024,\"name\":\"_machine_definition\",\"url\":\"classes/jssm.Machine.html#_machine_definition\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":18,\"kind\":1024,\"name\":\"_machine_language\",\"url\":\"classes/jssm.Machine.html#_machine_language\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":19,\"kind\":1024,\"name\":\"_machine_license\",\"url\":\"classes/jssm.Machine.html#_machine_license\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":20,\"kind\":1024,\"name\":\"_machine_name\",\"url\":\"classes/jssm.Machine.html#_machine_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":21,\"kind\":1024,\"name\":\"_machine_version\",\"url\":\"classes/jssm.Machine.html#_machine_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":22,\"kind\":1024,\"name\":\"_fsl_version\",\"url\":\"classes/jssm.Machine.html#_fsl_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":23,\"kind\":1024,\"name\":\"_raw_state_declaration\",\"url\":\"classes/jssm.Machine.html#_raw_state_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":24,\"kind\":1024,\"name\":\"_state_declarations\",\"url\":\"classes/jssm.Machine.html#_state_declarations\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":25,\"kind\":1024,\"name\":\"_instance_name\",\"url\":\"classes/jssm.Machine.html#_instance_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":26,\"kind\":1024,\"name\":\"_data\",\"url\":\"classes/jssm.Machine.html#_data\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":27,\"kind\":1024,\"name\":\"_graph_layout\",\"url\":\"classes/jssm.Machine.html#_graph_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":28,\"kind\":1024,\"name\":\"_dot_preamble\",\"url\":\"classes/jssm.Machine.html#_dot_preamble\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":29,\"kind\":1024,\"name\":\"_arrange_declaration\",\"url\":\"classes/jssm.Machine.html#_arrange_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":30,\"kind\":1024,\"name\":\"_arrange_start_declaration\",\"url\":\"classes/jssm.Machine.html#_arrange_start_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":31,\"kind\":1024,\"name\":\"_arrange_end_declaration\",\"url\":\"classes/jssm.Machine.html#_arrange_end_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":32,\"kind\":1024,\"name\":\"_theme\",\"url\":\"classes/jssm.Machine.html#_theme\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":33,\"kind\":1024,\"name\":\"_flow\",\"url\":\"classes/jssm.Machine.html#_flow\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":34,\"kind\":1024,\"name\":\"_has_hooks\",\"url\":\"classes/jssm.Machine.html#_has_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":35,\"kind\":1024,\"name\":\"_has_basic_hooks\",\"url\":\"classes/jssm.Machine.html#_has_basic_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":36,\"kind\":1024,\"name\":\"_has_named_hooks\",\"url\":\"classes/jssm.Machine.html#_has_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":37,\"kind\":1024,\"name\":\"_has_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_has_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":38,\"kind\":1024,\"name\":\"_has_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_has_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":39,\"kind\":1024,\"name\":\"_has_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_has_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":40,\"kind\":1024,\"name\":\"_has_transition_hooks\",\"url\":\"classes/jssm.Machine.html#_has_transition_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":41,\"kind\":1024,\"name\":\"_hooks\",\"url\":\"classes/jssm.Machine.html#_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":42,\"kind\":1024,\"name\":\"_named_hooks\",\"url\":\"classes/jssm.Machine.html#_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":43,\"kind\":1024,\"name\":\"_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":44,\"kind\":1024,\"name\":\"_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":45,\"kind\":1024,\"name\":\"_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":46,\"kind\":1024,\"name\":\"_any_action_hook\",\"url\":\"classes/jssm.Machine.html#_any_action_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":47,\"kind\":1024,\"name\":\"_standard_transition_hook\",\"url\":\"classes/jssm.Machine.html#_standard_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":48,\"kind\":1024,\"name\":\"_main_transition_hook\",\"url\":\"classes/jssm.Machine.html#_main_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":49,\"kind\":1024,\"name\":\"_forced_transition_hook\",\"url\":\"classes/jssm.Machine.html#_forced_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":50,\"kind\":1024,\"name\":\"_any_transition_hook\",\"url\":\"classes/jssm.Machine.html#_any_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":51,\"kind\":1024,\"name\":\"_has_post_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":52,\"kind\":1024,\"name\":\"_has_post_basic_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_basic_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":53,\"kind\":1024,\"name\":\"_has_post_named_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":54,\"kind\":1024,\"name\":\"_has_post_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":55,\"kind\":1024,\"name\":\"_has_post_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":56,\"kind\":1024,\"name\":\"_has_post_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":57,\"kind\":1024,\"name\":\"_has_post_transition_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_transition_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":58,\"kind\":1024,\"name\":\"_post_hooks\",\"url\":\"classes/jssm.Machine.html#_post_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":59,\"kind\":1024,\"name\":\"_post_named_hooks\",\"url\":\"classes/jssm.Machine.html#_post_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":60,\"kind\":1024,\"name\":\"_post_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_post_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":61,\"kind\":1024,\"name\":\"_post_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_post_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":62,\"kind\":1024,\"name\":\"_post_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_post_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":63,\"kind\":1024,\"name\":\"_post_any_action_hook\",\"url\":\"classes/jssm.Machine.html#_post_any_action_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":64,\"kind\":1024,\"name\":\"_post_standard_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_standard_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":65,\"kind\":1024,\"name\":\"_post_main_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_main_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":66,\"kind\":1024,\"name\":\"_post_forced_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_forced_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":67,\"kind\":1024,\"name\":\"_post_any_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_any_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":68,\"kind\":1024,\"name\":\"_property_keys\",\"url\":\"classes/jssm.Machine.html#_property_keys\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":69,\"kind\":1024,\"name\":\"_default_properties\",\"url\":\"classes/jssm.Machine.html#_default_properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":70,\"kind\":1024,\"name\":\"_state_properties\",\"url\":\"classes/jssm.Machine.html#_state_properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":71,\"kind\":1024,\"name\":\"_required_properties\",\"url\":\"classes/jssm.Machine.html#_required_properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":72,\"kind\":1024,\"name\":\"_history\",\"url\":\"classes/jssm.Machine.html#_history\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":73,\"kind\":1024,\"name\":\"_history_length\",\"url\":\"classes/jssm.Machine.html#_history_length\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":74,\"kind\":1024,\"name\":\"_state_style\",\"url\":\"classes/jssm.Machine.html#_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":75,\"kind\":1024,\"name\":\"_active_state_style\",\"url\":\"classes/jssm.Machine.html#_active_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":76,\"kind\":1024,\"name\":\"_hooked_state_style\",\"url\":\"classes/jssm.Machine.html#_hooked_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":77,\"kind\":1024,\"name\":\"_terminal_state_style\",\"url\":\"classes/jssm.Machine.html#_terminal_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":78,\"kind\":1024,\"name\":\"_start_state_style\",\"url\":\"classes/jssm.Machine.html#_start_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":79,\"kind\":1024,\"name\":\"_end_state_style\",\"url\":\"classes/jssm.Machine.html#_end_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":80,\"kind\":1024,\"name\":\"_state_labels\",\"url\":\"classes/jssm.Machine.html#_state_labels\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":81,\"kind\":2048,\"name\":\"_new_state\",\"url\":\"classes/jssm.Machine.html#_new_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":82,\"kind\":2048,\"name\":\"state\",\"url\":\"classes/jssm.Machine.html#state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":83,\"kind\":2048,\"name\":\"label_for\",\"url\":\"classes/jssm.Machine.html#label_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":84,\"kind\":2048,\"name\":\"data\",\"url\":\"classes/jssm.Machine.html#data\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":85,\"kind\":2048,\"name\":\"prop\",\"url\":\"classes/jssm.Machine.html#prop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":86,\"kind\":2048,\"name\":\"strict_prop\",\"url\":\"classes/jssm.Machine.html#strict_prop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":87,\"kind\":2048,\"name\":\"props\",\"url\":\"classes/jssm.Machine.html#props\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":88,\"kind\":2048,\"name\":\"known_prop\",\"url\":\"classes/jssm.Machine.html#known_prop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":89,\"kind\":2048,\"name\":\"known_props\",\"url\":\"classes/jssm.Machine.html#known_props\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":90,\"kind\":2048,\"name\":\"is_start_state\",\"url\":\"classes/jssm.Machine.html#is_start_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":91,\"kind\":2048,\"name\":\"is_end_state\",\"url\":\"classes/jssm.Machine.html#is_end_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":92,\"kind\":2048,\"name\":\"state_is_final\",\"url\":\"classes/jssm.Machine.html#state_is_final\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":93,\"kind\":2048,\"name\":\"is_final\",\"url\":\"classes/jssm.Machine.html#is_final\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":94,\"kind\":2048,\"name\":\"serialize\",\"url\":\"classes/jssm.Machine.html#serialize\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":95,\"kind\":2048,\"name\":\"graph_layout\",\"url\":\"classes/jssm.Machine.html#graph_layout\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":96,\"kind\":2048,\"name\":\"dot_preamble\",\"url\":\"classes/jssm.Machine.html#dot_preamble\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":97,\"kind\":2048,\"name\":\"machine_author\",\"url\":\"classes/jssm.Machine.html#machine_author\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":98,\"kind\":2048,\"name\":\"machine_comment\",\"url\":\"classes/jssm.Machine.html#machine_comment\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":99,\"kind\":2048,\"name\":\"machine_contributor\",\"url\":\"classes/jssm.Machine.html#machine_contributor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":100,\"kind\":2048,\"name\":\"machine_definition\",\"url\":\"classes/jssm.Machine.html#machine_definition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":101,\"kind\":2048,\"name\":\"machine_language\",\"url\":\"classes/jssm.Machine.html#machine_language\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":102,\"kind\":2048,\"name\":\"machine_license\",\"url\":\"classes/jssm.Machine.html#machine_license\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":103,\"kind\":2048,\"name\":\"machine_name\",\"url\":\"classes/jssm.Machine.html#machine_name\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":104,\"kind\":2048,\"name\":\"machine_version\",\"url\":\"classes/jssm.Machine.html#machine_version\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":105,\"kind\":2048,\"name\":\"raw_state_declarations\",\"url\":\"classes/jssm.Machine.html#raw_state_declarations\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":106,\"kind\":2048,\"name\":\"state_declaration\",\"url\":\"classes/jssm.Machine.html#state_declaration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":107,\"kind\":2048,\"name\":\"state_declarations\",\"url\":\"classes/jssm.Machine.html#state_declarations\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":108,\"kind\":2048,\"name\":\"fsl_version\",\"url\":\"classes/jssm.Machine.html#fsl_version\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":109,\"kind\":2048,\"name\":\"machine_state\",\"url\":\"classes/jssm.Machine.html#machine_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":110,\"kind\":2048,\"name\":\"states\",\"url\":\"classes/jssm.Machine.html#states\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":111,\"kind\":2048,\"name\":\"state_for\",\"url\":\"classes/jssm.Machine.html#state_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":112,\"kind\":2048,\"name\":\"has_state\",\"url\":\"classes/jssm.Machine.html#has_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":113,\"kind\":2048,\"name\":\"list_edges\",\"url\":\"classes/jssm.Machine.html#list_edges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":114,\"kind\":2048,\"name\":\"list_named_transitions\",\"url\":\"classes/jssm.Machine.html#list_named_transitions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":115,\"kind\":2048,\"name\":\"list_actions\",\"url\":\"classes/jssm.Machine.html#list_actions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":116,\"kind\":2048,\"name\":\"theme\",\"url\":\"classes/jssm.Machine.html#theme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":117,\"kind\":2048,\"name\":\"flow\",\"url\":\"classes/jssm.Machine.html#flow\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":118,\"kind\":2048,\"name\":\"get_transition_by_state_names\",\"url\":\"classes/jssm.Machine.html#get_transition_by_state_names\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":119,\"kind\":2048,\"name\":\"lookup_transition_for\",\"url\":\"classes/jssm.Machine.html#lookup_transition_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":120,\"kind\":2048,\"name\":\"list_transitions\",\"url\":\"classes/jssm.Machine.html#list_transitions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":121,\"kind\":2048,\"name\":\"list_entrances\",\"url\":\"classes/jssm.Machine.html#list_entrances\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":122,\"kind\":2048,\"name\":\"list_exits\",\"url\":\"classes/jssm.Machine.html#list_exits\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":123,\"kind\":2048,\"name\":\"probable_exits_for\",\"url\":\"classes/jssm.Machine.html#probable_exits_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":124,\"kind\":2048,\"name\":\"probabilistic_transition\",\"url\":\"classes/jssm.Machine.html#probabilistic_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":125,\"kind\":2048,\"name\":\"probabilistic_walk\",\"url\":\"classes/jssm.Machine.html#probabilistic_walk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":126,\"kind\":2048,\"name\":\"probabilistic_histo_walk\",\"url\":\"classes/jssm.Machine.html#probabilistic_histo_walk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":127,\"kind\":2048,\"name\":\"actions\",\"url\":\"classes/jssm.Machine.html#actions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":128,\"kind\":2048,\"name\":\"list_states_having_action\",\"url\":\"classes/jssm.Machine.html#list_states_having_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":129,\"kind\":2048,\"name\":\"list_exit_actions\",\"url\":\"classes/jssm.Machine.html#list_exit_actions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":130,\"kind\":2048,\"name\":\"probable_action_exits\",\"url\":\"classes/jssm.Machine.html#probable_action_exits\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":131,\"kind\":2048,\"name\":\"is_unenterable\",\"url\":\"classes/jssm.Machine.html#is_unenterable\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":132,\"kind\":2048,\"name\":\"has_unenterables\",\"url\":\"classes/jssm.Machine.html#has_unenterables\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":133,\"kind\":2048,\"name\":\"is_terminal\",\"url\":\"classes/jssm.Machine.html#is_terminal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":134,\"kind\":2048,\"name\":\"state_is_terminal\",\"url\":\"classes/jssm.Machine.html#state_is_terminal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":135,\"kind\":2048,\"name\":\"has_terminals\",\"url\":\"classes/jssm.Machine.html#has_terminals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":136,\"kind\":2048,\"name\":\"is_complete\",\"url\":\"classes/jssm.Machine.html#is_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":137,\"kind\":2048,\"name\":\"state_is_complete\",\"url\":\"classes/jssm.Machine.html#state_is_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":138,\"kind\":2048,\"name\":\"has_completes\",\"url\":\"classes/jssm.Machine.html#has_completes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":139,\"kind\":2048,\"name\":\"set_hook\",\"url\":\"classes/jssm.Machine.html#set_hook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":140,\"kind\":2048,\"name\":\"hook\",\"url\":\"classes/jssm.Machine.html#hook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":141,\"kind\":2048,\"name\":\"hook_action\",\"url\":\"classes/jssm.Machine.html#hook_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":142,\"kind\":2048,\"name\":\"hook_global_action\",\"url\":\"classes/jssm.Machine.html#hook_global_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":143,\"kind\":2048,\"name\":\"hook_any_action\",\"url\":\"classes/jssm.Machine.html#hook_any_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":144,\"kind\":2048,\"name\":\"hook_standard_transition\",\"url\":\"classes/jssm.Machine.html#hook_standard_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":145,\"kind\":2048,\"name\":\"hook_main_transition\",\"url\":\"classes/jssm.Machine.html#hook_main_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":146,\"kind\":2048,\"name\":\"hook_forced_transition\",\"url\":\"classes/jssm.Machine.html#hook_forced_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":147,\"kind\":2048,\"name\":\"hook_any_transition\",\"url\":\"classes/jssm.Machine.html#hook_any_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":148,\"kind\":2048,\"name\":\"hook_entry\",\"url\":\"classes/jssm.Machine.html#hook_entry\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":149,\"kind\":2048,\"name\":\"hook_exit\",\"url\":\"classes/jssm.Machine.html#hook_exit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":150,\"kind\":2048,\"name\":\"post_hook\",\"url\":\"classes/jssm.Machine.html#post_hook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":151,\"kind\":2048,\"name\":\"post_hook_action\",\"url\":\"classes/jssm.Machine.html#post_hook_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":152,\"kind\":2048,\"name\":\"post_hook_global_action\",\"url\":\"classes/jssm.Machine.html#post_hook_global_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":153,\"kind\":2048,\"name\":\"post_hook_any_action\",\"url\":\"classes/jssm.Machine.html#post_hook_any_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":154,\"kind\":2048,\"name\":\"post_hook_standard_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_standard_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":155,\"kind\":2048,\"name\":\"post_hook_main_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_main_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":156,\"kind\":2048,\"name\":\"post_hook_forced_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_forced_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":157,\"kind\":2048,\"name\":\"post_hook_any_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_any_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":158,\"kind\":2048,\"name\":\"post_hook_entry\",\"url\":\"classes/jssm.Machine.html#post_hook_entry\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":159,\"kind\":2048,\"name\":\"post_hook_exit\",\"url\":\"classes/jssm.Machine.html#post_hook_exit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":160,\"kind\":2048,\"name\":\"edges_between\",\"url\":\"classes/jssm.Machine.html#edges_between\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":161,\"kind\":2048,\"name\":\"transition_impl\",\"url\":\"classes/jssm.Machine.html#transition_impl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":162,\"kind\":262144,\"name\":\"history\",\"url\":\"classes/jssm.Machine.html#history\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":163,\"kind\":262144,\"name\":\"history_inclusive\",\"url\":\"classes/jssm.Machine.html#history_inclusive\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":164,\"kind\":262144,\"name\":\"history_length\",\"url\":\"classes/jssm.Machine.html#history_length\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":165,\"kind\":2048,\"name\":\"action\",\"url\":\"classes/jssm.Machine.html#action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":166,\"kind\":262144,\"name\":\"standard_state_style\",\"url\":\"classes/jssm.Machine.html#standard_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":167,\"kind\":262144,\"name\":\"hooked_state_style\",\"url\":\"classes/jssm.Machine.html#hooked_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":168,\"kind\":262144,\"name\":\"start_state_style\",\"url\":\"classes/jssm.Machine.html#start_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":169,\"kind\":262144,\"name\":\"end_state_style\",\"url\":\"classes/jssm.Machine.html#end_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":170,\"kind\":262144,\"name\":\"terminal_state_style\",\"url\":\"classes/jssm.Machine.html#terminal_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":171,\"kind\":262144,\"name\":\"active_state_style\",\"url\":\"classes/jssm.Machine.html#active_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":172,\"kind\":2048,\"name\":\"has_hooks\",\"url\":\"classes/jssm.Machine.html#has_hooks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":173,\"kind\":2048,\"name\":\"style_for\",\"url\":\"classes/jssm.Machine.html#style_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":174,\"kind\":2048,\"name\":\"do\",\"url\":\"classes/jssm.Machine.html#do\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":175,\"kind\":2048,\"name\":\"transition\",\"url\":\"classes/jssm.Machine.html#transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":176,\"kind\":2048,\"name\":\"go\",\"url\":\"classes/jssm.Machine.html#go\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":177,\"kind\":2048,\"name\":\"force_transition\",\"url\":\"classes/jssm.Machine.html#force_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":178,\"kind\":2048,\"name\":\"current_action_for\",\"url\":\"classes/jssm.Machine.html#current_action_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":179,\"kind\":2048,\"name\":\"current_action_edge_for\",\"url\":\"classes/jssm.Machine.html#current_action_edge_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":180,\"kind\":2048,\"name\":\"valid_action\",\"url\":\"classes/jssm.Machine.html#valid_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":181,\"kind\":2048,\"name\":\"valid_transition\",\"url\":\"classes/jssm.Machine.html#valid_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":182,\"kind\":2048,\"name\":\"valid_force_transition\",\"url\":\"classes/jssm.Machine.html#valid_force_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":183,\"kind\":2048,\"name\":\"instance_name\",\"url\":\"classes/jssm.Machine.html#instance_name\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":184,\"kind\":2048,\"name\":\"sm\",\"url\":\"classes/jssm.Machine.html#sm\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":185,\"kind\":64,\"name\":\"deserialize\",\"url\":\"modules/jssm.html#deserialize\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":186,\"kind\":64,\"name\":\"make\",\"url\":\"modules/jssm.html#make\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":187,\"kind\":64,\"name\":\"parse\",\"url\":\"modules/jssm.html#parse\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":188,\"kind\":64,\"name\":\"compile\",\"url\":\"modules/jssm.html#compile\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":189,\"kind\":64,\"name\":\"sm\",\"url\":\"modules/jssm.html#sm\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":190,\"kind\":64,\"name\":\"from\",\"url\":\"modules/jssm.html#from\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":191,\"kind\":64,\"name\":\"arrow_direction\",\"url\":\"modules/jssm.html#arrow_direction\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":192,\"kind\":64,\"name\":\"arrow_left_kind\",\"url\":\"modules/jssm.html#arrow_left_kind\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":193,\"kind\":64,\"name\":\"arrow_right_kind\",\"url\":\"modules/jssm.html#arrow_right_kind\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":194,\"kind\":32,\"name\":\"shapes\",\"url\":\"modules/jssm.html#shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":195,\"kind\":32,\"name\":\"gviz_shapes\",\"url\":\"modules/jssm.html#gviz_shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":196,\"kind\":32,\"name\":\"named_colors\",\"url\":\"modules/jssm.html#named_colors\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":197,\"kind\":64,\"name\":\"is_hook_rejection\",\"url\":\"modules/jssm.html#is_hook_rejection\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":198,\"kind\":64,\"name\":\"is_hook_complex_result\",\"url\":\"modules/jssm.html#is_hook_complex_result\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":199,\"kind\":64,\"name\":\"abstract_hook_step\",\"url\":\"modules/jssm.html#abstract_hook_step\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":200,\"kind\":64,\"name\":\"state_style_condense\",\"url\":\"modules/jssm.html#state_style_condense\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":201,\"kind\":2,\"name\":\"jssm_types\",\"url\":\"modules/jssm_types.html\",\"classes\":\"tsd-kind-module\"},{\"id\":202,\"kind\":4194304,\"name\":\"JssmColor\",\"url\":\"modules/jssm_types.html#JssmColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":203,\"kind\":4194304,\"name\":\"JssmShape\",\"url\":\"modules/jssm_types.html#JssmShape\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":204,\"kind\":4194304,\"name\":\"JssmTransition\",\"url\":\"modules/jssm_types.html#JssmTransition\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":205,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmTransition\"},{\"id\":206,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.from-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":207,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.to-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":208,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.name-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":209,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.action-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":210,\"kind\":1024,\"name\":\"check\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.check-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":211,\"kind\":1024,\"name\":\"probability\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.probability\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":212,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.kind-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":213,\"kind\":1024,\"name\":\"forced_only\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.forced_only\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":214,\"kind\":1024,\"name\":\"main_path\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.main_path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":215,\"kind\":4194304,\"name\":\"JssmTransitions\",\"url\":\"modules/jssm_types.html#JssmTransitions\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":216,\"kind\":4194304,\"name\":\"JssmTransitionList\",\"url\":\"modules/jssm_types.html#JssmTransitionList\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":217,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmTransitionList.__type-19\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmTransitionList\"},{\"id\":218,\"kind\":1024,\"name\":\"entrances\",\"url\":\"modules/jssm_types.html#JssmTransitionList.__type-19.entrances\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransitionList.__type\"},{\"id\":219,\"kind\":1024,\"name\":\"exits\",\"url\":\"modules/jssm_types.html#JssmTransitionList.__type-19.exits\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransitionList.__type\"},{\"id\":220,\"kind\":4194304,\"name\":\"JssmTransitionRule\",\"url\":\"modules/jssm_types.html#JssmTransitionRule\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":221,\"kind\":4194304,\"name\":\"JssmArrow\",\"url\":\"modules/jssm_types.html#JssmArrow\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":222,\"kind\":4194304,\"name\":\"JssmArrowKind\",\"url\":\"modules/jssm_types.html#JssmArrowKind\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":223,\"kind\":4194304,\"name\":\"JssmArrowDirection\",\"url\":\"modules/jssm_types.html#JssmArrowDirection\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":224,\"kind\":4194304,\"name\":\"JssmGenericConfig\",\"url\":\"modules/jssm_types.html#JssmGenericConfig\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":225,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmGenericConfig\"},{\"id\":226,\"kind\":1024,\"name\":\"graph_layout\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.graph_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":227,\"kind\":1024,\"name\":\"complete\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.complete\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":228,\"kind\":1024,\"name\":\"transitions\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":229,\"kind\":1024,\"name\":\"theme\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.theme\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":230,\"kind\":1024,\"name\":\"flow\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.flow\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":231,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":232,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.data-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":233,\"kind\":1024,\"name\":\"nodes\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.nodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":234,\"kind\":1024,\"name\":\"check\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.check\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":235,\"kind\":1024,\"name\":\"history\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.history\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":236,\"kind\":1024,\"name\":\"min_exits\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.min_exits\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":237,\"kind\":1024,\"name\":\"max_exits\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.max_exits\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":238,\"kind\":1024,\"name\":\"allow_islands\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.allow_islands\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":239,\"kind\":1024,\"name\":\"allow_force\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.allow_force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":240,\"kind\":1024,\"name\":\"actions\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":241,\"kind\":1024,\"name\":\"simplify_bidi\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.simplify_bidi\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":242,\"kind\":1024,\"name\":\"dot_preamble\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.dot_preamble\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":243,\"kind\":1024,\"name\":\"start_states\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.start_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":244,\"kind\":1024,\"name\":\"end_states\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.end_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":245,\"kind\":1024,\"name\":\"state_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.state_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":246,\"kind\":1024,\"name\":\"property_definition\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.property_definition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":247,\"kind\":1024,\"name\":\"state_property\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.state_property\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":248,\"kind\":1024,\"name\":\"arrange_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.arrange_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":249,\"kind\":1024,\"name\":\"arrange_start_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.arrange_start_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":250,\"kind\":1024,\"name\":\"arrange_end_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.arrange_end_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":251,\"kind\":1024,\"name\":\"machine_author\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_author\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":252,\"kind\":1024,\"name\":\"machine_comment\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_comment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":253,\"kind\":1024,\"name\":\"machine_contributor\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_contributor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":254,\"kind\":1024,\"name\":\"machine_definition\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_definition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":255,\"kind\":1024,\"name\":\"machine_language\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_language\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":256,\"kind\":1024,\"name\":\"machine_license\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":257,\"kind\":1024,\"name\":\"machine_name\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":258,\"kind\":1024,\"name\":\"machine_version\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":259,\"kind\":1024,\"name\":\"fsl_version\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.fsl_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":260,\"kind\":1024,\"name\":\"auto_api\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.auto_api\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":261,\"kind\":1024,\"name\":\"instance_name\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.instance_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":262,\"kind\":1024,\"name\":\"default_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":263,\"kind\":1024,\"name\":\"default_start_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_start_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":264,\"kind\":1024,\"name\":\"default_end_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_end_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":265,\"kind\":1024,\"name\":\"default_hooked_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_hooked_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":266,\"kind\":1024,\"name\":\"default_terminal_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_terminal_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":267,\"kind\":1024,\"name\":\"default_active_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_active_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":268,\"kind\":4194304,\"name\":\"JssmGenericState\",\"url\":\"modules/jssm_types.html#JssmGenericState\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":269,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmGenericState\"},{\"id\":270,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.from-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":271,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.name-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":272,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.to-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":273,\"kind\":1024,\"name\":\"complete\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.complete-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":274,\"kind\":4194304,\"name\":\"JssmGenericMachine\",\"url\":\"modules/jssm_types.html#JssmGenericMachine\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":275,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmGenericMachine\"},{\"id\":276,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":277,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.state-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":278,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.data-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":279,\"kind\":1024,\"name\":\"nodes\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.nodes-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":280,\"kind\":1024,\"name\":\"transitions\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.transitions-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":281,\"kind\":1024,\"name\":\"check\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.check-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":282,\"kind\":1024,\"name\":\"min_transitions\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.min_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":283,\"kind\":1024,\"name\":\"max_transitions\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.max_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":284,\"kind\":1024,\"name\":\"allow_empty\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.allow_empty\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":285,\"kind\":1024,\"name\":\"allow_islands\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.allow_islands-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":286,\"kind\":1024,\"name\":\"allow_force\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.allow_force-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":287,\"kind\":1024,\"name\":\"keep_history\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.keep_history\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":288,\"kind\":4194304,\"name\":\"JssmParseTree\",\"url\":\"modules/jssm_types.html#JssmParseTree\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":289,\"kind\":4194304,\"name\":\"JssmCompileSe\",\"url\":\"modules/jssm_types.html#JssmCompileSe\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":290,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmCompileSe\"},{\"id\":291,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":292,\"kind\":1024,\"name\":\"se\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.se\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":293,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":294,\"kind\":1024,\"name\":\"l_action\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.l_action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":295,\"kind\":1024,\"name\":\"r_action\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.r_action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":296,\"kind\":1024,\"name\":\"l_probability\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.l_probability\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":297,\"kind\":1024,\"name\":\"r_probability\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.r_probability\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":298,\"kind\":4194304,\"name\":\"JssmCompileSeStart\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":299,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmCompileSeStart\"},{\"id\":300,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":301,\"kind\":1024,\"name\":\"se\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.se-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":302,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":303,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":304,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":305,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.state-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":306,\"kind\":1024,\"name\":\"default_value\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":307,\"kind\":1024,\"name\":\"required\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":308,\"kind\":4194304,\"name\":\"JssmCompileRule\",\"url\":\"modules/jssm_types.html#JssmCompileRule\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":309,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmCompileRule.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmCompileRule\"},{\"id\":310,\"kind\":1024,\"name\":\"agg_as\",\"url\":\"modules/jssm_types.html#JssmCompileRule.__type-4.agg_as\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileRule.__type\"},{\"id\":311,\"kind\":1024,\"name\":\"val\",\"url\":\"modules/jssm_types.html#JssmCompileRule.__type-4.val\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileRule.__type\"},{\"id\":312,\"kind\":4194304,\"name\":\"JssmPermitted\",\"url\":\"modules/jssm_types.html#JssmPermitted\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":313,\"kind\":4194304,\"name\":\"JssmPermittedOpt\",\"url\":\"modules/jssm_types.html#JssmPermittedOpt\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":314,\"kind\":4194304,\"name\":\"JssmResult\",\"url\":\"modules/jssm_types.html#JssmResult\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":315,\"kind\":4194304,\"name\":\"JssmStateDeclaration\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":316,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmStateDeclaration\"},{\"id\":317,\"kind\":1024,\"name\":\"declarations\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.declarations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":318,\"kind\":1024,\"name\":\"shape\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.shape\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":319,\"kind\":1024,\"name\":\"color\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":320,\"kind\":1024,\"name\":\"corners\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.corners\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":321,\"kind\":1024,\"name\":\"lineStyle\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.lineStyle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":322,\"kind\":1024,\"name\":\"stateLabel\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.stateLabel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":323,\"kind\":1024,\"name\":\"textColor\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.textColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":324,\"kind\":1024,\"name\":\"backgroundColor\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.backgroundColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":325,\"kind\":1024,\"name\":\"borderColor\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.borderColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":326,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.state-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":327,\"kind\":1024,\"name\":\"property\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.property\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":328,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":329,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.__type-16.name-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type.__type\"},{\"id\":330,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.__type-16.value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type.__type\"},{\"id\":331,\"kind\":4194304,\"name\":\"JssmStateDeclarationRule\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":332,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmStateDeclarationRule\"},{\"id\":333,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17.key-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclarationRule.__type\"},{\"id\":334,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17.value-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclarationRule.__type\"},{\"id\":335,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17.name-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclarationRule.__type\"},{\"id\":336,\"kind\":4194304,\"name\":\"JssmStateConfig\",\"url\":\"modules/jssm_types.html#JssmStateConfig\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":337,\"kind\":4194304,\"name\":\"JssmStateStyleKey\",\"url\":\"modules/jssm_types.html#JssmStateStyleKey\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":338,\"kind\":4194304,\"name\":\"JssmStateStyleKeyList\",\"url\":\"modules/jssm_types.html#JssmStateStyleKeyList\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":339,\"kind\":4194304,\"name\":\"JssmBaseTheme\",\"url\":\"modules/jssm_types.html#JssmBaseTheme\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":340,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmBaseTheme\"},{\"id\":341,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.state-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":342,\"kind\":1024,\"name\":\"hooked\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.hooked\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":343,\"kind\":1024,\"name\":\"start\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.start\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":344,\"kind\":1024,\"name\":\"end\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.end\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":345,\"kind\":1024,\"name\":\"terminal\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.terminal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":346,\"kind\":1024,\"name\":\"active\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":347,\"kind\":1024,\"name\":\"active_hooked\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_hooked\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":348,\"kind\":1024,\"name\":\"active_start\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":349,\"kind\":1024,\"name\":\"active_end\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_end\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":350,\"kind\":1024,\"name\":\"active_terminal\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_terminal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":351,\"kind\":1024,\"name\":\"graph\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.graph\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":352,\"kind\":1024,\"name\":\"legal\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.legal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":353,\"kind\":1024,\"name\":\"main\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.main\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":354,\"kind\":1024,\"name\":\"forced\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.forced\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":355,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":356,\"kind\":1024,\"name\":\"title\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":357,\"kind\":4194304,\"name\":\"JssmTheme\",\"url\":\"modules/jssm_types.html#JssmTheme\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":358,\"kind\":4194304,\"name\":\"JssmLayout\",\"url\":\"modules/jssm_types.html#JssmLayout\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":359,\"kind\":4194304,\"name\":\"JssmHistory\",\"url\":\"modules/jssm_types.html#JssmHistory\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":360,\"kind\":4194304,\"name\":\"JssmSerialization\",\"url\":\"modules/jssm_types.html#JssmSerialization\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":361,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmSerialization\"},{\"id\":362,\"kind\":1024,\"name\":\"jssm_version\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.jssm_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":363,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":364,\"kind\":1024,\"name\":\"comment\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.comment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":365,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.state-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":366,\"kind\":1024,\"name\":\"history\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.history-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":367,\"kind\":1024,\"name\":\"history_capacity\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.history_capacity\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":368,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.data-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":369,\"kind\":4194304,\"name\":\"JssmPropertyDefinition\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":370,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmPropertyDefinition\"},{\"id\":371,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13.name-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmPropertyDefinition.__type\"},{\"id\":372,\"kind\":1024,\"name\":\"default_value\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13.default_value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmPropertyDefinition.__type\"},{\"id\":373,\"kind\":1024,\"name\":\"required\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13.required-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmPropertyDefinition.__type\"},{\"id\":374,\"kind\":4194304,\"name\":\"JssmParseFunctionType\",\"url\":\"modules/jssm_types.html#JssmParseFunctionType\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":375,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmParseFunctionType.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmParseFunctionType\"},{\"id\":376,\"kind\":4194304,\"name\":\"JssmMachineInternalState\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":377,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmMachineInternalState\"},{\"id\":378,\"kind\":1024,\"name\":\"internal_state_impl_version\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.internal_state_impl_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":379,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.state-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":380,\"kind\":1024,\"name\":\"states\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.states\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":381,\"kind\":1024,\"name\":\"named_transitions\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.named_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":382,\"kind\":1024,\"name\":\"edge_map\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.edge_map\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":383,\"kind\":1024,\"name\":\"actions\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.actions-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":384,\"kind\":1024,\"name\":\"reverse_actions\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.reverse_actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":385,\"kind\":1024,\"name\":\"edges\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":386,\"kind\":4194304,\"name\":\"JssmErrorExtendedInfo\",\"url\":\"modules/jssm_types.html#JssmErrorExtendedInfo\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":387,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmErrorExtendedInfo.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmErrorExtendedInfo\"},{\"id\":388,\"kind\":1024,\"name\":\"requested_state\",\"url\":\"modules/jssm_types.html#JssmErrorExtendedInfo.__type-7.requested_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmErrorExtendedInfo.__type\"},{\"id\":389,\"kind\":4194304,\"name\":\"FslDirection\",\"url\":\"modules/jssm_types.html#FslDirection\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":390,\"kind\":4194304,\"name\":\"FslTheme\",\"url\":\"modules/jssm_types.html#FslTheme\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":391,\"kind\":4194304,\"name\":\"HookDescription\",\"url\":\"modules/jssm_types.html#HookDescription\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":392,\"kind\":4194304,\"name\":\"HookHandler\",\"url\":\"modules/jssm_types.html#HookHandler\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":393,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#HookHandler.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.HookHandler\"},{\"id\":394,\"kind\":4194304,\"name\":\"HookContext\",\"url\":\"modules/jssm_types.html#HookContext\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":395,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#HookContext.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.HookContext\"},{\"id\":396,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#HookContext.__type-1.data-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookContext.__type\"},{\"id\":397,\"kind\":4194304,\"name\":\"HookResult\",\"url\":\"modules/jssm_types.html#HookResult\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":398,\"kind\":4194304,\"name\":\"HookComplexResult\",\"url\":\"modules/jssm_types.html#HookComplexResult\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":399,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.HookComplexResult\"},{\"id\":400,\"kind\":1024,\"name\":\"pass\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type.pass\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookComplexResult.__type\"},{\"id\":401,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookComplexResult.__type\"},{\"id\":402,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookComplexResult.__type\"},{\"id\":403,\"kind\":2,\"name\":\"jssm_constants\",\"url\":\"modules/jssm_constants.html\",\"classes\":\"tsd-kind-module\"},{\"id\":404,\"kind\":32,\"name\":\"NegInfinity\",\"url\":\"modules/jssm_constants.html#NegInfinity\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":405,\"kind\":32,\"name\":\"PosInfinity\",\"url\":\"modules/jssm_constants.html#PosInfinity\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":406,\"kind\":32,\"name\":\"Epsilon\",\"url\":\"modules/jssm_constants.html#Epsilon\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":407,\"kind\":32,\"name\":\"Pi\",\"url\":\"modules/jssm_constants.html#Pi\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":408,\"kind\":32,\"name\":\"E\",\"url\":\"modules/jssm_constants.html#E\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":409,\"kind\":32,\"name\":\"Root2\",\"url\":\"modules/jssm_constants.html#Root2\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":410,\"kind\":32,\"name\":\"RootHalf\",\"url\":\"modules/jssm_constants.html#RootHalf\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":411,\"kind\":32,\"name\":\"Ln2\",\"url\":\"modules/jssm_constants.html#Ln2\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":412,\"kind\":32,\"name\":\"Ln10\",\"url\":\"modules/jssm_constants.html#Ln10\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":413,\"kind\":32,\"name\":\"Log2E\",\"url\":\"modules/jssm_constants.html#Log2E\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":414,\"kind\":32,\"name\":\"Log10E\",\"url\":\"modules/jssm_constants.html#Log10E\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":415,\"kind\":32,\"name\":\"MaxSafeInt\",\"url\":\"modules/jssm_constants.html#MaxSafeInt\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":416,\"kind\":32,\"name\":\"MinSafeInt\",\"url\":\"modules/jssm_constants.html#MinSafeInt\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":417,\"kind\":32,\"name\":\"MaxPosNum\",\"url\":\"modules/jssm_constants.html#MaxPosNum\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":418,\"kind\":32,\"name\":\"MinPosNum\",\"url\":\"modules/jssm_constants.html#MinPosNum\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":419,\"kind\":32,\"name\":\"Phi\",\"url\":\"modules/jssm_constants.html#Phi\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":420,\"kind\":32,\"name\":\"EulerC\",\"url\":\"modules/jssm_constants.html#EulerC\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":421,\"kind\":32,\"name\":\"gviz_shapes\",\"url\":\"modules/jssm_constants.html#gviz_shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":422,\"kind\":32,\"name\":\"shapes\",\"url\":\"modules/jssm_constants.html#shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":423,\"kind\":32,\"name\":\"named_colors\",\"url\":\"modules/jssm_constants.html#named_colors\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":424,\"kind\":2,\"name\":\"jssm_error\",\"url\":\"modules/jssm_error.html\",\"classes\":\"tsd-kind-module\"},{\"id\":425,\"kind\":128,\"name\":\"JssmError\",\"url\":\"classes/jssm_error.JssmError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"jssm_error\"},{\"id\":426,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/jssm_error.JssmError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"jssm_error.JssmError\"},{\"id\":427,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/jssm_error.JssmError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"jssm_error.JssmError\"},{\"id\":428,\"kind\":1024,\"name\":\"message\",\"url\":\"classes/jssm_error.JssmError.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"jssm_error.JssmError\"},{\"id\":429,\"kind\":1024,\"name\":\"base_message\",\"url\":\"classes/jssm_error.JssmError.html#base_message\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm_error.JssmError\"},{\"id\":430,\"kind\":1024,\"name\":\"requested_state\",\"url\":\"classes/jssm_error.JssmError.html#requested_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm_error.JssmError\"},{\"id\":431,\"kind\":2,\"name\":\"jssm_util\",\"url\":\"modules/jssm_util.html\",\"classes\":\"tsd-kind-module\"},{\"id\":432,\"kind\":64,\"name\":\"seq\",\"url\":\"modules/jssm_util.html#seq\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":433,\"kind\":64,\"name\":\"unique\",\"url\":\"modules/jssm_util.html#unique\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_util\"},{\"id\":434,\"kind\":64,\"name\":\"find_repeated\",\"url\":\"modules/jssm_util.html#find_repeated\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_util\"},{\"id\":435,\"kind\":64,\"name\":\"arr_uniq_p\",\"url\":\"modules/jssm_util.html#arr_uniq_p\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_util\"},{\"id\":436,\"kind\":32,\"name\":\"histograph\",\"url\":\"modules/jssm_util.html#histograph\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":437,\"kind\":32,\"name\":\"weighted_histo_key\",\"url\":\"modules/jssm_util.html#weighted_histo_key\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":438,\"kind\":32,\"name\":\"weighted_rand_select\",\"url\":\"modules/jssm_util.html#weighted_rand_select\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":439,\"kind\":32,\"name\":\"weighted_sample_select\",\"url\":\"modules/jssm_util.html#weighted_sample_select\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":440,\"kind\":64,\"name\":\"array_box_if_string\",\"url\":\"modules/jssm_util.html#array_box_if_string\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":441,\"kind\":64,\"name\":\"name_bind_prop_and_state\",\"url\":\"modules/jssm_util.html#name_bind_prop_and_state\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":442,\"kind\":64,\"name\":\"hook_name\",\"url\":\"modules/jssm_util.html#hook_name\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":443,\"kind\":64,\"name\":\"named_hook_name\",\"url\":\"modules/jssm_util.html#named_hook_name\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":444,\"kind\":64,\"name\":\"make_mulberry_rand\",\"url\":\"modules/jssm_util.html#make_mulberry_rand\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":445,\"kind\":2,\"name\":\"version\",\"url\":\"modules/version.html\",\"classes\":\"tsd-kind-module\"},{\"id\":446,\"kind\":32,\"name\":\"version\",\"url\":\"modules/version.html#version-1\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"version\"},{\"id\":447,\"kind\":16777216,\"name\":\"version\",\"url\":\"modules/jssm.html#version\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":448,\"kind\":16777216,\"name\":\"seq\",\"url\":\"modules/jssm.html#seq\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":449,\"kind\":16777216,\"name\":\"unique\",\"url\":\"modules/jssm.html#unique\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":450,\"kind\":16777216,\"name\":\"find_repeated\",\"url\":\"modules/jssm.html#find_repeated\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":451,\"kind\":16777216,\"name\":\"weighted_rand_select\",\"url\":\"modules/jssm.html#weighted_rand_select\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":452,\"kind\":16777216,\"name\":\"histograph\",\"url\":\"modules/jssm.html#histograph\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":453,\"kind\":16777216,\"name\":\"weighted_sample_select\",\"url\":\"modules/jssm.html#weighted_sample_select\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":454,\"kind\":16777216,\"name\":\"weighted_histo_key\",\"url\":\"modules/jssm.html#weighted_histo_key\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":455,\"kind\":16777216,\"name\":\"constants\",\"url\":\"modules/jssm.html#constants\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":456,\"kind\":4,\"name\":\"\",\"url\":\"modules/jssm._internal_.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":457,\"kind\":4,\"name\":\"\",\"url\":\"modules/jssm_types._internal_.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":458,\"kind\":4194304,\"name\":\"StateType\",\"url\":\"modules/jssm_types._internal_.html#StateType\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":459,\"kind\":4194304,\"name\":\"JssmTransitionCycle\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":460,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle.__type-20\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmTransitionCycle\"},{\"id\":461,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle.__type-20.key-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmTransitionCycle.__type\"},{\"id\":462,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle.__type-20.value-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmTransitionCycle.__type\"},{\"id\":463,\"kind\":4194304,\"name\":\"JssmSuccess\",\"url\":\"modules/jssm_types._internal_.html#JssmSuccess\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":464,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmSuccess.__type-19\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmSuccess\"},{\"id\":465,\"kind\":1024,\"name\":\"success\",\"url\":\"modules/jssm_types._internal_.html#JssmSuccess.__type-19.success-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmSuccess.__type\"},{\"id\":466,\"kind\":4194304,\"name\":\"JssmFailure\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":467,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmFailure\"},{\"id\":468,\"kind\":1024,\"name\":\"success\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure.__type-8.success\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmFailure.__type\"},{\"id\":469,\"kind\":1024,\"name\":\"error\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure.__type-8.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmFailure.__type\"},{\"id\":470,\"kind\":4194304,\"name\":\"JssmIncomplete\",\"url\":\"modules/jssm_types._internal_.html#JssmIncomplete\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":471,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmIncomplete.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmIncomplete\"},{\"id\":472,\"kind\":1024,\"name\":\"success\",\"url\":\"modules/jssm_types._internal_.html#JssmIncomplete.__type-9.success-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmIncomplete.__type\"},{\"id\":473,\"kind\":4194304,\"name\":\"JssmStateStyleShape\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":474,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleShape\"},{\"id\":475,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape.__type-16.key-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleShape.__type\"},{\"id\":476,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape.__type-16.value-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleShape.__type\"},{\"id\":477,\"kind\":4194304,\"name\":\"JssmStateStyleColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":478,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleColor\"},{\"id\":479,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor.__type-13.key-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleColor.__type\"},{\"id\":480,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor.__type-13.value-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleColor.__type\"},{\"id\":481,\"kind\":4194304,\"name\":\"JssmStateStyleTextColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":482,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleTextColor\"},{\"id\":483,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor.__type-18.key-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleTextColor.__type\"},{\"id\":484,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor.__type-18.value-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleTextColor.__type\"},{\"id\":485,\"kind\":4194304,\"name\":\"JssmStateStyleCorners\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":486,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleCorners\"},{\"id\":487,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners.__type-14.key-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleCorners.__type\"},{\"id\":488,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners.__type-14.value-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleCorners.__type\"},{\"id\":489,\"kind\":4194304,\"name\":\"JssmStateStyleLineStyle\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":490,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleLineStyle\"},{\"id\":491,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle.__type-15.key-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleLineStyle.__type\"},{\"id\":492,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle.__type-15.value-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleLineStyle.__type\"},{\"id\":493,\"kind\":4194304,\"name\":\"JssmStateStyleBackgroundColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":494,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleBackgroundColor\"},{\"id\":495,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor.__type-11.key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBackgroundColor.__type\"},{\"id\":496,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor.__type-11.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBackgroundColor.__type\"},{\"id\":497,\"kind\":4194304,\"name\":\"JssmStateStyleStateLabel\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":498,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel.__type-17\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleStateLabel\"},{\"id\":499,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel.__type-17.key-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleStateLabel.__type\"},{\"id\":500,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel.__type-17.value-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleStateLabel.__type\"},{\"id\":501,\"kind\":4194304,\"name\":\"JssmStateStyleBorderColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":502,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleBorderColor\"},{\"id\":503,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor.__type-12.key-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBorderColor.__type\"},{\"id\":504,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor.__type-12.value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBorderColor.__type\"},{\"id\":505,\"kind\":4194304,\"name\":\"BasicHookDescription\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":506,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..BasicHookDescription\"},{\"id\":507,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.kind-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":508,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":509,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":510,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.handler-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":511,\"kind\":4194304,\"name\":\"HookDescriptionWithAction\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":512,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..HookDescriptionWithAction\"},{\"id\":513,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.kind-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":514,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.from-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":515,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.to-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":516,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.action-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":517,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.handler-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":518,\"kind\":4194304,\"name\":\"GlobalActionHook\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":519,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..GlobalActionHook\"},{\"id\":520,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6.kind-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..GlobalActionHook.__type\"},{\"id\":521,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6.action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..GlobalActionHook.__type\"},{\"id\":522,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6.handler-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..GlobalActionHook.__type\"},{\"id\":523,\"kind\":4194304,\"name\":\"AnyActionHook\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":524,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..AnyActionHook\"},{\"id\":525,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook.__type.kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyActionHook.__type\"},{\"id\":526,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook.__type.handler\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyActionHook.__type\"},{\"id\":527,\"kind\":4194304,\"name\":\"StandardTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":528,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook.__type-34\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..StandardTransitionHook\"},{\"id\":529,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook.__type-34.kind-19\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..StandardTransitionHook.__type\"},{\"id\":530,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook.__type-34.handler-19\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..StandardTransitionHook.__type\"},{\"id\":531,\"kind\":4194304,\"name\":\"MainTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":532,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook.__type-22\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..MainTransitionHook\"},{\"id\":533,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook.__type-22.kind-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..MainTransitionHook.__type\"},{\"id\":534,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook.__type-22.handler-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..MainTransitionHook.__type\"},{\"id\":535,\"kind\":4194304,\"name\":\"ForcedTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":536,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..ForcedTransitionHook\"},{\"id\":537,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook.__type-5.kind-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ForcedTransitionHook.__type\"},{\"id\":538,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook.__type-5.handler-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ForcedTransitionHook.__type\"},{\"id\":539,\"kind\":4194304,\"name\":\"AnyTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":540,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..AnyTransitionHook\"},{\"id\":541,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook.__type-1.kind-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyTransitionHook.__type\"},{\"id\":542,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook.__type-1.handler-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyTransitionHook.__type\"},{\"id\":543,\"kind\":4194304,\"name\":\"EntryHook\",\"url\":\"modules/jssm_types._internal_.html#EntryHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":544,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..EntryHook\"},{\"id\":545,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3.kind-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..EntryHook.__type\"},{\"id\":546,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3.to-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..EntryHook.__type\"},{\"id\":547,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3.handler-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..EntryHook.__type\"},{\"id\":548,\"kind\":4194304,\"name\":\"ExitHook\",\"url\":\"modules/jssm_types._internal_.html#ExitHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":549,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..ExitHook\"},{\"id\":550,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4.kind-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ExitHook.__type\"},{\"id\":551,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4.from-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ExitHook.__type\"},{\"id\":552,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4.handler-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ExitHook.__type\"},{\"id\":553,\"kind\":4194304,\"name\":\"PostBasicHookDescription\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":554,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostBasicHookDescription\"},{\"id\":555,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.kind-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":556,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.from-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":557,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.to-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":558,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.handler-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":559,\"kind\":4194304,\"name\":\"PostHookDescriptionWithAction\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":560,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostHookDescriptionWithAction\"},{\"id\":561,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.kind-16\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":562,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.from-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":563,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.to-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":564,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.action-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":565,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.handler-16\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":566,\"kind\":4194304,\"name\":\"PostGlobalActionHook\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":567,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostGlobalActionHook\"},{\"id\":568,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29.kind-15\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostGlobalActionHook.__type\"},{\"id\":569,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29.action-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostGlobalActionHook.__type\"},{\"id\":570,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29.handler-15\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostGlobalActionHook.__type\"},{\"id\":571,\"kind\":4194304,\"name\":\"PostAnyActionHook\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":572,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook.__type-23\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostAnyActionHook\"},{\"id\":573,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook.__type-23.kind-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyActionHook.__type\"},{\"id\":574,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook.__type-23.handler-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyActionHook.__type\"},{\"id\":575,\"kind\":4194304,\"name\":\"PostStandardTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":576,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook.__type-33\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostStandardTransitionHook\"},{\"id\":577,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook.__type-33.kind-18\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostStandardTransitionHook.__type\"},{\"id\":578,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook.__type-33.handler-18\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostStandardTransitionHook.__type\"},{\"id\":579,\"kind\":4194304,\"name\":\"PostMainTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":580,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook.__type-32\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostMainTransitionHook\"},{\"id\":581,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook.__type-32.kind-17\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostMainTransitionHook.__type\"},{\"id\":582,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook.__type-32.handler-17\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostMainTransitionHook.__type\"},{\"id\":583,\"kind\":4194304,\"name\":\"PostForcedTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":584,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook.__type-28\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostForcedTransitionHook\"},{\"id\":585,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook.__type-28.kind-14\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostForcedTransitionHook.__type\"},{\"id\":586,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook.__type-28.handler-14\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostForcedTransitionHook.__type\"},{\"id\":587,\"kind\":4194304,\"name\":\"PostAnyTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":588,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook.__type-24\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostAnyTransitionHook\"},{\"id\":589,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook.__type-24.kind-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyTransitionHook.__type\"},{\"id\":590,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook.__type-24.handler-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyTransitionHook.__type\"},{\"id\":591,\"kind\":4194304,\"name\":\"PostEntryHook\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":592,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostEntryHook\"},{\"id\":593,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26.kind-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostEntryHook.__type\"},{\"id\":594,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26.to-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostEntryHook.__type\"},{\"id\":595,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26.handler-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostEntryHook.__type\"},{\"id\":596,\"kind\":4194304,\"name\":\"PostExitHook\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":597,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostExitHook\"},{\"id\":598,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27.kind-13\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostExitHook.__type\"},{\"id\":599,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27.from-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostExitHook.__type\"},{\"id\":600,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27.handler-13\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostExitHook.__type\"},{\"id\":601,\"kind\":4194304,\"name\":\"JssmTransitionPermitterMaybeArray\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionPermitterMaybeArray\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":602,\"kind\":4194304,\"name\":\"JssmStatePermitterMaybeArray\",\"url\":\"modules/jssm_types._internal_.html#JssmStatePermitterMaybeArray\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":603,\"kind\":4194304,\"name\":\"JssmCorner\",\"url\":\"modules/jssm_types._internal_.html#JssmCorner\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":604,\"kind\":4194304,\"name\":\"JssmLineStyle\",\"url\":\"modules/jssm_types._internal_.html#JssmLineStyle\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":605,\"kind\":4194304,\"name\":\"JssmTransitionPermitter\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionPermitter\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":606,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionPermitter.__type-21\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmTransitionPermitter\"},{\"id\":607,\"kind\":4194304,\"name\":\"JssmStatePermitter\",\"url\":\"modules/jssm_types._internal_.html#JssmStatePermitter\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":608,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStatePermitter.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStatePermitter\"},{\"id\":609,\"kind\":4194304,\"name\":\"PostHookHandler\",\"url\":\"modules/jssm_types._internal_.html#PostHookHandler\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":610,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostHookHandler.__type-31\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostHookHandler\"},{\"id\":611,\"kind\":4,\"name\":\"\",\"url\":\"modules/jssm_error._internal_.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-module\",\"parent\":\"jssm_error\"},{\"id\":612,\"kind\":2048,\"name\":\"Page: What are state machines?\",\"url\":\"pages/WhatAreStateMachines.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":613,\"kind\":2048,\"name\":\"Page: ☕ Quick Start\",\"url\":\"pages/GettingStarted.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":614,\"kind\":2048,\"name\":\"Page: Language reference\",\"url\":\"pages/LanguageReference.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":615,\"kind\":2048,\"name\":\"Page: API reference\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":616,\"kind\":2048,\"name\":\"Page: Example machines\",\"url\":\"pages/ExampleMachines.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":617,\"kind\":2048,\"name\":\"Page: React\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":618,\"kind\":2048,\"name\":\"Page: Vue\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":619,\"kind\":2048,\"name\":\"Page: Angular\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":620,\"kind\":2048,\"name\":\"Page: Node\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":621,\"kind\":2048,\"name\":\"Page: Node\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":622,\"kind\":2048,\"name\":\"Page: Typescript\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":623,\"kind\":2048,\"name\":\"Page: The browser\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":624,\"kind\":2048,\"name\":\"Page: AWS Lambda\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":625,\"kind\":2048,\"name\":\"Page: SQL\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":626,\"kind\":2048,\"name\":\"Page: Rollup\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":627,\"kind\":2048,\"name\":\"Page: Webpack\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":628,\"kind\":2048,\"name\":\"Page: CDN\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":629,\"kind\":2048,\"name\":\"Page: Local files\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":630,\"kind\":2048,\"name\":\"Page: Let's make a large machine\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":631,\"kind\":2048,\"name\":\"Page: Publishing\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":632,\"kind\":2048,\"name\":\"Page: Theme, style, color\",\"url\":\"pages/Styling.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":633,\"kind\":2048,\"name\":\"Page: Feature comparison\",\"url\":\"pages/FeatureComparison.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":634,\"kind\":2048,\"name\":\"Page: LOC Shootout\",\"url\":\"pages/Shootout.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":635,\"kind\":2048,\"name\":\"Page: Live Editor\",\"url\":\"pages/live_editor.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":636,\"kind\":2048,\"name\":\"Page: Github Action\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":637,\"kind\":2048,\"name\":\"Page: CLI\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":638,\"kind\":2048,\"name\":\"Page: Community\",\"url\":\"pages/community.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":639,\"kind\":2048,\"name\":\"Page: Changelog\",\"url\":\"pages/CHANGELOG.long.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,31.709]],[\"parent/0\",[]],[\"name/1\",[1,62.391]],[\"parent/1\",[0,3.01]],[\"name/2\",[2,57.129]],[\"parent/2\",[0,3.01]],[\"name/3\",[3,57.129]],[\"parent/3\",[4,1.228]],[\"name/4\",[5,62.391]],[\"parent/4\",[4,1.228]],[\"name/5\",[6,62.391]],[\"parent/5\",[4,1.228]],[\"name/6\",[7,62.391]],[\"parent/6\",[4,1.228]],[\"name/7\",[8,62.391]],[\"parent/7\",[4,1.228]],[\"name/8\",[9,62.391]],[\"parent/8\",[4,1.228]],[\"name/9\",[10,62.391]],[\"parent/9\",[4,1.228]],[\"name/10\",[11,62.391]],[\"parent/10\",[4,1.228]],[\"name/11\",[12,62.391]],[\"parent/11\",[4,1.228]],[\"name/12\",[13,62.391]],[\"parent/12\",[4,1.228]],[\"name/13\",[14,62.391]],[\"parent/13\",[4,1.228]],[\"name/14\",[15,62.391]],[\"parent/14\",[4,1.228]],[\"name/15\",[16,62.391]],[\"parent/15\",[4,1.228]],[\"name/16\",[17,62.391]],[\"parent/16\",[4,1.228]],[\"name/17\",[18,62.391]],[\"parent/17\",[4,1.228]],[\"name/18\",[19,62.391]],[\"parent/18\",[4,1.228]],[\"name/19\",[20,62.391]],[\"parent/19\",[4,1.228]],[\"name/20\",[21,62.391]],[\"parent/20\",[4,1.228]],[\"name/21\",[22,62.391]],[\"parent/21\",[4,1.228]],[\"name/22\",[23,62.391]],[\"parent/22\",[4,1.228]],[\"name/23\",[24,62.391]],[\"parent/23\",[4,1.228]],[\"name/24\",[25,62.391]],[\"parent/24\",[4,1.228]],[\"name/25\",[26,62.391]],[\"parent/25\",[4,1.228]],[\"name/26\",[27,62.391]],[\"parent/26\",[4,1.228]],[\"name/27\",[28,62.391]],[\"parent/27\",[4,1.228]],[\"name/28\",[29,62.391]],[\"parent/28\",[4,1.228]],[\"name/29\",[30,62.391]],[\"parent/29\",[4,1.228]],[\"name/30\",[31,62.391]],[\"parent/30\",[4,1.228]],[\"name/31\",[32,62.391]],[\"parent/31\",[4,1.228]],[\"name/32\",[33,62.391]],[\"parent/32\",[4,1.228]],[\"name/33\",[34,62.391]],[\"parent/33\",[4,1.228]],[\"name/34\",[35,62.391]],[\"parent/34\",[4,1.228]],[\"name/35\",[36,62.391]],[\"parent/35\",[4,1.228]],[\"name/36\",[37,62.391]],[\"parent/36\",[4,1.228]],[\"name/37\",[38,62.391]],[\"parent/37\",[4,1.228]],[\"name/38\",[39,62.391]],[\"parent/38\",[4,1.228]],[\"name/39\",[40,62.391]],[\"parent/39\",[4,1.228]],[\"name/40\",[41,62.391]],[\"parent/40\",[4,1.228]],[\"name/41\",[42,62.391]],[\"parent/41\",[4,1.228]],[\"name/42\",[43,62.391]],[\"parent/42\",[4,1.228]],[\"name/43\",[44,62.391]],[\"parent/43\",[4,1.228]],[\"name/44\",[45,62.391]],[\"parent/44\",[4,1.228]],[\"name/45\",[46,62.391]],[\"parent/45\",[4,1.228]],[\"name/46\",[47,62.391]],[\"parent/46\",[4,1.228]],[\"name/47\",[48,62.391]],[\"parent/47\",[4,1.228]],[\"name/48\",[49,62.391]],[\"parent/48\",[4,1.228]],[\"name/49\",[50,62.391]],[\"parent/49\",[4,1.228]],[\"name/50\",[51,62.391]],[\"parent/50\",[4,1.228]],[\"name/51\",[52,62.391]],[\"parent/51\",[4,1.228]],[\"name/52\",[53,62.391]],[\"parent/52\",[4,1.228]],[\"name/53\",[54,62.391]],[\"parent/53\",[4,1.228]],[\"name/54\",[55,62.391]],[\"parent/54\",[4,1.228]],[\"name/55\",[56,62.391]],[\"parent/55\",[4,1.228]],[\"name/56\",[57,62.391]],[\"parent/56\",[4,1.228]],[\"name/57\",[58,62.391]],[\"parent/57\",[4,1.228]],[\"name/58\",[59,62.391]],[\"parent/58\",[4,1.228]],[\"name/59\",[60,62.391]],[\"parent/59\",[4,1.228]],[\"name/60\",[61,62.391]],[\"parent/60\",[4,1.228]],[\"name/61\",[62,62.391]],[\"parent/61\",[4,1.228]],[\"name/62\",[63,62.391]],[\"parent/62\",[4,1.228]],[\"name/63\",[64,62.391]],[\"parent/63\",[4,1.228]],[\"name/64\",[65,62.391]],[\"parent/64\",[4,1.228]],[\"name/65\",[66,62.391]],[\"parent/65\",[4,1.228]],[\"name/66\",[67,62.391]],[\"parent/66\",[4,1.228]],[\"name/67\",[68,62.391]],[\"parent/67\",[4,1.228]],[\"name/68\",[69,62.391]],[\"parent/68\",[4,1.228]],[\"name/69\",[70,62.391]],[\"parent/69\",[4,1.228]],[\"name/70\",[71,62.391]],[\"parent/70\",[4,1.228]],[\"name/71\",[72,62.391]],[\"parent/71\",[4,1.228]],[\"name/72\",[73,62.391]],[\"parent/72\",[4,1.228]],[\"name/73\",[74,62.391]],[\"parent/73\",[4,1.228]],[\"name/74\",[75,62.391]],[\"parent/74\",[4,1.228]],[\"name/75\",[76,62.391]],[\"parent/75\",[4,1.228]],[\"name/76\",[77,62.391]],[\"parent/76\",[4,1.228]],[\"name/77\",[78,62.391]],[\"parent/77\",[4,1.228]],[\"name/78\",[79,62.391]],[\"parent/78\",[4,1.228]],[\"name/79\",[80,62.391]],[\"parent/79\",[4,1.228]],[\"name/80\",[81,62.391]],[\"parent/80\",[4,1.228]],[\"name/81\",[82,62.391]],[\"parent/81\",[4,1.228]],[\"name/82\",[83,43.379]],[\"parent/82\",[4,1.228]],[\"name/83\",[84,62.391]],[\"parent/83\",[4,1.228]],[\"name/84\",[85,47.288]],[\"parent/84\",[4,1.228]],[\"name/85\",[86,62.391]],[\"parent/85\",[4,1.228]],[\"name/86\",[87,62.391]],[\"parent/86\",[4,1.228]],[\"name/87\",[88,62.391]],[\"parent/87\",[4,1.228]],[\"name/88\",[89,62.391]],[\"parent/88\",[4,1.228]],[\"name/89\",[90,62.391]],[\"parent/89\",[4,1.228]],[\"name/90\",[91,62.391]],[\"parent/90\",[4,1.228]],[\"name/91\",[92,62.391]],[\"parent/91\",[4,1.228]],[\"name/92\",[93,62.391]],[\"parent/92\",[4,1.228]],[\"name/93\",[94,62.391]],[\"parent/93\",[4,1.228]],[\"name/94\",[95,62.391]],[\"parent/94\",[4,1.228]],[\"name/95\",[96,57.129]],[\"parent/95\",[4,1.228]],[\"name/96\",[97,57.129]],[\"parent/96\",[4,1.228]],[\"name/97\",[98,57.129]],[\"parent/97\",[4,1.228]],[\"name/98\",[99,57.129]],[\"parent/98\",[4,1.228]],[\"name/99\",[100,57.129]],[\"parent/99\",[4,1.228]],[\"name/100\",[101,57.129]],[\"parent/100\",[4,1.228]],[\"name/101\",[102,57.129]],[\"parent/101\",[4,1.228]],[\"name/102\",[103,57.129]],[\"parent/102\",[4,1.228]],[\"name/103\",[104,57.129]],[\"parent/103\",[4,1.228]],[\"name/104\",[105,57.129]],[\"parent/104\",[4,1.228]],[\"name/105\",[106,62.391]],[\"parent/105\",[4,1.228]],[\"name/106\",[107,57.129]],[\"parent/106\",[4,1.228]],[\"name/107\",[108,62.391]],[\"parent/107\",[4,1.228]],[\"name/108\",[109,57.129]],[\"parent/108\",[4,1.228]],[\"name/109\",[110,62.391]],[\"parent/109\",[4,1.228]],[\"name/110\",[111,57.129]],[\"parent/110\",[4,1.228]],[\"name/111\",[112,62.391]],[\"parent/111\",[4,1.228]],[\"name/112\",[113,62.391]],[\"parent/112\",[4,1.228]],[\"name/113\",[114,62.391]],[\"parent/113\",[4,1.228]],[\"name/114\",[115,62.391]],[\"parent/114\",[4,1.228]],[\"name/115\",[116,62.391]],[\"parent/115\",[4,1.228]],[\"name/116\",[117,53.664]],[\"parent/116\",[4,1.228]],[\"name/117\",[118,57.129]],[\"parent/117\",[4,1.228]],[\"name/118\",[119,62.391]],[\"parent/118\",[4,1.228]],[\"name/119\",[120,62.391]],[\"parent/119\",[4,1.228]],[\"name/120\",[121,62.391]],[\"parent/120\",[4,1.228]],[\"name/121\",[122,62.391]],[\"parent/121\",[4,1.228]],[\"name/122\",[123,62.391]],[\"parent/122\",[4,1.228]],[\"name/123\",[124,62.391]],[\"parent/123\",[4,1.228]],[\"name/124\",[125,62.391]],[\"parent/124\",[4,1.228]],[\"name/125\",[126,62.391]],[\"parent/125\",[4,1.228]],[\"name/126\",[127,62.391]],[\"parent/126\",[4,1.228]],[\"name/127\",[128,53.664]],[\"parent/127\",[4,1.228]],[\"name/128\",[129,62.391]],[\"parent/128\",[4,1.228]],[\"name/129\",[130,62.391]],[\"parent/129\",[4,1.228]],[\"name/130\",[131,62.391]],[\"parent/130\",[4,1.228]],[\"name/131\",[132,62.391]],[\"parent/131\",[4,1.228]],[\"name/132\",[133,62.391]],[\"parent/132\",[4,1.228]],[\"name/133\",[134,62.391]],[\"parent/133\",[4,1.228]],[\"name/134\",[135,62.391]],[\"parent/134\",[4,1.228]],[\"name/135\",[136,62.391]],[\"parent/135\",[4,1.228]],[\"name/136\",[137,62.391]],[\"parent/136\",[4,1.228]],[\"name/137\",[138,62.391]],[\"parent/137\",[4,1.228]],[\"name/138\",[139,62.391]],[\"parent/138\",[4,1.228]],[\"name/139\",[140,62.391]],[\"parent/139\",[4,1.228]],[\"name/140\",[141,62.391]],[\"parent/140\",[4,1.228]],[\"name/141\",[142,62.391]],[\"parent/141\",[4,1.228]],[\"name/142\",[143,62.391]],[\"parent/142\",[4,1.228]],[\"name/143\",[144,62.391]],[\"parent/143\",[4,1.228]],[\"name/144\",[145,62.391]],[\"parent/144\",[4,1.228]],[\"name/145\",[146,62.391]],[\"parent/145\",[4,1.228]],[\"name/146\",[147,62.391]],[\"parent/146\",[4,1.228]],[\"name/147\",[148,62.391]],[\"parent/147\",[4,1.228]],[\"name/148\",[149,62.391]],[\"parent/148\",[4,1.228]],[\"name/149\",[150,62.391]],[\"parent/149\",[4,1.228]],[\"name/150\",[151,62.391]],[\"parent/150\",[4,1.228]],[\"name/151\",[152,62.391]],[\"parent/151\",[4,1.228]],[\"name/152\",[153,62.391]],[\"parent/152\",[4,1.228]],[\"name/153\",[154,62.391]],[\"parent/153\",[4,1.228]],[\"name/154\",[155,62.391]],[\"parent/154\",[4,1.228]],[\"name/155\",[156,62.391]],[\"parent/155\",[4,1.228]],[\"name/156\",[157,62.391]],[\"parent/156\",[4,1.228]],[\"name/157\",[158,62.391]],[\"parent/157\",[4,1.228]],[\"name/158\",[159,62.391]],[\"parent/158\",[4,1.228]],[\"name/159\",[160,62.391]],[\"parent/159\",[4,1.228]],[\"name/160\",[161,62.391]],[\"parent/160\",[4,1.228]],[\"name/161\",[162,62.391]],[\"parent/161\",[4,1.228]],[\"name/162\",[163,53.664]],[\"parent/162\",[4,1.228]],[\"name/163\",[164,62.391]],[\"parent/163\",[4,1.228]],[\"name/164\",[165,62.391]],[\"parent/164\",[4,1.228]],[\"name/165\",[166,44.525]],[\"parent/165\",[4,1.228]],[\"name/166\",[167,62.391]],[\"parent/166\",[4,1.228]],[\"name/167\",[168,62.391]],[\"parent/167\",[4,1.228]],[\"name/168\",[169,62.391]],[\"parent/168\",[4,1.228]],[\"name/169\",[170,62.391]],[\"parent/169\",[4,1.228]],[\"name/170\",[171,62.391]],[\"parent/170\",[4,1.228]],[\"name/171\",[172,62.391]],[\"parent/171\",[4,1.228]],[\"name/172\",[173,62.391]],[\"parent/172\",[4,1.228]],[\"name/173\",[174,62.391]],[\"parent/173\",[4,1.228]],[\"name/174\",[175,62.391]],[\"parent/174\",[4,1.228]],[\"name/175\",[176,62.391]],[\"parent/175\",[4,1.228]],[\"name/176\",[177,62.391]],[\"parent/176\",[4,1.228]],[\"name/177\",[178,62.391]],[\"parent/177\",[4,1.228]],[\"name/178\",[179,62.391]],[\"parent/178\",[4,1.228]],[\"name/179\",[180,62.391]],[\"parent/179\",[4,1.228]],[\"name/180\",[181,62.391]],[\"parent/180\",[4,1.228]],[\"name/181\",[182,62.391]],[\"parent/181\",[4,1.228]],[\"name/182\",[183,62.391]],[\"parent/182\",[4,1.228]],[\"name/183\",[184,57.129]],[\"parent/183\",[4,1.228]],[\"name/184\",[185,57.129]],[\"parent/184\",[4,1.228]],[\"name/185\",[186,62.391]],[\"parent/185\",[0,3.01]],[\"name/186\",[187,57.129]],[\"parent/186\",[0,3.01]],[\"name/187\",[188,62.391]],[\"parent/187\",[0,3.01]],[\"name/188\",[189,62.391]],[\"parent/188\",[0,3.01]],[\"name/189\",[185,57.129]],[\"parent/189\",[0,3.01]],[\"name/190\",[190,42.349]],[\"parent/190\",[0,3.01]],[\"name/191\",[191,62.391]],[\"parent/191\",[0,3.01]],[\"name/192\",[192,62.391]],[\"parent/192\",[0,3.01]],[\"name/193\",[193,62.391]],[\"parent/193\",[0,3.01]],[\"name/194\",[194,57.129]],[\"parent/194\",[0,3.01]],[\"name/195\",[195,57.129]],[\"parent/195\",[0,3.01]],[\"name/196\",[196,57.129]],[\"parent/196\",[0,3.01]],[\"name/197\",[197,62.391]],[\"parent/197\",[0,3.01]],[\"name/198\",[198,62.391]],[\"parent/198\",[0,3.01]],[\"name/199\",[199,62.391]],[\"parent/199\",[0,3.01]],[\"name/200\",[200,62.391]],[\"parent/200\",[0,3.01]],[\"name/201\",[201,27.948]],[\"parent/201\",[]],[\"name/202\",[202,62.391]],[\"parent/202\",[201,2.653]],[\"name/203\",[203,62.391]],[\"parent/203\",[201,2.653]],[\"name/204\",[204,62.391]],[\"parent/204\",[201,2.653]],[\"name/205\",[205,25.016]],[\"parent/205\",[206,5.922]],[\"name/206\",[190,42.349]],[\"parent/206\",[207,4.117]],[\"name/207\",[208,43.379]],[\"parent/207\",[207,4.117]],[\"name/208\",[209,44.525]],[\"parent/208\",[207,4.117]],[\"name/209\",[166,44.525]],[\"parent/209\",[207,4.117]],[\"name/210\",[210,53.664]],[\"parent/210\",[207,4.117]],[\"name/211\",[211,62.391]],[\"parent/211\",[207,4.117]],[\"name/212\",[212,34.499]],[\"parent/212\",[207,4.117]],[\"name/213\",[213,62.391]],[\"parent/213\",[207,4.117]],[\"name/214\",[214,62.391]],[\"parent/214\",[207,4.117]],[\"name/215\",[215,62.391]],[\"parent/215\",[201,2.653]],[\"name/216\",[216,62.391]],[\"parent/216\",[201,2.653]],[\"name/217\",[205,25.016]],[\"parent/217\",[217,5.922]],[\"name/218\",[218,62.391]],[\"parent/218\",[219,5.422]],[\"name/219\",[220,62.391]],[\"parent/219\",[219,5.422]],[\"name/220\",[221,62.391]],[\"parent/220\",[201,2.653]],[\"name/221\",[222,62.391]],[\"parent/221\",[201,2.653]],[\"name/222\",[223,62.391]],[\"parent/222\",[201,2.653]],[\"name/223\",[224,62.391]],[\"parent/223\",[201,2.653]],[\"name/224\",[225,62.391]],[\"parent/224\",[201,2.653]],[\"name/225\",[205,25.016]],[\"parent/225\",[226,5.922]],[\"name/226\",[96,57.129]],[\"parent/226\",[227,2.653]],[\"name/227\",[228,57.129]],[\"parent/227\",[227,2.653]],[\"name/228\",[229,57.129]],[\"parent/228\",[227,2.653]],[\"name/229\",[117,53.664]],[\"parent/229\",[227,2.653]],[\"name/230\",[118,57.129]],[\"parent/230\",[227,2.653]],[\"name/231\",[209,44.525]],[\"parent/231\",[227,2.653]],[\"name/232\",[85,47.288]],[\"parent/232\",[227,2.653]],[\"name/233\",[230,57.129]],[\"parent/233\",[227,2.653]],[\"name/234\",[210,53.664]],[\"parent/234\",[227,2.653]],[\"name/235\",[163,53.664]],[\"parent/235\",[227,2.653]],[\"name/236\",[231,62.391]],[\"parent/236\",[227,2.653]],[\"name/237\",[232,62.391]],[\"parent/237\",[227,2.653]],[\"name/238\",[233,57.129]],[\"parent/238\",[227,2.653]],[\"name/239\",[234,57.129]],[\"parent/239\",[227,2.653]],[\"name/240\",[128,53.664]],[\"parent/240\",[227,2.653]],[\"name/241\",[235,62.391]],[\"parent/241\",[227,2.653]],[\"name/242\",[97,57.129]],[\"parent/242\",[227,2.653]],[\"name/243\",[236,62.391]],[\"parent/243\",[227,2.653]],[\"name/244\",[237,62.391]],[\"parent/244\",[227,2.653]],[\"name/245\",[107,57.129]],[\"parent/245\",[227,2.653]],[\"name/246\",[238,62.391]],[\"parent/246\",[227,2.653]],[\"name/247\",[239,62.391]],[\"parent/247\",[227,2.653]],[\"name/248\",[240,62.391]],[\"parent/248\",[227,2.653]],[\"name/249\",[241,62.391]],[\"parent/249\",[227,2.653]],[\"name/250\",[242,62.391]],[\"parent/250\",[227,2.653]],[\"name/251\",[98,57.129]],[\"parent/251\",[227,2.653]],[\"name/252\",[99,57.129]],[\"parent/252\",[227,2.653]],[\"name/253\",[100,57.129]],[\"parent/253\",[227,2.653]],[\"name/254\",[101,57.129]],[\"parent/254\",[227,2.653]],[\"name/255\",[102,57.129]],[\"parent/255\",[227,2.653]],[\"name/256\",[103,57.129]],[\"parent/256\",[227,2.653]],[\"name/257\",[104,57.129]],[\"parent/257\",[227,2.653]],[\"name/258\",[105,57.129]],[\"parent/258\",[227,2.653]],[\"name/259\",[109,57.129]],[\"parent/259\",[227,2.653]],[\"name/260\",[243,62.391]],[\"parent/260\",[227,2.653]],[\"name/261\",[184,57.129]],[\"parent/261\",[227,2.653]],[\"name/262\",[244,62.391]],[\"parent/262\",[227,2.653]],[\"name/263\",[245,62.391]],[\"parent/263\",[227,2.653]],[\"name/264\",[246,62.391]],[\"parent/264\",[227,2.653]],[\"name/265\",[247,62.391]],[\"parent/265\",[227,2.653]],[\"name/266\",[248,62.391]],[\"parent/266\",[227,2.653]],[\"name/267\",[249,62.391]],[\"parent/267\",[227,2.653]],[\"name/268\",[250,62.391]],[\"parent/268\",[201,2.653]],[\"name/269\",[205,25.016]],[\"parent/269\",[251,5.922]],[\"name/270\",[190,42.349]],[\"parent/270\",[252,4.848]],[\"name/271\",[209,44.525]],[\"parent/271\",[252,4.848]],[\"name/272\",[208,43.379]],[\"parent/272\",[252,4.848]],[\"name/273\",[228,57.129]],[\"parent/273\",[252,4.848]],[\"name/274\",[253,62.391]],[\"parent/274\",[201,2.653]],[\"name/275\",[205,25.016]],[\"parent/275\",[254,5.922]],[\"name/276\",[209,44.525]],[\"parent/276\",[255,3.849]],[\"name/277\",[83,43.379]],[\"parent/277\",[255,3.849]],[\"name/278\",[85,47.288]],[\"parent/278\",[255,3.849]],[\"name/279\",[230,57.129]],[\"parent/279\",[255,3.849]],[\"name/280\",[229,57.129]],[\"parent/280\",[255,3.849]],[\"name/281\",[210,53.664]],[\"parent/281\",[255,3.849]],[\"name/282\",[256,62.391]],[\"parent/282\",[255,3.849]],[\"name/283\",[257,62.391]],[\"parent/283\",[255,3.849]],[\"name/284\",[258,62.391]],[\"parent/284\",[255,3.849]],[\"name/285\",[233,57.129]],[\"parent/285\",[255,3.849]],[\"name/286\",[234,57.129]],[\"parent/286\",[255,3.849]],[\"name/287\",[259,62.391]],[\"parent/287\",[255,3.849]],[\"name/288\",[260,62.391]],[\"parent/288\",[201,2.653]],[\"name/289\",[261,62.391]],[\"parent/289\",[201,2.653]],[\"name/290\",[205,25.016]],[\"parent/290\",[262,5.922]],[\"name/291\",[208,43.379]],[\"parent/291\",[263,4.348]],[\"name/292\",[264,57.129]],[\"parent/292\",[263,4.348]],[\"name/293\",[212,34.499]],[\"parent/293\",[263,4.348]],[\"name/294\",[265,62.391]],[\"parent/294\",[263,4.348]],[\"name/295\",[266,62.391]],[\"parent/295\",[263,4.348]],[\"name/296\",[267,62.391]],[\"parent/296\",[263,4.348]],[\"name/297\",[268,62.391]],[\"parent/297\",[263,4.348]],[\"name/298\",[269,62.391]],[\"parent/298\",[201,2.653]],[\"name/299\",[205,25.016]],[\"parent/299\",[270,5.922]],[\"name/300\",[190,42.349]],[\"parent/300\",[271,4.226]],[\"name/301\",[264,57.129]],[\"parent/301\",[271,4.226]],[\"name/302\",[272,41.412]],[\"parent/302\",[271,4.226]],[\"name/303\",[273,40.553]],[\"parent/303\",[271,4.226]],[\"name/304\",[209,44.525]],[\"parent/304\",[271,4.226]],[\"name/305\",[83,43.379]],[\"parent/305\",[271,4.226]],[\"name/306\",[274,57.129]],[\"parent/306\",[271,4.226]],[\"name/307\",[275,57.129]],[\"parent/307\",[271,4.226]],[\"name/308\",[276,62.391]],[\"parent/308\",[201,2.653]],[\"name/309\",[205,25.016]],[\"parent/309\",[277,5.922]],[\"name/310\",[278,62.391]],[\"parent/310\",[279,5.422]],[\"name/311\",[280,62.391]],[\"parent/311\",[279,5.422]],[\"name/312\",[281,62.391]],[\"parent/312\",[201,2.653]],[\"name/313\",[282,62.391]],[\"parent/313\",[201,2.653]],[\"name/314\",[283,62.391]],[\"parent/314\",[201,2.653]],[\"name/315\",[284,62.391]],[\"parent/315\",[201,2.653]],[\"name/316\",[205,25.016]],[\"parent/316\",[285,5.922]],[\"name/317\",[286,62.391]],[\"parent/317\",[287,3.849]],[\"name/318\",[288,62.391]],[\"parent/318\",[287,3.849]],[\"name/319\",[289,57.129]],[\"parent/319\",[287,3.849]],[\"name/320\",[290,62.391]],[\"parent/320\",[287,3.849]],[\"name/321\",[291,62.391]],[\"parent/321\",[287,3.849]],[\"name/322\",[292,62.391]],[\"parent/322\",[287,3.849]],[\"name/323\",[293,62.391]],[\"parent/323\",[287,3.849]],[\"name/324\",[294,62.391]],[\"parent/324\",[287,3.849]],[\"name/325\",[295,62.391]],[\"parent/325\",[287,3.849]],[\"name/326\",[83,43.379]],[\"parent/326\",[287,3.849]],[\"name/327\",[296,62.391]],[\"parent/327\",[287,3.849]],[\"name/328\",[205,25.016]],[\"parent/328\",[287,3.849]],[\"name/329\",[209,44.525]],[\"parent/329\",[297,5.422]],[\"name/330\",[273,40.553]],[\"parent/330\",[297,5.422]],[\"name/331\",[298,62.391]],[\"parent/331\",[201,2.653]],[\"name/332\",[205,25.016]],[\"parent/332\",[299,5.922]],[\"name/333\",[272,41.412]],[\"parent/333\",[300,5.093]],[\"name/334\",[273,40.553]],[\"parent/334\",[300,5.093]],[\"name/335\",[209,44.525]],[\"parent/335\",[300,5.093]],[\"name/336\",[301,62.391]],[\"parent/336\",[201,2.653]],[\"name/337\",[302,62.391]],[\"parent/337\",[201,2.653]],[\"name/338\",[303,62.391]],[\"parent/338\",[201,2.653]],[\"name/339\",[304,62.391]],[\"parent/339\",[201,2.653]],[\"name/340\",[205,25.016]],[\"parent/340\",[305,5.922]],[\"name/341\",[83,43.379]],[\"parent/341\",[306,3.578]],[\"name/342\",[307,62.391]],[\"parent/342\",[306,3.578]],[\"name/343\",[308,57.129]],[\"parent/343\",[306,3.578]],[\"name/344\",[309,62.391]],[\"parent/344\",[306,3.578]],[\"name/345\",[310,62.391]],[\"parent/345\",[306,3.578]],[\"name/346\",[311,62.391]],[\"parent/346\",[306,3.578]],[\"name/347\",[312,62.391]],[\"parent/347\",[306,3.578]],[\"name/348\",[313,62.391]],[\"parent/348\",[306,3.578]],[\"name/349\",[314,62.391]],[\"parent/349\",[306,3.578]],[\"name/350\",[315,62.391]],[\"parent/350\",[306,3.578]],[\"name/351\",[316,62.391]],[\"parent/351\",[306,3.578]],[\"name/352\",[317,62.391]],[\"parent/352\",[306,3.578]],[\"name/353\",[318,62.391]],[\"parent/353\",[306,3.578]],[\"name/354\",[319,62.391]],[\"parent/354\",[306,3.578]],[\"name/355\",[166,44.525]],[\"parent/355\",[306,3.578]],[\"name/356\",[320,62.391]],[\"parent/356\",[306,3.578]],[\"name/357\",[321,62.391]],[\"parent/357\",[201,2.653]],[\"name/358\",[322,62.391]],[\"parent/358\",[201,2.653]],[\"name/359\",[323,62.391]],[\"parent/359\",[201,2.653]],[\"name/360\",[324,62.391]],[\"parent/360\",[201,2.653]],[\"name/361\",[205,25.016]],[\"parent/361\",[325,5.922]],[\"name/362\",[326,62.391]],[\"parent/362\",[327,4.348]],[\"name/363\",[328,62.391]],[\"parent/363\",[327,4.348]],[\"name/364\",[329,62.391]],[\"parent/364\",[327,4.348]],[\"name/365\",[83,43.379]],[\"parent/365\",[327,4.348]],[\"name/366\",[163,53.664]],[\"parent/366\",[327,4.348]],[\"name/367\",[330,62.391]],[\"parent/367\",[327,4.348]],[\"name/368\",[85,47.288]],[\"parent/368\",[327,4.348]],[\"name/369\",[331,62.391]],[\"parent/369\",[201,2.653]],[\"name/370\",[205,25.016]],[\"parent/370\",[332,5.922]],[\"name/371\",[209,44.525]],[\"parent/371\",[333,5.093]],[\"name/372\",[274,57.129]],[\"parent/372\",[333,5.093]],[\"name/373\",[275,57.129]],[\"parent/373\",[333,5.093]],[\"name/374\",[334,62.391]],[\"parent/374\",[201,2.653]],[\"name/375\",[205,25.016]],[\"parent/375\",[335,5.922]],[\"name/376\",[336,62.391]],[\"parent/376\",[201,2.653]],[\"name/377\",[205,25.016]],[\"parent/377\",[337,5.922]],[\"name/378\",[338,62.391]],[\"parent/378\",[339,4.226]],[\"name/379\",[83,43.379]],[\"parent/379\",[339,4.226]],[\"name/380\",[111,57.129]],[\"parent/380\",[339,4.226]],[\"name/381\",[340,62.391]],[\"parent/381\",[339,4.226]],[\"name/382\",[341,62.391]],[\"parent/382\",[339,4.226]],[\"name/383\",[128,53.664]],[\"parent/383\",[339,4.226]],[\"name/384\",[342,62.391]],[\"parent/384\",[339,4.226]],[\"name/385\",[343,62.391]],[\"parent/385\",[339,4.226]],[\"name/386\",[344,62.391]],[\"parent/386\",[201,2.653]],[\"name/387\",[205,25.016]],[\"parent/387\",[345,5.922]],[\"name/388\",[346,57.129]],[\"parent/388\",[347,5.922]],[\"name/389\",[348,62.391]],[\"parent/389\",[201,2.653]],[\"name/390\",[349,62.391]],[\"parent/390\",[201,2.653]],[\"name/391\",[350,62.391]],[\"parent/391\",[201,2.653]],[\"name/392\",[351,62.391]],[\"parent/392\",[201,2.653]],[\"name/393\",[205,25.016]],[\"parent/393\",[352,5.922]],[\"name/394\",[353,62.391]],[\"parent/394\",[201,2.653]],[\"name/395\",[205,25.016]],[\"parent/395\",[354,5.922]],[\"name/396\",[85,47.288]],[\"parent/396\",[355,5.922]],[\"name/397\",[356,62.391]],[\"parent/397\",[201,2.653]],[\"name/398\",[357,62.391]],[\"parent/398\",[201,2.653]],[\"name/399\",[205,25.016]],[\"parent/399\",[358,5.922]],[\"name/400\",[359,62.391]],[\"parent/400\",[360,5.093]],[\"name/401\",[83,43.379]],[\"parent/401\",[360,5.093]],[\"name/402\",[85,47.288]],[\"parent/402\",[360,5.093]],[\"name/403\",[361,34.967]],[\"parent/403\",[]],[\"name/404\",[362,62.391]],[\"parent/404\",[361,3.319]],[\"name/405\",[363,62.391]],[\"parent/405\",[361,3.319]],[\"name/406\",[364,62.391]],[\"parent/406\",[361,3.319]],[\"name/407\",[365,62.391]],[\"parent/407\",[361,3.319]],[\"name/408\",[366,62.391]],[\"parent/408\",[361,3.319]],[\"name/409\",[367,62.391]],[\"parent/409\",[361,3.319]],[\"name/410\",[368,62.391]],[\"parent/410\",[361,3.319]],[\"name/411\",[369,62.391]],[\"parent/411\",[361,3.319]],[\"name/412\",[370,62.391]],[\"parent/412\",[361,3.319]],[\"name/413\",[371,62.391]],[\"parent/413\",[361,3.319]],[\"name/414\",[372,62.391]],[\"parent/414\",[361,3.319]],[\"name/415\",[373,62.391]],[\"parent/415\",[361,3.319]],[\"name/416\",[374,62.391]],[\"parent/416\",[361,3.319]],[\"name/417\",[375,62.391]],[\"parent/417\",[361,3.319]],[\"name/418\",[376,62.391]],[\"parent/418\",[361,3.319]],[\"name/419\",[377,62.391]],[\"parent/419\",[361,3.319]],[\"name/420\",[378,62.391]],[\"parent/420\",[361,3.319]],[\"name/421\",[195,57.129]],[\"parent/421\",[361,3.319]],[\"name/422\",[194,57.129]],[\"parent/422\",[361,3.319]],[\"name/423\",[196,57.129]],[\"parent/423\",[361,3.319]],[\"name/424\",[379,53.664]],[\"parent/424\",[]],[\"name/425\",[380,62.391]],[\"parent/425\",[379,5.093]],[\"name/426\",[205,25.016]],[\"parent/426\",[381,4.652]],[\"name/427\",[3,57.129]],[\"parent/427\",[381,4.652]],[\"name/428\",[382,62.391]],[\"parent/428\",[381,4.652]],[\"name/429\",[383,62.391]],[\"parent/429\",[381,4.652]],[\"name/430\",[346,57.129]],[\"parent/430\",[381,4.652]],[\"name/431\",[384,39.024]],[\"parent/431\",[]],[\"name/432\",[385,57.129]],[\"parent/432\",[384,3.704]],[\"name/433\",[386,57.129]],[\"parent/433\",[384,3.704]],[\"name/434\",[387,57.129]],[\"parent/434\",[384,3.704]],[\"name/435\",[388,62.391]],[\"parent/435\",[384,3.704]],[\"name/436\",[389,57.129]],[\"parent/436\",[384,3.704]],[\"name/437\",[390,57.129]],[\"parent/437\",[384,3.704]],[\"name/438\",[391,57.129]],[\"parent/438\",[384,3.704]],[\"name/439\",[392,57.129]],[\"parent/439\",[384,3.704]],[\"name/440\",[393,62.391]],[\"parent/440\",[384,3.704]],[\"name/441\",[394,62.391]],[\"parent/441\",[384,3.704]],[\"name/442\",[395,62.391]],[\"parent/442\",[384,3.704]],[\"name/443\",[396,62.391]],[\"parent/443\",[384,3.704]],[\"name/444\",[397,62.391]],[\"parent/444\",[384,3.704]],[\"name/445\",[398,51.075]],[\"parent/445\",[]],[\"name/446\",[398,51.075]],[\"parent/446\",[398,4.848]],[\"name/447\",[398,51.075]],[\"parent/447\",[0,3.01]],[\"name/448\",[385,57.129]],[\"parent/448\",[0,3.01]],[\"name/449\",[386,57.129]],[\"parent/449\",[0,3.01]],[\"name/450\",[387,57.129]],[\"parent/450\",[0,3.01]],[\"name/451\",[391,57.129]],[\"parent/451\",[0,3.01]],[\"name/452\",[389,57.129]],[\"parent/452\",[0,3.01]],[\"name/453\",[392,57.129]],[\"parent/453\",[0,3.01]],[\"name/454\",[390,57.129]],[\"parent/454\",[0,3.01]],[\"name/455\",[399,62.391]],[\"parent/455\",[0,3.01]],[\"name/456\",[400,53.664]],[\"parent/456\",[0,3.01]],[\"name/457\",[400,53.664]],[\"parent/457\",[201,2.653]],[\"name/458\",[401,62.391]],[\"parent/458\",[402,2.7]],[\"name/459\",[403,62.391]],[\"parent/459\",[402,2.7]],[\"name/460\",[205,25.016]],[\"parent/460\",[404,5.922]],[\"name/461\",[272,41.412]],[\"parent/461\",[405,5.422]],[\"name/462\",[273,40.553]],[\"parent/462\",[405,5.422]],[\"name/463\",[406,62.391]],[\"parent/463\",[402,2.7]],[\"name/464\",[205,25.016]],[\"parent/464\",[407,5.922]],[\"name/465\",[408,53.664]],[\"parent/465\",[409,5.922]],[\"name/466\",[410,62.391]],[\"parent/466\",[402,2.7]],[\"name/467\",[205,25.016]],[\"parent/467\",[411,5.922]],[\"name/468\",[408,53.664]],[\"parent/468\",[412,5.422]],[\"name/469\",[413,62.391]],[\"parent/469\",[412,5.422]],[\"name/470\",[414,62.391]],[\"parent/470\",[402,2.7]],[\"name/471\",[205,25.016]],[\"parent/471\",[415,5.922]],[\"name/472\",[408,53.664]],[\"parent/472\",[416,5.922]],[\"name/473\",[417,62.391]],[\"parent/473\",[402,2.7]],[\"name/474\",[205,25.016]],[\"parent/474\",[418,5.922]],[\"name/475\",[272,41.412]],[\"parent/475\",[419,5.422]],[\"name/476\",[273,40.553]],[\"parent/476\",[419,5.422]],[\"name/477\",[420,62.391]],[\"parent/477\",[402,2.7]],[\"name/478\",[205,25.016]],[\"parent/478\",[421,5.922]],[\"name/479\",[272,41.412]],[\"parent/479\",[422,5.422]],[\"name/480\",[273,40.553]],[\"parent/480\",[422,5.422]],[\"name/481\",[423,62.391]],[\"parent/481\",[402,2.7]],[\"name/482\",[205,25.016]],[\"parent/482\",[424,5.922]],[\"name/483\",[272,41.412]],[\"parent/483\",[425,5.422]],[\"name/484\",[273,40.553]],[\"parent/484\",[425,5.422]],[\"name/485\",[426,62.391]],[\"parent/485\",[402,2.7]],[\"name/486\",[205,25.016]],[\"parent/486\",[427,5.922]],[\"name/487\",[272,41.412]],[\"parent/487\",[428,5.422]],[\"name/488\",[273,40.553]],[\"parent/488\",[428,5.422]],[\"name/489\",[429,62.391]],[\"parent/489\",[402,2.7]],[\"name/490\",[205,25.016]],[\"parent/490\",[430,5.922]],[\"name/491\",[272,41.412]],[\"parent/491\",[431,5.422]],[\"name/492\",[273,40.553]],[\"parent/492\",[431,5.422]],[\"name/493\",[432,62.391]],[\"parent/493\",[402,2.7]],[\"name/494\",[205,25.016]],[\"parent/494\",[433,5.922]],[\"name/495\",[272,41.412]],[\"parent/495\",[434,5.422]],[\"name/496\",[273,40.553]],[\"parent/496\",[434,5.422]],[\"name/497\",[435,62.391]],[\"parent/497\",[402,2.7]],[\"name/498\",[205,25.016]],[\"parent/498\",[436,5.922]],[\"name/499\",[272,41.412]],[\"parent/499\",[437,5.422]],[\"name/500\",[273,40.553]],[\"parent/500\",[437,5.422]],[\"name/501\",[438,62.391]],[\"parent/501\",[402,2.7]],[\"name/502\",[205,25.016]],[\"parent/502\",[439,5.922]],[\"name/503\",[272,41.412]],[\"parent/503\",[440,5.422]],[\"name/504\",[273,40.553]],[\"parent/504\",[440,5.422]],[\"name/505\",[441,62.391]],[\"parent/505\",[402,2.7]],[\"name/506\",[205,25.016]],[\"parent/506\",[442,5.922]],[\"name/507\",[212,34.499]],[\"parent/507\",[443,4.848]],[\"name/508\",[190,42.349]],[\"parent/508\",[443,4.848]],[\"name/509\",[208,43.379]],[\"parent/509\",[443,4.848]],[\"name/510\",[444,35.458]],[\"parent/510\",[443,4.848]],[\"name/511\",[445,62.391]],[\"parent/511\",[402,2.7]],[\"name/512\",[205,25.016]],[\"parent/512\",[446,5.922]],[\"name/513\",[212,34.499]],[\"parent/513\",[447,4.652]],[\"name/514\",[190,42.349]],[\"parent/514\",[447,4.652]],[\"name/515\",[208,43.379]],[\"parent/515\",[447,4.652]],[\"name/516\",[166,44.525]],[\"parent/516\",[447,4.652]],[\"name/517\",[444,35.458]],[\"parent/517\",[447,4.652]],[\"name/518\",[448,62.391]],[\"parent/518\",[402,2.7]],[\"name/519\",[205,25.016]],[\"parent/519\",[449,5.922]],[\"name/520\",[212,34.499]],[\"parent/520\",[450,5.093]],[\"name/521\",[166,44.525]],[\"parent/521\",[450,5.093]],[\"name/522\",[444,35.458]],[\"parent/522\",[450,5.093]],[\"name/523\",[451,62.391]],[\"parent/523\",[402,2.7]],[\"name/524\",[205,25.016]],[\"parent/524\",[452,5.922]],[\"name/525\",[212,34.499]],[\"parent/525\",[453,5.422]],[\"name/526\",[444,35.458]],[\"parent/526\",[453,5.422]],[\"name/527\",[454,62.391]],[\"parent/527\",[402,2.7]],[\"name/528\",[205,25.016]],[\"parent/528\",[455,5.922]],[\"name/529\",[212,34.499]],[\"parent/529\",[456,5.422]],[\"name/530\",[444,35.458]],[\"parent/530\",[456,5.422]],[\"name/531\",[457,62.391]],[\"parent/531\",[402,2.7]],[\"name/532\",[205,25.016]],[\"parent/532\",[458,5.922]],[\"name/533\",[212,34.499]],[\"parent/533\",[459,5.422]],[\"name/534\",[444,35.458]],[\"parent/534\",[459,5.422]],[\"name/535\",[460,62.391]],[\"parent/535\",[402,2.7]],[\"name/536\",[205,25.016]],[\"parent/536\",[461,5.922]],[\"name/537\",[212,34.499]],[\"parent/537\",[462,5.422]],[\"name/538\",[444,35.458]],[\"parent/538\",[462,5.422]],[\"name/539\",[463,62.391]],[\"parent/539\",[402,2.7]],[\"name/540\",[205,25.016]],[\"parent/540\",[464,5.922]],[\"name/541\",[212,34.499]],[\"parent/541\",[465,5.422]],[\"name/542\",[444,35.458]],[\"parent/542\",[465,5.422]],[\"name/543\",[466,62.391]],[\"parent/543\",[402,2.7]],[\"name/544\",[205,25.016]],[\"parent/544\",[467,5.922]],[\"name/545\",[212,34.499]],[\"parent/545\",[468,5.093]],[\"name/546\",[208,43.379]],[\"parent/546\",[468,5.093]],[\"name/547\",[444,35.458]],[\"parent/547\",[468,5.093]],[\"name/548\",[469,62.391]],[\"parent/548\",[402,2.7]],[\"name/549\",[205,25.016]],[\"parent/549\",[470,5.922]],[\"name/550\",[212,34.499]],[\"parent/550\",[471,5.093]],[\"name/551\",[190,42.349]],[\"parent/551\",[471,5.093]],[\"name/552\",[444,35.458]],[\"parent/552\",[471,5.093]],[\"name/553\",[472,62.391]],[\"parent/553\",[402,2.7]],[\"name/554\",[205,25.016]],[\"parent/554\",[473,5.922]],[\"name/555\",[212,34.499]],[\"parent/555\",[474,4.848]],[\"name/556\",[190,42.349]],[\"parent/556\",[474,4.848]],[\"name/557\",[208,43.379]],[\"parent/557\",[474,4.848]],[\"name/558\",[444,35.458]],[\"parent/558\",[474,4.848]],[\"name/559\",[475,62.391]],[\"parent/559\",[402,2.7]],[\"name/560\",[205,25.016]],[\"parent/560\",[476,5.922]],[\"name/561\",[212,34.499]],[\"parent/561\",[477,4.652]],[\"name/562\",[190,42.349]],[\"parent/562\",[477,4.652]],[\"name/563\",[208,43.379]],[\"parent/563\",[477,4.652]],[\"name/564\",[166,44.525]],[\"parent/564\",[477,4.652]],[\"name/565\",[444,35.458]],[\"parent/565\",[477,4.652]],[\"name/566\",[478,62.391]],[\"parent/566\",[402,2.7]],[\"name/567\",[205,25.016]],[\"parent/567\",[479,5.922]],[\"name/568\",[212,34.499]],[\"parent/568\",[480,5.093]],[\"name/569\",[166,44.525]],[\"parent/569\",[480,5.093]],[\"name/570\",[444,35.458]],[\"parent/570\",[480,5.093]],[\"name/571\",[481,62.391]],[\"parent/571\",[402,2.7]],[\"name/572\",[205,25.016]],[\"parent/572\",[482,5.922]],[\"name/573\",[212,34.499]],[\"parent/573\",[483,5.422]],[\"name/574\",[444,35.458]],[\"parent/574\",[483,5.422]],[\"name/575\",[484,62.391]],[\"parent/575\",[402,2.7]],[\"name/576\",[205,25.016]],[\"parent/576\",[485,5.922]],[\"name/577\",[212,34.499]],[\"parent/577\",[486,5.422]],[\"name/578\",[444,35.458]],[\"parent/578\",[486,5.422]],[\"name/579\",[487,62.391]],[\"parent/579\",[402,2.7]],[\"name/580\",[205,25.016]],[\"parent/580\",[488,5.922]],[\"name/581\",[212,34.499]],[\"parent/581\",[489,5.422]],[\"name/582\",[444,35.458]],[\"parent/582\",[489,5.422]],[\"name/583\",[490,62.391]],[\"parent/583\",[402,2.7]],[\"name/584\",[205,25.016]],[\"parent/584\",[491,5.922]],[\"name/585\",[212,34.499]],[\"parent/585\",[492,5.422]],[\"name/586\",[444,35.458]],[\"parent/586\",[492,5.422]],[\"name/587\",[493,62.391]],[\"parent/587\",[402,2.7]],[\"name/588\",[205,25.016]],[\"parent/588\",[494,5.922]],[\"name/589\",[212,34.499]],[\"parent/589\",[495,5.422]],[\"name/590\",[444,35.458]],[\"parent/590\",[495,5.422]],[\"name/591\",[496,62.391]],[\"parent/591\",[402,2.7]],[\"name/592\",[205,25.016]],[\"parent/592\",[497,5.922]],[\"name/593\",[212,34.499]],[\"parent/593\",[498,5.093]],[\"name/594\",[208,43.379]],[\"parent/594\",[498,5.093]],[\"name/595\",[444,35.458]],[\"parent/595\",[498,5.093]],[\"name/596\",[499,62.391]],[\"parent/596\",[402,2.7]],[\"name/597\",[205,25.016]],[\"parent/597\",[500,5.922]],[\"name/598\",[212,34.499]],[\"parent/598\",[501,5.093]],[\"name/599\",[190,42.349]],[\"parent/599\",[501,5.093]],[\"name/600\",[444,35.458]],[\"parent/600\",[501,5.093]],[\"name/601\",[502,62.391]],[\"parent/601\",[402,2.7]],[\"name/602\",[503,62.391]],[\"parent/602\",[402,2.7]],[\"name/603\",[504,62.391]],[\"parent/603\",[402,2.7]],[\"name/604\",[505,62.391]],[\"parent/604\",[402,2.7]],[\"name/605\",[506,62.391]],[\"parent/605\",[402,2.7]],[\"name/606\",[205,25.016]],[\"parent/606\",[507,5.922]],[\"name/607\",[508,62.391]],[\"parent/607\",[402,2.7]],[\"name/608\",[205,25.016]],[\"parent/608\",[509,5.922]],[\"name/609\",[510,62.391]],[\"parent/609\",[402,2.7]],[\"name/610\",[205,25.016]],[\"parent/610\",[511,5.922]],[\"name/611\",[400,53.664]],[\"parent/611\",[379,5.093]],[\"name/612\",[83,16.909,512,12.498,513,24.319,514,24.319,515,22.268]],[\"parent/612\",[]],[\"name/613\",[308,26.277,512,14.748,516,28.697,517,28.697]],[\"parent/613\",[]],[\"name/614\",[512,17.986,518,34.997,519,32.045]],[\"parent/614\",[]],[\"name/615\",[512,17.986,519,32.045,520,34.997]],[\"parent/615\",[]],[\"name/616\",[512,17.986,515,32.045,521,34.997]],[\"parent/616\",[]],[\"name/617\",[512,23.045,522,44.841]],[\"parent/617\",[]],[\"name/618\",[512,23.045,523,44.841]],[\"parent/618\",[]],[\"name/619\",[512,23.045,524,44.841]],[\"parent/619\",[]],[\"name/620\",[512,23.045,525,41.059]],[\"parent/620\",[]],[\"name/621\",[512,23.045,525,41.059]],[\"parent/621\",[]],[\"name/622\",[512,23.045,526,44.841]],[\"parent/622\",[]],[\"name/623\",[512,17.986,527,34.997,528,34.997]],[\"parent/623\",[]],[\"name/624\",[512,17.986,529,34.997,530,34.997]],[\"parent/624\",[]],[\"name/625\",[512,23.045,531,44.841]],[\"parent/625\",[]],[\"name/626\",[512,23.045,532,44.841]],[\"parent/626\",[]],[\"name/627\",[512,23.045,533,44.841]],[\"parent/627\",[]],[\"name/628\",[512,23.045,534,44.841]],[\"parent/628\",[]],[\"name/629\",[512,17.986,535,34.997,536,34.997]],[\"parent/629\",[]],[\"name/630\",[2,19.321,187,19.321,512,10.844,537,21.1,538,21.1,539,21.1]],[\"parent/630\",[]],[\"name/631\",[512,23.045,540,44.841]],[\"parent/631\",[]],[\"name/632\",[117,24.683,289,26.277,512,14.748,541,28.697]],[\"parent/632\",[]],[\"name/633\",[512,17.986,542,34.997,543,34.997]],[\"parent/633\",[]],[\"name/634\",[512,17.986,544,34.997,545,34.997]],[\"parent/634\",[]],[\"name/635\",[512,17.986,546,34.997,547,34.997]],[\"parent/635\",[]],[\"name/636\",[166,24.975,512,17.986,548,34.997]],[\"parent/636\",[]],[\"name/637\",[512,23.045,549,44.841]],[\"parent/637\",[]],[\"name/638\",[512,23.045,550,44.841]],[\"parent/638\",[]],[\"name/639\",[512,23.045,551,44.841]],[\"parent/639\",[]]],\"invertedIndex\":[[\"\",{\"_index\":516,\"name\":{\"613\":{}},\"parent\":{}}],[\"__type\",{\"_index\":205,\"name\":{\"205\":{},\"217\":{},\"225\":{},\"269\":{},\"275\":{},\"290\":{},\"299\":{},\"309\":{},\"316\":{},\"328\":{},\"332\":{},\"340\":{},\"361\":{},\"370\":{},\"375\":{},\"377\":{},\"387\":{},\"393\":{},\"395\":{},\"399\":{},\"426\":{},\"460\":{},\"464\":{},\"467\":{},\"471\":{},\"474\":{},\"478\":{},\"482\":{},\"486\":{},\"490\":{},\"494\":{},\"498\":{},\"502\":{},\"506\":{},\"512\":{},\"519\":{},\"524\":{},\"528\":{},\"532\":{},\"536\":{},\"540\":{},\"544\":{},\"549\":{},\"554\":{},\"560\":{},\"567\":{},\"572\":{},\"576\":{},\"580\":{},\"584\":{},\"588\":{},\"592\":{},\"597\":{},\"606\":{},\"608\":{},\"610\":{}},\"parent\":{}}],[\"_actions\",{\"_index\":10,\"name\":{\"9\":{}},\"parent\":{}}],[\"_active_state_style\",{\"_index\":76,\"name\":{\"75\":{}},\"parent\":{}}],[\"_any_action_hook\",{\"_index\":47,\"name\":{\"46\":{}},\"parent\":{}}],[\"_any_transition_hook\",{\"_index\":51,\"name\":{\"50\":{}},\"parent\":{}}],[\"_arrange_declaration\",{\"_index\":30,\"name\":{\"29\":{}},\"parent\":{}}],[\"_arrange_end_declaration\",{\"_index\":32,\"name\":{\"31\":{}},\"parent\":{}}],[\"_arrange_start_declaration\",{\"_index\":31,\"name\":{\"30\":{}},\"parent\":{}}],[\"_data\",{\"_index\":27,\"name\":{\"26\":{}},\"parent\":{}}],[\"_default_properties\",{\"_index\":70,\"name\":{\"69\":{}},\"parent\":{}}],[\"_dot_preamble\",{\"_index\":29,\"name\":{\"28\":{}},\"parent\":{}}],[\"_edge_map\",{\"_index\":8,\"name\":{\"7\":{}},\"parent\":{}}],[\"_edges\",{\"_index\":7,\"name\":{\"6\":{}},\"parent\":{}}],[\"_end_state_style\",{\"_index\":80,\"name\":{\"79\":{}},\"parent\":{}}],[\"_end_states\",{\"_index\":14,\"name\":{\"13\":{}},\"parent\":{}}],[\"_entry_hooks\",{\"_index\":44,\"name\":{\"43\":{}},\"parent\":{}}],[\"_exit_hooks\",{\"_index\":45,\"name\":{\"44\":{}},\"parent\":{}}],[\"_flow\",{\"_index\":34,\"name\":{\"33\":{}},\"parent\":{}}],[\"_forced_transition_hook\",{\"_index\":50,\"name\":{\"49\":{}},\"parent\":{}}],[\"_fsl_version\",{\"_index\":23,\"name\":{\"22\":{}},\"parent\":{}}],[\"_global_action_hooks\",{\"_index\":46,\"name\":{\"45\":{}},\"parent\":{}}],[\"_graph_layout\",{\"_index\":28,\"name\":{\"27\":{}},\"parent\":{}}],[\"_has_basic_hooks\",{\"_index\":36,\"name\":{\"35\":{}},\"parent\":{}}],[\"_has_entry_hooks\",{\"_index\":38,\"name\":{\"37\":{}},\"parent\":{}}],[\"_has_exit_hooks\",{\"_index\":39,\"name\":{\"38\":{}},\"parent\":{}}],[\"_has_global_action_hooks\",{\"_index\":40,\"name\":{\"39\":{}},\"parent\":{}}],[\"_has_hooks\",{\"_index\":35,\"name\":{\"34\":{}},\"parent\":{}}],[\"_has_named_hooks\",{\"_index\":37,\"name\":{\"36\":{}},\"parent\":{}}],[\"_has_post_basic_hooks\",{\"_index\":53,\"name\":{\"52\":{}},\"parent\":{}}],[\"_has_post_entry_hooks\",{\"_index\":55,\"name\":{\"54\":{}},\"parent\":{}}],[\"_has_post_exit_hooks\",{\"_index\":56,\"name\":{\"55\":{}},\"parent\":{}}],[\"_has_post_global_action_hooks\",{\"_index\":57,\"name\":{\"56\":{}},\"parent\":{}}],[\"_has_post_hooks\",{\"_index\":52,\"name\":{\"51\":{}},\"parent\":{}}],[\"_has_post_named_hooks\",{\"_index\":54,\"name\":{\"53\":{}},\"parent\":{}}],[\"_has_post_transition_hooks\",{\"_index\":58,\"name\":{\"57\":{}},\"parent\":{}}],[\"_has_transition_hooks\",{\"_index\":41,\"name\":{\"40\":{}},\"parent\":{}}],[\"_history\",{\"_index\":73,\"name\":{\"72\":{}},\"parent\":{}}],[\"_history_length\",{\"_index\":74,\"name\":{\"73\":{}},\"parent\":{}}],[\"_hooked_state_style\",{\"_index\":77,\"name\":{\"76\":{}},\"parent\":{}}],[\"_hooks\",{\"_index\":42,\"name\":{\"41\":{}},\"parent\":{}}],[\"_instance_name\",{\"_index\":26,\"name\":{\"25\":{}},\"parent\":{}}],[\"_machine_author\",{\"_index\":15,\"name\":{\"14\":{}},\"parent\":{}}],[\"_machine_comment\",{\"_index\":16,\"name\":{\"15\":{}},\"parent\":{}}],[\"_machine_contributor\",{\"_index\":17,\"name\":{\"16\":{}},\"parent\":{}}],[\"_machine_definition\",{\"_index\":18,\"name\":{\"17\":{}},\"parent\":{}}],[\"_machine_language\",{\"_index\":19,\"name\":{\"18\":{}},\"parent\":{}}],[\"_machine_license\",{\"_index\":20,\"name\":{\"19\":{}},\"parent\":{}}],[\"_machine_name\",{\"_index\":21,\"name\":{\"20\":{}},\"parent\":{}}],[\"_machine_version\",{\"_index\":22,\"name\":{\"21\":{}},\"parent\":{}}],[\"_main_transition_hook\",{\"_index\":49,\"name\":{\"48\":{}},\"parent\":{}}],[\"_named_hooks\",{\"_index\":43,\"name\":{\"42\":{}},\"parent\":{}}],[\"_named_transitions\",{\"_index\":9,\"name\":{\"8\":{}},\"parent\":{}}],[\"_new_state\",{\"_index\":82,\"name\":{\"81\":{}},\"parent\":{}}],[\"_post_any_action_hook\",{\"_index\":64,\"name\":{\"63\":{}},\"parent\":{}}],[\"_post_any_transition_hook\",{\"_index\":68,\"name\":{\"67\":{}},\"parent\":{}}],[\"_post_entry_hooks\",{\"_index\":61,\"name\":{\"60\":{}},\"parent\":{}}],[\"_post_exit_hooks\",{\"_index\":62,\"name\":{\"61\":{}},\"parent\":{}}],[\"_post_forced_transition_hook\",{\"_index\":67,\"name\":{\"66\":{}},\"parent\":{}}],[\"_post_global_action_hooks\",{\"_index\":63,\"name\":{\"62\":{}},\"parent\":{}}],[\"_post_hooks\",{\"_index\":59,\"name\":{\"58\":{}},\"parent\":{}}],[\"_post_main_transition_hook\",{\"_index\":66,\"name\":{\"65\":{}},\"parent\":{}}],[\"_post_named_hooks\",{\"_index\":60,\"name\":{\"59\":{}},\"parent\":{}}],[\"_post_standard_transition_hook\",{\"_index\":65,\"name\":{\"64\":{}},\"parent\":{}}],[\"_property_keys\",{\"_index\":69,\"name\":{\"68\":{}},\"parent\":{}}],[\"_raw_state_declaration\",{\"_index\":24,\"name\":{\"23\":{}},\"parent\":{}}],[\"_required_properties\",{\"_index\":72,\"name\":{\"71\":{}},\"parent\":{}}],[\"_reverse_action_targets\",{\"_index\":12,\"name\":{\"11\":{}},\"parent\":{}}],[\"_reverse_actions\",{\"_index\":11,\"name\":{\"10\":{}},\"parent\":{}}],[\"_standard_transition_hook\",{\"_index\":48,\"name\":{\"47\":{}},\"parent\":{}}],[\"_start_state_style\",{\"_index\":79,\"name\":{\"78\":{}},\"parent\":{}}],[\"_start_states\",{\"_index\":13,\"name\":{\"12\":{}},\"parent\":{}}],[\"_state\",{\"_index\":5,\"name\":{\"4\":{}},\"parent\":{}}],[\"_state_declarations\",{\"_index\":25,\"name\":{\"24\":{}},\"parent\":{}}],[\"_state_labels\",{\"_index\":81,\"name\":{\"80\":{}},\"parent\":{}}],[\"_state_properties\",{\"_index\":71,\"name\":{\"70\":{}},\"parent\":{}}],[\"_state_style\",{\"_index\":75,\"name\":{\"74\":{}},\"parent\":{}}],[\"_states\",{\"_index\":6,\"name\":{\"5\":{}},\"parent\":{}}],[\"_terminal_state_style\",{\"_index\":78,\"name\":{\"77\":{}},\"parent\":{}}],[\"_theme\",{\"_index\":33,\"name\":{\"32\":{}},\"parent\":{}}],[\"a\",{\"_index\":538,\"name\":{\"630\":{}},\"parent\":{}}],[\"abstract_hook_step\",{\"_index\":199,\"name\":{\"199\":{}},\"parent\":{}}],[\"action\",{\"_index\":166,\"name\":{\"165\":{},\"209\":{},\"355\":{},\"516\":{},\"521\":{},\"564\":{},\"569\":{},\"636\":{}},\"parent\":{}}],[\"actions\",{\"_index\":128,\"name\":{\"127\":{},\"240\":{},\"383\":{}},\"parent\":{}}],[\"active\",{\"_index\":311,\"name\":{\"346\":{}},\"parent\":{}}],[\"active_end\",{\"_index\":314,\"name\":{\"349\":{}},\"parent\":{}}],[\"active_hooked\",{\"_index\":312,\"name\":{\"347\":{}},\"parent\":{}}],[\"active_start\",{\"_index\":313,\"name\":{\"348\":{}},\"parent\":{}}],[\"active_state_style\",{\"_index\":172,\"name\":{\"171\":{}},\"parent\":{}}],[\"active_terminal\",{\"_index\":315,\"name\":{\"350\":{}},\"parent\":{}}],[\"agg_as\",{\"_index\":278,\"name\":{\"310\":{}},\"parent\":{}}],[\"allow_empty\",{\"_index\":258,\"name\":{\"284\":{}},\"parent\":{}}],[\"allow_force\",{\"_index\":234,\"name\":{\"239\":{},\"286\":{}},\"parent\":{}}],[\"allow_islands\",{\"_index\":233,\"name\":{\"238\":{},\"285\":{}},\"parent\":{}}],[\"angular\",{\"_index\":524,\"name\":{\"619\":{}},\"parent\":{}}],[\"anyactionhook\",{\"_index\":451,\"name\":{\"523\":{}},\"parent\":{}}],[\"anytransitionhook\",{\"_index\":463,\"name\":{\"539\":{}},\"parent\":{}}],[\"api\",{\"_index\":520,\"name\":{\"615\":{}},\"parent\":{}}],[\"are\",{\"_index\":514,\"name\":{\"612\":{}},\"parent\":{}}],[\"arr_uniq_p\",{\"_index\":388,\"name\":{\"435\":{}},\"parent\":{}}],[\"arrange_declaration\",{\"_index\":240,\"name\":{\"248\":{}},\"parent\":{}}],[\"arrange_end_declaration\",{\"_index\":242,\"name\":{\"250\":{}},\"parent\":{}}],[\"arrange_start_declaration\",{\"_index\":241,\"name\":{\"249\":{}},\"parent\":{}}],[\"array_box_if_string\",{\"_index\":393,\"name\":{\"440\":{}},\"parent\":{}}],[\"arrow_direction\",{\"_index\":191,\"name\":{\"191\":{}},\"parent\":{}}],[\"arrow_left_kind\",{\"_index\":192,\"name\":{\"192\":{}},\"parent\":{}}],[\"arrow_right_kind\",{\"_index\":193,\"name\":{\"193\":{}},\"parent\":{}}],[\"auto_api\",{\"_index\":243,\"name\":{\"260\":{}},\"parent\":{}}],[\"aws\",{\"_index\":529,\"name\":{\"624\":{}},\"parent\":{}}],[\"backgroundcolor\",{\"_index\":294,\"name\":{\"324\":{}},\"parent\":{}}],[\"base_message\",{\"_index\":383,\"name\":{\"429\":{}},\"parent\":{}}],[\"basichookdescription\",{\"_index\":441,\"name\":{\"505\":{}},\"parent\":{}}],[\"bordercolor\",{\"_index\":295,\"name\":{\"325\":{}},\"parent\":{}}],[\"browser\",{\"_index\":528,\"name\":{\"623\":{}},\"parent\":{}}],[\"cdn\",{\"_index\":534,\"name\":{\"628\":{}},\"parent\":{}}],[\"changelog\",{\"_index\":551,\"name\":{\"639\":{}},\"parent\":{}}],[\"check\",{\"_index\":210,\"name\":{\"210\":{},\"234\":{},\"281\":{}},\"parent\":{}}],[\"cli\",{\"_index\":549,\"name\":{\"637\":{}},\"parent\":{}}],[\"color\",{\"_index\":289,\"name\":{\"319\":{},\"632\":{}},\"parent\":{}}],[\"comment\",{\"_index\":329,\"name\":{\"364\":{}},\"parent\":{}}],[\"community\",{\"_index\":550,\"name\":{\"638\":{}},\"parent\":{}}],[\"comparison\",{\"_index\":543,\"name\":{\"633\":{}},\"parent\":{}}],[\"compile\",{\"_index\":189,\"name\":{\"188\":{}},\"parent\":{}}],[\"complete\",{\"_index\":228,\"name\":{\"227\":{},\"273\":{}},\"parent\":{}}],[\"constants\",{\"_index\":399,\"name\":{\"455\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":3,\"name\":{\"3\":{},\"427\":{}},\"parent\":{}}],[\"corners\",{\"_index\":290,\"name\":{\"320\":{}},\"parent\":{}}],[\"current_action_edge_for\",{\"_index\":180,\"name\":{\"179\":{}},\"parent\":{}}],[\"current_action_for\",{\"_index\":179,\"name\":{\"178\":{}},\"parent\":{}}],[\"data\",{\"_index\":85,\"name\":{\"84\":{},\"232\":{},\"278\":{},\"368\":{},\"396\":{},\"402\":{}},\"parent\":{}}],[\"declarations\",{\"_index\":286,\"name\":{\"317\":{}},\"parent\":{}}],[\"default_active_state_config\",{\"_index\":249,\"name\":{\"267\":{}},\"parent\":{}}],[\"default_end_state_config\",{\"_index\":246,\"name\":{\"264\":{}},\"parent\":{}}],[\"default_hooked_state_config\",{\"_index\":247,\"name\":{\"265\":{}},\"parent\":{}}],[\"default_start_state_config\",{\"_index\":245,\"name\":{\"263\":{}},\"parent\":{}}],[\"default_state_config\",{\"_index\":244,\"name\":{\"262\":{}},\"parent\":{}}],[\"default_terminal_state_config\",{\"_index\":248,\"name\":{\"266\":{}},\"parent\":{}}],[\"default_value\",{\"_index\":274,\"name\":{\"306\":{},\"372\":{}},\"parent\":{}}],[\"deserialize\",{\"_index\":186,\"name\":{\"185\":{}},\"parent\":{}}],[\"do\",{\"_index\":175,\"name\":{\"174\":{}},\"parent\":{}}],[\"dot_preamble\",{\"_index\":97,\"name\":{\"96\":{},\"242\":{}},\"parent\":{}}],[\"e\",{\"_index\":366,\"name\":{\"408\":{}},\"parent\":{}}],[\"edge_map\",{\"_index\":341,\"name\":{\"382\":{}},\"parent\":{}}],[\"edges\",{\"_index\":343,\"name\":{\"385\":{}},\"parent\":{}}],[\"edges_between\",{\"_index\":161,\"name\":{\"160\":{}},\"parent\":{}}],[\"editor\",{\"_index\":547,\"name\":{\"635\":{}},\"parent\":{}}],[\"end\",{\"_index\":309,\"name\":{\"344\":{}},\"parent\":{}}],[\"end_state_style\",{\"_index\":170,\"name\":{\"169\":{}},\"parent\":{}}],[\"end_states\",{\"_index\":237,\"name\":{\"244\":{}},\"parent\":{}}],[\"entrances\",{\"_index\":218,\"name\":{\"218\":{}},\"parent\":{}}],[\"entryhook\",{\"_index\":466,\"name\":{\"543\":{}},\"parent\":{}}],[\"epsilon\",{\"_index\":364,\"name\":{\"406\":{}},\"parent\":{}}],[\"error\",{\"_index\":413,\"name\":{\"469\":{}},\"parent\":{}}],[\"eulerc\",{\"_index\":378,\"name\":{\"420\":{}},\"parent\":{}}],[\"example\",{\"_index\":521,\"name\":{\"616\":{}},\"parent\":{}}],[\"exithook\",{\"_index\":469,\"name\":{\"548\":{}},\"parent\":{}}],[\"exits\",{\"_index\":220,\"name\":{\"219\":{}},\"parent\":{}}],[\"feature\",{\"_index\":542,\"name\":{\"633\":{}},\"parent\":{}}],[\"files\",{\"_index\":536,\"name\":{\"629\":{}},\"parent\":{}}],[\"find_repeated\",{\"_index\":387,\"name\":{\"434\":{},\"450\":{}},\"parent\":{}}],[\"flow\",{\"_index\":118,\"name\":{\"117\":{},\"230\":{}},\"parent\":{}}],[\"force_transition\",{\"_index\":178,\"name\":{\"177\":{}},\"parent\":{}}],[\"forced\",{\"_index\":319,\"name\":{\"354\":{}},\"parent\":{}}],[\"forced_only\",{\"_index\":213,\"name\":{\"213\":{}},\"parent\":{}}],[\"forcedtransitionhook\",{\"_index\":460,\"name\":{\"535\":{}},\"parent\":{}}],[\"from\",{\"_index\":190,\"name\":{\"190\":{},\"206\":{},\"270\":{},\"300\":{},\"508\":{},\"514\":{},\"551\":{},\"556\":{},\"562\":{},\"599\":{}},\"parent\":{}}],[\"fsl_version\",{\"_index\":109,\"name\":{\"108\":{},\"259\":{}},\"parent\":{}}],[\"fsldirection\",{\"_index\":348,\"name\":{\"389\":{}},\"parent\":{}}],[\"fsltheme\",{\"_index\":349,\"name\":{\"390\":{}},\"parent\":{}}],[\"get_transition_by_state_names\",{\"_index\":119,\"name\":{\"118\":{}},\"parent\":{}}],[\"github\",{\"_index\":548,\"name\":{\"636\":{}},\"parent\":{}}],[\"globalactionhook\",{\"_index\":448,\"name\":{\"518\":{}},\"parent\":{}}],[\"go\",{\"_index\":177,\"name\":{\"176\":{}},\"parent\":{}}],[\"graph\",{\"_index\":316,\"name\":{\"351\":{}},\"parent\":{}}],[\"graph_layout\",{\"_index\":96,\"name\":{\"95\":{},\"226\":{}},\"parent\":{}}],[\"gviz_shapes\",{\"_index\":195,\"name\":{\"195\":{},\"421\":{}},\"parent\":{}}],[\"handler\",{\"_index\":444,\"name\":{\"510\":{},\"517\":{},\"522\":{},\"526\":{},\"530\":{},\"534\":{},\"538\":{},\"542\":{},\"547\":{},\"552\":{},\"558\":{},\"565\":{},\"570\":{},\"574\":{},\"578\":{},\"582\":{},\"586\":{},\"590\":{},\"595\":{},\"600\":{}},\"parent\":{}}],[\"has_completes\",{\"_index\":139,\"name\":{\"138\":{}},\"parent\":{}}],[\"has_hooks\",{\"_index\":173,\"name\":{\"172\":{}},\"parent\":{}}],[\"has_state\",{\"_index\":113,\"name\":{\"112\":{}},\"parent\":{}}],[\"has_terminals\",{\"_index\":136,\"name\":{\"135\":{}},\"parent\":{}}],[\"has_unenterables\",{\"_index\":133,\"name\":{\"132\":{}},\"parent\":{}}],[\"histograph\",{\"_index\":389,\"name\":{\"436\":{},\"452\":{}},\"parent\":{}}],[\"history\",{\"_index\":163,\"name\":{\"162\":{},\"235\":{},\"366\":{}},\"parent\":{}}],[\"history_capacity\",{\"_index\":330,\"name\":{\"367\":{}},\"parent\":{}}],[\"history_inclusive\",{\"_index\":164,\"name\":{\"163\":{}},\"parent\":{}}],[\"history_length\",{\"_index\":165,\"name\":{\"164\":{}},\"parent\":{}}],[\"hook\",{\"_index\":141,\"name\":{\"140\":{}},\"parent\":{}}],[\"hook_action\",{\"_index\":142,\"name\":{\"141\":{}},\"parent\":{}}],[\"hook_any_action\",{\"_index\":144,\"name\":{\"143\":{}},\"parent\":{}}],[\"hook_any_transition\",{\"_index\":148,\"name\":{\"147\":{}},\"parent\":{}}],[\"hook_entry\",{\"_index\":149,\"name\":{\"148\":{}},\"parent\":{}}],[\"hook_exit\",{\"_index\":150,\"name\":{\"149\":{}},\"parent\":{}}],[\"hook_forced_transition\",{\"_index\":147,\"name\":{\"146\":{}},\"parent\":{}}],[\"hook_global_action\",{\"_index\":143,\"name\":{\"142\":{}},\"parent\":{}}],[\"hook_main_transition\",{\"_index\":146,\"name\":{\"145\":{}},\"parent\":{}}],[\"hook_name\",{\"_index\":395,\"name\":{\"442\":{}},\"parent\":{}}],[\"hook_standard_transition\",{\"_index\":145,\"name\":{\"144\":{}},\"parent\":{}}],[\"hookcomplexresult\",{\"_index\":357,\"name\":{\"398\":{}},\"parent\":{}}],[\"hookcontext\",{\"_index\":353,\"name\":{\"394\":{}},\"parent\":{}}],[\"hookdescription\",{\"_index\":350,\"name\":{\"391\":{}},\"parent\":{}}],[\"hookdescriptionwithaction\",{\"_index\":445,\"name\":{\"511\":{}},\"parent\":{}}],[\"hooked\",{\"_index\":307,\"name\":{\"342\":{}},\"parent\":{}}],[\"hooked_state_style\",{\"_index\":168,\"name\":{\"167\":{}},\"parent\":{}}],[\"hookhandler\",{\"_index\":351,\"name\":{\"392\":{}},\"parent\":{}}],[\"hookresult\",{\"_index\":356,\"name\":{\"397\":{}},\"parent\":{}}],[\"instance_name\",{\"_index\":184,\"name\":{\"183\":{},\"261\":{}},\"parent\":{}}],[\"internal\",{\"_index\":400,\"name\":{\"456\":{},\"457\":{},\"611\":{}},\"parent\":{}}],[\"internal_state_impl_version\",{\"_index\":338,\"name\":{\"378\":{}},\"parent\":{}}],[\"is_complete\",{\"_index\":137,\"name\":{\"136\":{}},\"parent\":{}}],[\"is_end_state\",{\"_index\":92,\"name\":{\"91\":{}},\"parent\":{}}],[\"is_final\",{\"_index\":94,\"name\":{\"93\":{}},\"parent\":{}}],[\"is_hook_complex_result\",{\"_index\":198,\"name\":{\"198\":{}},\"parent\":{}}],[\"is_hook_rejection\",{\"_index\":197,\"name\":{\"197\":{}},\"parent\":{}}],[\"is_start_state\",{\"_index\":91,\"name\":{\"90\":{}},\"parent\":{}}],[\"is_terminal\",{\"_index\":134,\"name\":{\"133\":{}},\"parent\":{}}],[\"is_unenterable\",{\"_index\":132,\"name\":{\"131\":{}},\"parent\":{}}],[\"jssm\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"447\":{},\"448\":{},\"449\":{},\"450\":{},\"451\":{},\"452\":{},\"453\":{},\"454\":{},\"455\":{},\"456\":{}}}],[\"jssm.machine\",{\"_index\":4,\"name\":{},\"parent\":{\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{},\"171\":{},\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{}}}],[\"jssm_constants\",{\"_index\":361,\"name\":{\"403\":{}},\"parent\":{\"404\":{},\"405\":{},\"406\":{},\"407\":{},\"408\":{},\"409\":{},\"410\":{},\"411\":{},\"412\":{},\"413\":{},\"414\":{},\"415\":{},\"416\":{},\"417\":{},\"418\":{},\"419\":{},\"420\":{},\"421\":{},\"422\":{},\"423\":{}}}],[\"jssm_error\",{\"_index\":379,\"name\":{\"424\":{}},\"parent\":{\"425\":{},\"611\":{}}}],[\"jssm_error.jssmerror\",{\"_index\":381,\"name\":{},\"parent\":{\"426\":{},\"427\":{},\"428\":{},\"429\":{},\"430\":{}}}],[\"jssm_types\",{\"_index\":201,\"name\":{\"201\":{}},\"parent\":{\"202\":{},\"203\":{},\"204\":{},\"215\":{},\"216\":{},\"220\":{},\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"268\":{},\"274\":{},\"288\":{},\"289\":{},\"298\":{},\"308\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{},\"331\":{},\"336\":{},\"337\":{},\"338\":{},\"339\":{},\"357\":{},\"358\":{},\"359\":{},\"360\":{},\"369\":{},\"374\":{},\"376\":{},\"386\":{},\"389\":{},\"390\":{},\"391\":{},\"392\":{},\"394\":{},\"397\":{},\"398\":{},\"457\":{}}}],[\"jssm_types..anyactionhook\",{\"_index\":452,\"name\":{},\"parent\":{\"524\":{}}}],[\"jssm_types..anyactionhook.__type\",{\"_index\":453,\"name\":{},\"parent\":{\"525\":{},\"526\":{}}}],[\"jssm_types..anytransitionhook\",{\"_index\":464,\"name\":{},\"parent\":{\"540\":{}}}],[\"jssm_types..anytransitionhook.__type\",{\"_index\":465,\"name\":{},\"parent\":{\"541\":{},\"542\":{}}}],[\"jssm_types..basichookdescription\",{\"_index\":442,\"name\":{},\"parent\":{\"506\":{}}}],[\"jssm_types..basichookdescription.__type\",{\"_index\":443,\"name\":{},\"parent\":{\"507\":{},\"508\":{},\"509\":{},\"510\":{}}}],[\"jssm_types..entryhook\",{\"_index\":467,\"name\":{},\"parent\":{\"544\":{}}}],[\"jssm_types..entryhook.__type\",{\"_index\":468,\"name\":{},\"parent\":{\"545\":{},\"546\":{},\"547\":{}}}],[\"jssm_types..exithook\",{\"_index\":470,\"name\":{},\"parent\":{\"549\":{}}}],[\"jssm_types..exithook.__type\",{\"_index\":471,\"name\":{},\"parent\":{\"550\":{},\"551\":{},\"552\":{}}}],[\"jssm_types..forcedtransitionhook\",{\"_index\":461,\"name\":{},\"parent\":{\"536\":{}}}],[\"jssm_types..forcedtransitionhook.__type\",{\"_index\":462,\"name\":{},\"parent\":{\"537\":{},\"538\":{}}}],[\"jssm_types..globalactionhook\",{\"_index\":449,\"name\":{},\"parent\":{\"519\":{}}}],[\"jssm_types..globalactionhook.__type\",{\"_index\":450,\"name\":{},\"parent\":{\"520\":{},\"521\":{},\"522\":{}}}],[\"jssm_types..hookdescriptionwithaction\",{\"_index\":446,\"name\":{},\"parent\":{\"512\":{}}}],[\"jssm_types..hookdescriptionwithaction.__type\",{\"_index\":447,\"name\":{},\"parent\":{\"513\":{},\"514\":{},\"515\":{},\"516\":{},\"517\":{}}}],[\"jssm_types..jssmfailure\",{\"_index\":411,\"name\":{},\"parent\":{\"467\":{}}}],[\"jssm_types..jssmfailure.__type\",{\"_index\":412,\"name\":{},\"parent\":{\"468\":{},\"469\":{}}}],[\"jssm_types..jssmincomplete\",{\"_index\":415,\"name\":{},\"parent\":{\"471\":{}}}],[\"jssm_types..jssmincomplete.__type\",{\"_index\":416,\"name\":{},\"parent\":{\"472\":{}}}],[\"jssm_types..jssmstatepermitter\",{\"_index\":509,\"name\":{},\"parent\":{\"608\":{}}}],[\"jssm_types..jssmstatestylebackgroundcolor\",{\"_index\":433,\"name\":{},\"parent\":{\"494\":{}}}],[\"jssm_types..jssmstatestylebackgroundcolor.__type\",{\"_index\":434,\"name\":{},\"parent\":{\"495\":{},\"496\":{}}}],[\"jssm_types..jssmstatestylebordercolor\",{\"_index\":439,\"name\":{},\"parent\":{\"502\":{}}}],[\"jssm_types..jssmstatestylebordercolor.__type\",{\"_index\":440,\"name\":{},\"parent\":{\"503\":{},\"504\":{}}}],[\"jssm_types..jssmstatestylecolor\",{\"_index\":421,\"name\":{},\"parent\":{\"478\":{}}}],[\"jssm_types..jssmstatestylecolor.__type\",{\"_index\":422,\"name\":{},\"parent\":{\"479\":{},\"480\":{}}}],[\"jssm_types..jssmstatestylecorners\",{\"_index\":427,\"name\":{},\"parent\":{\"486\":{}}}],[\"jssm_types..jssmstatestylecorners.__type\",{\"_index\":428,\"name\":{},\"parent\":{\"487\":{},\"488\":{}}}],[\"jssm_types..jssmstatestylelinestyle\",{\"_index\":430,\"name\":{},\"parent\":{\"490\":{}}}],[\"jssm_types..jssmstatestylelinestyle.__type\",{\"_index\":431,\"name\":{},\"parent\":{\"491\":{},\"492\":{}}}],[\"jssm_types..jssmstatestyleshape\",{\"_index\":418,\"name\":{},\"parent\":{\"474\":{}}}],[\"jssm_types..jssmstatestyleshape.__type\",{\"_index\":419,\"name\":{},\"parent\":{\"475\":{},\"476\":{}}}],[\"jssm_types..jssmstatestylestatelabel\",{\"_index\":436,\"name\":{},\"parent\":{\"498\":{}}}],[\"jssm_types..jssmstatestylestatelabel.__type\",{\"_index\":437,\"name\":{},\"parent\":{\"499\":{},\"500\":{}}}],[\"jssm_types..jssmstatestyletextcolor\",{\"_index\":424,\"name\":{},\"parent\":{\"482\":{}}}],[\"jssm_types..jssmstatestyletextcolor.__type\",{\"_index\":425,\"name\":{},\"parent\":{\"483\":{},\"484\":{}}}],[\"jssm_types..jssmsuccess\",{\"_index\":407,\"name\":{},\"parent\":{\"464\":{}}}],[\"jssm_types..jssmsuccess.__type\",{\"_index\":409,\"name\":{},\"parent\":{\"465\":{}}}],[\"jssm_types..jssmtransitioncycle\",{\"_index\":404,\"name\":{},\"parent\":{\"460\":{}}}],[\"jssm_types..jssmtransitioncycle.__type\",{\"_index\":405,\"name\":{},\"parent\":{\"461\":{},\"462\":{}}}],[\"jssm_types..jssmtransitionpermitter\",{\"_index\":507,\"name\":{},\"parent\":{\"606\":{}}}],[\"jssm_types..maintransitionhook\",{\"_index\":458,\"name\":{},\"parent\":{\"532\":{}}}],[\"jssm_types..maintransitionhook.__type\",{\"_index\":459,\"name\":{},\"parent\":{\"533\":{},\"534\":{}}}],[\"jssm_types..postanyactionhook\",{\"_index\":482,\"name\":{},\"parent\":{\"572\":{}}}],[\"jssm_types..postanyactionhook.__type\",{\"_index\":483,\"name\":{},\"parent\":{\"573\":{},\"574\":{}}}],[\"jssm_types..postanytransitionhook\",{\"_index\":494,\"name\":{},\"parent\":{\"588\":{}}}],[\"jssm_types..postanytransitionhook.__type\",{\"_index\":495,\"name\":{},\"parent\":{\"589\":{},\"590\":{}}}],[\"jssm_types..postbasichookdescription\",{\"_index\":473,\"name\":{},\"parent\":{\"554\":{}}}],[\"jssm_types..postbasichookdescription.__type\",{\"_index\":474,\"name\":{},\"parent\":{\"555\":{},\"556\":{},\"557\":{},\"558\":{}}}],[\"jssm_types..postentryhook\",{\"_index\":497,\"name\":{},\"parent\":{\"592\":{}}}],[\"jssm_types..postentryhook.__type\",{\"_index\":498,\"name\":{},\"parent\":{\"593\":{},\"594\":{},\"595\":{}}}],[\"jssm_types..postexithook\",{\"_index\":500,\"name\":{},\"parent\":{\"597\":{}}}],[\"jssm_types..postexithook.__type\",{\"_index\":501,\"name\":{},\"parent\":{\"598\":{},\"599\":{},\"600\":{}}}],[\"jssm_types..postforcedtransitionhook\",{\"_index\":491,\"name\":{},\"parent\":{\"584\":{}}}],[\"jssm_types..postforcedtransitionhook.__type\",{\"_index\":492,\"name\":{},\"parent\":{\"585\":{},\"586\":{}}}],[\"jssm_types..postglobalactionhook\",{\"_index\":479,\"name\":{},\"parent\":{\"567\":{}}}],[\"jssm_types..postglobalactionhook.__type\",{\"_index\":480,\"name\":{},\"parent\":{\"568\":{},\"569\":{},\"570\":{}}}],[\"jssm_types..posthookdescriptionwithaction\",{\"_index\":476,\"name\":{},\"parent\":{\"560\":{}}}],[\"jssm_types..posthookdescriptionwithaction.__type\",{\"_index\":477,\"name\":{},\"parent\":{\"561\":{},\"562\":{},\"563\":{},\"564\":{},\"565\":{}}}],[\"jssm_types..posthookhandler\",{\"_index\":511,\"name\":{},\"parent\":{\"610\":{}}}],[\"jssm_types..postmaintransitionhook\",{\"_index\":488,\"name\":{},\"parent\":{\"580\":{}}}],[\"jssm_types..postmaintransitionhook.__type\",{\"_index\":489,\"name\":{},\"parent\":{\"581\":{},\"582\":{}}}],[\"jssm_types..poststandardtransitionhook\",{\"_index\":485,\"name\":{},\"parent\":{\"576\":{}}}],[\"jssm_types..poststandardtransitionhook.__type\",{\"_index\":486,\"name\":{},\"parent\":{\"577\":{},\"578\":{}}}],[\"jssm_types..standardtransitionhook\",{\"_index\":455,\"name\":{},\"parent\":{\"528\":{}}}],[\"jssm_types..standardtransitionhook.__type\",{\"_index\":456,\"name\":{},\"parent\":{\"529\":{},\"530\":{}}}],[\"jssm_types.hookcomplexresult\",{\"_index\":358,\"name\":{},\"parent\":{\"399\":{}}}],[\"jssm_types.hookcomplexresult.__type\",{\"_index\":360,\"name\":{},\"parent\":{\"400\":{},\"401\":{},\"402\":{}}}],[\"jssm_types.hookcontext\",{\"_index\":354,\"name\":{},\"parent\":{\"395\":{}}}],[\"jssm_types.hookcontext.__type\",{\"_index\":355,\"name\":{},\"parent\":{\"396\":{}}}],[\"jssm_types.hookhandler\",{\"_index\":352,\"name\":{},\"parent\":{\"393\":{}}}],[\"jssm_types.jssmbasetheme\",{\"_index\":305,\"name\":{},\"parent\":{\"340\":{}}}],[\"jssm_types.jssmbasetheme.__type\",{\"_index\":306,\"name\":{},\"parent\":{\"341\":{},\"342\":{},\"343\":{},\"344\":{},\"345\":{},\"346\":{},\"347\":{},\"348\":{},\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{}}}],[\"jssm_types.jssmcompilerule\",{\"_index\":277,\"name\":{},\"parent\":{\"309\":{}}}],[\"jssm_types.jssmcompilerule.__type\",{\"_index\":279,\"name\":{},\"parent\":{\"310\":{},\"311\":{}}}],[\"jssm_types.jssmcompilese\",{\"_index\":262,\"name\":{},\"parent\":{\"290\":{}}}],[\"jssm_types.jssmcompilese.__type\",{\"_index\":263,\"name\":{},\"parent\":{\"291\":{},\"292\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{},\"297\":{}}}],[\"jssm_types.jssmcompilesestart\",{\"_index\":270,\"name\":{},\"parent\":{\"299\":{}}}],[\"jssm_types.jssmcompilesestart.__type\",{\"_index\":271,\"name\":{},\"parent\":{\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{}}}],[\"jssm_types.jssmerrorextendedinfo\",{\"_index\":345,\"name\":{},\"parent\":{\"387\":{}}}],[\"jssm_types.jssmerrorextendedinfo.__type\",{\"_index\":347,\"name\":{},\"parent\":{\"388\":{}}}],[\"jssm_types.jssmgenericconfig\",{\"_index\":226,\"name\":{},\"parent\":{\"225\":{}}}],[\"jssm_types.jssmgenericconfig.__type\",{\"_index\":227,\"name\":{},\"parent\":{\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{},\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{},\"245\":{},\"246\":{},\"247\":{},\"248\":{},\"249\":{},\"250\":{},\"251\":{},\"252\":{},\"253\":{},\"254\":{},\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{}}}],[\"jssm_types.jssmgenericmachine\",{\"_index\":254,\"name\":{},\"parent\":{\"275\":{}}}],[\"jssm_types.jssmgenericmachine.__type\",{\"_index\":255,\"name\":{},\"parent\":{\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{}}}],[\"jssm_types.jssmgenericstate\",{\"_index\":251,\"name\":{},\"parent\":{\"269\":{}}}],[\"jssm_types.jssmgenericstate.__type\",{\"_index\":252,\"name\":{},\"parent\":{\"270\":{},\"271\":{},\"272\":{},\"273\":{}}}],[\"jssm_types.jssmmachineinternalstate\",{\"_index\":337,\"name\":{},\"parent\":{\"377\":{}}}],[\"jssm_types.jssmmachineinternalstate.__type\",{\"_index\":339,\"name\":{},\"parent\":{\"378\":{},\"379\":{},\"380\":{},\"381\":{},\"382\":{},\"383\":{},\"384\":{},\"385\":{}}}],[\"jssm_types.jssmparsefunctiontype\",{\"_index\":335,\"name\":{},\"parent\":{\"375\":{}}}],[\"jssm_types.jssmpropertydefinition\",{\"_index\":332,\"name\":{},\"parent\":{\"370\":{}}}],[\"jssm_types.jssmpropertydefinition.__type\",{\"_index\":333,\"name\":{},\"parent\":{\"371\":{},\"372\":{},\"373\":{}}}],[\"jssm_types.jssmserialization\",{\"_index\":325,\"name\":{},\"parent\":{\"361\":{}}}],[\"jssm_types.jssmserialization.__type\",{\"_index\":327,\"name\":{},\"parent\":{\"362\":{},\"363\":{},\"364\":{},\"365\":{},\"366\":{},\"367\":{},\"368\":{}}}],[\"jssm_types.jssmstatedeclaration\",{\"_index\":285,\"name\":{},\"parent\":{\"316\":{}}}],[\"jssm_types.jssmstatedeclaration.__type\",{\"_index\":287,\"name\":{},\"parent\":{\"317\":{},\"318\":{},\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{},\"324\":{},\"325\":{},\"326\":{},\"327\":{},\"328\":{}}}],[\"jssm_types.jssmstatedeclaration.__type.__type\",{\"_index\":297,\"name\":{},\"parent\":{\"329\":{},\"330\":{}}}],[\"jssm_types.jssmstatedeclarationrule\",{\"_index\":299,\"name\":{},\"parent\":{\"332\":{}}}],[\"jssm_types.jssmstatedeclarationrule.__type\",{\"_index\":300,\"name\":{},\"parent\":{\"333\":{},\"334\":{},\"335\":{}}}],[\"jssm_types.jssmtransition\",{\"_index\":206,\"name\":{},\"parent\":{\"205\":{}}}],[\"jssm_types.jssmtransition.__type\",{\"_index\":207,\"name\":{},\"parent\":{\"206\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{}}}],[\"jssm_types.jssmtransitionlist\",{\"_index\":217,\"name\":{},\"parent\":{\"217\":{}}}],[\"jssm_types.jssmtransitionlist.__type\",{\"_index\":219,\"name\":{},\"parent\":{\"218\":{},\"219\":{}}}],[\"jssm_util\",{\"_index\":384,\"name\":{\"431\":{}},\"parent\":{\"432\":{},\"433\":{},\"434\":{},\"435\":{},\"436\":{},\"437\":{},\"438\":{},\"439\":{},\"440\":{},\"441\":{},\"442\":{},\"443\":{},\"444\":{}}}],[\"jssm_version\",{\"_index\":326,\"name\":{\"362\":{}},\"parent\":{}}],[\"jssmarrow\",{\"_index\":222,\"name\":{\"221\":{}},\"parent\":{}}],[\"jssmarrowdirection\",{\"_index\":224,\"name\":{\"223\":{}},\"parent\":{}}],[\"jssmarrowkind\",{\"_index\":223,\"name\":{\"222\":{}},\"parent\":{}}],[\"jssmbasetheme\",{\"_index\":304,\"name\":{\"339\":{}},\"parent\":{}}],[\"jssmcolor\",{\"_index\":202,\"name\":{\"202\":{}},\"parent\":{}}],[\"jssmcompilerule\",{\"_index\":276,\"name\":{\"308\":{}},\"parent\":{}}],[\"jssmcompilese\",{\"_index\":261,\"name\":{\"289\":{}},\"parent\":{}}],[\"jssmcompilesestart\",{\"_index\":269,\"name\":{\"298\":{}},\"parent\":{}}],[\"jssmcorner\",{\"_index\":504,\"name\":{\"603\":{}},\"parent\":{}}],[\"jssmerror\",{\"_index\":380,\"name\":{\"425\":{}},\"parent\":{}}],[\"jssmerrorextendedinfo\",{\"_index\":344,\"name\":{\"386\":{}},\"parent\":{}}],[\"jssmfailure\",{\"_index\":410,\"name\":{\"466\":{}},\"parent\":{}}],[\"jssmgenericconfig\",{\"_index\":225,\"name\":{\"224\":{}},\"parent\":{}}],[\"jssmgenericmachine\",{\"_index\":253,\"name\":{\"274\":{}},\"parent\":{}}],[\"jssmgenericstate\",{\"_index\":250,\"name\":{\"268\":{}},\"parent\":{}}],[\"jssmhistory\",{\"_index\":323,\"name\":{\"359\":{}},\"parent\":{}}],[\"jssmincomplete\",{\"_index\":414,\"name\":{\"470\":{}},\"parent\":{}}],[\"jssmlayout\",{\"_index\":322,\"name\":{\"358\":{}},\"parent\":{}}],[\"jssmlinestyle\",{\"_index\":505,\"name\":{\"604\":{}},\"parent\":{}}],[\"jssmmachineinternalstate\",{\"_index\":336,\"name\":{\"376\":{}},\"parent\":{}}],[\"jssmparsefunctiontype\",{\"_index\":334,\"name\":{\"374\":{}},\"parent\":{}}],[\"jssmparsetree\",{\"_index\":260,\"name\":{\"288\":{}},\"parent\":{}}],[\"jssmpermitted\",{\"_index\":281,\"name\":{\"312\":{}},\"parent\":{}}],[\"jssmpermittedopt\",{\"_index\":282,\"name\":{\"313\":{}},\"parent\":{}}],[\"jssmpropertydefinition\",{\"_index\":331,\"name\":{\"369\":{}},\"parent\":{}}],[\"jssmresult\",{\"_index\":283,\"name\":{\"314\":{}},\"parent\":{}}],[\"jssmserialization\",{\"_index\":324,\"name\":{\"360\":{}},\"parent\":{}}],[\"jssmshape\",{\"_index\":203,\"name\":{\"203\":{}},\"parent\":{}}],[\"jssmstateconfig\",{\"_index\":301,\"name\":{\"336\":{}},\"parent\":{}}],[\"jssmstatedeclaration\",{\"_index\":284,\"name\":{\"315\":{}},\"parent\":{}}],[\"jssmstatedeclarationrule\",{\"_index\":298,\"name\":{\"331\":{}},\"parent\":{}}],[\"jssmstatepermitter\",{\"_index\":508,\"name\":{\"607\":{}},\"parent\":{}}],[\"jssmstatepermittermaybearray\",{\"_index\":503,\"name\":{\"602\":{}},\"parent\":{}}],[\"jssmstatestylebackgroundcolor\",{\"_index\":432,\"name\":{\"493\":{}},\"parent\":{}}],[\"jssmstatestylebordercolor\",{\"_index\":438,\"name\":{\"501\":{}},\"parent\":{}}],[\"jssmstatestylecolor\",{\"_index\":420,\"name\":{\"477\":{}},\"parent\":{}}],[\"jssmstatestylecorners\",{\"_index\":426,\"name\":{\"485\":{}},\"parent\":{}}],[\"jssmstatestylekey\",{\"_index\":302,\"name\":{\"337\":{}},\"parent\":{}}],[\"jssmstatestylekeylist\",{\"_index\":303,\"name\":{\"338\":{}},\"parent\":{}}],[\"jssmstatestylelinestyle\",{\"_index\":429,\"name\":{\"489\":{}},\"parent\":{}}],[\"jssmstatestyleshape\",{\"_index\":417,\"name\":{\"473\":{}},\"parent\":{}}],[\"jssmstatestylestatelabel\",{\"_index\":435,\"name\":{\"497\":{}},\"parent\":{}}],[\"jssmstatestyletextcolor\",{\"_index\":423,\"name\":{\"481\":{}},\"parent\":{}}],[\"jssmsuccess\",{\"_index\":406,\"name\":{\"463\":{}},\"parent\":{}}],[\"jssmtheme\",{\"_index\":321,\"name\":{\"357\":{}},\"parent\":{}}],[\"jssmtransition\",{\"_index\":204,\"name\":{\"204\":{}},\"parent\":{}}],[\"jssmtransitioncycle\",{\"_index\":403,\"name\":{\"459\":{}},\"parent\":{}}],[\"jssmtransitionlist\",{\"_index\":216,\"name\":{\"216\":{}},\"parent\":{}}],[\"jssmtransitionpermitter\",{\"_index\":506,\"name\":{\"605\":{}},\"parent\":{}}],[\"jssmtransitionpermittermaybearray\",{\"_index\":502,\"name\":{\"601\":{}},\"parent\":{}}],[\"jssmtransitionrule\",{\"_index\":221,\"name\":{\"220\":{}},\"parent\":{}}],[\"jssmtransitions\",{\"_index\":215,\"name\":{\"215\":{}},\"parent\":{}}],[\"keep_history\",{\"_index\":259,\"name\":{\"287\":{}},\"parent\":{}}],[\"key\",{\"_index\":272,\"name\":{\"302\":{},\"333\":{},\"461\":{},\"475\":{},\"479\":{},\"483\":{},\"487\":{},\"491\":{},\"495\":{},\"499\":{},\"503\":{}},\"parent\":{}}],[\"kind\",{\"_index\":212,\"name\":{\"212\":{},\"293\":{},\"507\":{},\"513\":{},\"520\":{},\"525\":{},\"529\":{},\"533\":{},\"537\":{},\"541\":{},\"545\":{},\"550\":{},\"555\":{},\"561\":{},\"568\":{},\"573\":{},\"577\":{},\"581\":{},\"585\":{},\"589\":{},\"593\":{},\"598\":{}},\"parent\":{}}],[\"known_prop\",{\"_index\":89,\"name\":{\"88\":{}},\"parent\":{}}],[\"known_props\",{\"_index\":90,\"name\":{\"89\":{}},\"parent\":{}}],[\"l_action\",{\"_index\":265,\"name\":{\"294\":{}},\"parent\":{}}],[\"l_probability\",{\"_index\":267,\"name\":{\"296\":{}},\"parent\":{}}],[\"label_for\",{\"_index\":84,\"name\":{\"83\":{}},\"parent\":{}}],[\"lambda\",{\"_index\":530,\"name\":{\"624\":{}},\"parent\":{}}],[\"language\",{\"_index\":518,\"name\":{\"614\":{}},\"parent\":{}}],[\"large\",{\"_index\":539,\"name\":{\"630\":{}},\"parent\":{}}],[\"legal\",{\"_index\":317,\"name\":{\"352\":{}},\"parent\":{}}],[\"let's\",{\"_index\":537,\"name\":{\"630\":{}},\"parent\":{}}],[\"linestyle\",{\"_index\":291,\"name\":{\"321\":{}},\"parent\":{}}],[\"list_actions\",{\"_index\":116,\"name\":{\"115\":{}},\"parent\":{}}],[\"list_edges\",{\"_index\":114,\"name\":{\"113\":{}},\"parent\":{}}],[\"list_entrances\",{\"_index\":122,\"name\":{\"121\":{}},\"parent\":{}}],[\"list_exit_actions\",{\"_index\":130,\"name\":{\"129\":{}},\"parent\":{}}],[\"list_exits\",{\"_index\":123,\"name\":{\"122\":{}},\"parent\":{}}],[\"list_named_transitions\",{\"_index\":115,\"name\":{\"114\":{}},\"parent\":{}}],[\"list_states_having_action\",{\"_index\":129,\"name\":{\"128\":{}},\"parent\":{}}],[\"list_transitions\",{\"_index\":121,\"name\":{\"120\":{}},\"parent\":{}}],[\"live\",{\"_index\":546,\"name\":{\"635\":{}},\"parent\":{}}],[\"ln10\",{\"_index\":370,\"name\":{\"412\":{}},\"parent\":{}}],[\"ln2\",{\"_index\":369,\"name\":{\"411\":{}},\"parent\":{}}],[\"loc\",{\"_index\":544,\"name\":{\"634\":{}},\"parent\":{}}],[\"local\",{\"_index\":535,\"name\":{\"629\":{}},\"parent\":{}}],[\"log10e\",{\"_index\":372,\"name\":{\"414\":{}},\"parent\":{}}],[\"log2e\",{\"_index\":371,\"name\":{\"413\":{}},\"parent\":{}}],[\"lookup_transition_for\",{\"_index\":120,\"name\":{\"119\":{}},\"parent\":{}}],[\"machine\",{\"_index\":2,\"name\":{\"2\":{},\"630\":{}},\"parent\":{}}],[\"machine_author\",{\"_index\":98,\"name\":{\"97\":{},\"251\":{}},\"parent\":{}}],[\"machine_comment\",{\"_index\":99,\"name\":{\"98\":{},\"252\":{}},\"parent\":{}}],[\"machine_contributor\",{\"_index\":100,\"name\":{\"99\":{},\"253\":{}},\"parent\":{}}],[\"machine_definition\",{\"_index\":101,\"name\":{\"100\":{},\"254\":{}},\"parent\":{}}],[\"machine_language\",{\"_index\":102,\"name\":{\"101\":{},\"255\":{}},\"parent\":{}}],[\"machine_license\",{\"_index\":103,\"name\":{\"102\":{},\"256\":{}},\"parent\":{}}],[\"machine_name\",{\"_index\":104,\"name\":{\"103\":{},\"257\":{}},\"parent\":{}}],[\"machine_state\",{\"_index\":110,\"name\":{\"109\":{}},\"parent\":{}}],[\"machine_version\",{\"_index\":105,\"name\":{\"104\":{},\"258\":{}},\"parent\":{}}],[\"machines\",{\"_index\":515,\"name\":{\"612\":{},\"616\":{}},\"parent\":{}}],[\"main\",{\"_index\":318,\"name\":{\"353\":{}},\"parent\":{}}],[\"main_path\",{\"_index\":214,\"name\":{\"214\":{}},\"parent\":{}}],[\"maintransitionhook\",{\"_index\":457,\"name\":{\"531\":{}},\"parent\":{}}],[\"make\",{\"_index\":187,\"name\":{\"186\":{},\"630\":{}},\"parent\":{}}],[\"make_mulberry_rand\",{\"_index\":397,\"name\":{\"444\":{}},\"parent\":{}}],[\"max_exits\",{\"_index\":232,\"name\":{\"237\":{}},\"parent\":{}}],[\"max_transitions\",{\"_index\":257,\"name\":{\"283\":{}},\"parent\":{}}],[\"maxposnum\",{\"_index\":375,\"name\":{\"417\":{}},\"parent\":{}}],[\"maxsafeint\",{\"_index\":373,\"name\":{\"415\":{}},\"parent\":{}}],[\"message\",{\"_index\":382,\"name\":{\"428\":{}},\"parent\":{}}],[\"min_exits\",{\"_index\":231,\"name\":{\"236\":{}},\"parent\":{}}],[\"min_transitions\",{\"_index\":256,\"name\":{\"282\":{}},\"parent\":{}}],[\"minposnum\",{\"_index\":376,\"name\":{\"418\":{}},\"parent\":{}}],[\"minsafeint\",{\"_index\":374,\"name\":{\"416\":{}},\"parent\":{}}],[\"name\",{\"_index\":209,\"name\":{\"208\":{},\"231\":{},\"271\":{},\"276\":{},\"304\":{},\"329\":{},\"335\":{},\"371\":{}},\"parent\":{}}],[\"name_bind_prop_and_state\",{\"_index\":394,\"name\":{\"441\":{}},\"parent\":{}}],[\"named_colors\",{\"_index\":196,\"name\":{\"196\":{},\"423\":{}},\"parent\":{}}],[\"named_hook_name\",{\"_index\":396,\"name\":{\"443\":{}},\"parent\":{}}],[\"named_transitions\",{\"_index\":340,\"name\":{\"381\":{}},\"parent\":{}}],[\"neginfinity\",{\"_index\":362,\"name\":{\"404\":{}},\"parent\":{}}],[\"node\",{\"_index\":525,\"name\":{\"620\":{},\"621\":{}},\"parent\":{}}],[\"nodes\",{\"_index\":230,\"name\":{\"233\":{},\"279\":{}},\"parent\":{}}],[\"page\",{\"_index\":512,\"name\":{\"612\":{},\"613\":{},\"614\":{},\"615\":{},\"616\":{},\"617\":{},\"618\":{},\"619\":{},\"620\":{},\"621\":{},\"622\":{},\"623\":{},\"624\":{},\"625\":{},\"626\":{},\"627\":{},\"628\":{},\"629\":{},\"630\":{},\"631\":{},\"632\":{},\"633\":{},\"634\":{},\"635\":{},\"636\":{},\"637\":{},\"638\":{},\"639\":{}},\"parent\":{}}],[\"parse\",{\"_index\":188,\"name\":{\"187\":{}},\"parent\":{}}],[\"pass\",{\"_index\":359,\"name\":{\"400\":{}},\"parent\":{}}],[\"phi\",{\"_index\":377,\"name\":{\"419\":{}},\"parent\":{}}],[\"pi\",{\"_index\":365,\"name\":{\"407\":{}},\"parent\":{}}],[\"posinfinity\",{\"_index\":363,\"name\":{\"405\":{}},\"parent\":{}}],[\"post_hook\",{\"_index\":151,\"name\":{\"150\":{}},\"parent\":{}}],[\"post_hook_action\",{\"_index\":152,\"name\":{\"151\":{}},\"parent\":{}}],[\"post_hook_any_action\",{\"_index\":154,\"name\":{\"153\":{}},\"parent\":{}}],[\"post_hook_any_transition\",{\"_index\":158,\"name\":{\"157\":{}},\"parent\":{}}],[\"post_hook_entry\",{\"_index\":159,\"name\":{\"158\":{}},\"parent\":{}}],[\"post_hook_exit\",{\"_index\":160,\"name\":{\"159\":{}},\"parent\":{}}],[\"post_hook_forced_transition\",{\"_index\":157,\"name\":{\"156\":{}},\"parent\":{}}],[\"post_hook_global_action\",{\"_index\":153,\"name\":{\"152\":{}},\"parent\":{}}],[\"post_hook_main_transition\",{\"_index\":156,\"name\":{\"155\":{}},\"parent\":{}}],[\"post_hook_standard_transition\",{\"_index\":155,\"name\":{\"154\":{}},\"parent\":{}}],[\"postanyactionhook\",{\"_index\":481,\"name\":{\"571\":{}},\"parent\":{}}],[\"postanytransitionhook\",{\"_index\":493,\"name\":{\"587\":{}},\"parent\":{}}],[\"postbasichookdescription\",{\"_index\":472,\"name\":{\"553\":{}},\"parent\":{}}],[\"postentryhook\",{\"_index\":496,\"name\":{\"591\":{}},\"parent\":{}}],[\"postexithook\",{\"_index\":499,\"name\":{\"596\":{}},\"parent\":{}}],[\"postforcedtransitionhook\",{\"_index\":490,\"name\":{\"583\":{}},\"parent\":{}}],[\"postglobalactionhook\",{\"_index\":478,\"name\":{\"566\":{}},\"parent\":{}}],[\"posthookdescriptionwithaction\",{\"_index\":475,\"name\":{\"559\":{}},\"parent\":{}}],[\"posthookhandler\",{\"_index\":510,\"name\":{\"609\":{}},\"parent\":{}}],[\"postmaintransitionhook\",{\"_index\":487,\"name\":{\"579\":{}},\"parent\":{}}],[\"poststandardtransitionhook\",{\"_index\":484,\"name\":{\"575\":{}},\"parent\":{}}],[\"probabilistic_histo_walk\",{\"_index\":127,\"name\":{\"126\":{}},\"parent\":{}}],[\"probabilistic_transition\",{\"_index\":125,\"name\":{\"124\":{}},\"parent\":{}}],[\"probabilistic_walk\",{\"_index\":126,\"name\":{\"125\":{}},\"parent\":{}}],[\"probability\",{\"_index\":211,\"name\":{\"211\":{}},\"parent\":{}}],[\"probable_action_exits\",{\"_index\":131,\"name\":{\"130\":{}},\"parent\":{}}],[\"probable_exits_for\",{\"_index\":124,\"name\":{\"123\":{}},\"parent\":{}}],[\"prop\",{\"_index\":86,\"name\":{\"85\":{}},\"parent\":{}}],[\"property\",{\"_index\":296,\"name\":{\"327\":{}},\"parent\":{}}],[\"property_definition\",{\"_index\":238,\"name\":{\"246\":{}},\"parent\":{}}],[\"props\",{\"_index\":88,\"name\":{\"87\":{}},\"parent\":{}}],[\"publishing\",{\"_index\":540,\"name\":{\"631\":{}},\"parent\":{}}],[\"quick\",{\"_index\":517,\"name\":{\"613\":{}},\"parent\":{}}],[\"r_action\",{\"_index\":266,\"name\":{\"295\":{}},\"parent\":{}}],[\"r_probability\",{\"_index\":268,\"name\":{\"297\":{}},\"parent\":{}}],[\"raw_state_declarations\",{\"_index\":106,\"name\":{\"105\":{}},\"parent\":{}}],[\"react\",{\"_index\":522,\"name\":{\"617\":{}},\"parent\":{}}],[\"reference\",{\"_index\":519,\"name\":{\"614\":{},\"615\":{}},\"parent\":{}}],[\"requested_state\",{\"_index\":346,\"name\":{\"388\":{},\"430\":{}},\"parent\":{}}],[\"required\",{\"_index\":275,\"name\":{\"307\":{},\"373\":{}},\"parent\":{}}],[\"reverse_actions\",{\"_index\":342,\"name\":{\"384\":{}},\"parent\":{}}],[\"rollup\",{\"_index\":532,\"name\":{\"626\":{}},\"parent\":{}}],[\"root2\",{\"_index\":367,\"name\":{\"409\":{}},\"parent\":{}}],[\"roothalf\",{\"_index\":368,\"name\":{\"410\":{}},\"parent\":{}}],[\"se\",{\"_index\":264,\"name\":{\"292\":{},\"301\":{}},\"parent\":{}}],[\"seq\",{\"_index\":385,\"name\":{\"432\":{},\"448\":{}},\"parent\":{}}],[\"serialize\",{\"_index\":95,\"name\":{\"94\":{}},\"parent\":{}}],[\"set_hook\",{\"_index\":140,\"name\":{\"139\":{}},\"parent\":{}}],[\"shape\",{\"_index\":288,\"name\":{\"318\":{}},\"parent\":{}}],[\"shapes\",{\"_index\":194,\"name\":{\"194\":{},\"422\":{}},\"parent\":{}}],[\"shootout\",{\"_index\":545,\"name\":{\"634\":{}},\"parent\":{}}],[\"simplify_bidi\",{\"_index\":235,\"name\":{\"241\":{}},\"parent\":{}}],[\"sm\",{\"_index\":185,\"name\":{\"184\":{},\"189\":{}},\"parent\":{}}],[\"sql\",{\"_index\":531,\"name\":{\"625\":{}},\"parent\":{}}],[\"standard_state_style\",{\"_index\":167,\"name\":{\"166\":{}},\"parent\":{}}],[\"standardtransitionhook\",{\"_index\":454,\"name\":{\"527\":{}},\"parent\":{}}],[\"start\",{\"_index\":308,\"name\":{\"343\":{},\"613\":{}},\"parent\":{}}],[\"start_state_style\",{\"_index\":169,\"name\":{\"168\":{}},\"parent\":{}}],[\"start_states\",{\"_index\":236,\"name\":{\"243\":{}},\"parent\":{}}],[\"state\",{\"_index\":83,\"name\":{\"82\":{},\"277\":{},\"305\":{},\"326\":{},\"341\":{},\"365\":{},\"379\":{},\"401\":{},\"612\":{}},\"parent\":{}}],[\"state_declaration\",{\"_index\":107,\"name\":{\"106\":{},\"245\":{}},\"parent\":{}}],[\"state_declarations\",{\"_index\":108,\"name\":{\"107\":{}},\"parent\":{}}],[\"state_for\",{\"_index\":112,\"name\":{\"111\":{}},\"parent\":{}}],[\"state_is_complete\",{\"_index\":138,\"name\":{\"137\":{}},\"parent\":{}}],[\"state_is_final\",{\"_index\":93,\"name\":{\"92\":{}},\"parent\":{}}],[\"state_is_terminal\",{\"_index\":135,\"name\":{\"134\":{}},\"parent\":{}}],[\"state_property\",{\"_index\":239,\"name\":{\"247\":{}},\"parent\":{}}],[\"state_style_condense\",{\"_index\":200,\"name\":{\"200\":{}},\"parent\":{}}],[\"statelabel\",{\"_index\":292,\"name\":{\"322\":{}},\"parent\":{}}],[\"states\",{\"_index\":111,\"name\":{\"110\":{},\"380\":{}},\"parent\":{}}],[\"statetype\",{\"_index\":401,\"name\":{\"458\":{}},\"parent\":{}}],[\"strict_prop\",{\"_index\":87,\"name\":{\"86\":{}},\"parent\":{}}],[\"style\",{\"_index\":541,\"name\":{\"632\":{}},\"parent\":{}}],[\"style_for\",{\"_index\":174,\"name\":{\"173\":{}},\"parent\":{}}],[\"success\",{\"_index\":408,\"name\":{\"465\":{},\"468\":{},\"472\":{}},\"parent\":{}}],[\"terminal\",{\"_index\":310,\"name\":{\"345\":{}},\"parent\":{}}],[\"terminal_state_style\",{\"_index\":171,\"name\":{\"170\":{}},\"parent\":{}}],[\"textcolor\",{\"_index\":293,\"name\":{\"323\":{}},\"parent\":{}}],[\"the\",{\"_index\":527,\"name\":{\"623\":{}},\"parent\":{}}],[\"theme\",{\"_index\":117,\"name\":{\"116\":{},\"229\":{},\"632\":{}},\"parent\":{}}],[\"timestamp\",{\"_index\":328,\"name\":{\"363\":{}},\"parent\":{}}],[\"title\",{\"_index\":320,\"name\":{\"356\":{}},\"parent\":{}}],[\"to\",{\"_index\":208,\"name\":{\"207\":{},\"272\":{},\"291\":{},\"509\":{},\"515\":{},\"546\":{},\"557\":{},\"563\":{},\"594\":{}},\"parent\":{}}],[\"transfer_state_properties\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"transition\",{\"_index\":176,\"name\":{\"175\":{}},\"parent\":{}}],[\"transition_impl\",{\"_index\":162,\"name\":{\"161\":{}},\"parent\":{}}],[\"transitions\",{\"_index\":229,\"name\":{\"228\":{},\"280\":{}},\"parent\":{}}],[\"typescript\",{\"_index\":526,\"name\":{\"622\":{}},\"parent\":{}}],[\"unique\",{\"_index\":386,\"name\":{\"433\":{},\"449\":{}},\"parent\":{}}],[\"val\",{\"_index\":280,\"name\":{\"311\":{}},\"parent\":{}}],[\"valid_action\",{\"_index\":181,\"name\":{\"180\":{}},\"parent\":{}}],[\"valid_force_transition\",{\"_index\":183,\"name\":{\"182\":{}},\"parent\":{}}],[\"valid_transition\",{\"_index\":182,\"name\":{\"181\":{}},\"parent\":{}}],[\"value\",{\"_index\":273,\"name\":{\"303\":{},\"330\":{},\"334\":{},\"462\":{},\"476\":{},\"480\":{},\"484\":{},\"488\":{},\"492\":{},\"496\":{},\"500\":{},\"504\":{}},\"parent\":{}}],[\"version\",{\"_index\":398,\"name\":{\"445\":{},\"446\":{},\"447\":{}},\"parent\":{\"446\":{}}}],[\"vue\",{\"_index\":523,\"name\":{\"618\":{}},\"parent\":{}}],[\"webpack\",{\"_index\":533,\"name\":{\"627\":{}},\"parent\":{}}],[\"weighted_histo_key\",{\"_index\":390,\"name\":{\"437\":{},\"454\":{}},\"parent\":{}}],[\"weighted_rand_select\",{\"_index\":391,\"name\":{\"438\":{},\"451\":{}},\"parent\":{}}],[\"weighted_sample_select\",{\"_index\":392,\"name\":{\"439\":{},\"453\":{}},\"parent\":{}}],[\"what\",{\"_index\":513,\"name\":{\"612\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"4\":\"Namespace\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\",\"16777216\":\"Reference\"},\"rows\":[{\"id\":0,\"kind\":2,\"name\":\"jssm\",\"url\":\"modules/jssm.html\",\"classes\":\"tsd-kind-module\"},{\"id\":1,\"kind\":64,\"name\":\"transfer_state_properties\",\"url\":\"modules/jssm.html#transfer_state_properties\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":2,\"kind\":128,\"name\":\"Machine\",\"url\":\"classes/jssm.Machine.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":3,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/jssm.Machine.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"jssm.Machine\"},{\"id\":4,\"kind\":1024,\"name\":\"_state\",\"url\":\"classes/jssm.Machine.html#_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":5,\"kind\":1024,\"name\":\"_states\",\"url\":\"classes/jssm.Machine.html#_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":6,\"kind\":1024,\"name\":\"_edges\",\"url\":\"classes/jssm.Machine.html#_edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":7,\"kind\":1024,\"name\":\"_edge_map\",\"url\":\"classes/jssm.Machine.html#_edge_map\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":8,\"kind\":1024,\"name\":\"_named_transitions\",\"url\":\"classes/jssm.Machine.html#_named_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":9,\"kind\":1024,\"name\":\"_actions\",\"url\":\"classes/jssm.Machine.html#_actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":10,\"kind\":1024,\"name\":\"_reverse_actions\",\"url\":\"classes/jssm.Machine.html#_reverse_actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":11,\"kind\":1024,\"name\":\"_reverse_action_targets\",\"url\":\"classes/jssm.Machine.html#_reverse_action_targets\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":12,\"kind\":1024,\"name\":\"_start_states\",\"url\":\"classes/jssm.Machine.html#_start_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":13,\"kind\":1024,\"name\":\"_end_states\",\"url\":\"classes/jssm.Machine.html#_end_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":14,\"kind\":1024,\"name\":\"_machine_author\",\"url\":\"classes/jssm.Machine.html#_machine_author\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":15,\"kind\":1024,\"name\":\"_machine_comment\",\"url\":\"classes/jssm.Machine.html#_machine_comment\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":16,\"kind\":1024,\"name\":\"_machine_contributor\",\"url\":\"classes/jssm.Machine.html#_machine_contributor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":17,\"kind\":1024,\"name\":\"_machine_definition\",\"url\":\"classes/jssm.Machine.html#_machine_definition\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":18,\"kind\":1024,\"name\":\"_machine_language\",\"url\":\"classes/jssm.Machine.html#_machine_language\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":19,\"kind\":1024,\"name\":\"_machine_license\",\"url\":\"classes/jssm.Machine.html#_machine_license\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":20,\"kind\":1024,\"name\":\"_machine_name\",\"url\":\"classes/jssm.Machine.html#_machine_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":21,\"kind\":1024,\"name\":\"_machine_version\",\"url\":\"classes/jssm.Machine.html#_machine_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":22,\"kind\":1024,\"name\":\"_fsl_version\",\"url\":\"classes/jssm.Machine.html#_fsl_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":23,\"kind\":1024,\"name\":\"_raw_state_declaration\",\"url\":\"classes/jssm.Machine.html#_raw_state_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":24,\"kind\":1024,\"name\":\"_state_declarations\",\"url\":\"classes/jssm.Machine.html#_state_declarations\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":25,\"kind\":1024,\"name\":\"_instance_name\",\"url\":\"classes/jssm.Machine.html#_instance_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":26,\"kind\":1024,\"name\":\"_data\",\"url\":\"classes/jssm.Machine.html#_data\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":27,\"kind\":1024,\"name\":\"_graph_layout\",\"url\":\"classes/jssm.Machine.html#_graph_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":28,\"kind\":1024,\"name\":\"_dot_preamble\",\"url\":\"classes/jssm.Machine.html#_dot_preamble\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":29,\"kind\":1024,\"name\":\"_arrange_declaration\",\"url\":\"classes/jssm.Machine.html#_arrange_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":30,\"kind\":1024,\"name\":\"_arrange_start_declaration\",\"url\":\"classes/jssm.Machine.html#_arrange_start_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":31,\"kind\":1024,\"name\":\"_arrange_end_declaration\",\"url\":\"classes/jssm.Machine.html#_arrange_end_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":32,\"kind\":1024,\"name\":\"_themes\",\"url\":\"classes/jssm.Machine.html#_themes\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":33,\"kind\":1024,\"name\":\"_flow\",\"url\":\"classes/jssm.Machine.html#_flow\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":34,\"kind\":1024,\"name\":\"_has_hooks\",\"url\":\"classes/jssm.Machine.html#_has_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":35,\"kind\":1024,\"name\":\"_has_basic_hooks\",\"url\":\"classes/jssm.Machine.html#_has_basic_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":36,\"kind\":1024,\"name\":\"_has_named_hooks\",\"url\":\"classes/jssm.Machine.html#_has_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":37,\"kind\":1024,\"name\":\"_has_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_has_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":38,\"kind\":1024,\"name\":\"_has_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_has_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":39,\"kind\":1024,\"name\":\"_has_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_has_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":40,\"kind\":1024,\"name\":\"_has_transition_hooks\",\"url\":\"classes/jssm.Machine.html#_has_transition_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":41,\"kind\":1024,\"name\":\"_hooks\",\"url\":\"classes/jssm.Machine.html#_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":42,\"kind\":1024,\"name\":\"_named_hooks\",\"url\":\"classes/jssm.Machine.html#_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":43,\"kind\":1024,\"name\":\"_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":44,\"kind\":1024,\"name\":\"_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":45,\"kind\":1024,\"name\":\"_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":46,\"kind\":1024,\"name\":\"_any_action_hook\",\"url\":\"classes/jssm.Machine.html#_any_action_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":47,\"kind\":1024,\"name\":\"_standard_transition_hook\",\"url\":\"classes/jssm.Machine.html#_standard_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":48,\"kind\":1024,\"name\":\"_main_transition_hook\",\"url\":\"classes/jssm.Machine.html#_main_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":49,\"kind\":1024,\"name\":\"_forced_transition_hook\",\"url\":\"classes/jssm.Machine.html#_forced_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":50,\"kind\":1024,\"name\":\"_any_transition_hook\",\"url\":\"classes/jssm.Machine.html#_any_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":51,\"kind\":1024,\"name\":\"_has_post_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":52,\"kind\":1024,\"name\":\"_has_post_basic_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_basic_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":53,\"kind\":1024,\"name\":\"_has_post_named_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":54,\"kind\":1024,\"name\":\"_has_post_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":55,\"kind\":1024,\"name\":\"_has_post_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":56,\"kind\":1024,\"name\":\"_has_post_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":57,\"kind\":1024,\"name\":\"_has_post_transition_hooks\",\"url\":\"classes/jssm.Machine.html#_has_post_transition_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":58,\"kind\":1024,\"name\":\"_post_hooks\",\"url\":\"classes/jssm.Machine.html#_post_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":59,\"kind\":1024,\"name\":\"_post_named_hooks\",\"url\":\"classes/jssm.Machine.html#_post_named_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":60,\"kind\":1024,\"name\":\"_post_entry_hooks\",\"url\":\"classes/jssm.Machine.html#_post_entry_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":61,\"kind\":1024,\"name\":\"_post_exit_hooks\",\"url\":\"classes/jssm.Machine.html#_post_exit_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":62,\"kind\":1024,\"name\":\"_post_global_action_hooks\",\"url\":\"classes/jssm.Machine.html#_post_global_action_hooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":63,\"kind\":1024,\"name\":\"_post_any_action_hook\",\"url\":\"classes/jssm.Machine.html#_post_any_action_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":64,\"kind\":1024,\"name\":\"_post_standard_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_standard_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":65,\"kind\":1024,\"name\":\"_post_main_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_main_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":66,\"kind\":1024,\"name\":\"_post_forced_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_forced_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":67,\"kind\":1024,\"name\":\"_post_any_transition_hook\",\"url\":\"classes/jssm.Machine.html#_post_any_transition_hook\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":68,\"kind\":1024,\"name\":\"_property_keys\",\"url\":\"classes/jssm.Machine.html#_property_keys\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":69,\"kind\":1024,\"name\":\"_default_properties\",\"url\":\"classes/jssm.Machine.html#_default_properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":70,\"kind\":1024,\"name\":\"_state_properties\",\"url\":\"classes/jssm.Machine.html#_state_properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":71,\"kind\":1024,\"name\":\"_required_properties\",\"url\":\"classes/jssm.Machine.html#_required_properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":72,\"kind\":1024,\"name\":\"_history\",\"url\":\"classes/jssm.Machine.html#_history\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":73,\"kind\":1024,\"name\":\"_history_length\",\"url\":\"classes/jssm.Machine.html#_history_length\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":74,\"kind\":1024,\"name\":\"_state_style\",\"url\":\"classes/jssm.Machine.html#_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":75,\"kind\":1024,\"name\":\"_active_state_style\",\"url\":\"classes/jssm.Machine.html#_active_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":76,\"kind\":1024,\"name\":\"_hooked_state_style\",\"url\":\"classes/jssm.Machine.html#_hooked_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":77,\"kind\":1024,\"name\":\"_terminal_state_style\",\"url\":\"classes/jssm.Machine.html#_terminal_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":78,\"kind\":1024,\"name\":\"_start_state_style\",\"url\":\"classes/jssm.Machine.html#_start_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":79,\"kind\":1024,\"name\":\"_end_state_style\",\"url\":\"classes/jssm.Machine.html#_end_state_style\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":80,\"kind\":1024,\"name\":\"_state_labels\",\"url\":\"classes/jssm.Machine.html#_state_labels\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":81,\"kind\":2048,\"name\":\"_new_state\",\"url\":\"classes/jssm.Machine.html#_new_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":82,\"kind\":2048,\"name\":\"state\",\"url\":\"classes/jssm.Machine.html#state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":83,\"kind\":2048,\"name\":\"label_for\",\"url\":\"classes/jssm.Machine.html#label_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":84,\"kind\":2048,\"name\":\"data\",\"url\":\"classes/jssm.Machine.html#data\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":85,\"kind\":2048,\"name\":\"prop\",\"url\":\"classes/jssm.Machine.html#prop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":86,\"kind\":2048,\"name\":\"strict_prop\",\"url\":\"classes/jssm.Machine.html#strict_prop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":87,\"kind\":2048,\"name\":\"props\",\"url\":\"classes/jssm.Machine.html#props\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":88,\"kind\":2048,\"name\":\"known_prop\",\"url\":\"classes/jssm.Machine.html#known_prop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":89,\"kind\":2048,\"name\":\"known_props\",\"url\":\"classes/jssm.Machine.html#known_props\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":90,\"kind\":2048,\"name\":\"is_start_state\",\"url\":\"classes/jssm.Machine.html#is_start_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":91,\"kind\":2048,\"name\":\"is_end_state\",\"url\":\"classes/jssm.Machine.html#is_end_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":92,\"kind\":2048,\"name\":\"state_is_final\",\"url\":\"classes/jssm.Machine.html#state_is_final\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":93,\"kind\":2048,\"name\":\"is_final\",\"url\":\"classes/jssm.Machine.html#is_final\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":94,\"kind\":2048,\"name\":\"serialize\",\"url\":\"classes/jssm.Machine.html#serialize\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":95,\"kind\":2048,\"name\":\"graph_layout\",\"url\":\"classes/jssm.Machine.html#graph_layout\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":96,\"kind\":2048,\"name\":\"dot_preamble\",\"url\":\"classes/jssm.Machine.html#dot_preamble\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":97,\"kind\":2048,\"name\":\"machine_author\",\"url\":\"classes/jssm.Machine.html#machine_author\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":98,\"kind\":2048,\"name\":\"machine_comment\",\"url\":\"classes/jssm.Machine.html#machine_comment\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":99,\"kind\":2048,\"name\":\"machine_contributor\",\"url\":\"classes/jssm.Machine.html#machine_contributor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":100,\"kind\":2048,\"name\":\"machine_definition\",\"url\":\"classes/jssm.Machine.html#machine_definition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":101,\"kind\":2048,\"name\":\"machine_language\",\"url\":\"classes/jssm.Machine.html#machine_language\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":102,\"kind\":2048,\"name\":\"machine_license\",\"url\":\"classes/jssm.Machine.html#machine_license\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":103,\"kind\":2048,\"name\":\"machine_name\",\"url\":\"classes/jssm.Machine.html#machine_name\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":104,\"kind\":2048,\"name\":\"machine_version\",\"url\":\"classes/jssm.Machine.html#machine_version\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":105,\"kind\":2048,\"name\":\"raw_state_declarations\",\"url\":\"classes/jssm.Machine.html#raw_state_declarations\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":106,\"kind\":2048,\"name\":\"state_declaration\",\"url\":\"classes/jssm.Machine.html#state_declaration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":107,\"kind\":2048,\"name\":\"state_declarations\",\"url\":\"classes/jssm.Machine.html#state_declarations\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":108,\"kind\":2048,\"name\":\"fsl_version\",\"url\":\"classes/jssm.Machine.html#fsl_version\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":109,\"kind\":2048,\"name\":\"machine_state\",\"url\":\"classes/jssm.Machine.html#machine_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":110,\"kind\":2048,\"name\":\"states\",\"url\":\"classes/jssm.Machine.html#states\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":111,\"kind\":2048,\"name\":\"state_for\",\"url\":\"classes/jssm.Machine.html#state_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":112,\"kind\":2048,\"name\":\"has_state\",\"url\":\"classes/jssm.Machine.html#has_state\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":113,\"kind\":2048,\"name\":\"list_edges\",\"url\":\"classes/jssm.Machine.html#list_edges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":114,\"kind\":2048,\"name\":\"list_named_transitions\",\"url\":\"classes/jssm.Machine.html#list_named_transitions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":115,\"kind\":2048,\"name\":\"list_actions\",\"url\":\"classes/jssm.Machine.html#list_actions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":116,\"kind\":2048,\"name\":\"theme\",\"url\":\"classes/jssm.Machine.html#theme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":117,\"kind\":2048,\"name\":\"themes\",\"url\":\"classes/jssm.Machine.html#themes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":118,\"kind\":2048,\"name\":\"flow\",\"url\":\"classes/jssm.Machine.html#flow\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":119,\"kind\":2048,\"name\":\"get_transition_by_state_names\",\"url\":\"classes/jssm.Machine.html#get_transition_by_state_names\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":120,\"kind\":2048,\"name\":\"lookup_transition_for\",\"url\":\"classes/jssm.Machine.html#lookup_transition_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":121,\"kind\":2048,\"name\":\"list_transitions\",\"url\":\"classes/jssm.Machine.html#list_transitions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":122,\"kind\":2048,\"name\":\"list_entrances\",\"url\":\"classes/jssm.Machine.html#list_entrances\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":123,\"kind\":2048,\"name\":\"list_exits\",\"url\":\"classes/jssm.Machine.html#list_exits\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":124,\"kind\":2048,\"name\":\"probable_exits_for\",\"url\":\"classes/jssm.Machine.html#probable_exits_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":125,\"kind\":2048,\"name\":\"probabilistic_transition\",\"url\":\"classes/jssm.Machine.html#probabilistic_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":126,\"kind\":2048,\"name\":\"probabilistic_walk\",\"url\":\"classes/jssm.Machine.html#probabilistic_walk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":127,\"kind\":2048,\"name\":\"probabilistic_histo_walk\",\"url\":\"classes/jssm.Machine.html#probabilistic_histo_walk\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":128,\"kind\":2048,\"name\":\"actions\",\"url\":\"classes/jssm.Machine.html#actions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":129,\"kind\":2048,\"name\":\"list_states_having_action\",\"url\":\"classes/jssm.Machine.html#list_states_having_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":130,\"kind\":2048,\"name\":\"list_exit_actions\",\"url\":\"classes/jssm.Machine.html#list_exit_actions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":131,\"kind\":2048,\"name\":\"probable_action_exits\",\"url\":\"classes/jssm.Machine.html#probable_action_exits\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":132,\"kind\":2048,\"name\":\"is_unenterable\",\"url\":\"classes/jssm.Machine.html#is_unenterable\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":133,\"kind\":2048,\"name\":\"has_unenterables\",\"url\":\"classes/jssm.Machine.html#has_unenterables\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":134,\"kind\":2048,\"name\":\"is_terminal\",\"url\":\"classes/jssm.Machine.html#is_terminal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":135,\"kind\":2048,\"name\":\"state_is_terminal\",\"url\":\"classes/jssm.Machine.html#state_is_terminal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":136,\"kind\":2048,\"name\":\"has_terminals\",\"url\":\"classes/jssm.Machine.html#has_terminals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":137,\"kind\":2048,\"name\":\"is_complete\",\"url\":\"classes/jssm.Machine.html#is_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":138,\"kind\":2048,\"name\":\"state_is_complete\",\"url\":\"classes/jssm.Machine.html#state_is_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":139,\"kind\":2048,\"name\":\"has_completes\",\"url\":\"classes/jssm.Machine.html#has_completes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":140,\"kind\":2048,\"name\":\"set_hook\",\"url\":\"classes/jssm.Machine.html#set_hook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":141,\"kind\":2048,\"name\":\"hook\",\"url\":\"classes/jssm.Machine.html#hook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":142,\"kind\":2048,\"name\":\"hook_action\",\"url\":\"classes/jssm.Machine.html#hook_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":143,\"kind\":2048,\"name\":\"hook_global_action\",\"url\":\"classes/jssm.Machine.html#hook_global_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":144,\"kind\":2048,\"name\":\"hook_any_action\",\"url\":\"classes/jssm.Machine.html#hook_any_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":145,\"kind\":2048,\"name\":\"hook_standard_transition\",\"url\":\"classes/jssm.Machine.html#hook_standard_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":146,\"kind\":2048,\"name\":\"hook_main_transition\",\"url\":\"classes/jssm.Machine.html#hook_main_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":147,\"kind\":2048,\"name\":\"hook_forced_transition\",\"url\":\"classes/jssm.Machine.html#hook_forced_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":148,\"kind\":2048,\"name\":\"hook_any_transition\",\"url\":\"classes/jssm.Machine.html#hook_any_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":149,\"kind\":2048,\"name\":\"hook_entry\",\"url\":\"classes/jssm.Machine.html#hook_entry\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":150,\"kind\":2048,\"name\":\"hook_exit\",\"url\":\"classes/jssm.Machine.html#hook_exit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":151,\"kind\":2048,\"name\":\"post_hook\",\"url\":\"classes/jssm.Machine.html#post_hook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":152,\"kind\":2048,\"name\":\"post_hook_action\",\"url\":\"classes/jssm.Machine.html#post_hook_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":153,\"kind\":2048,\"name\":\"post_hook_global_action\",\"url\":\"classes/jssm.Machine.html#post_hook_global_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":154,\"kind\":2048,\"name\":\"post_hook_any_action\",\"url\":\"classes/jssm.Machine.html#post_hook_any_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":155,\"kind\":2048,\"name\":\"post_hook_standard_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_standard_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":156,\"kind\":2048,\"name\":\"post_hook_main_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_main_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":157,\"kind\":2048,\"name\":\"post_hook_forced_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_forced_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":158,\"kind\":2048,\"name\":\"post_hook_any_transition\",\"url\":\"classes/jssm.Machine.html#post_hook_any_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":159,\"kind\":2048,\"name\":\"post_hook_entry\",\"url\":\"classes/jssm.Machine.html#post_hook_entry\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":160,\"kind\":2048,\"name\":\"post_hook_exit\",\"url\":\"classes/jssm.Machine.html#post_hook_exit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":161,\"kind\":2048,\"name\":\"edges_between\",\"url\":\"classes/jssm.Machine.html#edges_between\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":162,\"kind\":2048,\"name\":\"transition_impl\",\"url\":\"classes/jssm.Machine.html#transition_impl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":163,\"kind\":262144,\"name\":\"history\",\"url\":\"classes/jssm.Machine.html#history\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":164,\"kind\":262144,\"name\":\"history_inclusive\",\"url\":\"classes/jssm.Machine.html#history_inclusive\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":165,\"kind\":262144,\"name\":\"history_length\",\"url\":\"classes/jssm.Machine.html#history_length\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":166,\"kind\":2048,\"name\":\"action\",\"url\":\"classes/jssm.Machine.html#action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":167,\"kind\":262144,\"name\":\"standard_state_style\",\"url\":\"classes/jssm.Machine.html#standard_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":168,\"kind\":262144,\"name\":\"hooked_state_style\",\"url\":\"classes/jssm.Machine.html#hooked_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":169,\"kind\":262144,\"name\":\"start_state_style\",\"url\":\"classes/jssm.Machine.html#start_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":170,\"kind\":262144,\"name\":\"end_state_style\",\"url\":\"classes/jssm.Machine.html#end_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":171,\"kind\":262144,\"name\":\"terminal_state_style\",\"url\":\"classes/jssm.Machine.html#terminal_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":172,\"kind\":262144,\"name\":\"active_state_style\",\"url\":\"classes/jssm.Machine.html#active_state_style\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":173,\"kind\":2048,\"name\":\"has_hooks\",\"url\":\"classes/jssm.Machine.html#has_hooks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":174,\"kind\":2048,\"name\":\"style_for\",\"url\":\"classes/jssm.Machine.html#style_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":175,\"kind\":2048,\"name\":\"do\",\"url\":\"classes/jssm.Machine.html#do\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":176,\"kind\":2048,\"name\":\"transition\",\"url\":\"classes/jssm.Machine.html#transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":177,\"kind\":2048,\"name\":\"go\",\"url\":\"classes/jssm.Machine.html#go\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":178,\"kind\":2048,\"name\":\"force_transition\",\"url\":\"classes/jssm.Machine.html#force_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":179,\"kind\":2048,\"name\":\"current_action_for\",\"url\":\"classes/jssm.Machine.html#current_action_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":180,\"kind\":2048,\"name\":\"current_action_edge_for\",\"url\":\"classes/jssm.Machine.html#current_action_edge_for\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":181,\"kind\":2048,\"name\":\"valid_action\",\"url\":\"classes/jssm.Machine.html#valid_action\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":182,\"kind\":2048,\"name\":\"valid_transition\",\"url\":\"classes/jssm.Machine.html#valid_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":183,\"kind\":2048,\"name\":\"valid_force_transition\",\"url\":\"classes/jssm.Machine.html#valid_force_transition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":184,\"kind\":2048,\"name\":\"instance_name\",\"url\":\"classes/jssm.Machine.html#instance_name\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":185,\"kind\":2048,\"name\":\"sm\",\"url\":\"classes/jssm.Machine.html#sm\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"jssm.Machine\"},{\"id\":186,\"kind\":64,\"name\":\"deserialize\",\"url\":\"modules/jssm.html#deserialize\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":187,\"kind\":64,\"name\":\"make\",\"url\":\"modules/jssm.html#make\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":188,\"kind\":64,\"name\":\"parse\",\"url\":\"modules/jssm.html#parse\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":189,\"kind\":64,\"name\":\"compile\",\"url\":\"modules/jssm.html#compile\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":190,\"kind\":64,\"name\":\"sm\",\"url\":\"modules/jssm.html#sm\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":191,\"kind\":64,\"name\":\"from\",\"url\":\"modules/jssm.html#from\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":192,\"kind\":64,\"name\":\"arrow_direction\",\"url\":\"modules/jssm.html#arrow_direction\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":193,\"kind\":64,\"name\":\"arrow_left_kind\",\"url\":\"modules/jssm.html#arrow_left_kind\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":194,\"kind\":64,\"name\":\"arrow_right_kind\",\"url\":\"modules/jssm.html#arrow_right_kind\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":195,\"kind\":32,\"name\":\"shapes\",\"url\":\"modules/jssm.html#shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":196,\"kind\":32,\"name\":\"gviz_shapes\",\"url\":\"modules/jssm.html#gviz_shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":197,\"kind\":32,\"name\":\"named_colors\",\"url\":\"modules/jssm.html#named_colors\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":198,\"kind\":64,\"name\":\"is_hook_rejection\",\"url\":\"modules/jssm.html#is_hook_rejection\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":199,\"kind\":64,\"name\":\"is_hook_complex_result\",\"url\":\"modules/jssm.html#is_hook_complex_result\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":200,\"kind\":64,\"name\":\"abstract_hook_step\",\"url\":\"modules/jssm.html#abstract_hook_step\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm\"},{\"id\":201,\"kind\":64,\"name\":\"state_style_condense\",\"url\":\"modules/jssm.html#state_style_condense\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":202,\"kind\":2,\"name\":\"jssm_types\",\"url\":\"modules/jssm_types.html\",\"classes\":\"tsd-kind-module\"},{\"id\":203,\"kind\":4194304,\"name\":\"JssmColor\",\"url\":\"modules/jssm_types.html#JssmColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":204,\"kind\":4194304,\"name\":\"JssmShape\",\"url\":\"modules/jssm_types.html#JssmShape\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":205,\"kind\":4194304,\"name\":\"JssmTransition\",\"url\":\"modules/jssm_types.html#JssmTransition\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":206,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmTransition\"},{\"id\":207,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.from-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":208,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.to-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":209,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.name-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":210,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.action-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":211,\"kind\":1024,\"name\":\"check\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.check-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":212,\"kind\":1024,\"name\":\"probability\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.probability\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":213,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.kind-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":214,\"kind\":1024,\"name\":\"forced_only\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.forced_only\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":215,\"kind\":1024,\"name\":\"main_path\",\"url\":\"modules/jssm_types.html#JssmTransition.__type-18.main_path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransition.__type\"},{\"id\":216,\"kind\":4194304,\"name\":\"JssmTransitions\",\"url\":\"modules/jssm_types.html#JssmTransitions\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":217,\"kind\":4194304,\"name\":\"JssmTransitionList\",\"url\":\"modules/jssm_types.html#JssmTransitionList\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":218,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmTransitionList.__type-19\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmTransitionList\"},{\"id\":219,\"kind\":1024,\"name\":\"entrances\",\"url\":\"modules/jssm_types.html#JssmTransitionList.__type-19.entrances\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransitionList.__type\"},{\"id\":220,\"kind\":1024,\"name\":\"exits\",\"url\":\"modules/jssm_types.html#JssmTransitionList.__type-19.exits\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmTransitionList.__type\"},{\"id\":221,\"kind\":4194304,\"name\":\"JssmTransitionRule\",\"url\":\"modules/jssm_types.html#JssmTransitionRule\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":222,\"kind\":4194304,\"name\":\"JssmArrow\",\"url\":\"modules/jssm_types.html#JssmArrow\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":223,\"kind\":4194304,\"name\":\"JssmArrowKind\",\"url\":\"modules/jssm_types.html#JssmArrowKind\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":224,\"kind\":4194304,\"name\":\"JssmArrowDirection\",\"url\":\"modules/jssm_types.html#JssmArrowDirection\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":225,\"kind\":4194304,\"name\":\"JssmGenericConfig\",\"url\":\"modules/jssm_types.html#JssmGenericConfig\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":226,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmGenericConfig\"},{\"id\":227,\"kind\":1024,\"name\":\"graph_layout\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.graph_layout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":228,\"kind\":1024,\"name\":\"complete\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.complete\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":229,\"kind\":1024,\"name\":\"transitions\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":230,\"kind\":1024,\"name\":\"theme\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.theme\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":231,\"kind\":1024,\"name\":\"flow\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.flow\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":232,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":233,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.data-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":234,\"kind\":1024,\"name\":\"nodes\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.nodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":235,\"kind\":1024,\"name\":\"check\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.check\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":236,\"kind\":1024,\"name\":\"history\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.history\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":237,\"kind\":1024,\"name\":\"min_exits\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.min_exits\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":238,\"kind\":1024,\"name\":\"max_exits\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.max_exits\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":239,\"kind\":1024,\"name\":\"allow_islands\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.allow_islands\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":240,\"kind\":1024,\"name\":\"allow_force\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.allow_force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":241,\"kind\":1024,\"name\":\"actions\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":242,\"kind\":1024,\"name\":\"simplify_bidi\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.simplify_bidi\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":243,\"kind\":1024,\"name\":\"dot_preamble\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.dot_preamble\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":244,\"kind\":1024,\"name\":\"start_states\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.start_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":245,\"kind\":1024,\"name\":\"end_states\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.end_states\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":246,\"kind\":1024,\"name\":\"state_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.state_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":247,\"kind\":1024,\"name\":\"property_definition\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.property_definition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":248,\"kind\":1024,\"name\":\"state_property\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.state_property\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":249,\"kind\":1024,\"name\":\"arrange_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.arrange_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":250,\"kind\":1024,\"name\":\"arrange_start_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.arrange_start_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":251,\"kind\":1024,\"name\":\"arrange_end_declaration\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.arrange_end_declaration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":252,\"kind\":1024,\"name\":\"machine_author\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_author\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":253,\"kind\":1024,\"name\":\"machine_comment\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_comment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":254,\"kind\":1024,\"name\":\"machine_contributor\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_contributor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":255,\"kind\":1024,\"name\":\"machine_definition\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_definition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":256,\"kind\":1024,\"name\":\"machine_language\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_language\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":257,\"kind\":1024,\"name\":\"machine_license\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":258,\"kind\":1024,\"name\":\"machine_name\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":259,\"kind\":1024,\"name\":\"machine_version\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.machine_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":260,\"kind\":1024,\"name\":\"fsl_version\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.fsl_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":261,\"kind\":1024,\"name\":\"auto_api\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.auto_api\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":262,\"kind\":1024,\"name\":\"instance_name\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.instance_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":263,\"kind\":1024,\"name\":\"default_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":264,\"kind\":1024,\"name\":\"default_start_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_start_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":265,\"kind\":1024,\"name\":\"default_end_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_end_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":266,\"kind\":1024,\"name\":\"default_hooked_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_hooked_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":267,\"kind\":1024,\"name\":\"default_terminal_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_terminal_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":268,\"kind\":1024,\"name\":\"default_active_state_config\",\"url\":\"modules/jssm_types.html#JssmGenericConfig.__type-8.default_active_state_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericConfig.__type\"},{\"id\":269,\"kind\":4194304,\"name\":\"JssmGenericState\",\"url\":\"modules/jssm_types.html#JssmGenericState\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":270,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmGenericState\"},{\"id\":271,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.from-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":272,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.name-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":273,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.to-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":274,\"kind\":1024,\"name\":\"complete\",\"url\":\"modules/jssm_types.html#JssmGenericState.__type-10.complete-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericState.__type\"},{\"id\":275,\"kind\":4194304,\"name\":\"JssmGenericMachine\",\"url\":\"modules/jssm_types.html#JssmGenericMachine\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":276,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmGenericMachine\"},{\"id\":277,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":278,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.state-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":279,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.data-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":280,\"kind\":1024,\"name\":\"nodes\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.nodes-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":281,\"kind\":1024,\"name\":\"transitions\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.transitions-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":282,\"kind\":1024,\"name\":\"check\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.check-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":283,\"kind\":1024,\"name\":\"min_transitions\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.min_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":284,\"kind\":1024,\"name\":\"max_transitions\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.max_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":285,\"kind\":1024,\"name\":\"allow_empty\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.allow_empty\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":286,\"kind\":1024,\"name\":\"allow_islands\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.allow_islands-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":287,\"kind\":1024,\"name\":\"allow_force\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.allow_force-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":288,\"kind\":1024,\"name\":\"keep_history\",\"url\":\"modules/jssm_types.html#JssmGenericMachine.__type-9.keep_history\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmGenericMachine.__type\"},{\"id\":289,\"kind\":4194304,\"name\":\"JssmParseTree\",\"url\":\"modules/jssm_types.html#JssmParseTree\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":290,\"kind\":4194304,\"name\":\"JssmCompileSe\",\"url\":\"modules/jssm_types.html#JssmCompileSe\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":291,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmCompileSe\"},{\"id\":292,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":293,\"kind\":1024,\"name\":\"se\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.se\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":294,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":295,\"kind\":1024,\"name\":\"l_action\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.l_action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":296,\"kind\":1024,\"name\":\"r_action\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.r_action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":297,\"kind\":1024,\"name\":\"l_probability\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.l_probability\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":298,\"kind\":1024,\"name\":\"r_probability\",\"url\":\"modules/jssm_types.html#JssmCompileSe.__type-5.r_probability\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSe.__type\"},{\"id\":299,\"kind\":4194304,\"name\":\"JssmCompileSeStart\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":300,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmCompileSeStart\"},{\"id\":301,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":302,\"kind\":1024,\"name\":\"se\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.se-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":303,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":304,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":305,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":306,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.state-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":307,\"kind\":1024,\"name\":\"default_value\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":308,\"kind\":1024,\"name\":\"required\",\"url\":\"modules/jssm_types.html#JssmCompileSeStart.__type-6.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileSeStart.__type\"},{\"id\":309,\"kind\":4194304,\"name\":\"JssmCompileRule\",\"url\":\"modules/jssm_types.html#JssmCompileRule\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":310,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmCompileRule.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmCompileRule\"},{\"id\":311,\"kind\":1024,\"name\":\"agg_as\",\"url\":\"modules/jssm_types.html#JssmCompileRule.__type-4.agg_as\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileRule.__type\"},{\"id\":312,\"kind\":1024,\"name\":\"val\",\"url\":\"modules/jssm_types.html#JssmCompileRule.__type-4.val\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmCompileRule.__type\"},{\"id\":313,\"kind\":4194304,\"name\":\"JssmPermitted\",\"url\":\"modules/jssm_types.html#JssmPermitted\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":314,\"kind\":4194304,\"name\":\"JssmPermittedOpt\",\"url\":\"modules/jssm_types.html#JssmPermittedOpt\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":315,\"kind\":4194304,\"name\":\"JssmResult\",\"url\":\"modules/jssm_types.html#JssmResult\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":316,\"kind\":4194304,\"name\":\"JssmStateDeclaration\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":317,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmStateDeclaration\"},{\"id\":318,\"kind\":1024,\"name\":\"declarations\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.declarations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":319,\"kind\":1024,\"name\":\"shape\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.shape\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":320,\"kind\":1024,\"name\":\"color\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":321,\"kind\":1024,\"name\":\"corners\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.corners\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":322,\"kind\":1024,\"name\":\"lineStyle\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.lineStyle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":323,\"kind\":1024,\"name\":\"stateLabel\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.stateLabel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":324,\"kind\":1024,\"name\":\"textColor\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.textColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":325,\"kind\":1024,\"name\":\"backgroundColor\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.backgroundColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":326,\"kind\":1024,\"name\":\"borderColor\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.borderColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":327,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.state-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":328,\"kind\":1024,\"name\":\"property\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.property\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":329,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type\"},{\"id\":330,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.__type-16.name-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type.__type\"},{\"id\":331,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types.html#JssmStateDeclaration.__type-15.__type-16.value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclaration.__type.__type\"},{\"id\":332,\"kind\":4194304,\"name\":\"JssmStateDeclarationRule\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":333,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmStateDeclarationRule\"},{\"id\":334,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17.key-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclarationRule.__type\"},{\"id\":335,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17.value-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclarationRule.__type\"},{\"id\":336,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmStateDeclarationRule.__type-17.name-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmStateDeclarationRule.__type\"},{\"id\":337,\"kind\":4194304,\"name\":\"JssmStateConfig\",\"url\":\"modules/jssm_types.html#JssmStateConfig\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":338,\"kind\":4194304,\"name\":\"JssmStateStyleKey\",\"url\":\"modules/jssm_types.html#JssmStateStyleKey\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":339,\"kind\":4194304,\"name\":\"JssmStateStyleKeyList\",\"url\":\"modules/jssm_types.html#JssmStateStyleKeyList\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":340,\"kind\":4194304,\"name\":\"JssmBaseTheme\",\"url\":\"modules/jssm_types.html#JssmBaseTheme\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":341,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmBaseTheme\"},{\"id\":342,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.state-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":343,\"kind\":1024,\"name\":\"hooked\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.hooked\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":344,\"kind\":1024,\"name\":\"start\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.start\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":345,\"kind\":1024,\"name\":\"end\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.end\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":346,\"kind\":1024,\"name\":\"terminal\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.terminal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":347,\"kind\":1024,\"name\":\"active\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":348,\"kind\":1024,\"name\":\"active_hooked\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_hooked\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":349,\"kind\":1024,\"name\":\"active_start\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_start\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":350,\"kind\":1024,\"name\":\"active_end\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_end\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":351,\"kind\":1024,\"name\":\"active_terminal\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.active_terminal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":352,\"kind\":1024,\"name\":\"graph\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.graph\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":353,\"kind\":1024,\"name\":\"legal\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.legal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":354,\"kind\":1024,\"name\":\"main\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.main\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":355,\"kind\":1024,\"name\":\"forced\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.forced\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":356,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":357,\"kind\":1024,\"name\":\"title\",\"url\":\"modules/jssm_types.html#JssmBaseTheme.__type-3.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmBaseTheme.__type\"},{\"id\":358,\"kind\":4194304,\"name\":\"JssmTheme\",\"url\":\"modules/jssm_types.html#JssmTheme\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":359,\"kind\":4194304,\"name\":\"JssmLayout\",\"url\":\"modules/jssm_types.html#JssmLayout\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":360,\"kind\":4194304,\"name\":\"JssmHistory\",\"url\":\"modules/jssm_types.html#JssmHistory\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":361,\"kind\":4194304,\"name\":\"JssmSerialization\",\"url\":\"modules/jssm_types.html#JssmSerialization\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":362,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmSerialization\"},{\"id\":363,\"kind\":1024,\"name\":\"jssm_version\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.jssm_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":364,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":365,\"kind\":1024,\"name\":\"comment\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.comment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":366,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.state-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":367,\"kind\":1024,\"name\":\"history\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.history-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":368,\"kind\":1024,\"name\":\"history_capacity\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.history_capacity\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":369,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#JssmSerialization.__type-14.data-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmSerialization.__type\"},{\"id\":370,\"kind\":4194304,\"name\":\"JssmPropertyDefinition\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":371,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmPropertyDefinition\"},{\"id\":372,\"kind\":1024,\"name\":\"name\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13.name-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmPropertyDefinition.__type\"},{\"id\":373,\"kind\":1024,\"name\":\"default_value\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13.default_value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmPropertyDefinition.__type\"},{\"id\":374,\"kind\":1024,\"name\":\"required\",\"url\":\"modules/jssm_types.html#JssmPropertyDefinition.__type-13.required-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmPropertyDefinition.__type\"},{\"id\":375,\"kind\":4194304,\"name\":\"JssmParseFunctionType\",\"url\":\"modules/jssm_types.html#JssmParseFunctionType\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":376,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmParseFunctionType.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmParseFunctionType\"},{\"id\":377,\"kind\":4194304,\"name\":\"JssmMachineInternalState\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":378,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmMachineInternalState\"},{\"id\":379,\"kind\":1024,\"name\":\"internal_state_impl_version\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.internal_state_impl_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":380,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.state-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":381,\"kind\":1024,\"name\":\"states\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.states\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":382,\"kind\":1024,\"name\":\"named_transitions\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.named_transitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":383,\"kind\":1024,\"name\":\"edge_map\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.edge_map\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":384,\"kind\":1024,\"name\":\"actions\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.actions-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":385,\"kind\":1024,\"name\":\"reverse_actions\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.reverse_actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":386,\"kind\":1024,\"name\":\"edges\",\"url\":\"modules/jssm_types.html#JssmMachineInternalState.__type-11.edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmMachineInternalState.__type\"},{\"id\":387,\"kind\":4194304,\"name\":\"JssmErrorExtendedInfo\",\"url\":\"modules/jssm_types.html#JssmErrorExtendedInfo\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":388,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#JssmErrorExtendedInfo.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.JssmErrorExtendedInfo\"},{\"id\":389,\"kind\":1024,\"name\":\"requested_state\",\"url\":\"modules/jssm_types.html#JssmErrorExtendedInfo.__type-7.requested_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.JssmErrorExtendedInfo.__type\"},{\"id\":390,\"kind\":4194304,\"name\":\"FslDirection\",\"url\":\"modules/jssm_types.html#FslDirection\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":391,\"kind\":4194304,\"name\":\"FslTheme\",\"url\":\"modules/jssm_types.html#FslTheme\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":392,\"kind\":4194304,\"name\":\"HookDescription\",\"url\":\"modules/jssm_types.html#HookDescription\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":393,\"kind\":4194304,\"name\":\"HookHandler\",\"url\":\"modules/jssm_types.html#HookHandler\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":394,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#HookHandler.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.HookHandler\"},{\"id\":395,\"kind\":4194304,\"name\":\"HookContext\",\"url\":\"modules/jssm_types.html#HookContext\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":396,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#HookContext.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.HookContext\"},{\"id\":397,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#HookContext.__type-1.data-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookContext.__type\"},{\"id\":398,\"kind\":4194304,\"name\":\"HookResult\",\"url\":\"modules/jssm_types.html#HookResult\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":399,\"kind\":4194304,\"name\":\"HookComplexResult\",\"url\":\"modules/jssm_types.html#HookComplexResult\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_types\"},{\"id\":400,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types.HookComplexResult\"},{\"id\":401,\"kind\":1024,\"name\":\"pass\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type.pass\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookComplexResult.__type\"},{\"id\":402,\"kind\":1024,\"name\":\"state\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookComplexResult.__type\"},{\"id\":403,\"kind\":1024,\"name\":\"data\",\"url\":\"modules/jssm_types.html#HookComplexResult.__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types.HookComplexResult.__type\"},{\"id\":404,\"kind\":2,\"name\":\"jssm_constants\",\"url\":\"modules/jssm_constants.html\",\"classes\":\"tsd-kind-module\"},{\"id\":405,\"kind\":32,\"name\":\"NegInfinity\",\"url\":\"modules/jssm_constants.html#NegInfinity\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":406,\"kind\":32,\"name\":\"PosInfinity\",\"url\":\"modules/jssm_constants.html#PosInfinity\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":407,\"kind\":32,\"name\":\"Epsilon\",\"url\":\"modules/jssm_constants.html#Epsilon\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":408,\"kind\":32,\"name\":\"Pi\",\"url\":\"modules/jssm_constants.html#Pi\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":409,\"kind\":32,\"name\":\"E\",\"url\":\"modules/jssm_constants.html#E\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":410,\"kind\":32,\"name\":\"Root2\",\"url\":\"modules/jssm_constants.html#Root2\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":411,\"kind\":32,\"name\":\"RootHalf\",\"url\":\"modules/jssm_constants.html#RootHalf\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":412,\"kind\":32,\"name\":\"Ln2\",\"url\":\"modules/jssm_constants.html#Ln2\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":413,\"kind\":32,\"name\":\"Ln10\",\"url\":\"modules/jssm_constants.html#Ln10\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":414,\"kind\":32,\"name\":\"Log2E\",\"url\":\"modules/jssm_constants.html#Log2E\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":415,\"kind\":32,\"name\":\"Log10E\",\"url\":\"modules/jssm_constants.html#Log10E\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":416,\"kind\":32,\"name\":\"MaxSafeInt\",\"url\":\"modules/jssm_constants.html#MaxSafeInt\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":417,\"kind\":32,\"name\":\"MinSafeInt\",\"url\":\"modules/jssm_constants.html#MinSafeInt\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":418,\"kind\":32,\"name\":\"MaxPosNum\",\"url\":\"modules/jssm_constants.html#MaxPosNum\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":419,\"kind\":32,\"name\":\"MinPosNum\",\"url\":\"modules/jssm_constants.html#MinPosNum\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":420,\"kind\":32,\"name\":\"Phi\",\"url\":\"modules/jssm_constants.html#Phi\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":421,\"kind\":32,\"name\":\"EulerC\",\"url\":\"modules/jssm_constants.html#EulerC\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":422,\"kind\":32,\"name\":\"gviz_shapes\",\"url\":\"modules/jssm_constants.html#gviz_shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":423,\"kind\":32,\"name\":\"shapes\",\"url\":\"modules/jssm_constants.html#shapes\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":424,\"kind\":32,\"name\":\"named_colors\",\"url\":\"modules/jssm_constants.html#named_colors\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_constants\"},{\"id\":425,\"kind\":2,\"name\":\"jssm_error\",\"url\":\"modules/jssm_error.html\",\"classes\":\"tsd-kind-module\"},{\"id\":426,\"kind\":128,\"name\":\"JssmError\",\"url\":\"classes/jssm_error.JssmError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"jssm_error\"},{\"id\":427,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/jssm_error.JssmError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"jssm_error.JssmError\"},{\"id\":428,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/jssm_error.JssmError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"jssm_error.JssmError\"},{\"id\":429,\"kind\":1024,\"name\":\"message\",\"url\":\"classes/jssm_error.JssmError.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"jssm_error.JssmError\"},{\"id\":430,\"kind\":1024,\"name\":\"base_message\",\"url\":\"classes/jssm_error.JssmError.html#base_message\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm_error.JssmError\"},{\"id\":431,\"kind\":1024,\"name\":\"requested_state\",\"url\":\"classes/jssm_error.JssmError.html#requested_state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"jssm_error.JssmError\"},{\"id\":432,\"kind\":2,\"name\":\"jssm_util\",\"url\":\"modules/jssm_util.html\",\"classes\":\"tsd-kind-module\"},{\"id\":433,\"kind\":64,\"name\":\"seq\",\"url\":\"modules/jssm_util.html#seq\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":434,\"kind\":64,\"name\":\"unique\",\"url\":\"modules/jssm_util.html#unique\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_util\"},{\"id\":435,\"kind\":64,\"name\":\"find_repeated\",\"url\":\"modules/jssm_util.html#find_repeated\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_util\"},{\"id\":436,\"kind\":64,\"name\":\"arr_uniq_p\",\"url\":\"modules/jssm_util.html#arr_uniq_p\",\"classes\":\"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"jssm_util\"},{\"id\":437,\"kind\":32,\"name\":\"histograph\",\"url\":\"modules/jssm_util.html#histograph\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":438,\"kind\":32,\"name\":\"weighted_histo_key\",\"url\":\"modules/jssm_util.html#weighted_histo_key\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":439,\"kind\":32,\"name\":\"weighted_rand_select\",\"url\":\"modules/jssm_util.html#weighted_rand_select\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":440,\"kind\":32,\"name\":\"weighted_sample_select\",\"url\":\"modules/jssm_util.html#weighted_sample_select\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":441,\"kind\":64,\"name\":\"array_box_if_string\",\"url\":\"modules/jssm_util.html#array_box_if_string\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":442,\"kind\":64,\"name\":\"name_bind_prop_and_state\",\"url\":\"modules/jssm_util.html#name_bind_prop_and_state\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":443,\"kind\":64,\"name\":\"hook_name\",\"url\":\"modules/jssm_util.html#hook_name\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":444,\"kind\":64,\"name\":\"named_hook_name\",\"url\":\"modules/jssm_util.html#named_hook_name\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":445,\"kind\":64,\"name\":\"make_mulberry_rand\",\"url\":\"modules/jssm_util.html#make_mulberry_rand\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"jssm_util\"},{\"id\":446,\"kind\":2,\"name\":\"version\",\"url\":\"modules/version.html\",\"classes\":\"tsd-kind-module\"},{\"id\":447,\"kind\":32,\"name\":\"version\",\"url\":\"modules/version.html#version-1\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"version\"},{\"id\":448,\"kind\":16777216,\"name\":\"version\",\"url\":\"modules/jssm.html#version\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":449,\"kind\":16777216,\"name\":\"seq\",\"url\":\"modules/jssm.html#seq\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":450,\"kind\":16777216,\"name\":\"unique\",\"url\":\"modules/jssm.html#unique\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":451,\"kind\":16777216,\"name\":\"find_repeated\",\"url\":\"modules/jssm.html#find_repeated\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":452,\"kind\":16777216,\"name\":\"weighted_rand_select\",\"url\":\"modules/jssm.html#weighted_rand_select\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":453,\"kind\":16777216,\"name\":\"histograph\",\"url\":\"modules/jssm.html#histograph\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":454,\"kind\":16777216,\"name\":\"weighted_sample_select\",\"url\":\"modules/jssm.html#weighted_sample_select\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":455,\"kind\":16777216,\"name\":\"weighted_histo_key\",\"url\":\"modules/jssm.html#weighted_histo_key\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":456,\"kind\":16777216,\"name\":\"constants\",\"url\":\"modules/jssm.html#constants\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":457,\"kind\":4,\"name\":\"\",\"url\":\"modules/jssm._internal_.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-module\",\"parent\":\"jssm\"},{\"id\":458,\"kind\":4,\"name\":\"\",\"url\":\"modules/jssm_types._internal_.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-module\",\"parent\":\"jssm_types\"},{\"id\":459,\"kind\":4194304,\"name\":\"StateType\",\"url\":\"modules/jssm_types._internal_.html#StateType\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":460,\"kind\":4194304,\"name\":\"JssmTransitionCycle\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":461,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle.__type-20\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmTransitionCycle\"},{\"id\":462,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle.__type-20.key-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmTransitionCycle.__type\"},{\"id\":463,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionCycle.__type-20.value-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmTransitionCycle.__type\"},{\"id\":464,\"kind\":4194304,\"name\":\"JssmSuccess\",\"url\":\"modules/jssm_types._internal_.html#JssmSuccess\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":465,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmSuccess.__type-19\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmSuccess\"},{\"id\":466,\"kind\":1024,\"name\":\"success\",\"url\":\"modules/jssm_types._internal_.html#JssmSuccess.__type-19.success-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmSuccess.__type\"},{\"id\":467,\"kind\":4194304,\"name\":\"JssmFailure\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":468,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmFailure\"},{\"id\":469,\"kind\":1024,\"name\":\"success\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure.__type-8.success\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmFailure.__type\"},{\"id\":470,\"kind\":1024,\"name\":\"error\",\"url\":\"modules/jssm_types._internal_.html#JssmFailure.__type-8.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmFailure.__type\"},{\"id\":471,\"kind\":4194304,\"name\":\"JssmIncomplete\",\"url\":\"modules/jssm_types._internal_.html#JssmIncomplete\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":472,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmIncomplete.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmIncomplete\"},{\"id\":473,\"kind\":1024,\"name\":\"success\",\"url\":\"modules/jssm_types._internal_.html#JssmIncomplete.__type-9.success-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmIncomplete.__type\"},{\"id\":474,\"kind\":4194304,\"name\":\"JssmStateStyleShape\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":475,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleShape\"},{\"id\":476,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape.__type-16.key-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleShape.__type\"},{\"id\":477,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleShape.__type-16.value-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleShape.__type\"},{\"id\":478,\"kind\":4194304,\"name\":\"JssmStateStyleColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":479,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleColor\"},{\"id\":480,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor.__type-13.key-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleColor.__type\"},{\"id\":481,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleColor.__type-13.value-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleColor.__type\"},{\"id\":482,\"kind\":4194304,\"name\":\"JssmStateStyleTextColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":483,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleTextColor\"},{\"id\":484,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor.__type-18.key-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleTextColor.__type\"},{\"id\":485,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleTextColor.__type-18.value-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleTextColor.__type\"},{\"id\":486,\"kind\":4194304,\"name\":\"JssmStateStyleCorners\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":487,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleCorners\"},{\"id\":488,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners.__type-14.key-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleCorners.__type\"},{\"id\":489,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleCorners.__type-14.value-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleCorners.__type\"},{\"id\":490,\"kind\":4194304,\"name\":\"JssmStateStyleLineStyle\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":491,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleLineStyle\"},{\"id\":492,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle.__type-15.key-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleLineStyle.__type\"},{\"id\":493,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleLineStyle.__type-15.value-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleLineStyle.__type\"},{\"id\":494,\"kind\":4194304,\"name\":\"JssmStateStyleBackgroundColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":495,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleBackgroundColor\"},{\"id\":496,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor.__type-11.key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBackgroundColor.__type\"},{\"id\":497,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBackgroundColor.__type-11.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBackgroundColor.__type\"},{\"id\":498,\"kind\":4194304,\"name\":\"JssmStateStyleStateLabel\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":499,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel.__type-17\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleStateLabel\"},{\"id\":500,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel.__type-17.key-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleStateLabel.__type\"},{\"id\":501,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleStateLabel.__type-17.value-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleStateLabel.__type\"},{\"id\":502,\"kind\":4194304,\"name\":\"JssmStateStyleBorderColor\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":503,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStateStyleBorderColor\"},{\"id\":504,\"kind\":1024,\"name\":\"key\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor.__type-12.key-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBorderColor.__type\"},{\"id\":505,\"kind\":1024,\"name\":\"value\",\"url\":\"modules/jssm_types._internal_.html#JssmStateStyleBorderColor.__type-12.value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..JssmStateStyleBorderColor.__type\"},{\"id\":506,\"kind\":4194304,\"name\":\"BasicHookDescription\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":507,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..BasicHookDescription\"},{\"id\":508,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.kind-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":509,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":510,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":511,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#BasicHookDescription.__type-2.handler-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..BasicHookDescription.__type\"},{\"id\":512,\"kind\":4194304,\"name\":\"HookDescriptionWithAction\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":513,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..HookDescriptionWithAction\"},{\"id\":514,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.kind-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":515,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.from-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":516,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.to-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":517,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.action-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":518,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#HookDescriptionWithAction.__type-7.handler-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..HookDescriptionWithAction.__type\"},{\"id\":519,\"kind\":4194304,\"name\":\"GlobalActionHook\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":520,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..GlobalActionHook\"},{\"id\":521,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6.kind-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..GlobalActionHook.__type\"},{\"id\":522,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6.action\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..GlobalActionHook.__type\"},{\"id\":523,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#GlobalActionHook.__type-6.handler-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..GlobalActionHook.__type\"},{\"id\":524,\"kind\":4194304,\"name\":\"AnyActionHook\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":525,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..AnyActionHook\"},{\"id\":526,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook.__type.kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyActionHook.__type\"},{\"id\":527,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#AnyActionHook.__type.handler\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyActionHook.__type\"},{\"id\":528,\"kind\":4194304,\"name\":\"StandardTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":529,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook.__type-34\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..StandardTransitionHook\"},{\"id\":530,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook.__type-34.kind-19\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..StandardTransitionHook.__type\"},{\"id\":531,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#StandardTransitionHook.__type-34.handler-19\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..StandardTransitionHook.__type\"},{\"id\":532,\"kind\":4194304,\"name\":\"MainTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":533,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook.__type-22\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..MainTransitionHook\"},{\"id\":534,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook.__type-22.kind-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..MainTransitionHook.__type\"},{\"id\":535,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#MainTransitionHook.__type-22.handler-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..MainTransitionHook.__type\"},{\"id\":536,\"kind\":4194304,\"name\":\"ForcedTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":537,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..ForcedTransitionHook\"},{\"id\":538,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook.__type-5.kind-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ForcedTransitionHook.__type\"},{\"id\":539,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#ForcedTransitionHook.__type-5.handler-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ForcedTransitionHook.__type\"},{\"id\":540,\"kind\":4194304,\"name\":\"AnyTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":541,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..AnyTransitionHook\"},{\"id\":542,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook.__type-1.kind-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyTransitionHook.__type\"},{\"id\":543,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#AnyTransitionHook.__type-1.handler-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..AnyTransitionHook.__type\"},{\"id\":544,\"kind\":4194304,\"name\":\"EntryHook\",\"url\":\"modules/jssm_types._internal_.html#EntryHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":545,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..EntryHook\"},{\"id\":546,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3.kind-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..EntryHook.__type\"},{\"id\":547,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3.to-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..EntryHook.__type\"},{\"id\":548,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#EntryHook.__type-3.handler-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..EntryHook.__type\"},{\"id\":549,\"kind\":4194304,\"name\":\"ExitHook\",\"url\":\"modules/jssm_types._internal_.html#ExitHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":550,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..ExitHook\"},{\"id\":551,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4.kind-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ExitHook.__type\"},{\"id\":552,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4.from-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ExitHook.__type\"},{\"id\":553,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#ExitHook.__type-4.handler-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..ExitHook.__type\"},{\"id\":554,\"kind\":4194304,\"name\":\"PostBasicHookDescription\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":555,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostBasicHookDescription\"},{\"id\":556,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.kind-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":557,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.from-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":558,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.to-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":559,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostBasicHookDescription.__type-25.handler-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostBasicHookDescription.__type\"},{\"id\":560,\"kind\":4194304,\"name\":\"PostHookDescriptionWithAction\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":561,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostHookDescriptionWithAction\"},{\"id\":562,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.kind-16\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":563,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.from-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":564,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.to-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":565,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.action-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":566,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostHookDescriptionWithAction.__type-30.handler-16\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostHookDescriptionWithAction.__type\"},{\"id\":567,\"kind\":4194304,\"name\":\"PostGlobalActionHook\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":568,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostGlobalActionHook\"},{\"id\":569,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29.kind-15\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostGlobalActionHook.__type\"},{\"id\":570,\"kind\":1024,\"name\":\"action\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29.action-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostGlobalActionHook.__type\"},{\"id\":571,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostGlobalActionHook.__type-29.handler-15\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostGlobalActionHook.__type\"},{\"id\":572,\"kind\":4194304,\"name\":\"PostAnyActionHook\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":573,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook.__type-23\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostAnyActionHook\"},{\"id\":574,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook.__type-23.kind-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyActionHook.__type\"},{\"id\":575,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostAnyActionHook.__type-23.handler-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyActionHook.__type\"},{\"id\":576,\"kind\":4194304,\"name\":\"PostStandardTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":577,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook.__type-33\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostStandardTransitionHook\"},{\"id\":578,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook.__type-33.kind-18\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostStandardTransitionHook.__type\"},{\"id\":579,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostStandardTransitionHook.__type-33.handler-18\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostStandardTransitionHook.__type\"},{\"id\":580,\"kind\":4194304,\"name\":\"PostMainTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":581,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook.__type-32\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostMainTransitionHook\"},{\"id\":582,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook.__type-32.kind-17\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostMainTransitionHook.__type\"},{\"id\":583,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostMainTransitionHook.__type-32.handler-17\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostMainTransitionHook.__type\"},{\"id\":584,\"kind\":4194304,\"name\":\"PostForcedTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":585,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook.__type-28\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostForcedTransitionHook\"},{\"id\":586,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook.__type-28.kind-14\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostForcedTransitionHook.__type\"},{\"id\":587,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostForcedTransitionHook.__type-28.handler-14\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostForcedTransitionHook.__type\"},{\"id\":588,\"kind\":4194304,\"name\":\"PostAnyTransitionHook\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":589,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook.__type-24\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostAnyTransitionHook\"},{\"id\":590,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook.__type-24.kind-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyTransitionHook.__type\"},{\"id\":591,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostAnyTransitionHook.__type-24.handler-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostAnyTransitionHook.__type\"},{\"id\":592,\"kind\":4194304,\"name\":\"PostEntryHook\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":593,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostEntryHook\"},{\"id\":594,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26.kind-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostEntryHook.__type\"},{\"id\":595,\"kind\":1024,\"name\":\"to\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26.to-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostEntryHook.__type\"},{\"id\":596,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostEntryHook.__type-26.handler-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostEntryHook.__type\"},{\"id\":597,\"kind\":4194304,\"name\":\"PostExitHook\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":598,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostExitHook\"},{\"id\":599,\"kind\":1024,\"name\":\"kind\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27.kind-13\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostExitHook.__type\"},{\"id\":600,\"kind\":1024,\"name\":\"from\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27.from-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostExitHook.__type\"},{\"id\":601,\"kind\":1024,\"name\":\"handler\",\"url\":\"modules/jssm_types._internal_.html#PostExitHook.__type-27.handler-13\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"jssm_types..PostExitHook.__type\"},{\"id\":602,\"kind\":4194304,\"name\":\"JssmTransitionPermitterMaybeArray\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionPermitterMaybeArray\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":603,\"kind\":4194304,\"name\":\"JssmStatePermitterMaybeArray\",\"url\":\"modules/jssm_types._internal_.html#JssmStatePermitterMaybeArray\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":604,\"kind\":4194304,\"name\":\"JssmCorner\",\"url\":\"modules/jssm_types._internal_.html#JssmCorner\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":605,\"kind\":4194304,\"name\":\"JssmLineStyle\",\"url\":\"modules/jssm_types._internal_.html#JssmLineStyle\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"jssm_types.\"},{\"id\":606,\"kind\":4194304,\"name\":\"JssmTransitionPermitter\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionPermitter\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":607,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmTransitionPermitter.__type-21\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmTransitionPermitter\"},{\"id\":608,\"kind\":4194304,\"name\":\"JssmStatePermitter\",\"url\":\"modules/jssm_types._internal_.html#JssmStatePermitter\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":609,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#JssmStatePermitter.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..JssmStatePermitter\"},{\"id\":610,\"kind\":4194304,\"name\":\"PostHookHandler\",\"url\":\"modules/jssm_types._internal_.html#PostHookHandler\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"jssm_types.\"},{\"id\":611,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/jssm_types._internal_.html#PostHookHandler.__type-31\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"jssm_types..PostHookHandler\"},{\"id\":612,\"kind\":4,\"name\":\"\",\"url\":\"modules/jssm_error._internal_.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-module\",\"parent\":\"jssm_error\"},{\"id\":613,\"kind\":2048,\"name\":\"Page: What are state machines?\",\"url\":\"pages/WhatAreStateMachines.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":614,\"kind\":2048,\"name\":\"Page: ☕ Quick Start\",\"url\":\"pages/GettingStarted.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":615,\"kind\":2048,\"name\":\"Page: Language reference\",\"url\":\"pages/LanguageReference.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":616,\"kind\":2048,\"name\":\"Page: API reference\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":617,\"kind\":2048,\"name\":\"Page: Example machines\",\"url\":\"pages/ExampleMachines.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":618,\"kind\":2048,\"name\":\"Page: React\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":619,\"kind\":2048,\"name\":\"Page: Vue\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":620,\"kind\":2048,\"name\":\"Page: Angular\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":621,\"kind\":2048,\"name\":\"Page: Node\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":622,\"kind\":2048,\"name\":\"Page: Node\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":623,\"kind\":2048,\"name\":\"Page: Typescript\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":624,\"kind\":2048,\"name\":\"Page: The browser\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":625,\"kind\":2048,\"name\":\"Page: AWS Lambda\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":626,\"kind\":2048,\"name\":\"Page: SQL\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":627,\"kind\":2048,\"name\":\"Page: Rollup\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":628,\"kind\":2048,\"name\":\"Page: Webpack\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":629,\"kind\":2048,\"name\":\"Page: CDN\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":630,\"kind\":2048,\"name\":\"Page: Local files\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":631,\"kind\":2048,\"name\":\"Page: Let's make a large machine\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":632,\"kind\":2048,\"name\":\"Page: Publishing\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":633,\"kind\":2048,\"name\":\"Page: Theme, style, color\",\"url\":\"pages/Styling.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":634,\"kind\":2048,\"name\":\"Page: Feature comparison\",\"url\":\"pages/FeatureComparison.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":635,\"kind\":2048,\"name\":\"Page: LOC Shootout\",\"url\":\"pages/Shootout.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":636,\"kind\":2048,\"name\":\"Page: Live Editor\",\"url\":\"pages/live_editor.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":637,\"kind\":2048,\"name\":\"Page: Github Action\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":638,\"kind\":2048,\"name\":\"Page: CLI\",\"url\":\"pages/todo.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":639,\"kind\":2048,\"name\":\"Page: Community\",\"url\":\"pages/community.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"},{\"id\":640,\"kind\":2048,\"name\":\"Page: Changelog\",\"url\":\"pages/CHANGELOG.long.html\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external pages-entry\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,31.724]],[\"parent/0\",[]],[\"name/1\",[1,62.404]],[\"parent/1\",[0,3.011]],[\"name/2\",[2,57.143]],[\"parent/2\",[0,3.011]],[\"name/3\",[3,57.143]],[\"parent/3\",[4,1.224]],[\"name/4\",[5,62.404]],[\"parent/4\",[4,1.224]],[\"name/5\",[6,62.404]],[\"parent/5\",[4,1.224]],[\"name/6\",[7,62.404]],[\"parent/6\",[4,1.224]],[\"name/7\",[8,62.404]],[\"parent/7\",[4,1.224]],[\"name/8\",[9,62.404]],[\"parent/8\",[4,1.224]],[\"name/9\",[10,62.404]],[\"parent/9\",[4,1.224]],[\"name/10\",[11,62.404]],[\"parent/10\",[4,1.224]],[\"name/11\",[12,62.404]],[\"parent/11\",[4,1.224]],[\"name/12\",[13,62.404]],[\"parent/12\",[4,1.224]],[\"name/13\",[14,62.404]],[\"parent/13\",[4,1.224]],[\"name/14\",[15,62.404]],[\"parent/14\",[4,1.224]],[\"name/15\",[16,62.404]],[\"parent/15\",[4,1.224]],[\"name/16\",[17,62.404]],[\"parent/16\",[4,1.224]],[\"name/17\",[18,62.404]],[\"parent/17\",[4,1.224]],[\"name/18\",[19,62.404]],[\"parent/18\",[4,1.224]],[\"name/19\",[20,62.404]],[\"parent/19\",[4,1.224]],[\"name/20\",[21,62.404]],[\"parent/20\",[4,1.224]],[\"name/21\",[22,62.404]],[\"parent/21\",[4,1.224]],[\"name/22\",[23,62.404]],[\"parent/22\",[4,1.224]],[\"name/23\",[24,62.404]],[\"parent/23\",[4,1.224]],[\"name/24\",[25,62.404]],[\"parent/24\",[4,1.224]],[\"name/25\",[26,62.404]],[\"parent/25\",[4,1.224]],[\"name/26\",[27,62.404]],[\"parent/26\",[4,1.224]],[\"name/27\",[28,62.404]],[\"parent/27\",[4,1.224]],[\"name/28\",[29,62.404]],[\"parent/28\",[4,1.224]],[\"name/29\",[30,62.404]],[\"parent/29\",[4,1.224]],[\"name/30\",[31,62.404]],[\"parent/30\",[4,1.224]],[\"name/31\",[32,62.404]],[\"parent/31\",[4,1.224]],[\"name/32\",[33,62.404]],[\"parent/32\",[4,1.224]],[\"name/33\",[34,62.404]],[\"parent/33\",[4,1.224]],[\"name/34\",[35,62.404]],[\"parent/34\",[4,1.224]],[\"name/35\",[36,62.404]],[\"parent/35\",[4,1.224]],[\"name/36\",[37,62.404]],[\"parent/36\",[4,1.224]],[\"name/37\",[38,62.404]],[\"parent/37\",[4,1.224]],[\"name/38\",[39,62.404]],[\"parent/38\",[4,1.224]],[\"name/39\",[40,62.404]],[\"parent/39\",[4,1.224]],[\"name/40\",[41,62.404]],[\"parent/40\",[4,1.224]],[\"name/41\",[42,62.404]],[\"parent/41\",[4,1.224]],[\"name/42\",[43,62.404]],[\"parent/42\",[4,1.224]],[\"name/43\",[44,62.404]],[\"parent/43\",[4,1.224]],[\"name/44\",[45,62.404]],[\"parent/44\",[4,1.224]],[\"name/45\",[46,62.404]],[\"parent/45\",[4,1.224]],[\"name/46\",[47,62.404]],[\"parent/46\",[4,1.224]],[\"name/47\",[48,62.404]],[\"parent/47\",[4,1.224]],[\"name/48\",[49,62.404]],[\"parent/48\",[4,1.224]],[\"name/49\",[50,62.404]],[\"parent/49\",[4,1.224]],[\"name/50\",[51,62.404]],[\"parent/50\",[4,1.224]],[\"name/51\",[52,62.404]],[\"parent/51\",[4,1.224]],[\"name/52\",[53,62.404]],[\"parent/52\",[4,1.224]],[\"name/53\",[54,62.404]],[\"parent/53\",[4,1.224]],[\"name/54\",[55,62.404]],[\"parent/54\",[4,1.224]],[\"name/55\",[56,62.404]],[\"parent/55\",[4,1.224]],[\"name/56\",[57,62.404]],[\"parent/56\",[4,1.224]],[\"name/57\",[58,62.404]],[\"parent/57\",[4,1.224]],[\"name/58\",[59,62.404]],[\"parent/58\",[4,1.224]],[\"name/59\",[60,62.404]],[\"parent/59\",[4,1.224]],[\"name/60\",[61,62.404]],[\"parent/60\",[4,1.224]],[\"name/61\",[62,62.404]],[\"parent/61\",[4,1.224]],[\"name/62\",[63,62.404]],[\"parent/62\",[4,1.224]],[\"name/63\",[64,62.404]],[\"parent/63\",[4,1.224]],[\"name/64\",[65,62.404]],[\"parent/64\",[4,1.224]],[\"name/65\",[66,62.404]],[\"parent/65\",[4,1.224]],[\"name/66\",[67,62.404]],[\"parent/66\",[4,1.224]],[\"name/67\",[68,62.404]],[\"parent/67\",[4,1.224]],[\"name/68\",[69,62.404]],[\"parent/68\",[4,1.224]],[\"name/69\",[70,62.404]],[\"parent/69\",[4,1.224]],[\"name/70\",[71,62.404]],[\"parent/70\",[4,1.224]],[\"name/71\",[72,62.404]],[\"parent/71\",[4,1.224]],[\"name/72\",[73,62.404]],[\"parent/72\",[4,1.224]],[\"name/73\",[74,62.404]],[\"parent/73\",[4,1.224]],[\"name/74\",[75,62.404]],[\"parent/74\",[4,1.224]],[\"name/75\",[76,62.404]],[\"parent/75\",[4,1.224]],[\"name/76\",[77,62.404]],[\"parent/76\",[4,1.224]],[\"name/77\",[78,62.404]],[\"parent/77\",[4,1.224]],[\"name/78\",[79,62.404]],[\"parent/78\",[4,1.224]],[\"name/79\",[80,62.404]],[\"parent/79\",[4,1.224]],[\"name/80\",[81,62.404]],[\"parent/80\",[4,1.224]],[\"name/81\",[82,62.404]],[\"parent/81\",[4,1.224]],[\"name/82\",[83,43.394]],[\"parent/82\",[4,1.224]],[\"name/83\",[84,62.404]],[\"parent/83\",[4,1.224]],[\"name/84\",[85,47.302]],[\"parent/84\",[4,1.224]],[\"name/85\",[86,62.404]],[\"parent/85\",[4,1.224]],[\"name/86\",[87,62.404]],[\"parent/86\",[4,1.224]],[\"name/87\",[88,62.404]],[\"parent/87\",[4,1.224]],[\"name/88\",[89,62.404]],[\"parent/88\",[4,1.224]],[\"name/89\",[90,62.404]],[\"parent/89\",[4,1.224]],[\"name/90\",[91,62.404]],[\"parent/90\",[4,1.224]],[\"name/91\",[92,62.404]],[\"parent/91\",[4,1.224]],[\"name/92\",[93,62.404]],[\"parent/92\",[4,1.224]],[\"name/93\",[94,62.404]],[\"parent/93\",[4,1.224]],[\"name/94\",[95,62.404]],[\"parent/94\",[4,1.224]],[\"name/95\",[96,57.143]],[\"parent/95\",[4,1.224]],[\"name/96\",[97,57.143]],[\"parent/96\",[4,1.224]],[\"name/97\",[98,57.143]],[\"parent/97\",[4,1.224]],[\"name/98\",[99,57.143]],[\"parent/98\",[4,1.224]],[\"name/99\",[100,57.143]],[\"parent/99\",[4,1.224]],[\"name/100\",[101,57.143]],[\"parent/100\",[4,1.224]],[\"name/101\",[102,57.143]],[\"parent/101\",[4,1.224]],[\"name/102\",[103,57.143]],[\"parent/102\",[4,1.224]],[\"name/103\",[104,57.143]],[\"parent/103\",[4,1.224]],[\"name/104\",[105,57.143]],[\"parent/104\",[4,1.224]],[\"name/105\",[106,62.404]],[\"parent/105\",[4,1.224]],[\"name/106\",[107,57.143]],[\"parent/106\",[4,1.224]],[\"name/107\",[108,62.404]],[\"parent/107\",[4,1.224]],[\"name/108\",[109,57.143]],[\"parent/108\",[4,1.224]],[\"name/109\",[110,62.404]],[\"parent/109\",[4,1.224]],[\"name/110\",[111,57.143]],[\"parent/110\",[4,1.224]],[\"name/111\",[112,62.404]],[\"parent/111\",[4,1.224]],[\"name/112\",[113,62.404]],[\"parent/112\",[4,1.224]],[\"name/113\",[114,62.404]],[\"parent/113\",[4,1.224]],[\"name/114\",[115,62.404]],[\"parent/114\",[4,1.224]],[\"name/115\",[116,62.404]],[\"parent/115\",[4,1.224]],[\"name/116\",[117,53.678]],[\"parent/116\",[4,1.224]],[\"name/117\",[118,62.404]],[\"parent/117\",[4,1.224]],[\"name/118\",[119,57.143]],[\"parent/118\",[4,1.224]],[\"name/119\",[120,62.404]],[\"parent/119\",[4,1.224]],[\"name/120\",[121,62.404]],[\"parent/120\",[4,1.224]],[\"name/121\",[122,62.404]],[\"parent/121\",[4,1.224]],[\"name/122\",[123,62.404]],[\"parent/122\",[4,1.224]],[\"name/123\",[124,62.404]],[\"parent/123\",[4,1.224]],[\"name/124\",[125,62.404]],[\"parent/124\",[4,1.224]],[\"name/125\",[126,62.404]],[\"parent/125\",[4,1.224]],[\"name/126\",[127,62.404]],[\"parent/126\",[4,1.224]],[\"name/127\",[128,62.404]],[\"parent/127\",[4,1.224]],[\"name/128\",[129,53.678]],[\"parent/128\",[4,1.224]],[\"name/129\",[130,62.404]],[\"parent/129\",[4,1.224]],[\"name/130\",[131,62.404]],[\"parent/130\",[4,1.224]],[\"name/131\",[132,62.404]],[\"parent/131\",[4,1.224]],[\"name/132\",[133,62.404]],[\"parent/132\",[4,1.224]],[\"name/133\",[134,62.404]],[\"parent/133\",[4,1.224]],[\"name/134\",[135,62.404]],[\"parent/134\",[4,1.224]],[\"name/135\",[136,62.404]],[\"parent/135\",[4,1.224]],[\"name/136\",[137,62.404]],[\"parent/136\",[4,1.224]],[\"name/137\",[138,62.404]],[\"parent/137\",[4,1.224]],[\"name/138\",[139,62.404]],[\"parent/138\",[4,1.224]],[\"name/139\",[140,62.404]],[\"parent/139\",[4,1.224]],[\"name/140\",[141,62.404]],[\"parent/140\",[4,1.224]],[\"name/141\",[142,62.404]],[\"parent/141\",[4,1.224]],[\"name/142\",[143,62.404]],[\"parent/142\",[4,1.224]],[\"name/143\",[144,62.404]],[\"parent/143\",[4,1.224]],[\"name/144\",[145,62.404]],[\"parent/144\",[4,1.224]],[\"name/145\",[146,62.404]],[\"parent/145\",[4,1.224]],[\"name/146\",[147,62.404]],[\"parent/146\",[4,1.224]],[\"name/147\",[148,62.404]],[\"parent/147\",[4,1.224]],[\"name/148\",[149,62.404]],[\"parent/148\",[4,1.224]],[\"name/149\",[150,62.404]],[\"parent/149\",[4,1.224]],[\"name/150\",[151,62.404]],[\"parent/150\",[4,1.224]],[\"name/151\",[152,62.404]],[\"parent/151\",[4,1.224]],[\"name/152\",[153,62.404]],[\"parent/152\",[4,1.224]],[\"name/153\",[154,62.404]],[\"parent/153\",[4,1.224]],[\"name/154\",[155,62.404]],[\"parent/154\",[4,1.224]],[\"name/155\",[156,62.404]],[\"parent/155\",[4,1.224]],[\"name/156\",[157,62.404]],[\"parent/156\",[4,1.224]],[\"name/157\",[158,62.404]],[\"parent/157\",[4,1.224]],[\"name/158\",[159,62.404]],[\"parent/158\",[4,1.224]],[\"name/159\",[160,62.404]],[\"parent/159\",[4,1.224]],[\"name/160\",[161,62.404]],[\"parent/160\",[4,1.224]],[\"name/161\",[162,62.404]],[\"parent/161\",[4,1.224]],[\"name/162\",[163,62.404]],[\"parent/162\",[4,1.224]],[\"name/163\",[164,53.678]],[\"parent/163\",[4,1.224]],[\"name/164\",[165,62.404]],[\"parent/164\",[4,1.224]],[\"name/165\",[166,62.404]],[\"parent/165\",[4,1.224]],[\"name/166\",[167,44.539]],[\"parent/166\",[4,1.224]],[\"name/167\",[168,62.404]],[\"parent/167\",[4,1.224]],[\"name/168\",[169,62.404]],[\"parent/168\",[4,1.224]],[\"name/169\",[170,62.404]],[\"parent/169\",[4,1.224]],[\"name/170\",[171,62.404]],[\"parent/170\",[4,1.224]],[\"name/171\",[172,62.404]],[\"parent/171\",[4,1.224]],[\"name/172\",[173,62.404]],[\"parent/172\",[4,1.224]],[\"name/173\",[174,62.404]],[\"parent/173\",[4,1.224]],[\"name/174\",[175,62.404]],[\"parent/174\",[4,1.224]],[\"name/175\",[176,62.404]],[\"parent/175\",[4,1.224]],[\"name/176\",[177,62.404]],[\"parent/176\",[4,1.224]],[\"name/177\",[178,62.404]],[\"parent/177\",[4,1.224]],[\"name/178\",[179,62.404]],[\"parent/178\",[4,1.224]],[\"name/179\",[180,62.404]],[\"parent/179\",[4,1.224]],[\"name/180\",[181,62.404]],[\"parent/180\",[4,1.224]],[\"name/181\",[182,62.404]],[\"parent/181\",[4,1.224]],[\"name/182\",[183,62.404]],[\"parent/182\",[4,1.224]],[\"name/183\",[184,62.404]],[\"parent/183\",[4,1.224]],[\"name/184\",[185,57.143]],[\"parent/184\",[4,1.224]],[\"name/185\",[186,57.143]],[\"parent/185\",[4,1.224]],[\"name/186\",[187,62.404]],[\"parent/186\",[0,3.011]],[\"name/187\",[188,57.143]],[\"parent/187\",[0,3.011]],[\"name/188\",[189,62.404]],[\"parent/188\",[0,3.011]],[\"name/189\",[190,62.404]],[\"parent/189\",[0,3.011]],[\"name/190\",[186,57.143]],[\"parent/190\",[0,3.011]],[\"name/191\",[191,42.363]],[\"parent/191\",[0,3.011]],[\"name/192\",[192,62.404]],[\"parent/192\",[0,3.011]],[\"name/193\",[193,62.404]],[\"parent/193\",[0,3.011]],[\"name/194\",[194,62.404]],[\"parent/194\",[0,3.011]],[\"name/195\",[195,57.143]],[\"parent/195\",[0,3.011]],[\"name/196\",[196,57.143]],[\"parent/196\",[0,3.011]],[\"name/197\",[197,57.143]],[\"parent/197\",[0,3.011]],[\"name/198\",[198,62.404]],[\"parent/198\",[0,3.011]],[\"name/199\",[199,62.404]],[\"parent/199\",[0,3.011]],[\"name/200\",[200,62.404]],[\"parent/200\",[0,3.011]],[\"name/201\",[201,62.404]],[\"parent/201\",[0,3.011]],[\"name/202\",[202,27.963]],[\"parent/202\",[]],[\"name/203\",[203,62.404]],[\"parent/203\",[202,2.654]],[\"name/204\",[204,62.404]],[\"parent/204\",[202,2.654]],[\"name/205\",[205,62.404]],[\"parent/205\",[202,2.654]],[\"name/206\",[206,25.031]],[\"parent/206\",[207,5.923]],[\"name/207\",[191,42.363]],[\"parent/207\",[208,4.119]],[\"name/208\",[209,43.394]],[\"parent/208\",[208,4.119]],[\"name/209\",[210,44.539]],[\"parent/209\",[208,4.119]],[\"name/210\",[167,44.539]],[\"parent/210\",[208,4.119]],[\"name/211\",[211,53.678]],[\"parent/211\",[208,4.119]],[\"name/212\",[212,62.404]],[\"parent/212\",[208,4.119]],[\"name/213\",[213,34.513]],[\"parent/213\",[208,4.119]],[\"name/214\",[214,62.404]],[\"parent/214\",[208,4.119]],[\"name/215\",[215,62.404]],[\"parent/215\",[208,4.119]],[\"name/216\",[216,62.404]],[\"parent/216\",[202,2.654]],[\"name/217\",[217,62.404]],[\"parent/217\",[202,2.654]],[\"name/218\",[206,25.031]],[\"parent/218\",[218,5.923]],[\"name/219\",[219,62.404]],[\"parent/219\",[220,5.424]],[\"name/220\",[221,62.404]],[\"parent/220\",[220,5.424]],[\"name/221\",[222,62.404]],[\"parent/221\",[202,2.654]],[\"name/222\",[223,62.404]],[\"parent/222\",[202,2.654]],[\"name/223\",[224,62.404]],[\"parent/223\",[202,2.654]],[\"name/224\",[225,62.404]],[\"parent/224\",[202,2.654]],[\"name/225\",[226,62.404]],[\"parent/225\",[202,2.654]],[\"name/226\",[206,25.031]],[\"parent/226\",[227,5.923]],[\"name/227\",[96,57.143]],[\"parent/227\",[228,2.654]],[\"name/228\",[229,57.143]],[\"parent/228\",[228,2.654]],[\"name/229\",[230,57.143]],[\"parent/229\",[228,2.654]],[\"name/230\",[117,53.678]],[\"parent/230\",[228,2.654]],[\"name/231\",[119,57.143]],[\"parent/231\",[228,2.654]],[\"name/232\",[210,44.539]],[\"parent/232\",[228,2.654]],[\"name/233\",[85,47.302]],[\"parent/233\",[228,2.654]],[\"name/234\",[231,57.143]],[\"parent/234\",[228,2.654]],[\"name/235\",[211,53.678]],[\"parent/235\",[228,2.654]],[\"name/236\",[164,53.678]],[\"parent/236\",[228,2.654]],[\"name/237\",[232,62.404]],[\"parent/237\",[228,2.654]],[\"name/238\",[233,62.404]],[\"parent/238\",[228,2.654]],[\"name/239\",[234,57.143]],[\"parent/239\",[228,2.654]],[\"name/240\",[235,57.143]],[\"parent/240\",[228,2.654]],[\"name/241\",[129,53.678]],[\"parent/241\",[228,2.654]],[\"name/242\",[236,62.404]],[\"parent/242\",[228,2.654]],[\"name/243\",[97,57.143]],[\"parent/243\",[228,2.654]],[\"name/244\",[237,62.404]],[\"parent/244\",[228,2.654]],[\"name/245\",[238,62.404]],[\"parent/245\",[228,2.654]],[\"name/246\",[107,57.143]],[\"parent/246\",[228,2.654]],[\"name/247\",[239,62.404]],[\"parent/247\",[228,2.654]],[\"name/248\",[240,62.404]],[\"parent/248\",[228,2.654]],[\"name/249\",[241,62.404]],[\"parent/249\",[228,2.654]],[\"name/250\",[242,62.404]],[\"parent/250\",[228,2.654]],[\"name/251\",[243,62.404]],[\"parent/251\",[228,2.654]],[\"name/252\",[98,57.143]],[\"parent/252\",[228,2.654]],[\"name/253\",[99,57.143]],[\"parent/253\",[228,2.654]],[\"name/254\",[100,57.143]],[\"parent/254\",[228,2.654]],[\"name/255\",[101,57.143]],[\"parent/255\",[228,2.654]],[\"name/256\",[102,57.143]],[\"parent/256\",[228,2.654]],[\"name/257\",[103,57.143]],[\"parent/257\",[228,2.654]],[\"name/258\",[104,57.143]],[\"parent/258\",[228,2.654]],[\"name/259\",[105,57.143]],[\"parent/259\",[228,2.654]],[\"name/260\",[109,57.143]],[\"parent/260\",[228,2.654]],[\"name/261\",[244,62.404]],[\"parent/261\",[228,2.654]],[\"name/262\",[185,57.143]],[\"parent/262\",[228,2.654]],[\"name/263\",[245,62.404]],[\"parent/263\",[228,2.654]],[\"name/264\",[246,62.404]],[\"parent/264\",[228,2.654]],[\"name/265\",[247,62.404]],[\"parent/265\",[228,2.654]],[\"name/266\",[248,62.404]],[\"parent/266\",[228,2.654]],[\"name/267\",[249,62.404]],[\"parent/267\",[228,2.654]],[\"name/268\",[250,62.404]],[\"parent/268\",[228,2.654]],[\"name/269\",[251,62.404]],[\"parent/269\",[202,2.654]],[\"name/270\",[206,25.031]],[\"parent/270\",[252,5.923]],[\"name/271\",[191,42.363]],[\"parent/271\",[253,4.849]],[\"name/272\",[210,44.539]],[\"parent/272\",[253,4.849]],[\"name/273\",[209,43.394]],[\"parent/273\",[253,4.849]],[\"name/274\",[229,57.143]],[\"parent/274\",[253,4.849]],[\"name/275\",[254,62.404]],[\"parent/275\",[202,2.654]],[\"name/276\",[206,25.031]],[\"parent/276\",[255,5.923]],[\"name/277\",[210,44.539]],[\"parent/277\",[256,3.851]],[\"name/278\",[83,43.394]],[\"parent/278\",[256,3.851]],[\"name/279\",[85,47.302]],[\"parent/279\",[256,3.851]],[\"name/280\",[231,57.143]],[\"parent/280\",[256,3.851]],[\"name/281\",[230,57.143]],[\"parent/281\",[256,3.851]],[\"name/282\",[211,53.678]],[\"parent/282\",[256,3.851]],[\"name/283\",[257,62.404]],[\"parent/283\",[256,3.851]],[\"name/284\",[258,62.404]],[\"parent/284\",[256,3.851]],[\"name/285\",[259,62.404]],[\"parent/285\",[256,3.851]],[\"name/286\",[234,57.143]],[\"parent/286\",[256,3.851]],[\"name/287\",[235,57.143]],[\"parent/287\",[256,3.851]],[\"name/288\",[260,62.404]],[\"parent/288\",[256,3.851]],[\"name/289\",[261,62.404]],[\"parent/289\",[202,2.654]],[\"name/290\",[262,62.404]],[\"parent/290\",[202,2.654]],[\"name/291\",[206,25.031]],[\"parent/291\",[263,5.923]],[\"name/292\",[209,43.394]],[\"parent/292\",[264,4.35]],[\"name/293\",[265,57.143]],[\"parent/293\",[264,4.35]],[\"name/294\",[213,34.513]],[\"parent/294\",[264,4.35]],[\"name/295\",[266,62.404]],[\"parent/295\",[264,4.35]],[\"name/296\",[267,62.404]],[\"parent/296\",[264,4.35]],[\"name/297\",[268,62.404]],[\"parent/297\",[264,4.35]],[\"name/298\",[269,62.404]],[\"parent/298\",[264,4.35]],[\"name/299\",[270,62.404]],[\"parent/299\",[202,2.654]],[\"name/300\",[206,25.031]],[\"parent/300\",[271,5.923]],[\"name/301\",[191,42.363]],[\"parent/301\",[272,4.228]],[\"name/302\",[265,57.143]],[\"parent/302\",[272,4.228]],[\"name/303\",[273,41.426]],[\"parent/303\",[272,4.228]],[\"name/304\",[274,40.567]],[\"parent/304\",[272,4.228]],[\"name/305\",[210,44.539]],[\"parent/305\",[272,4.228]],[\"name/306\",[83,43.394]],[\"parent/306\",[272,4.228]],[\"name/307\",[275,57.143]],[\"parent/307\",[272,4.228]],[\"name/308\",[276,57.143]],[\"parent/308\",[272,4.228]],[\"name/309\",[277,62.404]],[\"parent/309\",[202,2.654]],[\"name/310\",[206,25.031]],[\"parent/310\",[278,5.923]],[\"name/311\",[279,62.404]],[\"parent/311\",[280,5.424]],[\"name/312\",[281,62.404]],[\"parent/312\",[280,5.424]],[\"name/313\",[282,62.404]],[\"parent/313\",[202,2.654]],[\"name/314\",[283,62.404]],[\"parent/314\",[202,2.654]],[\"name/315\",[284,62.404]],[\"parent/315\",[202,2.654]],[\"name/316\",[285,62.404]],[\"parent/316\",[202,2.654]],[\"name/317\",[206,25.031]],[\"parent/317\",[286,5.923]],[\"name/318\",[287,62.404]],[\"parent/318\",[288,3.851]],[\"name/319\",[289,62.404]],[\"parent/319\",[288,3.851]],[\"name/320\",[290,57.143]],[\"parent/320\",[288,3.851]],[\"name/321\",[291,62.404]],[\"parent/321\",[288,3.851]],[\"name/322\",[292,62.404]],[\"parent/322\",[288,3.851]],[\"name/323\",[293,62.404]],[\"parent/323\",[288,3.851]],[\"name/324\",[294,62.404]],[\"parent/324\",[288,3.851]],[\"name/325\",[295,62.404]],[\"parent/325\",[288,3.851]],[\"name/326\",[296,62.404]],[\"parent/326\",[288,3.851]],[\"name/327\",[83,43.394]],[\"parent/327\",[288,3.851]],[\"name/328\",[297,62.404]],[\"parent/328\",[288,3.851]],[\"name/329\",[206,25.031]],[\"parent/329\",[288,3.851]],[\"name/330\",[210,44.539]],[\"parent/330\",[298,5.424]],[\"name/331\",[274,40.567]],[\"parent/331\",[298,5.424]],[\"name/332\",[299,62.404]],[\"parent/332\",[202,2.654]],[\"name/333\",[206,25.031]],[\"parent/333\",[300,5.923]],[\"name/334\",[273,41.426]],[\"parent/334\",[301,5.095]],[\"name/335\",[274,40.567]],[\"parent/335\",[301,5.095]],[\"name/336\",[210,44.539]],[\"parent/336\",[301,5.095]],[\"name/337\",[302,62.404]],[\"parent/337\",[202,2.654]],[\"name/338\",[303,62.404]],[\"parent/338\",[202,2.654]],[\"name/339\",[304,62.404]],[\"parent/339\",[202,2.654]],[\"name/340\",[305,62.404]],[\"parent/340\",[202,2.654]],[\"name/341\",[206,25.031]],[\"parent/341\",[306,5.923]],[\"name/342\",[83,43.394]],[\"parent/342\",[307,3.579]],[\"name/343\",[308,62.404]],[\"parent/343\",[307,3.579]],[\"name/344\",[309,57.143]],[\"parent/344\",[307,3.579]],[\"name/345\",[310,62.404]],[\"parent/345\",[307,3.579]],[\"name/346\",[311,62.404]],[\"parent/346\",[307,3.579]],[\"name/347\",[312,62.404]],[\"parent/347\",[307,3.579]],[\"name/348\",[313,62.404]],[\"parent/348\",[307,3.579]],[\"name/349\",[314,62.404]],[\"parent/349\",[307,3.579]],[\"name/350\",[315,62.404]],[\"parent/350\",[307,3.579]],[\"name/351\",[316,62.404]],[\"parent/351\",[307,3.579]],[\"name/352\",[317,62.404]],[\"parent/352\",[307,3.579]],[\"name/353\",[318,62.404]],[\"parent/353\",[307,3.579]],[\"name/354\",[319,62.404]],[\"parent/354\",[307,3.579]],[\"name/355\",[320,62.404]],[\"parent/355\",[307,3.579]],[\"name/356\",[167,44.539]],[\"parent/356\",[307,3.579]],[\"name/357\",[321,62.404]],[\"parent/357\",[307,3.579]],[\"name/358\",[322,62.404]],[\"parent/358\",[202,2.654]],[\"name/359\",[323,62.404]],[\"parent/359\",[202,2.654]],[\"name/360\",[324,62.404]],[\"parent/360\",[202,2.654]],[\"name/361\",[325,62.404]],[\"parent/361\",[202,2.654]],[\"name/362\",[206,25.031]],[\"parent/362\",[326,5.923]],[\"name/363\",[327,62.404]],[\"parent/363\",[328,4.35]],[\"name/364\",[329,62.404]],[\"parent/364\",[328,4.35]],[\"name/365\",[330,62.404]],[\"parent/365\",[328,4.35]],[\"name/366\",[83,43.394]],[\"parent/366\",[328,4.35]],[\"name/367\",[164,53.678]],[\"parent/367\",[328,4.35]],[\"name/368\",[331,62.404]],[\"parent/368\",[328,4.35]],[\"name/369\",[85,47.302]],[\"parent/369\",[328,4.35]],[\"name/370\",[332,62.404]],[\"parent/370\",[202,2.654]],[\"name/371\",[206,25.031]],[\"parent/371\",[333,5.923]],[\"name/372\",[210,44.539]],[\"parent/372\",[334,5.095]],[\"name/373\",[275,57.143]],[\"parent/373\",[334,5.095]],[\"name/374\",[276,57.143]],[\"parent/374\",[334,5.095]],[\"name/375\",[335,62.404]],[\"parent/375\",[202,2.654]],[\"name/376\",[206,25.031]],[\"parent/376\",[336,5.923]],[\"name/377\",[337,62.404]],[\"parent/377\",[202,2.654]],[\"name/378\",[206,25.031]],[\"parent/378\",[338,5.923]],[\"name/379\",[339,62.404]],[\"parent/379\",[340,4.228]],[\"name/380\",[83,43.394]],[\"parent/380\",[340,4.228]],[\"name/381\",[111,57.143]],[\"parent/381\",[340,4.228]],[\"name/382\",[341,62.404]],[\"parent/382\",[340,4.228]],[\"name/383\",[342,62.404]],[\"parent/383\",[340,4.228]],[\"name/384\",[129,53.678]],[\"parent/384\",[340,4.228]],[\"name/385\",[343,62.404]],[\"parent/385\",[340,4.228]],[\"name/386\",[344,62.404]],[\"parent/386\",[340,4.228]],[\"name/387\",[345,62.404]],[\"parent/387\",[202,2.654]],[\"name/388\",[206,25.031]],[\"parent/388\",[346,5.923]],[\"name/389\",[347,57.143]],[\"parent/389\",[348,5.923]],[\"name/390\",[349,62.404]],[\"parent/390\",[202,2.654]],[\"name/391\",[350,62.404]],[\"parent/391\",[202,2.654]],[\"name/392\",[351,62.404]],[\"parent/392\",[202,2.654]],[\"name/393\",[352,62.404]],[\"parent/393\",[202,2.654]],[\"name/394\",[206,25.031]],[\"parent/394\",[353,5.923]],[\"name/395\",[354,62.404]],[\"parent/395\",[202,2.654]],[\"name/396\",[206,25.031]],[\"parent/396\",[355,5.923]],[\"name/397\",[85,47.302]],[\"parent/397\",[356,5.923]],[\"name/398\",[357,62.404]],[\"parent/398\",[202,2.654]],[\"name/399\",[358,62.404]],[\"parent/399\",[202,2.654]],[\"name/400\",[206,25.031]],[\"parent/400\",[359,5.923]],[\"name/401\",[360,62.404]],[\"parent/401\",[361,5.095]],[\"name/402\",[83,43.394]],[\"parent/402\",[361,5.095]],[\"name/403\",[85,47.302]],[\"parent/403\",[361,5.095]],[\"name/404\",[362,34.982]],[\"parent/404\",[]],[\"name/405\",[363,62.404]],[\"parent/405\",[362,3.32]],[\"name/406\",[364,62.404]],[\"parent/406\",[362,3.32]],[\"name/407\",[365,62.404]],[\"parent/407\",[362,3.32]],[\"name/408\",[366,62.404]],[\"parent/408\",[362,3.32]],[\"name/409\",[367,62.404]],[\"parent/409\",[362,3.32]],[\"name/410\",[368,62.404]],[\"parent/410\",[362,3.32]],[\"name/411\",[369,62.404]],[\"parent/411\",[362,3.32]],[\"name/412\",[370,62.404]],[\"parent/412\",[362,3.32]],[\"name/413\",[371,62.404]],[\"parent/413\",[362,3.32]],[\"name/414\",[372,62.404]],[\"parent/414\",[362,3.32]],[\"name/415\",[373,62.404]],[\"parent/415\",[362,3.32]],[\"name/416\",[374,62.404]],[\"parent/416\",[362,3.32]],[\"name/417\",[375,62.404]],[\"parent/417\",[362,3.32]],[\"name/418\",[376,62.404]],[\"parent/418\",[362,3.32]],[\"name/419\",[377,62.404]],[\"parent/419\",[362,3.32]],[\"name/420\",[378,62.404]],[\"parent/420\",[362,3.32]],[\"name/421\",[379,62.404]],[\"parent/421\",[362,3.32]],[\"name/422\",[196,57.143]],[\"parent/422\",[362,3.32]],[\"name/423\",[195,57.143]],[\"parent/423\",[362,3.32]],[\"name/424\",[197,57.143]],[\"parent/424\",[362,3.32]],[\"name/425\",[380,53.678]],[\"parent/425\",[]],[\"name/426\",[381,62.404]],[\"parent/426\",[380,5.095]],[\"name/427\",[206,25.031]],[\"parent/427\",[382,4.653]],[\"name/428\",[3,57.143]],[\"parent/428\",[382,4.653]],[\"name/429\",[383,62.404]],[\"parent/429\",[382,4.653]],[\"name/430\",[384,62.404]],[\"parent/430\",[382,4.653]],[\"name/431\",[347,57.143]],[\"parent/431\",[382,4.653]],[\"name/432\",[385,39.039]],[\"parent/432\",[]],[\"name/433\",[386,57.143]],[\"parent/433\",[385,3.706]],[\"name/434\",[387,57.143]],[\"parent/434\",[385,3.706]],[\"name/435\",[388,57.143]],[\"parent/435\",[385,3.706]],[\"name/436\",[389,62.404]],[\"parent/436\",[385,3.706]],[\"name/437\",[390,57.143]],[\"parent/437\",[385,3.706]],[\"name/438\",[391,57.143]],[\"parent/438\",[385,3.706]],[\"name/439\",[392,57.143]],[\"parent/439\",[385,3.706]],[\"name/440\",[393,57.143]],[\"parent/440\",[385,3.706]],[\"name/441\",[394,62.404]],[\"parent/441\",[385,3.706]],[\"name/442\",[395,62.404]],[\"parent/442\",[385,3.706]],[\"name/443\",[396,62.404]],[\"parent/443\",[385,3.706]],[\"name/444\",[397,62.404]],[\"parent/444\",[385,3.706]],[\"name/445\",[398,62.404]],[\"parent/445\",[385,3.706]],[\"name/446\",[399,51.089]],[\"parent/446\",[]],[\"name/447\",[399,51.089]],[\"parent/447\",[399,4.849]],[\"name/448\",[399,51.089]],[\"parent/448\",[0,3.011]],[\"name/449\",[386,57.143]],[\"parent/449\",[0,3.011]],[\"name/450\",[387,57.143]],[\"parent/450\",[0,3.011]],[\"name/451\",[388,57.143]],[\"parent/451\",[0,3.011]],[\"name/452\",[392,57.143]],[\"parent/452\",[0,3.011]],[\"name/453\",[390,57.143]],[\"parent/453\",[0,3.011]],[\"name/454\",[393,57.143]],[\"parent/454\",[0,3.011]],[\"name/455\",[391,57.143]],[\"parent/455\",[0,3.011]],[\"name/456\",[400,62.404]],[\"parent/456\",[0,3.011]],[\"name/457\",[401,53.678]],[\"parent/457\",[0,3.011]],[\"name/458\",[401,53.678]],[\"parent/458\",[202,2.654]],[\"name/459\",[402,62.404]],[\"parent/459\",[403,2.701]],[\"name/460\",[404,62.404]],[\"parent/460\",[403,2.701]],[\"name/461\",[206,25.031]],[\"parent/461\",[405,5.923]],[\"name/462\",[273,41.426]],[\"parent/462\",[406,5.424]],[\"name/463\",[274,40.567]],[\"parent/463\",[406,5.424]],[\"name/464\",[407,62.404]],[\"parent/464\",[403,2.701]],[\"name/465\",[206,25.031]],[\"parent/465\",[408,5.923]],[\"name/466\",[409,53.678]],[\"parent/466\",[410,5.923]],[\"name/467\",[411,62.404]],[\"parent/467\",[403,2.701]],[\"name/468\",[206,25.031]],[\"parent/468\",[412,5.923]],[\"name/469\",[409,53.678]],[\"parent/469\",[413,5.424]],[\"name/470\",[414,62.404]],[\"parent/470\",[413,5.424]],[\"name/471\",[415,62.404]],[\"parent/471\",[403,2.701]],[\"name/472\",[206,25.031]],[\"parent/472\",[416,5.923]],[\"name/473\",[409,53.678]],[\"parent/473\",[417,5.923]],[\"name/474\",[418,62.404]],[\"parent/474\",[403,2.701]],[\"name/475\",[206,25.031]],[\"parent/475\",[419,5.923]],[\"name/476\",[273,41.426]],[\"parent/476\",[420,5.424]],[\"name/477\",[274,40.567]],[\"parent/477\",[420,5.424]],[\"name/478\",[421,62.404]],[\"parent/478\",[403,2.701]],[\"name/479\",[206,25.031]],[\"parent/479\",[422,5.923]],[\"name/480\",[273,41.426]],[\"parent/480\",[423,5.424]],[\"name/481\",[274,40.567]],[\"parent/481\",[423,5.424]],[\"name/482\",[424,62.404]],[\"parent/482\",[403,2.701]],[\"name/483\",[206,25.031]],[\"parent/483\",[425,5.923]],[\"name/484\",[273,41.426]],[\"parent/484\",[426,5.424]],[\"name/485\",[274,40.567]],[\"parent/485\",[426,5.424]],[\"name/486\",[427,62.404]],[\"parent/486\",[403,2.701]],[\"name/487\",[206,25.031]],[\"parent/487\",[428,5.923]],[\"name/488\",[273,41.426]],[\"parent/488\",[429,5.424]],[\"name/489\",[274,40.567]],[\"parent/489\",[429,5.424]],[\"name/490\",[430,62.404]],[\"parent/490\",[403,2.701]],[\"name/491\",[206,25.031]],[\"parent/491\",[431,5.923]],[\"name/492\",[273,41.426]],[\"parent/492\",[432,5.424]],[\"name/493\",[274,40.567]],[\"parent/493\",[432,5.424]],[\"name/494\",[433,62.404]],[\"parent/494\",[403,2.701]],[\"name/495\",[206,25.031]],[\"parent/495\",[434,5.923]],[\"name/496\",[273,41.426]],[\"parent/496\",[435,5.424]],[\"name/497\",[274,40.567]],[\"parent/497\",[435,5.424]],[\"name/498\",[436,62.404]],[\"parent/498\",[403,2.701]],[\"name/499\",[206,25.031]],[\"parent/499\",[437,5.923]],[\"name/500\",[273,41.426]],[\"parent/500\",[438,5.424]],[\"name/501\",[274,40.567]],[\"parent/501\",[438,5.424]],[\"name/502\",[439,62.404]],[\"parent/502\",[403,2.701]],[\"name/503\",[206,25.031]],[\"parent/503\",[440,5.923]],[\"name/504\",[273,41.426]],[\"parent/504\",[441,5.424]],[\"name/505\",[274,40.567]],[\"parent/505\",[441,5.424]],[\"name/506\",[442,62.404]],[\"parent/506\",[403,2.701]],[\"name/507\",[206,25.031]],[\"parent/507\",[443,5.923]],[\"name/508\",[213,34.513]],[\"parent/508\",[444,4.849]],[\"name/509\",[191,42.363]],[\"parent/509\",[444,4.849]],[\"name/510\",[209,43.394]],[\"parent/510\",[444,4.849]],[\"name/511\",[445,35.472]],[\"parent/511\",[444,4.849]],[\"name/512\",[446,62.404]],[\"parent/512\",[403,2.701]],[\"name/513\",[206,25.031]],[\"parent/513\",[447,5.923]],[\"name/514\",[213,34.513]],[\"parent/514\",[448,4.653]],[\"name/515\",[191,42.363]],[\"parent/515\",[448,4.653]],[\"name/516\",[209,43.394]],[\"parent/516\",[448,4.653]],[\"name/517\",[167,44.539]],[\"parent/517\",[448,4.653]],[\"name/518\",[445,35.472]],[\"parent/518\",[448,4.653]],[\"name/519\",[449,62.404]],[\"parent/519\",[403,2.701]],[\"name/520\",[206,25.031]],[\"parent/520\",[450,5.923]],[\"name/521\",[213,34.513]],[\"parent/521\",[451,5.095]],[\"name/522\",[167,44.539]],[\"parent/522\",[451,5.095]],[\"name/523\",[445,35.472]],[\"parent/523\",[451,5.095]],[\"name/524\",[452,62.404]],[\"parent/524\",[403,2.701]],[\"name/525\",[206,25.031]],[\"parent/525\",[453,5.923]],[\"name/526\",[213,34.513]],[\"parent/526\",[454,5.424]],[\"name/527\",[445,35.472]],[\"parent/527\",[454,5.424]],[\"name/528\",[455,62.404]],[\"parent/528\",[403,2.701]],[\"name/529\",[206,25.031]],[\"parent/529\",[456,5.923]],[\"name/530\",[213,34.513]],[\"parent/530\",[457,5.424]],[\"name/531\",[445,35.472]],[\"parent/531\",[457,5.424]],[\"name/532\",[458,62.404]],[\"parent/532\",[403,2.701]],[\"name/533\",[206,25.031]],[\"parent/533\",[459,5.923]],[\"name/534\",[213,34.513]],[\"parent/534\",[460,5.424]],[\"name/535\",[445,35.472]],[\"parent/535\",[460,5.424]],[\"name/536\",[461,62.404]],[\"parent/536\",[403,2.701]],[\"name/537\",[206,25.031]],[\"parent/537\",[462,5.923]],[\"name/538\",[213,34.513]],[\"parent/538\",[463,5.424]],[\"name/539\",[445,35.472]],[\"parent/539\",[463,5.424]],[\"name/540\",[464,62.404]],[\"parent/540\",[403,2.701]],[\"name/541\",[206,25.031]],[\"parent/541\",[465,5.923]],[\"name/542\",[213,34.513]],[\"parent/542\",[466,5.424]],[\"name/543\",[445,35.472]],[\"parent/543\",[466,5.424]],[\"name/544\",[467,62.404]],[\"parent/544\",[403,2.701]],[\"name/545\",[206,25.031]],[\"parent/545\",[468,5.923]],[\"name/546\",[213,34.513]],[\"parent/546\",[469,5.095]],[\"name/547\",[209,43.394]],[\"parent/547\",[469,5.095]],[\"name/548\",[445,35.472]],[\"parent/548\",[469,5.095]],[\"name/549\",[470,62.404]],[\"parent/549\",[403,2.701]],[\"name/550\",[206,25.031]],[\"parent/550\",[471,5.923]],[\"name/551\",[213,34.513]],[\"parent/551\",[472,5.095]],[\"name/552\",[191,42.363]],[\"parent/552\",[472,5.095]],[\"name/553\",[445,35.472]],[\"parent/553\",[472,5.095]],[\"name/554\",[473,62.404]],[\"parent/554\",[403,2.701]],[\"name/555\",[206,25.031]],[\"parent/555\",[474,5.923]],[\"name/556\",[213,34.513]],[\"parent/556\",[475,4.849]],[\"name/557\",[191,42.363]],[\"parent/557\",[475,4.849]],[\"name/558\",[209,43.394]],[\"parent/558\",[475,4.849]],[\"name/559\",[445,35.472]],[\"parent/559\",[475,4.849]],[\"name/560\",[476,62.404]],[\"parent/560\",[403,2.701]],[\"name/561\",[206,25.031]],[\"parent/561\",[477,5.923]],[\"name/562\",[213,34.513]],[\"parent/562\",[478,4.653]],[\"name/563\",[191,42.363]],[\"parent/563\",[478,4.653]],[\"name/564\",[209,43.394]],[\"parent/564\",[478,4.653]],[\"name/565\",[167,44.539]],[\"parent/565\",[478,4.653]],[\"name/566\",[445,35.472]],[\"parent/566\",[478,4.653]],[\"name/567\",[479,62.404]],[\"parent/567\",[403,2.701]],[\"name/568\",[206,25.031]],[\"parent/568\",[480,5.923]],[\"name/569\",[213,34.513]],[\"parent/569\",[481,5.095]],[\"name/570\",[167,44.539]],[\"parent/570\",[481,5.095]],[\"name/571\",[445,35.472]],[\"parent/571\",[481,5.095]],[\"name/572\",[482,62.404]],[\"parent/572\",[403,2.701]],[\"name/573\",[206,25.031]],[\"parent/573\",[483,5.923]],[\"name/574\",[213,34.513]],[\"parent/574\",[484,5.424]],[\"name/575\",[445,35.472]],[\"parent/575\",[484,5.424]],[\"name/576\",[485,62.404]],[\"parent/576\",[403,2.701]],[\"name/577\",[206,25.031]],[\"parent/577\",[486,5.923]],[\"name/578\",[213,34.513]],[\"parent/578\",[487,5.424]],[\"name/579\",[445,35.472]],[\"parent/579\",[487,5.424]],[\"name/580\",[488,62.404]],[\"parent/580\",[403,2.701]],[\"name/581\",[206,25.031]],[\"parent/581\",[489,5.923]],[\"name/582\",[213,34.513]],[\"parent/582\",[490,5.424]],[\"name/583\",[445,35.472]],[\"parent/583\",[490,5.424]],[\"name/584\",[491,62.404]],[\"parent/584\",[403,2.701]],[\"name/585\",[206,25.031]],[\"parent/585\",[492,5.923]],[\"name/586\",[213,34.513]],[\"parent/586\",[493,5.424]],[\"name/587\",[445,35.472]],[\"parent/587\",[493,5.424]],[\"name/588\",[494,62.404]],[\"parent/588\",[403,2.701]],[\"name/589\",[206,25.031]],[\"parent/589\",[495,5.923]],[\"name/590\",[213,34.513]],[\"parent/590\",[496,5.424]],[\"name/591\",[445,35.472]],[\"parent/591\",[496,5.424]],[\"name/592\",[497,62.404]],[\"parent/592\",[403,2.701]],[\"name/593\",[206,25.031]],[\"parent/593\",[498,5.923]],[\"name/594\",[213,34.513]],[\"parent/594\",[499,5.095]],[\"name/595\",[209,43.394]],[\"parent/595\",[499,5.095]],[\"name/596\",[445,35.472]],[\"parent/596\",[499,5.095]],[\"name/597\",[500,62.404]],[\"parent/597\",[403,2.701]],[\"name/598\",[206,25.031]],[\"parent/598\",[501,5.923]],[\"name/599\",[213,34.513]],[\"parent/599\",[502,5.095]],[\"name/600\",[191,42.363]],[\"parent/600\",[502,5.095]],[\"name/601\",[445,35.472]],[\"parent/601\",[502,5.095]],[\"name/602\",[503,62.404]],[\"parent/602\",[403,2.701]],[\"name/603\",[504,62.404]],[\"parent/603\",[403,2.701]],[\"name/604\",[505,62.404]],[\"parent/604\",[403,2.701]],[\"name/605\",[506,62.404]],[\"parent/605\",[403,2.701]],[\"name/606\",[507,62.404]],[\"parent/606\",[403,2.701]],[\"name/607\",[206,25.031]],[\"parent/607\",[508,5.923]],[\"name/608\",[509,62.404]],[\"parent/608\",[403,2.701]],[\"name/609\",[206,25.031]],[\"parent/609\",[510,5.923]],[\"name/610\",[511,62.404]],[\"parent/610\",[403,2.701]],[\"name/611\",[206,25.031]],[\"parent/611\",[512,5.923]],[\"name/612\",[401,53.678]],[\"parent/612\",[380,5.095]],[\"name/613\",[83,16.913,513,12.503,514,24.323,515,24.323,516,22.272]],[\"parent/613\",[]],[\"name/614\",[309,26.282,513,14.754,517,28.702,518,28.702]],[\"parent/614\",[]],[\"name/615\",[513,17.993,519,35.003,520,32.052]],[\"parent/615\",[]],[\"name/616\",[513,17.993,520,32.052,521,35.003]],[\"parent/616\",[]],[\"name/617\",[513,17.993,516,32.052,522,35.003]],[\"parent/617\",[]],[\"name/618\",[513,23.055,523,44.85]],[\"parent/618\",[]],[\"name/619\",[513,23.055,524,44.85]],[\"parent/619\",[]],[\"name/620\",[513,23.055,525,44.85]],[\"parent/620\",[]],[\"name/621\",[513,23.055,526,41.068]],[\"parent/621\",[]],[\"name/622\",[513,23.055,526,41.068]],[\"parent/622\",[]],[\"name/623\",[513,23.055,527,44.85]],[\"parent/623\",[]],[\"name/624\",[513,17.993,528,35.003,529,35.003]],[\"parent/624\",[]],[\"name/625\",[513,17.993,530,35.003,531,35.003]],[\"parent/625\",[]],[\"name/626\",[513,23.055,532,44.85]],[\"parent/626\",[]],[\"name/627\",[513,23.055,533,44.85]],[\"parent/627\",[]],[\"name/628\",[513,23.055,534,44.85]],[\"parent/628\",[]],[\"name/629\",[513,23.055,535,44.85]],[\"parent/629\",[]],[\"name/630\",[513,17.993,536,35.003,537,35.003]],[\"parent/630\",[]],[\"name/631\",[2,19.324,188,19.324,513,10.848,538,21.103,539,21.103,540,21.103]],[\"parent/631\",[]],[\"name/632\",[513,23.055,541,44.85]],[\"parent/632\",[]],[\"name/633\",[117,24.688,290,26.282,513,14.754,542,28.702]],[\"parent/633\",[]],[\"name/634\",[513,17.993,543,35.003,544,35.003]],[\"parent/634\",[]],[\"name/635\",[513,17.993,545,35.003,546,35.003]],[\"parent/635\",[]],[\"name/636\",[513,17.993,547,35.003,548,35.003]],[\"parent/636\",[]],[\"name/637\",[167,24.982,513,17.993,549,35.003]],[\"parent/637\",[]],[\"name/638\",[513,23.055,550,44.85]],[\"parent/638\",[]],[\"name/639\",[513,23.055,551,44.85]],[\"parent/639\",[]],[\"name/640\",[513,23.055,552,44.85]],[\"parent/640\",[]]],\"invertedIndex\":[[\"\",{\"_index\":517,\"name\":{\"614\":{}},\"parent\":{}}],[\"__type\",{\"_index\":206,\"name\":{\"206\":{},\"218\":{},\"226\":{},\"270\":{},\"276\":{},\"291\":{},\"300\":{},\"310\":{},\"317\":{},\"329\":{},\"333\":{},\"341\":{},\"362\":{},\"371\":{},\"376\":{},\"378\":{},\"388\":{},\"394\":{},\"396\":{},\"400\":{},\"427\":{},\"461\":{},\"465\":{},\"468\":{},\"472\":{},\"475\":{},\"479\":{},\"483\":{},\"487\":{},\"491\":{},\"495\":{},\"499\":{},\"503\":{},\"507\":{},\"513\":{},\"520\":{},\"525\":{},\"529\":{},\"533\":{},\"537\":{},\"541\":{},\"545\":{},\"550\":{},\"555\":{},\"561\":{},\"568\":{},\"573\":{},\"577\":{},\"581\":{},\"585\":{},\"589\":{},\"593\":{},\"598\":{},\"607\":{},\"609\":{},\"611\":{}},\"parent\":{}}],[\"_actions\",{\"_index\":10,\"name\":{\"9\":{}},\"parent\":{}}],[\"_active_state_style\",{\"_index\":76,\"name\":{\"75\":{}},\"parent\":{}}],[\"_any_action_hook\",{\"_index\":47,\"name\":{\"46\":{}},\"parent\":{}}],[\"_any_transition_hook\",{\"_index\":51,\"name\":{\"50\":{}},\"parent\":{}}],[\"_arrange_declaration\",{\"_index\":30,\"name\":{\"29\":{}},\"parent\":{}}],[\"_arrange_end_declaration\",{\"_index\":32,\"name\":{\"31\":{}},\"parent\":{}}],[\"_arrange_start_declaration\",{\"_index\":31,\"name\":{\"30\":{}},\"parent\":{}}],[\"_data\",{\"_index\":27,\"name\":{\"26\":{}},\"parent\":{}}],[\"_default_properties\",{\"_index\":70,\"name\":{\"69\":{}},\"parent\":{}}],[\"_dot_preamble\",{\"_index\":29,\"name\":{\"28\":{}},\"parent\":{}}],[\"_edge_map\",{\"_index\":8,\"name\":{\"7\":{}},\"parent\":{}}],[\"_edges\",{\"_index\":7,\"name\":{\"6\":{}},\"parent\":{}}],[\"_end_state_style\",{\"_index\":80,\"name\":{\"79\":{}},\"parent\":{}}],[\"_end_states\",{\"_index\":14,\"name\":{\"13\":{}},\"parent\":{}}],[\"_entry_hooks\",{\"_index\":44,\"name\":{\"43\":{}},\"parent\":{}}],[\"_exit_hooks\",{\"_index\":45,\"name\":{\"44\":{}},\"parent\":{}}],[\"_flow\",{\"_index\":34,\"name\":{\"33\":{}},\"parent\":{}}],[\"_forced_transition_hook\",{\"_index\":50,\"name\":{\"49\":{}},\"parent\":{}}],[\"_fsl_version\",{\"_index\":23,\"name\":{\"22\":{}},\"parent\":{}}],[\"_global_action_hooks\",{\"_index\":46,\"name\":{\"45\":{}},\"parent\":{}}],[\"_graph_layout\",{\"_index\":28,\"name\":{\"27\":{}},\"parent\":{}}],[\"_has_basic_hooks\",{\"_index\":36,\"name\":{\"35\":{}},\"parent\":{}}],[\"_has_entry_hooks\",{\"_index\":38,\"name\":{\"37\":{}},\"parent\":{}}],[\"_has_exit_hooks\",{\"_index\":39,\"name\":{\"38\":{}},\"parent\":{}}],[\"_has_global_action_hooks\",{\"_index\":40,\"name\":{\"39\":{}},\"parent\":{}}],[\"_has_hooks\",{\"_index\":35,\"name\":{\"34\":{}},\"parent\":{}}],[\"_has_named_hooks\",{\"_index\":37,\"name\":{\"36\":{}},\"parent\":{}}],[\"_has_post_basic_hooks\",{\"_index\":53,\"name\":{\"52\":{}},\"parent\":{}}],[\"_has_post_entry_hooks\",{\"_index\":55,\"name\":{\"54\":{}},\"parent\":{}}],[\"_has_post_exit_hooks\",{\"_index\":56,\"name\":{\"55\":{}},\"parent\":{}}],[\"_has_post_global_action_hooks\",{\"_index\":57,\"name\":{\"56\":{}},\"parent\":{}}],[\"_has_post_hooks\",{\"_index\":52,\"name\":{\"51\":{}},\"parent\":{}}],[\"_has_post_named_hooks\",{\"_index\":54,\"name\":{\"53\":{}},\"parent\":{}}],[\"_has_post_transition_hooks\",{\"_index\":58,\"name\":{\"57\":{}},\"parent\":{}}],[\"_has_transition_hooks\",{\"_index\":41,\"name\":{\"40\":{}},\"parent\":{}}],[\"_history\",{\"_index\":73,\"name\":{\"72\":{}},\"parent\":{}}],[\"_history_length\",{\"_index\":74,\"name\":{\"73\":{}},\"parent\":{}}],[\"_hooked_state_style\",{\"_index\":77,\"name\":{\"76\":{}},\"parent\":{}}],[\"_hooks\",{\"_index\":42,\"name\":{\"41\":{}},\"parent\":{}}],[\"_instance_name\",{\"_index\":26,\"name\":{\"25\":{}},\"parent\":{}}],[\"_machine_author\",{\"_index\":15,\"name\":{\"14\":{}},\"parent\":{}}],[\"_machine_comment\",{\"_index\":16,\"name\":{\"15\":{}},\"parent\":{}}],[\"_machine_contributor\",{\"_index\":17,\"name\":{\"16\":{}},\"parent\":{}}],[\"_machine_definition\",{\"_index\":18,\"name\":{\"17\":{}},\"parent\":{}}],[\"_machine_language\",{\"_index\":19,\"name\":{\"18\":{}},\"parent\":{}}],[\"_machine_license\",{\"_index\":20,\"name\":{\"19\":{}},\"parent\":{}}],[\"_machine_name\",{\"_index\":21,\"name\":{\"20\":{}},\"parent\":{}}],[\"_machine_version\",{\"_index\":22,\"name\":{\"21\":{}},\"parent\":{}}],[\"_main_transition_hook\",{\"_index\":49,\"name\":{\"48\":{}},\"parent\":{}}],[\"_named_hooks\",{\"_index\":43,\"name\":{\"42\":{}},\"parent\":{}}],[\"_named_transitions\",{\"_index\":9,\"name\":{\"8\":{}},\"parent\":{}}],[\"_new_state\",{\"_index\":82,\"name\":{\"81\":{}},\"parent\":{}}],[\"_post_any_action_hook\",{\"_index\":64,\"name\":{\"63\":{}},\"parent\":{}}],[\"_post_any_transition_hook\",{\"_index\":68,\"name\":{\"67\":{}},\"parent\":{}}],[\"_post_entry_hooks\",{\"_index\":61,\"name\":{\"60\":{}},\"parent\":{}}],[\"_post_exit_hooks\",{\"_index\":62,\"name\":{\"61\":{}},\"parent\":{}}],[\"_post_forced_transition_hook\",{\"_index\":67,\"name\":{\"66\":{}},\"parent\":{}}],[\"_post_global_action_hooks\",{\"_index\":63,\"name\":{\"62\":{}},\"parent\":{}}],[\"_post_hooks\",{\"_index\":59,\"name\":{\"58\":{}},\"parent\":{}}],[\"_post_main_transition_hook\",{\"_index\":66,\"name\":{\"65\":{}},\"parent\":{}}],[\"_post_named_hooks\",{\"_index\":60,\"name\":{\"59\":{}},\"parent\":{}}],[\"_post_standard_transition_hook\",{\"_index\":65,\"name\":{\"64\":{}},\"parent\":{}}],[\"_property_keys\",{\"_index\":69,\"name\":{\"68\":{}},\"parent\":{}}],[\"_raw_state_declaration\",{\"_index\":24,\"name\":{\"23\":{}},\"parent\":{}}],[\"_required_properties\",{\"_index\":72,\"name\":{\"71\":{}},\"parent\":{}}],[\"_reverse_action_targets\",{\"_index\":12,\"name\":{\"11\":{}},\"parent\":{}}],[\"_reverse_actions\",{\"_index\":11,\"name\":{\"10\":{}},\"parent\":{}}],[\"_standard_transition_hook\",{\"_index\":48,\"name\":{\"47\":{}},\"parent\":{}}],[\"_start_state_style\",{\"_index\":79,\"name\":{\"78\":{}},\"parent\":{}}],[\"_start_states\",{\"_index\":13,\"name\":{\"12\":{}},\"parent\":{}}],[\"_state\",{\"_index\":5,\"name\":{\"4\":{}},\"parent\":{}}],[\"_state_declarations\",{\"_index\":25,\"name\":{\"24\":{}},\"parent\":{}}],[\"_state_labels\",{\"_index\":81,\"name\":{\"80\":{}},\"parent\":{}}],[\"_state_properties\",{\"_index\":71,\"name\":{\"70\":{}},\"parent\":{}}],[\"_state_style\",{\"_index\":75,\"name\":{\"74\":{}},\"parent\":{}}],[\"_states\",{\"_index\":6,\"name\":{\"5\":{}},\"parent\":{}}],[\"_terminal_state_style\",{\"_index\":78,\"name\":{\"77\":{}},\"parent\":{}}],[\"_themes\",{\"_index\":33,\"name\":{\"32\":{}},\"parent\":{}}],[\"a\",{\"_index\":539,\"name\":{\"631\":{}},\"parent\":{}}],[\"abstract_hook_step\",{\"_index\":200,\"name\":{\"200\":{}},\"parent\":{}}],[\"action\",{\"_index\":167,\"name\":{\"166\":{},\"210\":{},\"356\":{},\"517\":{},\"522\":{},\"565\":{},\"570\":{},\"637\":{}},\"parent\":{}}],[\"actions\",{\"_index\":129,\"name\":{\"128\":{},\"241\":{},\"384\":{}},\"parent\":{}}],[\"active\",{\"_index\":312,\"name\":{\"347\":{}},\"parent\":{}}],[\"active_end\",{\"_index\":315,\"name\":{\"350\":{}},\"parent\":{}}],[\"active_hooked\",{\"_index\":313,\"name\":{\"348\":{}},\"parent\":{}}],[\"active_start\",{\"_index\":314,\"name\":{\"349\":{}},\"parent\":{}}],[\"active_state_style\",{\"_index\":173,\"name\":{\"172\":{}},\"parent\":{}}],[\"active_terminal\",{\"_index\":316,\"name\":{\"351\":{}},\"parent\":{}}],[\"agg_as\",{\"_index\":279,\"name\":{\"311\":{}},\"parent\":{}}],[\"allow_empty\",{\"_index\":259,\"name\":{\"285\":{}},\"parent\":{}}],[\"allow_force\",{\"_index\":235,\"name\":{\"240\":{},\"287\":{}},\"parent\":{}}],[\"allow_islands\",{\"_index\":234,\"name\":{\"239\":{},\"286\":{}},\"parent\":{}}],[\"angular\",{\"_index\":525,\"name\":{\"620\":{}},\"parent\":{}}],[\"anyactionhook\",{\"_index\":452,\"name\":{\"524\":{}},\"parent\":{}}],[\"anytransitionhook\",{\"_index\":464,\"name\":{\"540\":{}},\"parent\":{}}],[\"api\",{\"_index\":521,\"name\":{\"616\":{}},\"parent\":{}}],[\"are\",{\"_index\":515,\"name\":{\"613\":{}},\"parent\":{}}],[\"arr_uniq_p\",{\"_index\":389,\"name\":{\"436\":{}},\"parent\":{}}],[\"arrange_declaration\",{\"_index\":241,\"name\":{\"249\":{}},\"parent\":{}}],[\"arrange_end_declaration\",{\"_index\":243,\"name\":{\"251\":{}},\"parent\":{}}],[\"arrange_start_declaration\",{\"_index\":242,\"name\":{\"250\":{}},\"parent\":{}}],[\"array_box_if_string\",{\"_index\":394,\"name\":{\"441\":{}},\"parent\":{}}],[\"arrow_direction\",{\"_index\":192,\"name\":{\"192\":{}},\"parent\":{}}],[\"arrow_left_kind\",{\"_index\":193,\"name\":{\"193\":{}},\"parent\":{}}],[\"arrow_right_kind\",{\"_index\":194,\"name\":{\"194\":{}},\"parent\":{}}],[\"auto_api\",{\"_index\":244,\"name\":{\"261\":{}},\"parent\":{}}],[\"aws\",{\"_index\":530,\"name\":{\"625\":{}},\"parent\":{}}],[\"backgroundcolor\",{\"_index\":295,\"name\":{\"325\":{}},\"parent\":{}}],[\"base_message\",{\"_index\":384,\"name\":{\"430\":{}},\"parent\":{}}],[\"basichookdescription\",{\"_index\":442,\"name\":{\"506\":{}},\"parent\":{}}],[\"bordercolor\",{\"_index\":296,\"name\":{\"326\":{}},\"parent\":{}}],[\"browser\",{\"_index\":529,\"name\":{\"624\":{}},\"parent\":{}}],[\"cdn\",{\"_index\":535,\"name\":{\"629\":{}},\"parent\":{}}],[\"changelog\",{\"_index\":552,\"name\":{\"640\":{}},\"parent\":{}}],[\"check\",{\"_index\":211,\"name\":{\"211\":{},\"235\":{},\"282\":{}},\"parent\":{}}],[\"cli\",{\"_index\":550,\"name\":{\"638\":{}},\"parent\":{}}],[\"color\",{\"_index\":290,\"name\":{\"320\":{},\"633\":{}},\"parent\":{}}],[\"comment\",{\"_index\":330,\"name\":{\"365\":{}},\"parent\":{}}],[\"community\",{\"_index\":551,\"name\":{\"639\":{}},\"parent\":{}}],[\"comparison\",{\"_index\":544,\"name\":{\"634\":{}},\"parent\":{}}],[\"compile\",{\"_index\":190,\"name\":{\"189\":{}},\"parent\":{}}],[\"complete\",{\"_index\":229,\"name\":{\"228\":{},\"274\":{}},\"parent\":{}}],[\"constants\",{\"_index\":400,\"name\":{\"456\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":3,\"name\":{\"3\":{},\"428\":{}},\"parent\":{}}],[\"corners\",{\"_index\":291,\"name\":{\"321\":{}},\"parent\":{}}],[\"current_action_edge_for\",{\"_index\":181,\"name\":{\"180\":{}},\"parent\":{}}],[\"current_action_for\",{\"_index\":180,\"name\":{\"179\":{}},\"parent\":{}}],[\"data\",{\"_index\":85,\"name\":{\"84\":{},\"233\":{},\"279\":{},\"369\":{},\"397\":{},\"403\":{}},\"parent\":{}}],[\"declarations\",{\"_index\":287,\"name\":{\"318\":{}},\"parent\":{}}],[\"default_active_state_config\",{\"_index\":250,\"name\":{\"268\":{}},\"parent\":{}}],[\"default_end_state_config\",{\"_index\":247,\"name\":{\"265\":{}},\"parent\":{}}],[\"default_hooked_state_config\",{\"_index\":248,\"name\":{\"266\":{}},\"parent\":{}}],[\"default_start_state_config\",{\"_index\":246,\"name\":{\"264\":{}},\"parent\":{}}],[\"default_state_config\",{\"_index\":245,\"name\":{\"263\":{}},\"parent\":{}}],[\"default_terminal_state_config\",{\"_index\":249,\"name\":{\"267\":{}},\"parent\":{}}],[\"default_value\",{\"_index\":275,\"name\":{\"307\":{},\"373\":{}},\"parent\":{}}],[\"deserialize\",{\"_index\":187,\"name\":{\"186\":{}},\"parent\":{}}],[\"do\",{\"_index\":176,\"name\":{\"175\":{}},\"parent\":{}}],[\"dot_preamble\",{\"_index\":97,\"name\":{\"96\":{},\"243\":{}},\"parent\":{}}],[\"e\",{\"_index\":367,\"name\":{\"409\":{}},\"parent\":{}}],[\"edge_map\",{\"_index\":342,\"name\":{\"383\":{}},\"parent\":{}}],[\"edges\",{\"_index\":344,\"name\":{\"386\":{}},\"parent\":{}}],[\"edges_between\",{\"_index\":162,\"name\":{\"161\":{}},\"parent\":{}}],[\"editor\",{\"_index\":548,\"name\":{\"636\":{}},\"parent\":{}}],[\"end\",{\"_index\":310,\"name\":{\"345\":{}},\"parent\":{}}],[\"end_state_style\",{\"_index\":171,\"name\":{\"170\":{}},\"parent\":{}}],[\"end_states\",{\"_index\":238,\"name\":{\"245\":{}},\"parent\":{}}],[\"entrances\",{\"_index\":219,\"name\":{\"219\":{}},\"parent\":{}}],[\"entryhook\",{\"_index\":467,\"name\":{\"544\":{}},\"parent\":{}}],[\"epsilon\",{\"_index\":365,\"name\":{\"407\":{}},\"parent\":{}}],[\"error\",{\"_index\":414,\"name\":{\"470\":{}},\"parent\":{}}],[\"eulerc\",{\"_index\":379,\"name\":{\"421\":{}},\"parent\":{}}],[\"example\",{\"_index\":522,\"name\":{\"617\":{}},\"parent\":{}}],[\"exithook\",{\"_index\":470,\"name\":{\"549\":{}},\"parent\":{}}],[\"exits\",{\"_index\":221,\"name\":{\"220\":{}},\"parent\":{}}],[\"feature\",{\"_index\":543,\"name\":{\"634\":{}},\"parent\":{}}],[\"files\",{\"_index\":537,\"name\":{\"630\":{}},\"parent\":{}}],[\"find_repeated\",{\"_index\":388,\"name\":{\"435\":{},\"451\":{}},\"parent\":{}}],[\"flow\",{\"_index\":119,\"name\":{\"118\":{},\"231\":{}},\"parent\":{}}],[\"force_transition\",{\"_index\":179,\"name\":{\"178\":{}},\"parent\":{}}],[\"forced\",{\"_index\":320,\"name\":{\"355\":{}},\"parent\":{}}],[\"forced_only\",{\"_index\":214,\"name\":{\"214\":{}},\"parent\":{}}],[\"forcedtransitionhook\",{\"_index\":461,\"name\":{\"536\":{}},\"parent\":{}}],[\"from\",{\"_index\":191,\"name\":{\"191\":{},\"207\":{},\"271\":{},\"301\":{},\"509\":{},\"515\":{},\"552\":{},\"557\":{},\"563\":{},\"600\":{}},\"parent\":{}}],[\"fsl_version\",{\"_index\":109,\"name\":{\"108\":{},\"260\":{}},\"parent\":{}}],[\"fsldirection\",{\"_index\":349,\"name\":{\"390\":{}},\"parent\":{}}],[\"fsltheme\",{\"_index\":350,\"name\":{\"391\":{}},\"parent\":{}}],[\"get_transition_by_state_names\",{\"_index\":120,\"name\":{\"119\":{}},\"parent\":{}}],[\"github\",{\"_index\":549,\"name\":{\"637\":{}},\"parent\":{}}],[\"globalactionhook\",{\"_index\":449,\"name\":{\"519\":{}},\"parent\":{}}],[\"go\",{\"_index\":178,\"name\":{\"177\":{}},\"parent\":{}}],[\"graph\",{\"_index\":317,\"name\":{\"352\":{}},\"parent\":{}}],[\"graph_layout\",{\"_index\":96,\"name\":{\"95\":{},\"227\":{}},\"parent\":{}}],[\"gviz_shapes\",{\"_index\":196,\"name\":{\"196\":{},\"422\":{}},\"parent\":{}}],[\"handler\",{\"_index\":445,\"name\":{\"511\":{},\"518\":{},\"523\":{},\"527\":{},\"531\":{},\"535\":{},\"539\":{},\"543\":{},\"548\":{},\"553\":{},\"559\":{},\"566\":{},\"571\":{},\"575\":{},\"579\":{},\"583\":{},\"587\":{},\"591\":{},\"596\":{},\"601\":{}},\"parent\":{}}],[\"has_completes\",{\"_index\":140,\"name\":{\"139\":{}},\"parent\":{}}],[\"has_hooks\",{\"_index\":174,\"name\":{\"173\":{}},\"parent\":{}}],[\"has_state\",{\"_index\":113,\"name\":{\"112\":{}},\"parent\":{}}],[\"has_terminals\",{\"_index\":137,\"name\":{\"136\":{}},\"parent\":{}}],[\"has_unenterables\",{\"_index\":134,\"name\":{\"133\":{}},\"parent\":{}}],[\"histograph\",{\"_index\":390,\"name\":{\"437\":{},\"453\":{}},\"parent\":{}}],[\"history\",{\"_index\":164,\"name\":{\"163\":{},\"236\":{},\"367\":{}},\"parent\":{}}],[\"history_capacity\",{\"_index\":331,\"name\":{\"368\":{}},\"parent\":{}}],[\"history_inclusive\",{\"_index\":165,\"name\":{\"164\":{}},\"parent\":{}}],[\"history_length\",{\"_index\":166,\"name\":{\"165\":{}},\"parent\":{}}],[\"hook\",{\"_index\":142,\"name\":{\"141\":{}},\"parent\":{}}],[\"hook_action\",{\"_index\":143,\"name\":{\"142\":{}},\"parent\":{}}],[\"hook_any_action\",{\"_index\":145,\"name\":{\"144\":{}},\"parent\":{}}],[\"hook_any_transition\",{\"_index\":149,\"name\":{\"148\":{}},\"parent\":{}}],[\"hook_entry\",{\"_index\":150,\"name\":{\"149\":{}},\"parent\":{}}],[\"hook_exit\",{\"_index\":151,\"name\":{\"150\":{}},\"parent\":{}}],[\"hook_forced_transition\",{\"_index\":148,\"name\":{\"147\":{}},\"parent\":{}}],[\"hook_global_action\",{\"_index\":144,\"name\":{\"143\":{}},\"parent\":{}}],[\"hook_main_transition\",{\"_index\":147,\"name\":{\"146\":{}},\"parent\":{}}],[\"hook_name\",{\"_index\":396,\"name\":{\"443\":{}},\"parent\":{}}],[\"hook_standard_transition\",{\"_index\":146,\"name\":{\"145\":{}},\"parent\":{}}],[\"hookcomplexresult\",{\"_index\":358,\"name\":{\"399\":{}},\"parent\":{}}],[\"hookcontext\",{\"_index\":354,\"name\":{\"395\":{}},\"parent\":{}}],[\"hookdescription\",{\"_index\":351,\"name\":{\"392\":{}},\"parent\":{}}],[\"hookdescriptionwithaction\",{\"_index\":446,\"name\":{\"512\":{}},\"parent\":{}}],[\"hooked\",{\"_index\":308,\"name\":{\"343\":{}},\"parent\":{}}],[\"hooked_state_style\",{\"_index\":169,\"name\":{\"168\":{}},\"parent\":{}}],[\"hookhandler\",{\"_index\":352,\"name\":{\"393\":{}},\"parent\":{}}],[\"hookresult\",{\"_index\":357,\"name\":{\"398\":{}},\"parent\":{}}],[\"instance_name\",{\"_index\":185,\"name\":{\"184\":{},\"262\":{}},\"parent\":{}}],[\"internal\",{\"_index\":401,\"name\":{\"457\":{},\"458\":{},\"612\":{}},\"parent\":{}}],[\"internal_state_impl_version\",{\"_index\":339,\"name\":{\"379\":{}},\"parent\":{}}],[\"is_complete\",{\"_index\":138,\"name\":{\"137\":{}},\"parent\":{}}],[\"is_end_state\",{\"_index\":92,\"name\":{\"91\":{}},\"parent\":{}}],[\"is_final\",{\"_index\":94,\"name\":{\"93\":{}},\"parent\":{}}],[\"is_hook_complex_result\",{\"_index\":199,\"name\":{\"199\":{}},\"parent\":{}}],[\"is_hook_rejection\",{\"_index\":198,\"name\":{\"198\":{}},\"parent\":{}}],[\"is_start_state\",{\"_index\":91,\"name\":{\"90\":{}},\"parent\":{}}],[\"is_terminal\",{\"_index\":135,\"name\":{\"134\":{}},\"parent\":{}}],[\"is_unenterable\",{\"_index\":133,\"name\":{\"132\":{}},\"parent\":{}}],[\"jssm\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"201\":{},\"448\":{},\"449\":{},\"450\":{},\"451\":{},\"452\":{},\"453\":{},\"454\":{},\"455\":{},\"456\":{},\"457\":{}}}],[\"jssm.machine\",{\"_index\":4,\"name\":{},\"parent\":{\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{},\"171\":{},\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{},\"185\":{}}}],[\"jssm_constants\",{\"_index\":362,\"name\":{\"404\":{}},\"parent\":{\"405\":{},\"406\":{},\"407\":{},\"408\":{},\"409\":{},\"410\":{},\"411\":{},\"412\":{},\"413\":{},\"414\":{},\"415\":{},\"416\":{},\"417\":{},\"418\":{},\"419\":{},\"420\":{},\"421\":{},\"422\":{},\"423\":{},\"424\":{}}}],[\"jssm_error\",{\"_index\":380,\"name\":{\"425\":{}},\"parent\":{\"426\":{},\"612\":{}}}],[\"jssm_error.jssmerror\",{\"_index\":382,\"name\":{},\"parent\":{\"427\":{},\"428\":{},\"429\":{},\"430\":{},\"431\":{}}}],[\"jssm_types\",{\"_index\":202,\"name\":{\"202\":{}},\"parent\":{\"203\":{},\"204\":{},\"205\":{},\"216\":{},\"217\":{},\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"225\":{},\"269\":{},\"275\":{},\"289\":{},\"290\":{},\"299\":{},\"309\":{},\"313\":{},\"314\":{},\"315\":{},\"316\":{},\"332\":{},\"337\":{},\"338\":{},\"339\":{},\"340\":{},\"358\":{},\"359\":{},\"360\":{},\"361\":{},\"370\":{},\"375\":{},\"377\":{},\"387\":{},\"390\":{},\"391\":{},\"392\":{},\"393\":{},\"395\":{},\"398\":{},\"399\":{},\"458\":{}}}],[\"jssm_types..anyactionhook\",{\"_index\":453,\"name\":{},\"parent\":{\"525\":{}}}],[\"jssm_types..anyactionhook.__type\",{\"_index\":454,\"name\":{},\"parent\":{\"526\":{},\"527\":{}}}],[\"jssm_types..anytransitionhook\",{\"_index\":465,\"name\":{},\"parent\":{\"541\":{}}}],[\"jssm_types..anytransitionhook.__type\",{\"_index\":466,\"name\":{},\"parent\":{\"542\":{},\"543\":{}}}],[\"jssm_types..basichookdescription\",{\"_index\":443,\"name\":{},\"parent\":{\"507\":{}}}],[\"jssm_types..basichookdescription.__type\",{\"_index\":444,\"name\":{},\"parent\":{\"508\":{},\"509\":{},\"510\":{},\"511\":{}}}],[\"jssm_types..entryhook\",{\"_index\":468,\"name\":{},\"parent\":{\"545\":{}}}],[\"jssm_types..entryhook.__type\",{\"_index\":469,\"name\":{},\"parent\":{\"546\":{},\"547\":{},\"548\":{}}}],[\"jssm_types..exithook\",{\"_index\":471,\"name\":{},\"parent\":{\"550\":{}}}],[\"jssm_types..exithook.__type\",{\"_index\":472,\"name\":{},\"parent\":{\"551\":{},\"552\":{},\"553\":{}}}],[\"jssm_types..forcedtransitionhook\",{\"_index\":462,\"name\":{},\"parent\":{\"537\":{}}}],[\"jssm_types..forcedtransitionhook.__type\",{\"_index\":463,\"name\":{},\"parent\":{\"538\":{},\"539\":{}}}],[\"jssm_types..globalactionhook\",{\"_index\":450,\"name\":{},\"parent\":{\"520\":{}}}],[\"jssm_types..globalactionhook.__type\",{\"_index\":451,\"name\":{},\"parent\":{\"521\":{},\"522\":{},\"523\":{}}}],[\"jssm_types..hookdescriptionwithaction\",{\"_index\":447,\"name\":{},\"parent\":{\"513\":{}}}],[\"jssm_types..hookdescriptionwithaction.__type\",{\"_index\":448,\"name\":{},\"parent\":{\"514\":{},\"515\":{},\"516\":{},\"517\":{},\"518\":{}}}],[\"jssm_types..jssmfailure\",{\"_index\":412,\"name\":{},\"parent\":{\"468\":{}}}],[\"jssm_types..jssmfailure.__type\",{\"_index\":413,\"name\":{},\"parent\":{\"469\":{},\"470\":{}}}],[\"jssm_types..jssmincomplete\",{\"_index\":416,\"name\":{},\"parent\":{\"472\":{}}}],[\"jssm_types..jssmincomplete.__type\",{\"_index\":417,\"name\":{},\"parent\":{\"473\":{}}}],[\"jssm_types..jssmstatepermitter\",{\"_index\":510,\"name\":{},\"parent\":{\"609\":{}}}],[\"jssm_types..jssmstatestylebackgroundcolor\",{\"_index\":434,\"name\":{},\"parent\":{\"495\":{}}}],[\"jssm_types..jssmstatestylebackgroundcolor.__type\",{\"_index\":435,\"name\":{},\"parent\":{\"496\":{},\"497\":{}}}],[\"jssm_types..jssmstatestylebordercolor\",{\"_index\":440,\"name\":{},\"parent\":{\"503\":{}}}],[\"jssm_types..jssmstatestylebordercolor.__type\",{\"_index\":441,\"name\":{},\"parent\":{\"504\":{},\"505\":{}}}],[\"jssm_types..jssmstatestylecolor\",{\"_index\":422,\"name\":{},\"parent\":{\"479\":{}}}],[\"jssm_types..jssmstatestylecolor.__type\",{\"_index\":423,\"name\":{},\"parent\":{\"480\":{},\"481\":{}}}],[\"jssm_types..jssmstatestylecorners\",{\"_index\":428,\"name\":{},\"parent\":{\"487\":{}}}],[\"jssm_types..jssmstatestylecorners.__type\",{\"_index\":429,\"name\":{},\"parent\":{\"488\":{},\"489\":{}}}],[\"jssm_types..jssmstatestylelinestyle\",{\"_index\":431,\"name\":{},\"parent\":{\"491\":{}}}],[\"jssm_types..jssmstatestylelinestyle.__type\",{\"_index\":432,\"name\":{},\"parent\":{\"492\":{},\"493\":{}}}],[\"jssm_types..jssmstatestyleshape\",{\"_index\":419,\"name\":{},\"parent\":{\"475\":{}}}],[\"jssm_types..jssmstatestyleshape.__type\",{\"_index\":420,\"name\":{},\"parent\":{\"476\":{},\"477\":{}}}],[\"jssm_types..jssmstatestylestatelabel\",{\"_index\":437,\"name\":{},\"parent\":{\"499\":{}}}],[\"jssm_types..jssmstatestylestatelabel.__type\",{\"_index\":438,\"name\":{},\"parent\":{\"500\":{},\"501\":{}}}],[\"jssm_types..jssmstatestyletextcolor\",{\"_index\":425,\"name\":{},\"parent\":{\"483\":{}}}],[\"jssm_types..jssmstatestyletextcolor.__type\",{\"_index\":426,\"name\":{},\"parent\":{\"484\":{},\"485\":{}}}],[\"jssm_types..jssmsuccess\",{\"_index\":408,\"name\":{},\"parent\":{\"465\":{}}}],[\"jssm_types..jssmsuccess.__type\",{\"_index\":410,\"name\":{},\"parent\":{\"466\":{}}}],[\"jssm_types..jssmtransitioncycle\",{\"_index\":405,\"name\":{},\"parent\":{\"461\":{}}}],[\"jssm_types..jssmtransitioncycle.__type\",{\"_index\":406,\"name\":{},\"parent\":{\"462\":{},\"463\":{}}}],[\"jssm_types..jssmtransitionpermitter\",{\"_index\":508,\"name\":{},\"parent\":{\"607\":{}}}],[\"jssm_types..maintransitionhook\",{\"_index\":459,\"name\":{},\"parent\":{\"533\":{}}}],[\"jssm_types..maintransitionhook.__type\",{\"_index\":460,\"name\":{},\"parent\":{\"534\":{},\"535\":{}}}],[\"jssm_types..postanyactionhook\",{\"_index\":483,\"name\":{},\"parent\":{\"573\":{}}}],[\"jssm_types..postanyactionhook.__type\",{\"_index\":484,\"name\":{},\"parent\":{\"574\":{},\"575\":{}}}],[\"jssm_types..postanytransitionhook\",{\"_index\":495,\"name\":{},\"parent\":{\"589\":{}}}],[\"jssm_types..postanytransitionhook.__type\",{\"_index\":496,\"name\":{},\"parent\":{\"590\":{},\"591\":{}}}],[\"jssm_types..postbasichookdescription\",{\"_index\":474,\"name\":{},\"parent\":{\"555\":{}}}],[\"jssm_types..postbasichookdescription.__type\",{\"_index\":475,\"name\":{},\"parent\":{\"556\":{},\"557\":{},\"558\":{},\"559\":{}}}],[\"jssm_types..postentryhook\",{\"_index\":498,\"name\":{},\"parent\":{\"593\":{}}}],[\"jssm_types..postentryhook.__type\",{\"_index\":499,\"name\":{},\"parent\":{\"594\":{},\"595\":{},\"596\":{}}}],[\"jssm_types..postexithook\",{\"_index\":501,\"name\":{},\"parent\":{\"598\":{}}}],[\"jssm_types..postexithook.__type\",{\"_index\":502,\"name\":{},\"parent\":{\"599\":{},\"600\":{},\"601\":{}}}],[\"jssm_types..postforcedtransitionhook\",{\"_index\":492,\"name\":{},\"parent\":{\"585\":{}}}],[\"jssm_types..postforcedtransitionhook.__type\",{\"_index\":493,\"name\":{},\"parent\":{\"586\":{},\"587\":{}}}],[\"jssm_types..postglobalactionhook\",{\"_index\":480,\"name\":{},\"parent\":{\"568\":{}}}],[\"jssm_types..postglobalactionhook.__type\",{\"_index\":481,\"name\":{},\"parent\":{\"569\":{},\"570\":{},\"571\":{}}}],[\"jssm_types..posthookdescriptionwithaction\",{\"_index\":477,\"name\":{},\"parent\":{\"561\":{}}}],[\"jssm_types..posthookdescriptionwithaction.__type\",{\"_index\":478,\"name\":{},\"parent\":{\"562\":{},\"563\":{},\"564\":{},\"565\":{},\"566\":{}}}],[\"jssm_types..posthookhandler\",{\"_index\":512,\"name\":{},\"parent\":{\"611\":{}}}],[\"jssm_types..postmaintransitionhook\",{\"_index\":489,\"name\":{},\"parent\":{\"581\":{}}}],[\"jssm_types..postmaintransitionhook.__type\",{\"_index\":490,\"name\":{},\"parent\":{\"582\":{},\"583\":{}}}],[\"jssm_types..poststandardtransitionhook\",{\"_index\":486,\"name\":{},\"parent\":{\"577\":{}}}],[\"jssm_types..poststandardtransitionhook.__type\",{\"_index\":487,\"name\":{},\"parent\":{\"578\":{},\"579\":{}}}],[\"jssm_types..standardtransitionhook\",{\"_index\":456,\"name\":{},\"parent\":{\"529\":{}}}],[\"jssm_types..standardtransitionhook.__type\",{\"_index\":457,\"name\":{},\"parent\":{\"530\":{},\"531\":{}}}],[\"jssm_types.hookcomplexresult\",{\"_index\":359,\"name\":{},\"parent\":{\"400\":{}}}],[\"jssm_types.hookcomplexresult.__type\",{\"_index\":361,\"name\":{},\"parent\":{\"401\":{},\"402\":{},\"403\":{}}}],[\"jssm_types.hookcontext\",{\"_index\":355,\"name\":{},\"parent\":{\"396\":{}}}],[\"jssm_types.hookcontext.__type\",{\"_index\":356,\"name\":{},\"parent\":{\"397\":{}}}],[\"jssm_types.hookhandler\",{\"_index\":353,\"name\":{},\"parent\":{\"394\":{}}}],[\"jssm_types.jssmbasetheme\",{\"_index\":306,\"name\":{},\"parent\":{\"341\":{}}}],[\"jssm_types.jssmbasetheme.__type\",{\"_index\":307,\"name\":{},\"parent\":{\"342\":{},\"343\":{},\"344\":{},\"345\":{},\"346\":{},\"347\":{},\"348\":{},\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{},\"357\":{}}}],[\"jssm_types.jssmcompilerule\",{\"_index\":278,\"name\":{},\"parent\":{\"310\":{}}}],[\"jssm_types.jssmcompilerule.__type\",{\"_index\":280,\"name\":{},\"parent\":{\"311\":{},\"312\":{}}}],[\"jssm_types.jssmcompilese\",{\"_index\":263,\"name\":{},\"parent\":{\"291\":{}}}],[\"jssm_types.jssmcompilese.__type\",{\"_index\":264,\"name\":{},\"parent\":{\"292\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{}}}],[\"jssm_types.jssmcompilesestart\",{\"_index\":271,\"name\":{},\"parent\":{\"300\":{}}}],[\"jssm_types.jssmcompilesestart.__type\",{\"_index\":272,\"name\":{},\"parent\":{\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{},\"308\":{}}}],[\"jssm_types.jssmerrorextendedinfo\",{\"_index\":346,\"name\":{},\"parent\":{\"388\":{}}}],[\"jssm_types.jssmerrorextendedinfo.__type\",{\"_index\":348,\"name\":{},\"parent\":{\"389\":{}}}],[\"jssm_types.jssmgenericconfig\",{\"_index\":227,\"name\":{},\"parent\":{\"226\":{}}}],[\"jssm_types.jssmgenericconfig.__type\",{\"_index\":228,\"name\":{},\"parent\":{\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{},\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{},\"245\":{},\"246\":{},\"247\":{},\"248\":{},\"249\":{},\"250\":{},\"251\":{},\"252\":{},\"253\":{},\"254\":{},\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{}}}],[\"jssm_types.jssmgenericmachine\",{\"_index\":255,\"name\":{},\"parent\":{\"276\":{}}}],[\"jssm_types.jssmgenericmachine.__type\",{\"_index\":256,\"name\":{},\"parent\":{\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{}}}],[\"jssm_types.jssmgenericstate\",{\"_index\":252,\"name\":{},\"parent\":{\"270\":{}}}],[\"jssm_types.jssmgenericstate.__type\",{\"_index\":253,\"name\":{},\"parent\":{\"271\":{},\"272\":{},\"273\":{},\"274\":{}}}],[\"jssm_types.jssmmachineinternalstate\",{\"_index\":338,\"name\":{},\"parent\":{\"378\":{}}}],[\"jssm_types.jssmmachineinternalstate.__type\",{\"_index\":340,\"name\":{},\"parent\":{\"379\":{},\"380\":{},\"381\":{},\"382\":{},\"383\":{},\"384\":{},\"385\":{},\"386\":{}}}],[\"jssm_types.jssmparsefunctiontype\",{\"_index\":336,\"name\":{},\"parent\":{\"376\":{}}}],[\"jssm_types.jssmpropertydefinition\",{\"_index\":333,\"name\":{},\"parent\":{\"371\":{}}}],[\"jssm_types.jssmpropertydefinition.__type\",{\"_index\":334,\"name\":{},\"parent\":{\"372\":{},\"373\":{},\"374\":{}}}],[\"jssm_types.jssmserialization\",{\"_index\":326,\"name\":{},\"parent\":{\"362\":{}}}],[\"jssm_types.jssmserialization.__type\",{\"_index\":328,\"name\":{},\"parent\":{\"363\":{},\"364\":{},\"365\":{},\"366\":{},\"367\":{},\"368\":{},\"369\":{}}}],[\"jssm_types.jssmstatedeclaration\",{\"_index\":286,\"name\":{},\"parent\":{\"317\":{}}}],[\"jssm_types.jssmstatedeclaration.__type\",{\"_index\":288,\"name\":{},\"parent\":{\"318\":{},\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{},\"324\":{},\"325\":{},\"326\":{},\"327\":{},\"328\":{},\"329\":{}}}],[\"jssm_types.jssmstatedeclaration.__type.__type\",{\"_index\":298,\"name\":{},\"parent\":{\"330\":{},\"331\":{}}}],[\"jssm_types.jssmstatedeclarationrule\",{\"_index\":300,\"name\":{},\"parent\":{\"333\":{}}}],[\"jssm_types.jssmstatedeclarationrule.__type\",{\"_index\":301,\"name\":{},\"parent\":{\"334\":{},\"335\":{},\"336\":{}}}],[\"jssm_types.jssmtransition\",{\"_index\":207,\"name\":{},\"parent\":{\"206\":{}}}],[\"jssm_types.jssmtransition.__type\",{\"_index\":208,\"name\":{},\"parent\":{\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{}}}],[\"jssm_types.jssmtransitionlist\",{\"_index\":218,\"name\":{},\"parent\":{\"218\":{}}}],[\"jssm_types.jssmtransitionlist.__type\",{\"_index\":220,\"name\":{},\"parent\":{\"219\":{},\"220\":{}}}],[\"jssm_util\",{\"_index\":385,\"name\":{\"432\":{}},\"parent\":{\"433\":{},\"434\":{},\"435\":{},\"436\":{},\"437\":{},\"438\":{},\"439\":{},\"440\":{},\"441\":{},\"442\":{},\"443\":{},\"444\":{},\"445\":{}}}],[\"jssm_version\",{\"_index\":327,\"name\":{\"363\":{}},\"parent\":{}}],[\"jssmarrow\",{\"_index\":223,\"name\":{\"222\":{}},\"parent\":{}}],[\"jssmarrowdirection\",{\"_index\":225,\"name\":{\"224\":{}},\"parent\":{}}],[\"jssmarrowkind\",{\"_index\":224,\"name\":{\"223\":{}},\"parent\":{}}],[\"jssmbasetheme\",{\"_index\":305,\"name\":{\"340\":{}},\"parent\":{}}],[\"jssmcolor\",{\"_index\":203,\"name\":{\"203\":{}},\"parent\":{}}],[\"jssmcompilerule\",{\"_index\":277,\"name\":{\"309\":{}},\"parent\":{}}],[\"jssmcompilese\",{\"_index\":262,\"name\":{\"290\":{}},\"parent\":{}}],[\"jssmcompilesestart\",{\"_index\":270,\"name\":{\"299\":{}},\"parent\":{}}],[\"jssmcorner\",{\"_index\":505,\"name\":{\"604\":{}},\"parent\":{}}],[\"jssmerror\",{\"_index\":381,\"name\":{\"426\":{}},\"parent\":{}}],[\"jssmerrorextendedinfo\",{\"_index\":345,\"name\":{\"387\":{}},\"parent\":{}}],[\"jssmfailure\",{\"_index\":411,\"name\":{\"467\":{}},\"parent\":{}}],[\"jssmgenericconfig\",{\"_index\":226,\"name\":{\"225\":{}},\"parent\":{}}],[\"jssmgenericmachine\",{\"_index\":254,\"name\":{\"275\":{}},\"parent\":{}}],[\"jssmgenericstate\",{\"_index\":251,\"name\":{\"269\":{}},\"parent\":{}}],[\"jssmhistory\",{\"_index\":324,\"name\":{\"360\":{}},\"parent\":{}}],[\"jssmincomplete\",{\"_index\":415,\"name\":{\"471\":{}},\"parent\":{}}],[\"jssmlayout\",{\"_index\":323,\"name\":{\"359\":{}},\"parent\":{}}],[\"jssmlinestyle\",{\"_index\":506,\"name\":{\"605\":{}},\"parent\":{}}],[\"jssmmachineinternalstate\",{\"_index\":337,\"name\":{\"377\":{}},\"parent\":{}}],[\"jssmparsefunctiontype\",{\"_index\":335,\"name\":{\"375\":{}},\"parent\":{}}],[\"jssmparsetree\",{\"_index\":261,\"name\":{\"289\":{}},\"parent\":{}}],[\"jssmpermitted\",{\"_index\":282,\"name\":{\"313\":{}},\"parent\":{}}],[\"jssmpermittedopt\",{\"_index\":283,\"name\":{\"314\":{}},\"parent\":{}}],[\"jssmpropertydefinition\",{\"_index\":332,\"name\":{\"370\":{}},\"parent\":{}}],[\"jssmresult\",{\"_index\":284,\"name\":{\"315\":{}},\"parent\":{}}],[\"jssmserialization\",{\"_index\":325,\"name\":{\"361\":{}},\"parent\":{}}],[\"jssmshape\",{\"_index\":204,\"name\":{\"204\":{}},\"parent\":{}}],[\"jssmstateconfig\",{\"_index\":302,\"name\":{\"337\":{}},\"parent\":{}}],[\"jssmstatedeclaration\",{\"_index\":285,\"name\":{\"316\":{}},\"parent\":{}}],[\"jssmstatedeclarationrule\",{\"_index\":299,\"name\":{\"332\":{}},\"parent\":{}}],[\"jssmstatepermitter\",{\"_index\":509,\"name\":{\"608\":{}},\"parent\":{}}],[\"jssmstatepermittermaybearray\",{\"_index\":504,\"name\":{\"603\":{}},\"parent\":{}}],[\"jssmstatestylebackgroundcolor\",{\"_index\":433,\"name\":{\"494\":{}},\"parent\":{}}],[\"jssmstatestylebordercolor\",{\"_index\":439,\"name\":{\"502\":{}},\"parent\":{}}],[\"jssmstatestylecolor\",{\"_index\":421,\"name\":{\"478\":{}},\"parent\":{}}],[\"jssmstatestylecorners\",{\"_index\":427,\"name\":{\"486\":{}},\"parent\":{}}],[\"jssmstatestylekey\",{\"_index\":303,\"name\":{\"338\":{}},\"parent\":{}}],[\"jssmstatestylekeylist\",{\"_index\":304,\"name\":{\"339\":{}},\"parent\":{}}],[\"jssmstatestylelinestyle\",{\"_index\":430,\"name\":{\"490\":{}},\"parent\":{}}],[\"jssmstatestyleshape\",{\"_index\":418,\"name\":{\"474\":{}},\"parent\":{}}],[\"jssmstatestylestatelabel\",{\"_index\":436,\"name\":{\"498\":{}},\"parent\":{}}],[\"jssmstatestyletextcolor\",{\"_index\":424,\"name\":{\"482\":{}},\"parent\":{}}],[\"jssmsuccess\",{\"_index\":407,\"name\":{\"464\":{}},\"parent\":{}}],[\"jssmtheme\",{\"_index\":322,\"name\":{\"358\":{}},\"parent\":{}}],[\"jssmtransition\",{\"_index\":205,\"name\":{\"205\":{}},\"parent\":{}}],[\"jssmtransitioncycle\",{\"_index\":404,\"name\":{\"460\":{}},\"parent\":{}}],[\"jssmtransitionlist\",{\"_index\":217,\"name\":{\"217\":{}},\"parent\":{}}],[\"jssmtransitionpermitter\",{\"_index\":507,\"name\":{\"606\":{}},\"parent\":{}}],[\"jssmtransitionpermittermaybearray\",{\"_index\":503,\"name\":{\"602\":{}},\"parent\":{}}],[\"jssmtransitionrule\",{\"_index\":222,\"name\":{\"221\":{}},\"parent\":{}}],[\"jssmtransitions\",{\"_index\":216,\"name\":{\"216\":{}},\"parent\":{}}],[\"keep_history\",{\"_index\":260,\"name\":{\"288\":{}},\"parent\":{}}],[\"key\",{\"_index\":273,\"name\":{\"303\":{},\"334\":{},\"462\":{},\"476\":{},\"480\":{},\"484\":{},\"488\":{},\"492\":{},\"496\":{},\"500\":{},\"504\":{}},\"parent\":{}}],[\"kind\",{\"_index\":213,\"name\":{\"213\":{},\"294\":{},\"508\":{},\"514\":{},\"521\":{},\"526\":{},\"530\":{},\"534\":{},\"538\":{},\"542\":{},\"546\":{},\"551\":{},\"556\":{},\"562\":{},\"569\":{},\"574\":{},\"578\":{},\"582\":{},\"586\":{},\"590\":{},\"594\":{},\"599\":{}},\"parent\":{}}],[\"known_prop\",{\"_index\":89,\"name\":{\"88\":{}},\"parent\":{}}],[\"known_props\",{\"_index\":90,\"name\":{\"89\":{}},\"parent\":{}}],[\"l_action\",{\"_index\":266,\"name\":{\"295\":{}},\"parent\":{}}],[\"l_probability\",{\"_index\":268,\"name\":{\"297\":{}},\"parent\":{}}],[\"label_for\",{\"_index\":84,\"name\":{\"83\":{}},\"parent\":{}}],[\"lambda\",{\"_index\":531,\"name\":{\"625\":{}},\"parent\":{}}],[\"language\",{\"_index\":519,\"name\":{\"615\":{}},\"parent\":{}}],[\"large\",{\"_index\":540,\"name\":{\"631\":{}},\"parent\":{}}],[\"legal\",{\"_index\":318,\"name\":{\"353\":{}},\"parent\":{}}],[\"let's\",{\"_index\":538,\"name\":{\"631\":{}},\"parent\":{}}],[\"linestyle\",{\"_index\":292,\"name\":{\"322\":{}},\"parent\":{}}],[\"list_actions\",{\"_index\":116,\"name\":{\"115\":{}},\"parent\":{}}],[\"list_edges\",{\"_index\":114,\"name\":{\"113\":{}},\"parent\":{}}],[\"list_entrances\",{\"_index\":123,\"name\":{\"122\":{}},\"parent\":{}}],[\"list_exit_actions\",{\"_index\":131,\"name\":{\"130\":{}},\"parent\":{}}],[\"list_exits\",{\"_index\":124,\"name\":{\"123\":{}},\"parent\":{}}],[\"list_named_transitions\",{\"_index\":115,\"name\":{\"114\":{}},\"parent\":{}}],[\"list_states_having_action\",{\"_index\":130,\"name\":{\"129\":{}},\"parent\":{}}],[\"list_transitions\",{\"_index\":122,\"name\":{\"121\":{}},\"parent\":{}}],[\"live\",{\"_index\":547,\"name\":{\"636\":{}},\"parent\":{}}],[\"ln10\",{\"_index\":371,\"name\":{\"413\":{}},\"parent\":{}}],[\"ln2\",{\"_index\":370,\"name\":{\"412\":{}},\"parent\":{}}],[\"loc\",{\"_index\":545,\"name\":{\"635\":{}},\"parent\":{}}],[\"local\",{\"_index\":536,\"name\":{\"630\":{}},\"parent\":{}}],[\"log10e\",{\"_index\":373,\"name\":{\"415\":{}},\"parent\":{}}],[\"log2e\",{\"_index\":372,\"name\":{\"414\":{}},\"parent\":{}}],[\"lookup_transition_for\",{\"_index\":121,\"name\":{\"120\":{}},\"parent\":{}}],[\"machine\",{\"_index\":2,\"name\":{\"2\":{},\"631\":{}},\"parent\":{}}],[\"machine_author\",{\"_index\":98,\"name\":{\"97\":{},\"252\":{}},\"parent\":{}}],[\"machine_comment\",{\"_index\":99,\"name\":{\"98\":{},\"253\":{}},\"parent\":{}}],[\"machine_contributor\",{\"_index\":100,\"name\":{\"99\":{},\"254\":{}},\"parent\":{}}],[\"machine_definition\",{\"_index\":101,\"name\":{\"100\":{},\"255\":{}},\"parent\":{}}],[\"machine_language\",{\"_index\":102,\"name\":{\"101\":{},\"256\":{}},\"parent\":{}}],[\"machine_license\",{\"_index\":103,\"name\":{\"102\":{},\"257\":{}},\"parent\":{}}],[\"machine_name\",{\"_index\":104,\"name\":{\"103\":{},\"258\":{}},\"parent\":{}}],[\"machine_state\",{\"_index\":110,\"name\":{\"109\":{}},\"parent\":{}}],[\"machine_version\",{\"_index\":105,\"name\":{\"104\":{},\"259\":{}},\"parent\":{}}],[\"machines\",{\"_index\":516,\"name\":{\"613\":{},\"617\":{}},\"parent\":{}}],[\"main\",{\"_index\":319,\"name\":{\"354\":{}},\"parent\":{}}],[\"main_path\",{\"_index\":215,\"name\":{\"215\":{}},\"parent\":{}}],[\"maintransitionhook\",{\"_index\":458,\"name\":{\"532\":{}},\"parent\":{}}],[\"make\",{\"_index\":188,\"name\":{\"187\":{},\"631\":{}},\"parent\":{}}],[\"make_mulberry_rand\",{\"_index\":398,\"name\":{\"445\":{}},\"parent\":{}}],[\"max_exits\",{\"_index\":233,\"name\":{\"238\":{}},\"parent\":{}}],[\"max_transitions\",{\"_index\":258,\"name\":{\"284\":{}},\"parent\":{}}],[\"maxposnum\",{\"_index\":376,\"name\":{\"418\":{}},\"parent\":{}}],[\"maxsafeint\",{\"_index\":374,\"name\":{\"416\":{}},\"parent\":{}}],[\"message\",{\"_index\":383,\"name\":{\"429\":{}},\"parent\":{}}],[\"min_exits\",{\"_index\":232,\"name\":{\"237\":{}},\"parent\":{}}],[\"min_transitions\",{\"_index\":257,\"name\":{\"283\":{}},\"parent\":{}}],[\"minposnum\",{\"_index\":377,\"name\":{\"419\":{}},\"parent\":{}}],[\"minsafeint\",{\"_index\":375,\"name\":{\"417\":{}},\"parent\":{}}],[\"name\",{\"_index\":210,\"name\":{\"209\":{},\"232\":{},\"272\":{},\"277\":{},\"305\":{},\"330\":{},\"336\":{},\"372\":{}},\"parent\":{}}],[\"name_bind_prop_and_state\",{\"_index\":395,\"name\":{\"442\":{}},\"parent\":{}}],[\"named_colors\",{\"_index\":197,\"name\":{\"197\":{},\"424\":{}},\"parent\":{}}],[\"named_hook_name\",{\"_index\":397,\"name\":{\"444\":{}},\"parent\":{}}],[\"named_transitions\",{\"_index\":341,\"name\":{\"382\":{}},\"parent\":{}}],[\"neginfinity\",{\"_index\":363,\"name\":{\"405\":{}},\"parent\":{}}],[\"node\",{\"_index\":526,\"name\":{\"621\":{},\"622\":{}},\"parent\":{}}],[\"nodes\",{\"_index\":231,\"name\":{\"234\":{},\"280\":{}},\"parent\":{}}],[\"page\",{\"_index\":513,\"name\":{\"613\":{},\"614\":{},\"615\":{},\"616\":{},\"617\":{},\"618\":{},\"619\":{},\"620\":{},\"621\":{},\"622\":{},\"623\":{},\"624\":{},\"625\":{},\"626\":{},\"627\":{},\"628\":{},\"629\":{},\"630\":{},\"631\":{},\"632\":{},\"633\":{},\"634\":{},\"635\":{},\"636\":{},\"637\":{},\"638\":{},\"639\":{},\"640\":{}},\"parent\":{}}],[\"parse\",{\"_index\":189,\"name\":{\"188\":{}},\"parent\":{}}],[\"pass\",{\"_index\":360,\"name\":{\"401\":{}},\"parent\":{}}],[\"phi\",{\"_index\":378,\"name\":{\"420\":{}},\"parent\":{}}],[\"pi\",{\"_index\":366,\"name\":{\"408\":{}},\"parent\":{}}],[\"posinfinity\",{\"_index\":364,\"name\":{\"406\":{}},\"parent\":{}}],[\"post_hook\",{\"_index\":152,\"name\":{\"151\":{}},\"parent\":{}}],[\"post_hook_action\",{\"_index\":153,\"name\":{\"152\":{}},\"parent\":{}}],[\"post_hook_any_action\",{\"_index\":155,\"name\":{\"154\":{}},\"parent\":{}}],[\"post_hook_any_transition\",{\"_index\":159,\"name\":{\"158\":{}},\"parent\":{}}],[\"post_hook_entry\",{\"_index\":160,\"name\":{\"159\":{}},\"parent\":{}}],[\"post_hook_exit\",{\"_index\":161,\"name\":{\"160\":{}},\"parent\":{}}],[\"post_hook_forced_transition\",{\"_index\":158,\"name\":{\"157\":{}},\"parent\":{}}],[\"post_hook_global_action\",{\"_index\":154,\"name\":{\"153\":{}},\"parent\":{}}],[\"post_hook_main_transition\",{\"_index\":157,\"name\":{\"156\":{}},\"parent\":{}}],[\"post_hook_standard_transition\",{\"_index\":156,\"name\":{\"155\":{}},\"parent\":{}}],[\"postanyactionhook\",{\"_index\":482,\"name\":{\"572\":{}},\"parent\":{}}],[\"postanytransitionhook\",{\"_index\":494,\"name\":{\"588\":{}},\"parent\":{}}],[\"postbasichookdescription\",{\"_index\":473,\"name\":{\"554\":{}},\"parent\":{}}],[\"postentryhook\",{\"_index\":497,\"name\":{\"592\":{}},\"parent\":{}}],[\"postexithook\",{\"_index\":500,\"name\":{\"597\":{}},\"parent\":{}}],[\"postforcedtransitionhook\",{\"_index\":491,\"name\":{\"584\":{}},\"parent\":{}}],[\"postglobalactionhook\",{\"_index\":479,\"name\":{\"567\":{}},\"parent\":{}}],[\"posthookdescriptionwithaction\",{\"_index\":476,\"name\":{\"560\":{}},\"parent\":{}}],[\"posthookhandler\",{\"_index\":511,\"name\":{\"610\":{}},\"parent\":{}}],[\"postmaintransitionhook\",{\"_index\":488,\"name\":{\"580\":{}},\"parent\":{}}],[\"poststandardtransitionhook\",{\"_index\":485,\"name\":{\"576\":{}},\"parent\":{}}],[\"probabilistic_histo_walk\",{\"_index\":128,\"name\":{\"127\":{}},\"parent\":{}}],[\"probabilistic_transition\",{\"_index\":126,\"name\":{\"125\":{}},\"parent\":{}}],[\"probabilistic_walk\",{\"_index\":127,\"name\":{\"126\":{}},\"parent\":{}}],[\"probability\",{\"_index\":212,\"name\":{\"212\":{}},\"parent\":{}}],[\"probable_action_exits\",{\"_index\":132,\"name\":{\"131\":{}},\"parent\":{}}],[\"probable_exits_for\",{\"_index\":125,\"name\":{\"124\":{}},\"parent\":{}}],[\"prop\",{\"_index\":86,\"name\":{\"85\":{}},\"parent\":{}}],[\"property\",{\"_index\":297,\"name\":{\"328\":{}},\"parent\":{}}],[\"property_definition\",{\"_index\":239,\"name\":{\"247\":{}},\"parent\":{}}],[\"props\",{\"_index\":88,\"name\":{\"87\":{}},\"parent\":{}}],[\"publishing\",{\"_index\":541,\"name\":{\"632\":{}},\"parent\":{}}],[\"quick\",{\"_index\":518,\"name\":{\"614\":{}},\"parent\":{}}],[\"r_action\",{\"_index\":267,\"name\":{\"296\":{}},\"parent\":{}}],[\"r_probability\",{\"_index\":269,\"name\":{\"298\":{}},\"parent\":{}}],[\"raw_state_declarations\",{\"_index\":106,\"name\":{\"105\":{}},\"parent\":{}}],[\"react\",{\"_index\":523,\"name\":{\"618\":{}},\"parent\":{}}],[\"reference\",{\"_index\":520,\"name\":{\"615\":{},\"616\":{}},\"parent\":{}}],[\"requested_state\",{\"_index\":347,\"name\":{\"389\":{},\"431\":{}},\"parent\":{}}],[\"required\",{\"_index\":276,\"name\":{\"308\":{},\"374\":{}},\"parent\":{}}],[\"reverse_actions\",{\"_index\":343,\"name\":{\"385\":{}},\"parent\":{}}],[\"rollup\",{\"_index\":533,\"name\":{\"627\":{}},\"parent\":{}}],[\"root2\",{\"_index\":368,\"name\":{\"410\":{}},\"parent\":{}}],[\"roothalf\",{\"_index\":369,\"name\":{\"411\":{}},\"parent\":{}}],[\"se\",{\"_index\":265,\"name\":{\"293\":{},\"302\":{}},\"parent\":{}}],[\"seq\",{\"_index\":386,\"name\":{\"433\":{},\"449\":{}},\"parent\":{}}],[\"serialize\",{\"_index\":95,\"name\":{\"94\":{}},\"parent\":{}}],[\"set_hook\",{\"_index\":141,\"name\":{\"140\":{}},\"parent\":{}}],[\"shape\",{\"_index\":289,\"name\":{\"319\":{}},\"parent\":{}}],[\"shapes\",{\"_index\":195,\"name\":{\"195\":{},\"423\":{}},\"parent\":{}}],[\"shootout\",{\"_index\":546,\"name\":{\"635\":{}},\"parent\":{}}],[\"simplify_bidi\",{\"_index\":236,\"name\":{\"242\":{}},\"parent\":{}}],[\"sm\",{\"_index\":186,\"name\":{\"185\":{},\"190\":{}},\"parent\":{}}],[\"sql\",{\"_index\":532,\"name\":{\"626\":{}},\"parent\":{}}],[\"standard_state_style\",{\"_index\":168,\"name\":{\"167\":{}},\"parent\":{}}],[\"standardtransitionhook\",{\"_index\":455,\"name\":{\"528\":{}},\"parent\":{}}],[\"start\",{\"_index\":309,\"name\":{\"344\":{},\"614\":{}},\"parent\":{}}],[\"start_state_style\",{\"_index\":170,\"name\":{\"169\":{}},\"parent\":{}}],[\"start_states\",{\"_index\":237,\"name\":{\"244\":{}},\"parent\":{}}],[\"state\",{\"_index\":83,\"name\":{\"82\":{},\"278\":{},\"306\":{},\"327\":{},\"342\":{},\"366\":{},\"380\":{},\"402\":{},\"613\":{}},\"parent\":{}}],[\"state_declaration\",{\"_index\":107,\"name\":{\"106\":{},\"246\":{}},\"parent\":{}}],[\"state_declarations\",{\"_index\":108,\"name\":{\"107\":{}},\"parent\":{}}],[\"state_for\",{\"_index\":112,\"name\":{\"111\":{}},\"parent\":{}}],[\"state_is_complete\",{\"_index\":139,\"name\":{\"138\":{}},\"parent\":{}}],[\"state_is_final\",{\"_index\":93,\"name\":{\"92\":{}},\"parent\":{}}],[\"state_is_terminal\",{\"_index\":136,\"name\":{\"135\":{}},\"parent\":{}}],[\"state_property\",{\"_index\":240,\"name\":{\"248\":{}},\"parent\":{}}],[\"state_style_condense\",{\"_index\":201,\"name\":{\"201\":{}},\"parent\":{}}],[\"statelabel\",{\"_index\":293,\"name\":{\"323\":{}},\"parent\":{}}],[\"states\",{\"_index\":111,\"name\":{\"110\":{},\"381\":{}},\"parent\":{}}],[\"statetype\",{\"_index\":402,\"name\":{\"459\":{}},\"parent\":{}}],[\"strict_prop\",{\"_index\":87,\"name\":{\"86\":{}},\"parent\":{}}],[\"style\",{\"_index\":542,\"name\":{\"633\":{}},\"parent\":{}}],[\"style_for\",{\"_index\":175,\"name\":{\"174\":{}},\"parent\":{}}],[\"success\",{\"_index\":409,\"name\":{\"466\":{},\"469\":{},\"473\":{}},\"parent\":{}}],[\"terminal\",{\"_index\":311,\"name\":{\"346\":{}},\"parent\":{}}],[\"terminal_state_style\",{\"_index\":172,\"name\":{\"171\":{}},\"parent\":{}}],[\"textcolor\",{\"_index\":294,\"name\":{\"324\":{}},\"parent\":{}}],[\"the\",{\"_index\":528,\"name\":{\"624\":{}},\"parent\":{}}],[\"theme\",{\"_index\":117,\"name\":{\"116\":{},\"230\":{},\"633\":{}},\"parent\":{}}],[\"themes\",{\"_index\":118,\"name\":{\"117\":{}},\"parent\":{}}],[\"timestamp\",{\"_index\":329,\"name\":{\"364\":{}},\"parent\":{}}],[\"title\",{\"_index\":321,\"name\":{\"357\":{}},\"parent\":{}}],[\"to\",{\"_index\":209,\"name\":{\"208\":{},\"273\":{},\"292\":{},\"510\":{},\"516\":{},\"547\":{},\"558\":{},\"564\":{},\"595\":{}},\"parent\":{}}],[\"transfer_state_properties\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"transition\",{\"_index\":177,\"name\":{\"176\":{}},\"parent\":{}}],[\"transition_impl\",{\"_index\":163,\"name\":{\"162\":{}},\"parent\":{}}],[\"transitions\",{\"_index\":230,\"name\":{\"229\":{},\"281\":{}},\"parent\":{}}],[\"typescript\",{\"_index\":527,\"name\":{\"623\":{}},\"parent\":{}}],[\"unique\",{\"_index\":387,\"name\":{\"434\":{},\"450\":{}},\"parent\":{}}],[\"val\",{\"_index\":281,\"name\":{\"312\":{}},\"parent\":{}}],[\"valid_action\",{\"_index\":182,\"name\":{\"181\":{}},\"parent\":{}}],[\"valid_force_transition\",{\"_index\":184,\"name\":{\"183\":{}},\"parent\":{}}],[\"valid_transition\",{\"_index\":183,\"name\":{\"182\":{}},\"parent\":{}}],[\"value\",{\"_index\":274,\"name\":{\"304\":{},\"331\":{},\"335\":{},\"463\":{},\"477\":{},\"481\":{},\"485\":{},\"489\":{},\"493\":{},\"497\":{},\"501\":{},\"505\":{}},\"parent\":{}}],[\"version\",{\"_index\":399,\"name\":{\"446\":{},\"447\":{},\"448\":{}},\"parent\":{\"447\":{}}}],[\"vue\",{\"_index\":524,\"name\":{\"619\":{}},\"parent\":{}}],[\"webpack\",{\"_index\":534,\"name\":{\"628\":{}},\"parent\":{}}],[\"weighted_histo_key\",{\"_index\":391,\"name\":{\"438\":{},\"455\":{}},\"parent\":{}}],[\"weighted_rand_select\",{\"_index\":392,\"name\":{\"439\":{},\"452\":{}},\"parent\":{}}],[\"weighted_sample_select\",{\"_index\":393,\"name\":{\"440\":{},\"454\":{}},\"parent\":{}}],[\"what\",{\"_index\":514,\"name\":{\"613\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/docs/classes/jssm.Machine.html b/docs/docs/classes/jssm.Machine.html index e6d77fe4..aec06509 100644 --- a/docs/docs/classes/jssm.Machine.html +++ b/docs/docs/classes/jssm.Machine.html @@ -1,10 +1,10 @@ -Machine | JSSM, a JavaScript state machine - the FSM for FSL
Options
All
  • Public
  • Public/Protected
  • All
Menu

Type Parameters

  • mDT

Hierarchy

  • Machine

Index

Constructors

Properties

Accessors

Methods

Constructors

Properties

_actions: Map<string, Map<string, number>>
_active_state_style: Partial<JssmStateDeclaration>
_any_action_hook: HookHandler<mDT>
_any_transition_hook: HookHandler<mDT>
_arrange_declaration: string[][]
_arrange_end_declaration: string[][]
_arrange_start_declaration: string[][]
_data?: mDT
_default_properties: Map<string, any>
_dot_preamble: string
_edge_map: Map<string, Map<string, number>>
_edges: JssmTransition<mDT>[]
_end_state_style: Partial<JssmStateDeclaration>
_end_states: Set<string>
_entry_hooks: Map<string, HookHandler<mDT>>
_exit_hooks: Map<string, HookHandler<mDT>>
_forced_transition_hook: HookHandler<mDT>
_fsl_version?: string
_global_action_hooks: Map<string, HookHandler<mDT>>
_graph_layout: JssmLayout
_has_basic_hooks: boolean
_has_entry_hooks: boolean
_has_exit_hooks: boolean
_has_global_action_hooks: boolean
_has_hooks: boolean
_has_named_hooks: boolean
_has_post_basic_hooks: boolean
_has_post_entry_hooks: boolean
_has_post_exit_hooks: boolean
_has_post_global_action_hooks: boolean
_has_post_hooks: boolean
_has_post_named_hooks: boolean
_has_post_transition_hooks: boolean
_has_transition_hooks: boolean
_history: JssmHistory<mDT>
_history_length: number
_hooked_state_style: Partial<JssmStateDeclaration>
_hooks: Map<string, HookHandler<mDT>>
_instance_name: string
_machine_author?: string[]
_machine_comment?: string
_machine_contributor?: string[]
_machine_definition?: string
_machine_language?: string
_machine_license?: string
_machine_name?: string
_machine_version?: string
_main_transition_hook: HookHandler<mDT>
_named_hooks: Map<string, HookHandler<mDT>>
_named_transitions: Map<string, number>
_post_any_action_hook: HookHandler<mDT>
_post_any_transition_hook: HookHandler<mDT>
_post_entry_hooks: Map<string, HookHandler<mDT>>
_post_exit_hooks: Map<string, HookHandler<mDT>>
_post_forced_transition_hook: HookHandler<mDT>
_post_global_action_hooks: Map<string, HookHandler<mDT>>
_post_hooks: Map<string, HookHandler<mDT>>
_post_main_transition_hook: HookHandler<mDT>
_post_named_hooks: Map<string, HookHandler<mDT>>
_post_standard_transition_hook: HookHandler<mDT>
_property_keys: Set<string>
_raw_state_declaration?: <internal>.Object[]
_required_properties: Set<string>
_reverse_action_targets: Map<string, Map<string, number>>
_reverse_actions: Map<string, Map<string, number>>
_standard_transition_hook: HookHandler<mDT>
_start_state_style: Partial<JssmStateDeclaration>
_start_states: Set<string>
_state: string
_state_declarations: Map<string, JssmStateDeclaration>
_state_labels: Map<string, string>
_state_properties: Map<string, any>
_states: Map<string, JssmGenericState>
_terminal_state_style: Partial<JssmStateDeclaration>
_theme: FslTheme

Accessors

  • actions(whichState?: string): string[]

Returns boolean

  • actions(whichState?: string): string[]
  • List all actions available from this state. Please note that the order of the actions is not guaranteed.

    import { sm } from 'jssm';

    const machine = sm`
    red 'next' -> green 'next' -> yellow 'next' -> red;
    [red yellow green] 'shutdown' ~> off 'start' -> red;
    `;

    console.log( machine.state() ); // logs 'red'
    console.log( machine.actions() ); // logs ['next', 'shutdown']

    machine.action('next'); // true
    console.log( machine.state() ); // logs 'green'
    console.log( machine.actions() ); // logs ['next', 'shutdown']

    machine.action('shutdown'); // true
    console.log( machine.state() ); // logs 'off'
    console.log( machine.actions() ); // logs ['start']

    machine.action('start'); // true
    console.log( machine.state() ); // logs 'red'
    console.log( machine.actions() ); // logs ['next', 'shutdown']

    Parameters

    • whichState: string = ...

      The state whose actions to have listed

      -

    Returns string[]

  • current_action_for(action: string): number
  • data(): mDT

Returns string[]

  • current_action_for(action: string): number
  • data(): mDT
  • Get the current data of a machine.

    import * as jssm from 'jssm';

    const lswitch = jssm.from('on <=> off;', {data: 1});
    console.log( lswitch.data() ); // 1
    -

    Returns mDT

  • do(actionName: string, newData?: mDT): boolean
  • do(actionName: string, newData?: mDT): boolean
  • Instruct the machine to complete an action. Synonym for action.

    const light = sm`
    off 'start' -> red;
    red 'next' -> green 'next' -> yellow 'next' -> red;
    [red yellow green] 'shutdown' ~> off;
    `;

    light.state(); // 'off'
    light.do('start'); // true
    light.state(); // 'red'
    light.do('next'); // true
    light.state(); // 'green'
    light.do('next'); // true
    light.state(); // 'yellow'
    light.do('dance'); // !! false - no such action
    light.state(); // 'yellow'
    light.do('start'); // !! false - yellow does not have the action start
    light.state(); // 'yellow'
    @@ -108,7 +108,7 @@

    The action to engage

  • Optional newData: mDT

    The data change to insert during the action

    -

Returns boolean

  • dot_preamble(): string
  • force_transition(newState: string, newData?: mDT): boolean

Returns boolean

  • dot_preamble(): string
  • force_transition(newState: string, newData?: mDT): boolean
  • Instruct the machine to complete a forced transition (which will reject if called with a normal transition call.)

    const light = sm`red -> green -> yellow -> red; [red yellow green] 'shutdown' ~> off 'start' -> red;`;

    light.state(); // 'red'
    light.transition('off'); // false
    light.state(); // 'red'
    light.force_transition('off'); // true
    light.state(); // 'off' @@ -117,7 +117,7 @@

    The state to switch to

  • Optional newData: mDT

    The data change to insert during the transition

    -

Returns boolean

  • fsl_version(): string
  • get_transition_by_state_names(from: string, to: string): number
  • go(newState: string, newData?: mDT): boolean

Returns boolean

  • fsl_version(): string
  • get_transition_by_state_names(from: string, to: string): number
  • go(newState: string, newData?: mDT): boolean
  • Instruct the machine to complete a transition. Synonym for transition.

    const light = sm`red -> green -> yellow -> red; [red yellow green] 'shutdown' ~> off 'start' -> red;`;

    light.state(); // 'red'
    light.go('green'); // true
    light.state(); // 'green'
    @@ -125,73 +125,73 @@

    The state to switch to

  • Optional newData: mDT

    The data change to insert during the transition

    -

Returns boolean

  • graph_layout(): string
  • has_completes(): boolean
  • has_hooks(state: string): false
  • has_state(whichState: string): boolean

Returns boolean

  • graph_layout(): string
  • has_completes(): boolean
  • has_hooks(state: string): false
  • has_state(whichState: string): boolean
  • Check whether the machine knows a given state.

    import * as jssm from 'jssm';

    const lswitch = jssm.from('on <=> off;');

    console.log( lswitch.has_state('off') ); // true
    console.log( lswitch.has_state('dance') ); // false

    Parameters

    • whichState: string

      The state to be checked for extance

      -

    Returns boolean

  • has_terminals(): boolean
  • has_unenterables(): boolean
  • hook_action(from: string, to: string, action: string, handler: HookHandler<mDT>): Machine<mDT>
  • instance_name(): string
  • is_complete(): boolean
  • is_end_state(whichState: string): boolean

Returns boolean

  • has_terminals(): boolean
  • has_unenterables(): boolean
  • hook_action(from: string, to: string, action: string, handler: HookHandler<mDT>): Machine<mDT>
  • instance_name(): string
  • is_complete(): boolean
  • is_end_state(whichState: string): boolean
  • Check whether a given state is a valid start state (either because it was explicitly named as such, or because it was the first mentioned state.)

    import { sm, is_end_state } from 'jssm';

    const example = sm`a -> b;`;

    console.log( final_test.is_start_state('a') ); // false
    console.log( final_test.is_start_state('b') ); // true

    const example = sm`end_states: [a b]; a -> b;`;

    console.log( final_test.is_start_state('a') ); // true
    console.log( final_test.is_start_state('b') ); // true

    Parameters

    • whichState: string

      The name of the state to check

      -

    Returns boolean

  • is_final(): boolean

Returns boolean

  • is_final(): boolean
  • Check whether the current state is final (either has no exits or is marked complete.)

    import { sm, is_final } from 'jssm';

    const final_test = sm`first -> second;`;

    console.log( final_test.is_final() ); // false
    state.transition('second');
    console.log( final_test.is_final() ); // true
    -

    Returns boolean

  • is_start_state(whichState: string): boolean
  • is_start_state(whichState: string): boolean
  • Check whether a given state is a valid start state (either because it was explicitly named as such, or because it was the first mentioned state.)

    import { sm, is_start_state } from 'jssm';

    const example = sm`a -> b;`;

    console.log( final_test.is_start_state('a') ); // true
    console.log( final_test.is_start_state('b') ); // false

    const example = sm`start_states: [a b]; a -> b;`;

    console.log( final_test.is_start_state('a') ); // true
    console.log( final_test.is_start_state('b') ); // true

    Parameters

    • whichState: string

      The name of the state to check

      -

    Returns boolean

  • is_terminal(): boolean
  • is_unenterable(whichState: string): boolean
  • known_prop(prop_name: string): boolean

Returns boolean

  • is_terminal(): boolean
  • is_unenterable(whichState: string): boolean
  • known_prop(prop_name: string): boolean
  • Check whether a given string is a known property's name.

    const example = sm`property foo default 1; a->b;`;

    example.known_prop('foo'); // true
    example.known_prop('bar'); // false

    Parameters

    • prop_name: string

      The relevant property name to look up

      -

    Returns boolean

  • known_props(): string[]

Returns boolean

  • known_props(): string[]
  • List all known property names. If you'd also like values, use props instead. The order of the properties is not defined, and the properties generally will not be sorted.

    
     
    -

    Returns string[]

  • label_for(state: string): string
  • label_for(state: string): string
  • Get the label for a given state, if any; return undefined otherwise.

    import * as jssm from 'jssm';

    const lswitch = jssm.from('a -> b; state a: { label: "Foo!"; };');
    console.log( lswitch.label_for('a') ); // 'Foo!'
    -

    Parameters

    • state: string

    Returns string

  • list_actions(): string[]
  • list_actions(): string[]
  • Lists all edges of a machine.

    import { sm } from 'jssm';

    const lswitch = sm`on 'toggle' <=> 'toggle' off;`;

    lswitch.list_edges();
    [
    {
    from: 'on',
    to: 'off',
    kind: 'main',
    forced_only: false,
    main_path: true,
    action: 'toggle'
    },
    {
    from: 'off',
    to: 'on',
    kind: 'main',
    forced_only: false,
    main_path: true,
    action: 'toggle'
    }
    ]
    -

    Returns JssmTransition<mDT>[]

  • list_entrances(whichState?: string): string[]
  • list_entrances(whichState?: string): string[]
  • List all entrances attached to the current state. Please note that the order of the list is not defined.

    import { sm } from 'jssm';

    const light = sm`red 'next' -> green 'next' -> yellow 'next' -> red; [red yellow green] 'shutdown' ~> off 'start' -> red;`;

    light.state(); // 'red'
    light.list_entrances(); // [ 'yellow', 'off' ]

    Parameters

    • whichState: string = ...

      The state whose entrances to have listed

      -

    Returns string[]

  • list_exit_actions(whichState?: string): string[]
  • list_exits(whichState?: string): string[]

Returns string[]

  • list_exit_actions(whichState?: string): string[]
  • list_exits(whichState?: string): string[]
  • List all exits attached to the current state. Please note that the order of the list is not defined.

    import { sm } from 'jssm';

    const light = sm`red 'next' -> green 'next' -> yellow 'next' -> red; [red yellow green] 'shutdown' ~> off 'start' -> red;`;

    light.state(); // 'red'
    light.list_exits(); // [ 'green', 'off' ]

    Parameters

    • whichState: string = ...

      The state whose exits to have listed

      -

    Returns string[]

  • list_named_transitions(): Map<string, number>
  • list_states_having_action(whichState: string): string[]

Returns string[]

  • list_named_transitions(): Map<string, number>
  • list_states_having_action(whichState: string): string[]
  • List all states that have a specific action attached. Please note that the order of the states is not guaranteed.

    import { sm } from 'jssm';

    const machine = sm`
    red 'next' -> green 'next' -> yellow 'next' -> red;
    [red yellow green] 'shutdown' ~> off 'start' -> red;
    `;

    console.log( machine.list_states_having_action('next') ); // ['red', 'green', 'yellow']
    console.log( machine.list_states_having_action('start') ); // ['off']

    Parameters

    • whichState: string

      The action to be checked for associated states

      -

    Returns string[]

Returns string[]

  • List all transitions attached to the current state, sorted by entrance and exit. The order of each sublist is not defined. A node could appear in both lists.

    @@ -199,7 +199,7 @@

    Parameters

    • whichState: string = ...

      The state whose transitions to have listed

      -

    Returns JssmTransitionList

  • machine_author(): string[]
  • machine_comment(): string
  • machine_contributor(): string[]
  • machine_definition(): string
  • machine_language(): string
  • machine_license(): string
  • machine_name(): string
  • machine_version(): string
  • post_hook_action(from: string, to: string, action: string, handler: HookHandler<mDT>): Machine<mDT>
  • probabilistic_histo_walk(n: number): Map<string, number>
  • probabilistic_transition(): boolean
  • probabilistic_walk(n: number): string[]
  • probable_action_exits(whichState?: string): any[]
  • prop(name: string): any

Returns JssmTransitionList

  • machine_author(): string[]
  • machine_comment(): string
  • machine_contributor(): string[]
  • machine_definition(): string
  • machine_language(): string
  • machine_license(): string
  • machine_name(): string
  • machine_version(): string
  • post_hook_action(from: string, to: string, action: string, handler: HookHandler<mDT>): Machine<mDT>
  • probabilistic_histo_walk(n: number): Map<string, number>
  • probabilistic_transition(): boolean
  • probabilistic_walk(n: number): string[]
  • probable_action_exits(whichState?: string): any[]
  • prop(name: string): any
  • Get the current value of a given property name.

    
     
    @@ -207,35 +207,35 @@

    The relevant property name to look up

Returns any

The value behind the prop name. Because functional props are evaluated as getters, this can be anything.

-
  • props(): object
  • props(): object
  • Get the current value of every prop, as an object. If no current definition exists for a prop - that is, if the prop was defined without a default and the current state also doesn't define the prop - then that prop will be listed in the returned object with a value of undefined.

    const traffic_light = sm`

    property can_go default true;
    property hesitate default true;
    property stop_first default false;

    Off -> Red => Green => Yellow => Red;
    [Red Yellow Green] ~> [Off FlashingRed];
    FlashingRed -> Red;

    state Red: { property stop_first true; property can_go false; };
    state Off: { property stop_first true; };
    state FlashingRed: { property stop_first true; };
    state Green: { property hesitate false; };

    `;

    traffic_light.state(); // Off
    traffic_light.props(); // { can_go: true, hesitate: true, stop_first: true; }

    traffic_light.go('Red');
    traffic_light.props(); // { can_go: false, hesitate: true, stop_first: true; }

    traffic_light.go('Green');
    traffic_light.props(); // { can_go: true, hesitate: false, stop_first: false; }
    -

    Returns object

  • Serialize the current machine, including all defining state but not the machine string, to a structure. This means you will need the machine string to recreate (to not waste repeated space;) if you want the machine string embedded, call {@link serialize_with_string} instead.

    -

    Parameters

    • Optional comment: string

    Returns JssmSerialization<mDT>

  • state(): string
  • state(): string
  • Get the current state of a machine.

    import * as jssm from 'jssm';

    const lswitch = jssm.from('on <=> off;');
    console.log( lswitch.state() ); // 'on'

    lswitch.transition('off');
    console.log( lswitch.state() ); // 'off'
    -

    Returns string

  • state_is_complete(whichState: string): boolean
  • state_is_final(whichState: string): boolean
  • state_is_complete(whichState: string): boolean
  • state_is_final(whichState: string): boolean
  • Check whether a given state is final (either has no exits or is marked complete.)

    import { sm, state_is_final } from 'jssm';

    const final_test = sm`first -> second;`;

    console.log( final_test.state_is_final('first') ); // false
    console.log( final_test.state_is_final('second') ); // true

    Parameters

    • whichState: string

      The name of the state to check for finality

      -

    Returns boolean

  • state_is_terminal(whichState: string): boolean
  • states(): string[]

Returns boolean

  • state_is_terminal(whichState: string): boolean
  • states(): string[]
  • List all the states known by the machine. Please note that the order of these states is not guaranteed.

    import * as jssm from 'jssm';

    const lswitch = jssm.from('on <=> off;');
    console.log( lswitch.states() ); // ['on', 'off']
    -

    Returns string[]

  • strict_prop(name: string): any
  • strict_prop(name: string): any
  • Get the current value of a given property name. If missing on the state and without a global default, throw, unlike prop, which would return undefined instead.

    @@ -245,7 +245,7 @@

    The relevant property name to look up

Returns any

The value behind the prop name. Because functional props are evaluated as getters, this can be anything.

-
  • Gets the composite style for a specific node by individually imposing the style layers on a given object, after determining which layers are appropriate.

    @@ -256,7 +256,7 @@ terminal styles; then the start styles; then the end styles; finally, the active styles. Remember, last wins.

    The base state style must exist. All other styles are optional.

    -

    Parameters

    • state: string

    Returns Partial<JssmStateDeclaration>

  • transition(newState: string, newData?: mDT): boolean
  • transition(newState: string, newData?: mDT): boolean
  • Instruct the machine to complete a transition. Synonym for go.

    const light = sm`
    off 'start' -> red;
    red 'next' -> green 'next' -> yellow 'next' -> red;
    [red yellow green] 'shutdown' ~> off;
    `;

    light.state(); // 'off'
    light.go('red'); // true
    light.state(); // 'red'
    light.go('green'); // true
    light.state(); // 'green'
    light.go('blue'); // !! false - no such state
    light.state(); // 'green'
    light.go('red'); // !! false - green may not go directly to red, only to yellow
    light.state(); // 'green'
    @@ -264,4 +264,4 @@

    The state to switch to

  • Optional newData: mDT

    The data change to insert during the transition

    -

Returns boolean

  • transition_impl(newStateOrAction: string, newData: mDT, wasForced: boolean, wasAction: boolean): boolean
  • Parameters

    • newStateOrAction: string
    • newData: mDT
    • wasForced: boolean
    • wasAction: boolean

    Returns boolean

  • valid_action(action: string, _newData?: mDT): boolean
  • valid_force_transition(newState: string, _newData?: mDT): boolean
  • valid_transition(newState: string, _newData?: mDT): boolean

Legend

  • Namespace
  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Property
  • Method
  • Accessor

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Returns boolean

  • transition_impl(newStateOrAction: string, newData: mDT, wasForced: boolean, wasAction: boolean): boolean
  • Parameters

    • newStateOrAction: string
    • newData: mDT
    • wasForced: boolean
    • wasAction: boolean

    Returns boolean

  • valid_action(action: string, _newData?: mDT): boolean
  • valid_force_transition(newState: string, _newData?: mDT): boolean
  • valid_transition(newState: string, _newData?: mDT): boolean

Legend

  • Namespace
  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Property
  • Method
  • Accessor

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/docs/classes/jssm_error.JssmError.html b/docs/docs/classes/jssm_error.JssmError.html index 0bedadd6..8cf92483 100644 --- a/docs/docs/classes/jssm_error.JssmError.html +++ b/docs/docs/classes/jssm_error.JssmError.html @@ -1,4 +1,4 @@ -JssmError | JSSM, a JavaScript state machine - the FSM for FSL
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

Properties

base_message: string
message: string
name: string
requested_state: string
stack?: string
prepareStackTrace?: ((err: <internal>.Error, stackTraces: CallSite[]) => any)

Type declaration

  • Compile a machine's JSON intermediate representation to a config object. If you're using this (probably don't,) you're probably also using parse to get the IR, and the object constructor @@ -43,7 +43,7 @@

    Hey!

    The type of the machine data member; usually omitted

Parameters

  • tree: JssmParseTree

    The parse tree to be boiled down into a machine config

    -

Returns JssmGenericConfig<mDT>

Returns JssmGenericConfig<mDT>

  • Create a state machine from an implementation string. This is one of the two main paths for working with JSSM, alongside sm.

    Use this method when you want to conveniently pull a state machine from a @@ -57,7 +57,7 @@

    Hey!

    The FSL code to evaluate

  • Optional ExtraConstructorFields: Partial<JssmGenericConfig<mDT>>

    Extra non-code configuration to pass at creation time

    -

Returns Machine<mDT>

  • is_hook_rejection<mDT>(hr: HookResult<mDT>): boolean

Returns Machine<mDT>

  • is_hook_rejection<mDT>(hr: HookResult<mDT>): boolean
  • An internal convenience wrapper for parsing then compiling a machine string. Not generally meant for external use. Please see compile or sm.

    @@ -65,7 +65,7 @@

    Hey!

    The type of the machine data member; usually omitted

Parameters

  • plan: string

    The FSL code to be evaluated and built into a machine config

    -

Returns JssmGenericConfig<mDT>

Returns JssmGenericConfig<mDT>

  • This method wraps the parser call that comes from the peg grammar, parse. Generally neither this nor that should be used directly unless you mean to develop plugins or extensions for the machine.

    @@ -96,7 +96,7 @@

    Hey!

    The FSL code to be evaluated

  • Optional options: <internal>.Object

    Things to control about the instance

    -

Returns any

Returns any

  • Create a state machine from a template string. This is one of the two main paths for working with JSSM, alongside from.

    Use this method when you want to work directly and conveniently with a @@ -110,7 +110,7 @@

    Hey!

    The assembled code

  • Rest ...remainder: any[]

    The mechanic for template argument insertion

    -

Returns Machine<mDT>

Returns Machine<mDT>