chordsheetjs 14.5.0 → 14.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bundle.js +688 -677
- package/lib/bundle.min.js +117 -117
- package/lib/index.js +666 -654
- package/lib/index.js.map +1 -1
- package/lib/main.d.ts +1 -1
- package/lib/main.d.ts.map +1 -1
- package/lib/module.js +666 -654
- package/lib/module.js.map +1 -1
- package/package.json +1 -1
package/lib/bundle.js
CHANGED
|
@@ -14251,7 +14251,7 @@ var ChordSheetJS = (() => {
|
|
|
14251
14251
|
function createDOMPurify() {
|
|
14252
14252
|
let window2 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
|
|
14253
14253
|
const DOMPurify = (root) => createDOMPurify(root);
|
|
14254
|
-
DOMPurify.version = "3.
|
|
14254
|
+
DOMPurify.version = "3.4.0";
|
|
14255
14255
|
DOMPurify.removed = [];
|
|
14256
14256
|
if (!window2 || !window2.document || window2.document.nodeType !== NODE_TYPE.document || !window2.Element) {
|
|
14257
14257
|
DOMPurify.isSupported = false;
|
|
@@ -14434,7 +14434,7 @@ var ChordSheetJS = (() => {
|
|
|
14434
14434
|
NAMESPACE = cfg.NAMESPACE || HTML_NAMESPACE;
|
|
14435
14435
|
MATHML_TEXT_INTEGRATION_POINTS = cfg.MATHML_TEXT_INTEGRATION_POINTS || MATHML_TEXT_INTEGRATION_POINTS;
|
|
14436
14436
|
HTML_INTEGRATION_POINTS = cfg.HTML_INTEGRATION_POINTS || HTML_INTEGRATION_POINTS;
|
|
14437
|
-
CUSTOM_ELEMENT_HANDLING = cfg.CUSTOM_ELEMENT_HANDLING ||
|
|
14437
|
+
CUSTOM_ELEMENT_HANDLING = cfg.CUSTOM_ELEMENT_HANDLING || create(null);
|
|
14438
14438
|
if (cfg.CUSTOM_ELEMENT_HANDLING && isRegexOrFunction(cfg.CUSTOM_ELEMENT_HANDLING.tagNameCheck)) {
|
|
14439
14439
|
CUSTOM_ELEMENT_HANDLING.tagNameCheck = cfg.CUSTOM_ELEMENT_HANDLING.tagNameCheck;
|
|
14440
14440
|
}
|
|
@@ -14473,12 +14473,8 @@ var ChordSheetJS = (() => {
|
|
|
14473
14473
|
addToSet(ALLOWED_ATTR, xml);
|
|
14474
14474
|
}
|
|
14475
14475
|
}
|
|
14476
|
-
|
|
14477
|
-
|
|
14478
|
-
}
|
|
14479
|
-
if (!objectHasOwnProperty(cfg, "ADD_ATTR")) {
|
|
14480
|
-
EXTRA_ELEMENT_HANDLING.attributeCheck = null;
|
|
14481
|
-
}
|
|
14476
|
+
EXTRA_ELEMENT_HANDLING.tagCheck = null;
|
|
14477
|
+
EXTRA_ELEMENT_HANDLING.attributeCheck = null;
|
|
14482
14478
|
if (cfg.ADD_TAGS) {
|
|
14483
14479
|
if (typeof cfg.ADD_TAGS === "function") {
|
|
14484
14480
|
EXTRA_ELEMENT_HANDLING.tagCheck = cfg.ADD_TAGS;
|
|
@@ -14701,6 +14697,10 @@ var ChordSheetJS = (() => {
|
|
|
14701
14697
|
_forceRemove(currentNode);
|
|
14702
14698
|
return true;
|
|
14703
14699
|
}
|
|
14700
|
+
if (SAFE_FOR_XML && currentNode.namespaceURI === HTML_NAMESPACE && tagName === "style" && _isNode(currentNode.firstElementChild)) {
|
|
14701
|
+
_forceRemove(currentNode);
|
|
14702
|
+
return true;
|
|
14703
|
+
}
|
|
14704
14704
|
if (currentNode.nodeType === NODE_TYPE.progressingInstruction) {
|
|
14705
14705
|
_forceRemove(currentNode);
|
|
14706
14706
|
return true;
|
|
@@ -14709,7 +14709,7 @@ var ChordSheetJS = (() => {
|
|
|
14709
14709
|
_forceRemove(currentNode);
|
|
14710
14710
|
return true;
|
|
14711
14711
|
}
|
|
14712
|
-
if (!(EXTRA_ELEMENT_HANDLING.tagCheck instanceof Function && EXTRA_ELEMENT_HANDLING.tagCheck(tagName)) &&
|
|
14712
|
+
if (FORBID_TAGS[tagName] || !(EXTRA_ELEMENT_HANDLING.tagCheck instanceof Function && EXTRA_ELEMENT_HANDLING.tagCheck(tagName)) && !ALLOWED_TAGS[tagName]) {
|
|
14713
14713
|
if (!FORBID_TAGS[tagName] && _isBasicCustomElement(tagName)) {
|
|
14714
14714
|
if (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, tagName)) {
|
|
14715
14715
|
return false;
|
|
@@ -14889,7 +14889,7 @@ var ChordSheetJS = (() => {
|
|
|
14889
14889
|
}
|
|
14890
14890
|
_executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
|
|
14891
14891
|
};
|
|
14892
|
-
const
|
|
14892
|
+
const _sanitizeShadowDOM2 = function _sanitizeShadowDOM(fragment) {
|
|
14893
14893
|
let shadowNode = null;
|
|
14894
14894
|
const shadowIterator = _createNodeIterator(fragment);
|
|
14895
14895
|
_executeHooks(hooks.beforeSanitizeShadowDOM, fragment, null);
|
|
@@ -14968,13 +14968,21 @@ var ChordSheetJS = (() => {
|
|
|
14968
14968
|
_sanitizeElements(currentNode);
|
|
14969
14969
|
_sanitizeAttributes(currentNode);
|
|
14970
14970
|
if (currentNode.content instanceof DocumentFragment) {
|
|
14971
|
-
|
|
14971
|
+
_sanitizeShadowDOM2(currentNode.content);
|
|
14972
14972
|
}
|
|
14973
14973
|
}
|
|
14974
14974
|
if (IN_PLACE) {
|
|
14975
14975
|
return dirty;
|
|
14976
14976
|
}
|
|
14977
14977
|
if (RETURN_DOM) {
|
|
14978
|
+
if (SAFE_FOR_TEMPLATES) {
|
|
14979
|
+
body.normalize();
|
|
14980
|
+
let html2 = body.innerHTML;
|
|
14981
|
+
arrayForEach([MUSTACHE_EXPR2, ERB_EXPR2, TMPLIT_EXPR2], (expr) => {
|
|
14982
|
+
html2 = stringReplace(html2, expr, " ");
|
|
14983
|
+
});
|
|
14984
|
+
body.innerHTML = html2;
|
|
14985
|
+
}
|
|
14978
14986
|
if (RETURN_DOM_FRAGMENT) {
|
|
14979
14987
|
returnNode = createDocumentFragment.call(body.ownerDocument);
|
|
14980
14988
|
while (body.firstChild) {
|
|
@@ -15105,7 +15113,7 @@ var ChordSheetJS = (() => {
|
|
|
15105
15113
|
text = freeze(["#text"]);
|
|
15106
15114
|
html = freeze(["accept", "action", "align", "alt", "autocapitalize", "autocomplete", "autopictureinpicture", "autoplay", "background", "bgcolor", "border", "capture", "cellpadding", "cellspacing", "checked", "cite", "class", "clear", "color", "cols", "colspan", "controls", "controlslist", "coords", "crossorigin", "datetime", "decoding", "default", "dir", "disabled", "disablepictureinpicture", "disableremoteplayback", "download", "draggable", "enctype", "enterkeyhint", "exportparts", "face", "for", "headers", "height", "hidden", "high", "href", "hreflang", "id", "inert", "inputmode", "integrity", "ismap", "kind", "label", "lang", "list", "loading", "loop", "low", "max", "maxlength", "media", "method", "min", "minlength", "multiple", "muted", "name", "nonce", "noshade", "novalidate", "nowrap", "open", "optimum", "part", "pattern", "placeholder", "playsinline", "popover", "popovertarget", "popovertargetaction", "poster", "preload", "pubdate", "radiogroup", "readonly", "rel", "required", "rev", "reversed", "role", "rows", "rowspan", "spellcheck", "scope", "selected", "shape", "size", "sizes", "slot", "span", "srclang", "start", "src", "srcset", "step", "style", "summary", "tabindex", "title", "translate", "type", "usemap", "valign", "value", "width", "wrap", "xmlns", "slot"]);
|
|
15107
15115
|
svg = freeze(["accent-height", "accumulate", "additive", "alignment-baseline", "amplitude", "ascent", "attributename", "attributetype", "azimuth", "basefrequency", "baseline-shift", "begin", "bias", "by", "class", "clip", "clippathunits", "clip-path", "clip-rule", "color", "color-interpolation", "color-interpolation-filters", "color-profile", "color-rendering", "cx", "cy", "d", "dx", "dy", "diffuseconstant", "direction", "display", "divisor", "dur", "edgemode", "elevation", "end", "exponent", "fill", "fill-opacity", "fill-rule", "filter", "filterunits", "flood-color", "flood-opacity", "font-family", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-variant", "font-weight", "fx", "fy", "g1", "g2", "glyph-name", "glyphref", "gradientunits", "gradienttransform", "height", "href", "id", "image-rendering", "in", "in2", "intercept", "k", "k1", "k2", "k3", "k4", "kerning", "keypoints", "keysplines", "keytimes", "lang", "lengthadjust", "letter-spacing", "kernelmatrix", "kernelunitlength", "lighting-color", "local", "marker-end", "marker-mid", "marker-start", "markerheight", "markerunits", "markerwidth", "maskcontentunits", "maskunits", "max", "mask", "mask-type", "media", "method", "mode", "min", "name", "numoctaves", "offset", "operator", "opacity", "order", "orient", "orientation", "origin", "overflow", "paint-order", "path", "pathlength", "patterncontentunits", "patterntransform", "patternunits", "points", "preservealpha", "preserveaspectratio", "primitiveunits", "r", "rx", "ry", "radius", "refx", "refy", "repeatcount", "repeatdur", "restart", "result", "rotate", "scale", "seed", "shape-rendering", "slope", "specularconstant", "specularexponent", "spreadmethod", "startoffset", "stddeviation", "stitchtiles", "stop-color", "stop-opacity", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke", "stroke-width", "style", "surfacescale", "systemlanguage", "tabindex", "tablevalues", "targetx", "targety", "transform", "transform-origin", "text-anchor", "text-decoration", "text-rendering", "textlength", "type", "u1", "u2", "unicode", "values", "viewbox", "visibility", "version", "vert-adv-y", "vert-origin-x", "vert-origin-y", "width", "word-spacing", "wrap", "writing-mode", "xchannelselector", "ychannelselector", "x", "x1", "x2", "xmlns", "y", "y1", "y2", "z", "zoomandpan"]);
|
|
15108
|
-
mathMl = freeze(["accent", "accentunder", "align", "bevelled", "close", "
|
|
15116
|
+
mathMl = freeze(["accent", "accentunder", "align", "bevelled", "close", "columnalign", "columnlines", "columnspacing", "columnspan", "denomalign", "depth", "dir", "display", "displaystyle", "encoding", "fence", "frame", "height", "href", "id", "largeop", "length", "linethickness", "lquote", "lspace", "mathbackground", "mathcolor", "mathsize", "mathvariant", "maxsize", "minsize", "movablelimits", "notation", "numalign", "open", "rowalign", "rowlines", "rowspacing", "rowspan", "rspace", "rquote", "scriptlevel", "scriptminsize", "scriptsizemultiplier", "selection", "separator", "separators", "stretchy", "subscriptshift", "supscriptshift", "symmetric", "voffset", "width", "xmlns"]);
|
|
15109
15117
|
xml = freeze(["xlink:href", "xml:id", "xlink:title", "xml:space", "xmlns:xlink"]);
|
|
15110
15118
|
MUSTACHE_EXPR = seal(/\{\{[\w\W]*|[\w\W]*\}\}/gm);
|
|
15111
15119
|
ERB_EXPR = seal(/<%[\w\W]*|[\w\W]*%>/gm);
|
|
@@ -15138,20 +15146,11 @@ var ChordSheetJS = (() => {
|
|
|
15138
15146
|
});
|
|
15139
15147
|
NODE_TYPE = {
|
|
15140
15148
|
element: 1,
|
|
15141
|
-
attribute: 2,
|
|
15142
15149
|
text: 3,
|
|
15143
|
-
cdataSection: 4,
|
|
15144
|
-
entityReference: 5,
|
|
15145
|
-
// Deprecated
|
|
15146
|
-
entityNode: 6,
|
|
15147
15150
|
// Deprecated
|
|
15148
15151
|
progressingInstruction: 7,
|
|
15149
15152
|
comment: 8,
|
|
15150
|
-
document: 9
|
|
15151
|
-
documentType: 10,
|
|
15152
|
-
documentFragment: 11,
|
|
15153
|
-
notation: 12
|
|
15154
|
-
// Deprecated
|
|
15153
|
+
document: 9
|
|
15155
15154
|
};
|
|
15156
15155
|
getGlobal = function getGlobal2() {
|
|
15157
15156
|
return typeof window === "undefined" ? null : window;
|
|
@@ -34237,6 +34236,7 @@ var ChordSheetJS = (() => {
|
|
|
34237
34236
|
"m(maj7)": "m(ma7)",
|
|
34238
34237
|
"m(+7)": "m(ma7)",
|
|
34239
34238
|
"m+7": "m(ma7)",
|
|
34239
|
+
"mmaj7": "m(ma7)",
|
|
34240
34240
|
"m(ma9)": "m(ma9)",
|
|
34241
34241
|
"m(M9)": "m(ma9)",
|
|
34242
34242
|
"mM9": "m(ma9)",
|
|
@@ -48326,555 +48326,557 @@ Or set the song key before changing key:
|
|
|
48326
48326
|
const peg$c1346 = peg$literalExpectation("m(M7)", false);
|
|
48327
48327
|
const peg$c1347 = "m(+7)";
|
|
48328
48328
|
const peg$c1348 = peg$literalExpectation("m(+7)", false);
|
|
48329
|
-
const peg$c1349 = "
|
|
48330
|
-
const peg$c1350 = peg$literalExpectation("
|
|
48331
|
-
const peg$c1351 = "m(
|
|
48332
|
-
const peg$c1352 = peg$literalExpectation("m(
|
|
48333
|
-
const peg$c1353 = "
|
|
48334
|
-
const peg$c1354 = peg$literalExpectation("
|
|
48335
|
-
const peg$c1355 = "
|
|
48336
|
-
const peg$c1356 = peg$literalExpectation("
|
|
48337
|
-
const peg$c1357 = "m11
|
|
48338
|
-
const peg$c1358 = peg$literalExpectation("m11
|
|
48339
|
-
const peg$c1359 = "
|
|
48340
|
-
const peg$c1360 = peg$literalExpectation("
|
|
48341
|
-
const peg$c1361 = "
|
|
48342
|
-
const peg$c1362 = peg$literalExpectation("
|
|
48343
|
-
const peg$c1363 = "m11
|
|
48344
|
-
const peg$c1364 = peg$literalExpectation("m11
|
|
48345
|
-
const peg$c1365 = "
|
|
48346
|
-
const peg$c1366 = peg$literalExpectation("
|
|
48347
|
-
const peg$c1367 = "-11
|
|
48348
|
-
const peg$c1368 = peg$literalExpectation("-11
|
|
48349
|
-
const peg$c1369 = "
|
|
48350
|
-
const peg$c1370 = peg$literalExpectation("
|
|
48351
|
-
const peg$c1371 = "
|
|
48352
|
-
const peg$c1372 = peg$literalExpectation("
|
|
48353
|
-
const peg$c1373 = "-
|
|
48354
|
-
const peg$c1374 = peg$literalExpectation("-
|
|
48355
|
-
const peg$c1375 = "
|
|
48356
|
-
const peg$c1376 = peg$literalExpectation("
|
|
48357
|
-
const peg$c1377 = "
|
|
48358
|
-
const peg$c1378 = peg$literalExpectation("
|
|
48359
|
-
const peg$c1379 = "-
|
|
48360
|
-
const peg$c1380 = peg$literalExpectation("-
|
|
48361
|
-
const peg$c1381 = "-
|
|
48362
|
-
const peg$c1382 = peg$literalExpectation("-
|
|
48363
|
-
const peg$c1383 = "
|
|
48364
|
-
const peg$c1384 = peg$literalExpectation("
|
|
48365
|
-
const peg$c1385 = "
|
|
48366
|
-
const peg$c1386 = peg$literalExpectation("
|
|
48367
|
-
const peg$c1387 = "m13
|
|
48368
|
-
const peg$c1388 = peg$literalExpectation("m13
|
|
48369
|
-
const peg$c1389 = "
|
|
48370
|
-
const peg$c1390 = peg$literalExpectation("
|
|
48371
|
-
const peg$c1391 = "
|
|
48372
|
-
const peg$c1392 = peg$literalExpectation("
|
|
48373
|
-
const peg$c1393 = "m13
|
|
48374
|
-
const peg$c1394 = peg$literalExpectation("m13
|
|
48375
|
-
const peg$c1395 = "
|
|
48376
|
-
const peg$c1396 = peg$literalExpectation("
|
|
48377
|
-
const peg$c1397 = "-13
|
|
48378
|
-
const peg$c1398 = peg$literalExpectation("-13
|
|
48379
|
-
const peg$c1399 = "
|
|
48380
|
-
const peg$c1400 = peg$literalExpectation("
|
|
48381
|
-
const peg$c1401 = "
|
|
48382
|
-
const peg$c1402 = peg$literalExpectation("
|
|
48383
|
-
const peg$c1403 = "-
|
|
48384
|
-
const peg$c1404 = peg$literalExpectation("-
|
|
48385
|
-
const peg$c1405 = "-
|
|
48386
|
-
const peg$c1406 = peg$literalExpectation("-
|
|
48387
|
-
const peg$c1407 = "
|
|
48388
|
-
const peg$c1408 = peg$literalExpectation("
|
|
48389
|
-
const peg$c1409 = "
|
|
48390
|
-
const peg$c1410 = peg$literalExpectation("
|
|
48391
|
-
const peg$c1411 = "
|
|
48392
|
-
const peg$c1412 = peg$literalExpectation("
|
|
48393
|
-
const peg$c1413 = "
|
|
48394
|
-
const peg$c1414 = peg$literalExpectation("
|
|
48395
|
-
const peg$c1415 = "
|
|
48396
|
-
const peg$c1416 = peg$literalExpectation("
|
|
48397
|
-
const peg$c1417 = "m7
|
|
48398
|
-
const peg$c1418 = peg$literalExpectation("m7
|
|
48399
|
-
const peg$c1419 = "
|
|
48400
|
-
const peg$c1420 = peg$literalExpectation("
|
|
48401
|
-
const peg$c1421 = "-7
|
|
48402
|
-
const peg$c1422 = peg$literalExpectation("-7
|
|
48403
|
-
const peg$c1423 = "
|
|
48404
|
-
const peg$c1424 = peg$literalExpectation("
|
|
48405
|
-
const peg$c1425 = "m7(
|
|
48406
|
-
const peg$c1426 = peg$literalExpectation("m7(
|
|
48407
|
-
const peg$c1427 = "
|
|
48408
|
-
const peg$c1428 = peg$literalExpectation("
|
|
48409
|
-
const peg$c1429 = "
|
|
48410
|
-
const peg$c1430 = peg$literalExpectation("
|
|
48411
|
-
const peg$c1431 = "-
|
|
48412
|
-
const peg$c1432 = peg$literalExpectation("-
|
|
48413
|
-
const peg$c1433 = "-
|
|
48414
|
-
const peg$c1434 = peg$literalExpectation("-
|
|
48415
|
-
const peg$c1435 = "
|
|
48416
|
-
const peg$c1436 = peg$literalExpectation("
|
|
48417
|
-
const peg$c1437 = "
|
|
48418
|
-
const peg$c1438 = peg$literalExpectation("
|
|
48419
|
-
const peg$c1439 = "m9
|
|
48420
|
-
const peg$c1440 = peg$literalExpectation("m9
|
|
48421
|
-
const peg$c1441 = "
|
|
48422
|
-
const peg$c1442 = peg$literalExpectation("
|
|
48423
|
-
const peg$c1443 = "-9
|
|
48424
|
-
const peg$c1444 = peg$literalExpectation("-9
|
|
48425
|
-
const peg$c1445 = "
|
|
48426
|
-
const peg$c1446 = peg$literalExpectation("
|
|
48427
|
-
const peg$c1447 = "
|
|
48428
|
-
const peg$c1448 = peg$literalExpectation("
|
|
48429
|
-
const peg$c1449 = "-
|
|
48430
|
-
const peg$c1450 = peg$literalExpectation("-
|
|
48431
|
-
const peg$c1451 = "-
|
|
48432
|
-
const peg$c1452 = peg$literalExpectation("-
|
|
48433
|
-
const peg$c1453 = "
|
|
48434
|
-
const peg$c1454 = peg$literalExpectation("
|
|
48435
|
-
const peg$c1455 = "
|
|
48436
|
-
const peg$c1456 = peg$literalExpectation("
|
|
48437
|
-
const peg$c1457 = "+
|
|
48438
|
-
const peg$c1458 = peg$literalExpectation("+
|
|
48439
|
-
const peg$c1459 = "
|
|
48440
|
-
const peg$c1460 = peg$literalExpectation("
|
|
48441
|
-
const peg$c1461 = "+
|
|
48442
|
-
const peg$c1462 = peg$literalExpectation("+
|
|
48443
|
-
const peg$c1463 = "
|
|
48444
|
-
const peg$c1464 = peg$literalExpectation("
|
|
48445
|
-
const peg$c1465 = "
|
|
48446
|
-
const peg$c1466 = peg$literalExpectation("
|
|
48447
|
-
const peg$c1467 = "+
|
|
48448
|
-
const peg$c1468 = peg$literalExpectation("+
|
|
48449
|
-
const peg$c1469 = "
|
|
48450
|
-
const peg$c1470 = peg$literalExpectation("
|
|
48451
|
-
const peg$c1471 = "
|
|
48452
|
-
const peg$c1472 = peg$literalExpectation("
|
|
48453
|
-
const peg$c1473 = "
|
|
48454
|
-
const peg$c1474 = peg$literalExpectation("
|
|
48455
|
-
const peg$c1475 = "
|
|
48456
|
-
const peg$c1476 = peg$literalExpectation("
|
|
48457
|
-
const peg$c1477 = "+
|
|
48458
|
-
const peg$c1478 = peg$literalExpectation("+
|
|
48459
|
-
const peg$c1479 = "+13
|
|
48460
|
-
const peg$c1480 = peg$literalExpectation("+13
|
|
48461
|
-
const peg$c1481 = "+
|
|
48462
|
-
const peg$c1482 = peg$literalExpectation("+
|
|
48463
|
-
const peg$c1483 = "
|
|
48464
|
-
const peg$c1484 = peg$literalExpectation("
|
|
48465
|
-
const peg$c1485 = "
|
|
48466
|
-
const peg$c1486 = peg$literalExpectation("
|
|
48467
|
-
const peg$c1487 = "
|
|
48468
|
-
const peg$c1488 = peg$literalExpectation("
|
|
48469
|
-
const peg$c1489 = "
|
|
48470
|
-
const peg$c1490 = peg$literalExpectation("
|
|
48471
|
-
const peg$c1491 = "
|
|
48472
|
-
const peg$c1492 = peg$literalExpectation("
|
|
48473
|
-
const peg$c1493 = "
|
|
48474
|
-
const peg$c1494 = peg$literalExpectation("
|
|
48475
|
-
const peg$c1495 = "ma7
|
|
48476
|
-
const peg$c1496 = peg$literalExpectation("ma7
|
|
48477
|
-
const peg$c1497 = "ma7
|
|
48478
|
-
const peg$c1498 = peg$literalExpectation("ma7
|
|
48479
|
-
const peg$c1499 = "ma7
|
|
48480
|
-
const peg$c1500 = peg$literalExpectation("ma7
|
|
48481
|
-
const peg$c1501 = "+
|
|
48482
|
-
const peg$c1502 = peg$literalExpectation("+
|
|
48483
|
-
const peg$c1503 = "
|
|
48484
|
-
const peg$c1504 = peg$literalExpectation("
|
|
48485
|
-
const peg$c1505 = "
|
|
48486
|
-
const peg$c1506 = peg$literalExpectation("
|
|
48487
|
-
const peg$c1507 = "
|
|
48488
|
-
const peg$c1508 = peg$literalExpectation("
|
|
48489
|
-
const peg$c1509 = "
|
|
48490
|
-
const peg$c1510 = peg$literalExpectation("
|
|
48491
|
-
const peg$c1511 = "
|
|
48492
|
-
const peg$c1512 = peg$literalExpectation("
|
|
48493
|
-
const peg$c1513 = "9
|
|
48494
|
-
const peg$c1514 = peg$literalExpectation("9
|
|
48495
|
-
const peg$c1515 = "
|
|
48496
|
-
const peg$c1516 = peg$literalExpectation("
|
|
48497
|
-
const peg$c1517 = "
|
|
48498
|
-
const peg$c1518 = peg$literalExpectation("
|
|
48499
|
-
const peg$c1519 = "
|
|
48500
|
-
const peg$c1520 = peg$literalExpectation("
|
|
48501
|
-
const peg$c1521 = "ma9
|
|
48502
|
-
const peg$c1522 = peg$literalExpectation("ma9
|
|
48503
|
-
const peg$c1523 = "+
|
|
48504
|
-
const peg$c1524 = peg$literalExpectation("+
|
|
48505
|
-
const peg$c1525 = "
|
|
48506
|
-
const peg$c1526 = peg$literalExpectation("
|
|
48507
|
-
const peg$c1527 = "
|
|
48508
|
-
const peg$c1528 = peg$literalExpectation("
|
|
48509
|
-
const peg$c1529 = "
|
|
48510
|
-
const peg$c1530 = peg$literalExpectation("
|
|
48511
|
-
const peg$c1531 = "
|
|
48512
|
-
const peg$c1532 = peg$literalExpectation("
|
|
48513
|
-
const peg$c1533 = "(
|
|
48514
|
-
const peg$c1534 = peg$literalExpectation("(
|
|
48515
|
-
const peg$c1535 = "(
|
|
48516
|
-
const peg$c1536 = peg$literalExpectation("(
|
|
48517
|
-
const peg$c1537 = "(
|
|
48518
|
-
const peg$c1538 = peg$literalExpectation("(
|
|
48519
|
-
const peg$c1539 = "
|
|
48520
|
-
const peg$c1540 = peg$literalExpectation("
|
|
48521
|
-
const peg$c1541 = "
|
|
48522
|
-
const peg$c1542 = peg$literalExpectation("
|
|
48523
|
-
const peg$c1543 = "
|
|
48524
|
-
const peg$c1544 = peg$literalExpectation("
|
|
48525
|
-
const peg$c1545 = "
|
|
48526
|
-
const peg$c1546 = peg$literalExpectation("
|
|
48527
|
-
const peg$c1547 = "
|
|
48528
|
-
const peg$c1548 = peg$literalExpectation("
|
|
48529
|
-
const peg$c1549 = "(
|
|
48530
|
-
const peg$c1550 = peg$literalExpectation("(
|
|
48531
|
-
const peg$c1551 = "
|
|
48532
|
-
const peg$c1552 = peg$literalExpectation("
|
|
48533
|
-
const peg$c1553 = "(
|
|
48534
|
-
const peg$c1554 = peg$literalExpectation("(
|
|
48535
|
-
const peg$c1555 = "
|
|
48536
|
-
const peg$c1556 = peg$literalExpectation("
|
|
48537
|
-
const peg$c1557 = "
|
|
48538
|
-
const peg$c1558 = peg$literalExpectation("
|
|
48539
|
-
const peg$c1559 = "
|
|
48540
|
-
const peg$c1560 = peg$literalExpectation("
|
|
48541
|
-
const peg$c1561 = "(
|
|
48542
|
-
const peg$c1562 = peg$literalExpectation("(
|
|
48543
|
-
const peg$c1563 = "
|
|
48544
|
-
const peg$c1564 = peg$literalExpectation("
|
|
48545
|
-
const peg$c1565 = "11
|
|
48546
|
-
const peg$c1566 = peg$literalExpectation("11
|
|
48547
|
-
const peg$c1567 = "11
|
|
48548
|
-
const peg$c1568 = peg$literalExpectation("11
|
|
48549
|
-
const peg$c1569 = "11
|
|
48550
|
-
const peg$c1570 = peg$literalExpectation("11
|
|
48551
|
-
const peg$c1571 = "
|
|
48552
|
-
const peg$c1572 = peg$literalExpectation("
|
|
48553
|
-
const peg$c1573 = "
|
|
48554
|
-
const peg$c1574 = peg$literalExpectation("
|
|
48555
|
-
const peg$c1575 = "
|
|
48556
|
-
const peg$c1576 = peg$literalExpectation("
|
|
48557
|
-
const peg$c1577 = "
|
|
48558
|
-
const peg$c1578 = peg$literalExpectation("
|
|
48559
|
-
const peg$c1579 = "
|
|
48560
|
-
const peg$c1580 = peg$literalExpectation("
|
|
48561
|
-
const peg$c1581 = "13
|
|
48562
|
-
const peg$c1582 = peg$literalExpectation("13
|
|
48563
|
-
const peg$c1583 = "13
|
|
48564
|
-
const peg$c1584 = peg$literalExpectation("13
|
|
48565
|
-
const peg$c1585 = "13
|
|
48566
|
-
const peg$c1586 = peg$literalExpectation("13
|
|
48567
|
-
const peg$c1587 = "
|
|
48568
|
-
const peg$c1588 = peg$literalExpectation("
|
|
48569
|
-
const peg$c1589 = "
|
|
48570
|
-
const peg$c1590 = peg$literalExpectation("
|
|
48571
|
-
const peg$c1591 = "
|
|
48572
|
-
const peg$c1592 = peg$literalExpectation("
|
|
48573
|
-
const peg$c1593 = "
|
|
48574
|
-
const peg$c1594 = peg$literalExpectation("
|
|
48575
|
-
const peg$c1595 = "
|
|
48576
|
-
const peg$c1596 = peg$literalExpectation("
|
|
48577
|
-
const peg$c1597 = "
|
|
48578
|
-
const peg$c1598 = peg$literalExpectation("
|
|
48579
|
-
const peg$c1599 = "4
|
|
48580
|
-
const peg$c1600 = peg$literalExpectation("4
|
|
48581
|
-
const peg$c1601 = "
|
|
48582
|
-
const peg$c1602 = peg$literalExpectation("
|
|
48583
|
-
const peg$c1603 = "6(
|
|
48584
|
-
const peg$c1604 = peg$literalExpectation("6(
|
|
48585
|
-
const peg$c1605 = "
|
|
48586
|
-
const peg$c1606 = peg$literalExpectation("
|
|
48587
|
-
const peg$c1607 = "
|
|
48588
|
-
const peg$c1608 = peg$literalExpectation("
|
|
48589
|
-
const peg$c1609 = "7
|
|
48590
|
-
const peg$c1610 = peg$literalExpectation("7
|
|
48591
|
-
const peg$c1611 = "
|
|
48592
|
-
const peg$c1612 = peg$literalExpectation("
|
|
48593
|
-
const peg$c1613 = "
|
|
48594
|
-
const peg$c1614 = peg$literalExpectation("
|
|
48595
|
-
const peg$c1615 = "
|
|
48596
|
-
const peg$c1616 = peg$literalExpectation("
|
|
48597
|
-
const peg$c1617 = "
|
|
48598
|
-
const peg$c1618 = peg$literalExpectation("
|
|
48599
|
-
const peg$c1619 = "
|
|
48600
|
-
const peg$c1620 = peg$literalExpectation("
|
|
48601
|
-
const peg$c1621 = "
|
|
48602
|
-
const peg$c1622 = peg$literalExpectation("
|
|
48603
|
-
const peg$c1623 = "
|
|
48604
|
-
const peg$c1624 = peg$literalExpectation("
|
|
48605
|
-
const peg$c1625 = "9
|
|
48606
|
-
const peg$c1626 = peg$literalExpectation("9
|
|
48607
|
-
const peg$c1627 = "
|
|
48608
|
-
const peg$c1628 = peg$literalExpectation("
|
|
48609
|
-
const peg$c1629 = "
|
|
48610
|
-
const peg$c1630 = peg$literalExpectation("
|
|
48611
|
-
const peg$c1631 = "
|
|
48612
|
-
const peg$c1632 = peg$literalExpectation("
|
|
48613
|
-
const peg$c1633 = "
|
|
48614
|
-
const peg$c1634 = peg$literalExpectation("
|
|
48615
|
-
const peg$c1635 = "
|
|
48616
|
-
const peg$c1636 = peg$literalExpectation("
|
|
48617
|
-
const peg$c1637 = "
|
|
48618
|
-
const peg$c1638 = peg$literalExpectation("
|
|
48619
|
-
const peg$c1639 = "
|
|
48620
|
-
const peg$c1640 = peg$literalExpectation("
|
|
48621
|
-
const peg$c1641 = "m(
|
|
48622
|
-
const peg$c1642 = peg$literalExpectation("m(
|
|
48623
|
-
const peg$c1643 = "
|
|
48624
|
-
const peg$c1644 = peg$literalExpectation("
|
|
48625
|
-
const peg$c1645 = "
|
|
48626
|
-
const peg$c1646 = peg$literalExpectation("
|
|
48627
|
-
const peg$c1647 = "
|
|
48628
|
-
const peg$c1648 = peg$literalExpectation("
|
|
48629
|
-
const peg$c1649 = "
|
|
48630
|
-
const peg$c1650 = peg$literalExpectation("
|
|
48631
|
-
const peg$c1651 = "
|
|
48632
|
-
const peg$c1652 = peg$literalExpectation("
|
|
48633
|
-
const peg$c1653 = "
|
|
48634
|
-
const peg$c1654 = peg$literalExpectation("
|
|
48635
|
-
const peg$c1655 = "
|
|
48636
|
-
const peg$c1656 = peg$literalExpectation("
|
|
48637
|
-
const peg$c1657 = "
|
|
48638
|
-
const peg$c1658 = peg$literalExpectation("
|
|
48639
|
-
const peg$c1659 = "
|
|
48640
|
-
const peg$c1660 = peg$literalExpectation("
|
|
48641
|
-
const peg$c1661 = "
|
|
48642
|
-
const peg$c1662 = peg$literalExpectation("
|
|
48643
|
-
const peg$c1663 = "m7
|
|
48644
|
-
const peg$c1664 = peg$literalExpectation("m7
|
|
48645
|
-
const peg$c1665 = "
|
|
48646
|
-
const peg$c1666 = peg$literalExpectation("
|
|
48647
|
-
const peg$c1667 = "
|
|
48648
|
-
const peg$c1668 = peg$literalExpectation("
|
|
48649
|
-
const peg$c1669 = "m7
|
|
48650
|
-
const peg$c1670 = peg$literalExpectation("m7
|
|
48651
|
-
const peg$c1671 = "
|
|
48652
|
-
const peg$c1672 = peg$literalExpectation("
|
|
48653
|
-
const peg$c1673 = "
|
|
48654
|
-
const peg$c1674 = peg$literalExpectation("
|
|
48655
|
-
const peg$c1675 = "
|
|
48656
|
-
const peg$c1676 = peg$literalExpectation("
|
|
48657
|
-
const peg$c1677 = "-
|
|
48658
|
-
const peg$c1678 = peg$literalExpectation("-
|
|
48659
|
-
const peg$c1679 = "
|
|
48660
|
-
const peg$c1680 = peg$literalExpectation("
|
|
48661
|
-
const peg$c1681 = "
|
|
48662
|
-
const peg$c1682 = peg$literalExpectation("
|
|
48663
|
-
const peg$c1683 = "-
|
|
48664
|
-
const peg$c1684 = peg$literalExpectation("-
|
|
48665
|
-
const peg$c1685 = "
|
|
48666
|
-
const peg$c1686 = peg$literalExpectation("
|
|
48667
|
-
const peg$c1687 = "
|
|
48668
|
-
const peg$c1688 = peg$literalExpectation("
|
|
48669
|
-
const peg$c1689 = "
|
|
48670
|
-
const peg$c1690 = peg$literalExpectation("
|
|
48671
|
-
const peg$c1691 = "
|
|
48672
|
-
const peg$c1692 = peg$literalExpectation("
|
|
48673
|
-
const peg$c1693 = "
|
|
48674
|
-
const peg$c1694 = peg$literalExpectation("
|
|
48675
|
-
const peg$c1695 = "-
|
|
48676
|
-
const peg$c1696 = peg$literalExpectation("-
|
|
48677
|
-
const peg$c1697 = "
|
|
48678
|
-
const peg$c1698 = peg$literalExpectation("
|
|
48679
|
-
const peg$c1699 = "
|
|
48680
|
-
const peg$c1700 = peg$literalExpectation("
|
|
48681
|
-
const peg$c1701 = "
|
|
48682
|
-
const peg$c1702 = peg$literalExpectation("
|
|
48683
|
-
const peg$c1703 = "
|
|
48684
|
-
const peg$c1704 = peg$literalExpectation("
|
|
48685
|
-
const peg$c1705 = "11
|
|
48686
|
-
const peg$c1706 = peg$literalExpectation("11
|
|
48687
|
-
const peg$c1707 = "
|
|
48688
|
-
const peg$c1708 = peg$literalExpectation("
|
|
48689
|
-
const peg$c1709 = "
|
|
48690
|
-
const peg$c1710 = peg$literalExpectation("
|
|
48691
|
-
const peg$c1711 = "
|
|
48692
|
-
const peg$c1712 = peg$literalExpectation("
|
|
48693
|
-
const peg$c1713 = "
|
|
48694
|
-
const peg$c1714 = peg$literalExpectation("
|
|
48695
|
-
const peg$c1715 = "
|
|
48696
|
-
const peg$c1716 = peg$literalExpectation("
|
|
48697
|
-
const peg$c1717 = "
|
|
48698
|
-
const peg$c1718 = peg$literalExpectation("
|
|
48699
|
-
const peg$c1719 = "+
|
|
48700
|
-
const peg$c1720 = peg$literalExpectation("+
|
|
48701
|
-
const peg$c1721 = "
|
|
48702
|
-
const peg$c1722 = peg$literalExpectation("
|
|
48703
|
-
const peg$c1723 = "+
|
|
48704
|
-
const peg$c1724 = peg$literalExpectation("+
|
|
48705
|
-
const peg$c1725 = "
|
|
48706
|
-
const peg$c1726 = peg$literalExpectation("
|
|
48707
|
-
const peg$c1727 = "
|
|
48708
|
-
const peg$c1728 = peg$literalExpectation("
|
|
48709
|
-
const peg$c1729 = "
|
|
48710
|
-
const peg$c1730 = peg$literalExpectation("
|
|
48711
|
-
const peg$c1731 = "
|
|
48712
|
-
const peg$c1732 = peg$literalExpectation("
|
|
48713
|
-
const peg$c1733 = "
|
|
48714
|
-
const peg$c1734 = peg$literalExpectation("
|
|
48715
|
-
const peg$c1735 = "+
|
|
48716
|
-
const peg$c1736 = peg$literalExpectation("+
|
|
48717
|
-
const peg$c1737 = "
|
|
48718
|
-
const peg$c1738 = peg$literalExpectation("
|
|
48719
|
-
const peg$c1739 = "
|
|
48720
|
-
const peg$c1740 = peg$literalExpectation("
|
|
48721
|
-
const peg$c1741 = "
|
|
48722
|
-
const peg$c1742 = peg$literalExpectation("
|
|
48723
|
-
const peg$c1743 = "(
|
|
48724
|
-
const peg$c1744 = peg$literalExpectation("(
|
|
48725
|
-
const peg$c1745 = "(
|
|
48726
|
-
const peg$c1746 = peg$literalExpectation("(
|
|
48727
|
-
const peg$c1747 = "(
|
|
48728
|
-
const peg$c1748 = peg$literalExpectation("(
|
|
48729
|
-
const peg$c1749 = "(
|
|
48730
|
-
const peg$c1750 = peg$literalExpectation("(
|
|
48731
|
-
const peg$c1751 = "
|
|
48732
|
-
const peg$c1752 = peg$literalExpectation("
|
|
48733
|
-
const peg$c1753 = "
|
|
48734
|
-
const peg$c1754 = peg$literalExpectation("
|
|
48735
|
-
const peg$c1755 = "
|
|
48736
|
-
const peg$c1756 = peg$literalExpectation("
|
|
48737
|
-
const peg$c1757 = "2
|
|
48738
|
-
const peg$c1758 = peg$literalExpectation("2
|
|
48739
|
-
const peg$c1759 = "
|
|
48740
|
-
const peg$c1760 = peg$literalExpectation("
|
|
48741
|
-
const peg$c1761 = "
|
|
48742
|
-
const peg$c1762 = peg$literalExpectation("
|
|
48743
|
-
const peg$c1763 = "7
|
|
48744
|
-
const peg$c1764 = peg$literalExpectation("7
|
|
48745
|
-
const peg$c1765 = "7
|
|
48746
|
-
const peg$c1766 = peg$literalExpectation("7
|
|
48747
|
-
const peg$c1767 = "7
|
|
48748
|
-
const peg$c1768 = peg$literalExpectation("7
|
|
48749
|
-
const peg$c1769 = "
|
|
48750
|
-
const peg$c1770 = peg$literalExpectation("
|
|
48751
|
-
const peg$c1771 = "
|
|
48752
|
-
const peg$c1772 = peg$literalExpectation("
|
|
48753
|
-
const peg$c1773 = "
|
|
48754
|
-
const peg$c1774 = peg$literalExpectation("
|
|
48755
|
-
const peg$c1775 = "
|
|
48756
|
-
const peg$c1776 = peg$literalExpectation("
|
|
48757
|
-
const peg$c1777 = "9
|
|
48758
|
-
const peg$c1778 = peg$literalExpectation("9
|
|
48759
|
-
const peg$c1779 = "9
|
|
48760
|
-
const peg$c1780 = peg$literalExpectation("9
|
|
48761
|
-
const peg$c1781 = "
|
|
48762
|
-
const peg$c1782 = peg$literalExpectation("
|
|
48763
|
-
const peg$c1783 = "
|
|
48764
|
-
const peg$c1784 = peg$literalExpectation("
|
|
48765
|
-
const peg$c1785 = "
|
|
48766
|
-
const peg$c1786 = peg$literalExpectation("
|
|
48767
|
-
const peg$c1787 = "
|
|
48768
|
-
const peg$c1788 = peg$literalExpectation("
|
|
48769
|
-
const peg$c1789 = "
|
|
48770
|
-
const peg$c1790 = peg$literalExpectation("
|
|
48771
|
-
const peg$c1791 = "-
|
|
48772
|
-
const peg$c1792 = peg$literalExpectation("-
|
|
48773
|
-
const peg$c1793 = "
|
|
48774
|
-
const peg$c1794 = peg$literalExpectation("
|
|
48775
|
-
const peg$c1795 = "
|
|
48776
|
-
const peg$c1796 = peg$literalExpectation("
|
|
48777
|
-
const peg$c1797 = "
|
|
48778
|
-
const peg$c1798 = peg$literalExpectation("
|
|
48779
|
-
const peg$c1799 = "
|
|
48780
|
-
const peg$c1800 = peg$literalExpectation("
|
|
48781
|
-
const peg$c1801 = "
|
|
48782
|
-
const peg$c1802 = peg$literalExpectation("
|
|
48783
|
-
const peg$c1803 = "
|
|
48784
|
-
const peg$c1804 = peg$literalExpectation("
|
|
48785
|
-
const peg$c1805 = "
|
|
48786
|
-
const peg$c1806 = peg$literalExpectation("
|
|
48787
|
-
const peg$c1807 = "
|
|
48788
|
-
const peg$c1808 = peg$literalExpectation("
|
|
48789
|
-
const peg$c1809 = "
|
|
48790
|
-
const peg$c1810 = peg$literalExpectation("
|
|
48791
|
-
const peg$c1811 = "
|
|
48792
|
-
const peg$c1812 = peg$literalExpectation("
|
|
48793
|
-
const peg$c1813 = "
|
|
48794
|
-
const peg$c1814 = peg$literalExpectation("
|
|
48795
|
-
const peg$c1815 = "
|
|
48796
|
-
const peg$c1816 = peg$literalExpectation("
|
|
48797
|
-
const peg$c1817 = "
|
|
48798
|
-
const peg$c1818 = peg$literalExpectation("
|
|
48799
|
-
const peg$c1819 = "
|
|
48800
|
-
const peg$c1820 = peg$literalExpectation("
|
|
48801
|
-
const peg$c1821 = "
|
|
48802
|
-
const peg$c1822 = peg$literalExpectation("
|
|
48803
|
-
const peg$c1823 = "
|
|
48804
|
-
const peg$c1824 = peg$literalExpectation("
|
|
48805
|
-
const peg$c1825 = "
|
|
48806
|
-
const peg$c1826 = peg$literalExpectation("
|
|
48807
|
-
const peg$c1827 = "
|
|
48808
|
-
const peg$c1828 = peg$literalExpectation("
|
|
48809
|
-
const peg$c1829 = "
|
|
48810
|
-
const peg$c1830 = peg$literalExpectation("
|
|
48811
|
-
const peg$c1831 = "
|
|
48812
|
-
const peg$c1832 = peg$literalExpectation("
|
|
48813
|
-
const peg$c1833 = "
|
|
48814
|
-
const peg$c1834 = peg$literalExpectation("
|
|
48815
|
-
const peg$c1835 = "
|
|
48816
|
-
const peg$c1836 = peg$literalExpectation("
|
|
48817
|
-
const peg$c1837 = "
|
|
48818
|
-
const peg$c1838 = peg$literalExpectation("
|
|
48819
|
-
const peg$c1839 = "
|
|
48820
|
-
const peg$c1840 = peg$literalExpectation("
|
|
48821
|
-
const peg$c1841 = "
|
|
48822
|
-
const peg$c1842 = peg$literalExpectation("
|
|
48823
|
-
const peg$c1843 = "
|
|
48824
|
-
const peg$c1844 = peg$literalExpectation("
|
|
48825
|
-
const peg$c1845 = "
|
|
48826
|
-
const peg$c1846 = peg$literalExpectation("
|
|
48827
|
-
const peg$c1847 = "
|
|
48828
|
-
const peg$c1848 = peg$literalExpectation("
|
|
48829
|
-
const peg$c1849 = "
|
|
48830
|
-
const peg$c1850 = peg$literalExpectation("
|
|
48831
|
-
const peg$c1851 = "
|
|
48832
|
-
const peg$c1852 = peg$literalExpectation("
|
|
48833
|
-
const peg$c1853 = "
|
|
48834
|
-
const peg$c1854 = peg$literalExpectation("
|
|
48835
|
-
const peg$c1855 = "
|
|
48836
|
-
const peg$c1856 = peg$literalExpectation("
|
|
48837
|
-
const peg$c1857 = "
|
|
48838
|
-
const peg$c1858 = peg$literalExpectation("
|
|
48839
|
-
const peg$c1859 = "
|
|
48840
|
-
const peg$c1860 = peg$literalExpectation("
|
|
48841
|
-
const peg$c1861 = "
|
|
48842
|
-
const peg$c1862 = peg$literalExpectation("
|
|
48843
|
-
const peg$c1863 = "
|
|
48844
|
-
const peg$c1864 = peg$literalExpectation("
|
|
48845
|
-
const peg$c1865 = "
|
|
48846
|
-
const peg$c1866 = peg$literalExpectation("
|
|
48847
|
-
const peg$c1867 = "
|
|
48848
|
-
const peg$c1868 = peg$literalExpectation("
|
|
48849
|
-
const peg$c1869 =
|
|
48850
|
-
const peg$c1870 = "
|
|
48851
|
-
const peg$c1871 = peg$literalExpectation("
|
|
48852
|
-
const peg$c1872 = "
|
|
48853
|
-
const peg$c1873 = peg$literalExpectation("
|
|
48854
|
-
const peg$c1874 = "
|
|
48855
|
-
const peg$c1875 = peg$literalExpectation("
|
|
48856
|
-
const peg$c1876 = "
|
|
48857
|
-
const peg$c1877 = peg$literalExpectation("
|
|
48858
|
-
const peg$c1878 = "
|
|
48859
|
-
const peg$c1879 = peg$literalExpectation("
|
|
48860
|
-
const peg$c1880 = "
|
|
48861
|
-
const peg$c1881 = peg$literalExpectation("
|
|
48862
|
-
const peg$c1882 = "
|
|
48863
|
-
const peg$c1883 = peg$literalExpectation("
|
|
48864
|
-
const peg$c1884 = "
|
|
48865
|
-
const peg$c1885 = peg$literalExpectation("
|
|
48866
|
-
const peg$c1886 = "
|
|
48867
|
-
const peg$c1887 = peg$literalExpectation("
|
|
48868
|
-
const peg$c1888 = "
|
|
48869
|
-
const peg$c1889 = peg$literalExpectation("
|
|
48870
|
-
const peg$c1890 = "
|
|
48871
|
-
const peg$c1891 = peg$literalExpectation("
|
|
48872
|
-
const peg$c1892 = "
|
|
48873
|
-
const peg$c1893 = peg$literalExpectation("
|
|
48874
|
-
const peg$c1894 = "
|
|
48875
|
-
const peg$c1895 = peg$literalExpectation("
|
|
48876
|
-
const peg$c1896 =
|
|
48877
|
-
const peg$c1897 = peg$
|
|
48329
|
+
const peg$c1349 = "mmaj7";
|
|
48330
|
+
const peg$c1350 = peg$literalExpectation("mmaj7", false);
|
|
48331
|
+
const peg$c1351 = "m(M9)";
|
|
48332
|
+
const peg$c1352 = peg$literalExpectation("m(M9)", false);
|
|
48333
|
+
const peg$c1353 = "m(+9)";
|
|
48334
|
+
const peg$c1354 = peg$literalExpectation("m(+9)", false);
|
|
48335
|
+
const peg$c1355 = "min11";
|
|
48336
|
+
const peg$c1356 = peg$literalExpectation("min11", false);
|
|
48337
|
+
const peg$c1357 = "m11#5";
|
|
48338
|
+
const peg$c1358 = peg$literalExpectation("m11#5", false);
|
|
48339
|
+
const peg$c1359 = "m11+5";
|
|
48340
|
+
const peg$c1360 = peg$literalExpectation("m11+5", false);
|
|
48341
|
+
const peg$c1361 = "-11#5";
|
|
48342
|
+
const peg$c1362 = peg$literalExpectation("-11#5", false);
|
|
48343
|
+
const peg$c1363 = "m11#9";
|
|
48344
|
+
const peg$c1364 = peg$literalExpectation("m11#9", false);
|
|
48345
|
+
const peg$c1365 = "m11+9";
|
|
48346
|
+
const peg$c1366 = peg$literalExpectation("m11+9", false);
|
|
48347
|
+
const peg$c1367 = "-11#9";
|
|
48348
|
+
const peg$c1368 = peg$literalExpectation("-11#9", false);
|
|
48349
|
+
const peg$c1369 = "-11+9";
|
|
48350
|
+
const peg$c1370 = peg$literalExpectation("-11+9", false);
|
|
48351
|
+
const peg$c1371 = "m11b5";
|
|
48352
|
+
const peg$c1372 = peg$literalExpectation("m11b5", false);
|
|
48353
|
+
const peg$c1373 = "m11-5";
|
|
48354
|
+
const peg$c1374 = peg$literalExpectation("m11-5", false);
|
|
48355
|
+
const peg$c1375 = "-11b5";
|
|
48356
|
+
const peg$c1376 = peg$literalExpectation("-11b5", false);
|
|
48357
|
+
const peg$c1377 = "m11b9";
|
|
48358
|
+
const peg$c1378 = peg$literalExpectation("m11b9", false);
|
|
48359
|
+
const peg$c1379 = "m11-9";
|
|
48360
|
+
const peg$c1380 = peg$literalExpectation("m11-9", false);
|
|
48361
|
+
const peg$c1381 = "-11b9";
|
|
48362
|
+
const peg$c1382 = peg$literalExpectation("-11b9", false);
|
|
48363
|
+
const peg$c1383 = "-11-9";
|
|
48364
|
+
const peg$c1384 = peg$literalExpectation("-11-9", false);
|
|
48365
|
+
const peg$c1385 = "min13";
|
|
48366
|
+
const peg$c1386 = peg$literalExpectation("min13", false);
|
|
48367
|
+
const peg$c1387 = "m13#5";
|
|
48368
|
+
const peg$c1388 = peg$literalExpectation("m13#5", false);
|
|
48369
|
+
const peg$c1389 = "m13+5";
|
|
48370
|
+
const peg$c1390 = peg$literalExpectation("m13+5", false);
|
|
48371
|
+
const peg$c1391 = "-13#5";
|
|
48372
|
+
const peg$c1392 = peg$literalExpectation("-13#5", false);
|
|
48373
|
+
const peg$c1393 = "m13#9";
|
|
48374
|
+
const peg$c1394 = peg$literalExpectation("m13#9", false);
|
|
48375
|
+
const peg$c1395 = "m13+9";
|
|
48376
|
+
const peg$c1396 = peg$literalExpectation("m13+9", false);
|
|
48377
|
+
const peg$c1397 = "-13#9";
|
|
48378
|
+
const peg$c1398 = peg$literalExpectation("-13#9", false);
|
|
48379
|
+
const peg$c1399 = "-13+9";
|
|
48380
|
+
const peg$c1400 = peg$literalExpectation("-13+9", false);
|
|
48381
|
+
const peg$c1401 = "m13b5";
|
|
48382
|
+
const peg$c1402 = peg$literalExpectation("m13b5", false);
|
|
48383
|
+
const peg$c1403 = "m13-5";
|
|
48384
|
+
const peg$c1404 = peg$literalExpectation("m13-5", false);
|
|
48385
|
+
const peg$c1405 = "-13b5";
|
|
48386
|
+
const peg$c1406 = peg$literalExpectation("-13b5", false);
|
|
48387
|
+
const peg$c1407 = "-13-5";
|
|
48388
|
+
const peg$c1408 = peg$literalExpectation("-13-5", false);
|
|
48389
|
+
const peg$c1409 = "m13b9";
|
|
48390
|
+
const peg$c1410 = peg$literalExpectation("m13b9", false);
|
|
48391
|
+
const peg$c1411 = "m13-9";
|
|
48392
|
+
const peg$c1412 = peg$literalExpectation("m13-9", false);
|
|
48393
|
+
const peg$c1413 = "madd2";
|
|
48394
|
+
const peg$c1414 = peg$literalExpectation("madd2", false);
|
|
48395
|
+
const peg$c1415 = "m6(9)";
|
|
48396
|
+
const peg$c1416 = peg$literalExpectation("m6(9)", false);
|
|
48397
|
+
const peg$c1417 = "m7#11";
|
|
48398
|
+
const peg$c1418 = peg$literalExpectation("m7#11", false);
|
|
48399
|
+
const peg$c1419 = "m7+11";
|
|
48400
|
+
const peg$c1420 = peg$literalExpectation("m7+11", false);
|
|
48401
|
+
const peg$c1421 = "-7#11";
|
|
48402
|
+
const peg$c1422 = peg$literalExpectation("-7#11", false);
|
|
48403
|
+
const peg$c1423 = "-7+11";
|
|
48404
|
+
const peg$c1424 = peg$literalExpectation("-7+11", false);
|
|
48405
|
+
const peg$c1425 = "m7(4)";
|
|
48406
|
+
const peg$c1426 = peg$literalExpectation("m7(4)", false);
|
|
48407
|
+
const peg$c1427 = "m7(6)";
|
|
48408
|
+
const peg$c1428 = peg$literalExpectation("m7(6)", false);
|
|
48409
|
+
const peg$c1429 = "m7b13";
|
|
48410
|
+
const peg$c1430 = peg$literalExpectation("m7b13", false);
|
|
48411
|
+
const peg$c1431 = "m7-13";
|
|
48412
|
+
const peg$c1432 = peg$literalExpectation("m7-13", false);
|
|
48413
|
+
const peg$c1433 = "-7b13";
|
|
48414
|
+
const peg$c1434 = peg$literalExpectation("-7b13", false);
|
|
48415
|
+
const peg$c1435 = "-7-13";
|
|
48416
|
+
const peg$c1436 = peg$literalExpectation("-7-13", false);
|
|
48417
|
+
const peg$c1437 = "m7sus";
|
|
48418
|
+
const peg$c1438 = peg$literalExpectation("m7sus", false);
|
|
48419
|
+
const peg$c1439 = "m9#11";
|
|
48420
|
+
const peg$c1440 = peg$literalExpectation("m9#11", false);
|
|
48421
|
+
const peg$c1441 = "m9+11";
|
|
48422
|
+
const peg$c1442 = peg$literalExpectation("m9+11", false);
|
|
48423
|
+
const peg$c1443 = "-9#11";
|
|
48424
|
+
const peg$c1444 = peg$literalExpectation("-9#11", false);
|
|
48425
|
+
const peg$c1445 = "-9+11";
|
|
48426
|
+
const peg$c1446 = peg$literalExpectation("-9+11", false);
|
|
48427
|
+
const peg$c1447 = "m9b13";
|
|
48428
|
+
const peg$c1448 = peg$literalExpectation("m9b13", false);
|
|
48429
|
+
const peg$c1449 = "m9-13";
|
|
48430
|
+
const peg$c1450 = peg$literalExpectation("m9-13", false);
|
|
48431
|
+
const peg$c1451 = "-9b13";
|
|
48432
|
+
const peg$c1452 = peg$literalExpectation("-9b13", false);
|
|
48433
|
+
const peg$c1453 = "-9-13";
|
|
48434
|
+
const peg$c1454 = peg$literalExpectation("-9-13", false);
|
|
48435
|
+
const peg$c1455 = "+11#5";
|
|
48436
|
+
const peg$c1456 = peg$literalExpectation("+11#5", false);
|
|
48437
|
+
const peg$c1457 = "M11+5";
|
|
48438
|
+
const peg$c1458 = peg$literalExpectation("M11+5", false);
|
|
48439
|
+
const peg$c1459 = "+11#9";
|
|
48440
|
+
const peg$c1460 = peg$literalExpectation("+11#9", false);
|
|
48441
|
+
const peg$c1461 = "M11+9";
|
|
48442
|
+
const peg$c1462 = peg$literalExpectation("M11+9", false);
|
|
48443
|
+
const peg$c1463 = "+11b5";
|
|
48444
|
+
const peg$c1464 = peg$literalExpectation("+11b5", false);
|
|
48445
|
+
const peg$c1465 = "M11-5";
|
|
48446
|
+
const peg$c1466 = peg$literalExpectation("M11-5", false);
|
|
48447
|
+
const peg$c1467 = "+11b9";
|
|
48448
|
+
const peg$c1468 = peg$literalExpectation("+11b9", false);
|
|
48449
|
+
const peg$c1469 = "+11-9";
|
|
48450
|
+
const peg$c1470 = peg$literalExpectation("+11-9", false);
|
|
48451
|
+
const peg$c1471 = "maj13";
|
|
48452
|
+
const peg$c1472 = peg$literalExpectation("maj13", false);
|
|
48453
|
+
const peg$c1473 = "Maj13";
|
|
48454
|
+
const peg$c1474 = peg$literalExpectation("Maj13", false);
|
|
48455
|
+
const peg$c1475 = "+13#5";
|
|
48456
|
+
const peg$c1476 = peg$literalExpectation("+13#5", false);
|
|
48457
|
+
const peg$c1477 = "M13+5";
|
|
48458
|
+
const peg$c1478 = peg$literalExpectation("M13+5", false);
|
|
48459
|
+
const peg$c1479 = "+13#9";
|
|
48460
|
+
const peg$c1480 = peg$literalExpectation("+13#9", false);
|
|
48461
|
+
const peg$c1481 = "+13+9";
|
|
48462
|
+
const peg$c1482 = peg$literalExpectation("+13+9", false);
|
|
48463
|
+
const peg$c1483 = "+13b5";
|
|
48464
|
+
const peg$c1484 = peg$literalExpectation("+13b5", false);
|
|
48465
|
+
const peg$c1485 = "M13-5";
|
|
48466
|
+
const peg$c1486 = peg$literalExpectation("M13-5", false);
|
|
48467
|
+
const peg$c1487 = "+13b9";
|
|
48468
|
+
const peg$c1488 = peg$literalExpectation("+13b9", false);
|
|
48469
|
+
const peg$c1489 = "M13-9";
|
|
48470
|
+
const peg$c1490 = peg$literalExpectation("M13-9", false);
|
|
48471
|
+
const peg$c1491 = "+7#11";
|
|
48472
|
+
const peg$c1492 = peg$literalExpectation("+7#11", false);
|
|
48473
|
+
const peg$c1493 = "M7+11";
|
|
48474
|
+
const peg$c1494 = peg$literalExpectation("M7+11", false);
|
|
48475
|
+
const peg$c1495 = "ma7#5";
|
|
48476
|
+
const peg$c1496 = peg$literalExpectation("ma7#5", false);
|
|
48477
|
+
const peg$c1497 = "ma7+5";
|
|
48478
|
+
const peg$c1498 = peg$literalExpectation("ma7+5", false);
|
|
48479
|
+
const peg$c1499 = "ma7#9";
|
|
48480
|
+
const peg$c1500 = peg$literalExpectation("ma7#9", false);
|
|
48481
|
+
const peg$c1501 = "ma7+9";
|
|
48482
|
+
const peg$c1502 = peg$literalExpectation("ma7+9", false);
|
|
48483
|
+
const peg$c1503 = "+7b13";
|
|
48484
|
+
const peg$c1504 = peg$literalExpectation("+7b13", false);
|
|
48485
|
+
const peg$c1505 = "M7-13";
|
|
48486
|
+
const peg$c1506 = peg$literalExpectation("M7-13", false);
|
|
48487
|
+
const peg$c1507 = "ma7b5";
|
|
48488
|
+
const peg$c1508 = peg$literalExpectation("ma7b5", false);
|
|
48489
|
+
const peg$c1509 = "ma7-5";
|
|
48490
|
+
const peg$c1510 = peg$literalExpectation("ma7-5", false);
|
|
48491
|
+
const peg$c1511 = "ma7b9";
|
|
48492
|
+
const peg$c1512 = peg$literalExpectation("ma7b9", false);
|
|
48493
|
+
const peg$c1513 = "ma7-9";
|
|
48494
|
+
const peg$c1514 = peg$literalExpectation("ma7-9", false);
|
|
48495
|
+
const peg$c1515 = "9(#7)";
|
|
48496
|
+
const peg$c1516 = peg$literalExpectation("9(#7)", false);
|
|
48497
|
+
const peg$c1517 = "+9#11";
|
|
48498
|
+
const peg$c1518 = peg$literalExpectation("+9#11", false);
|
|
48499
|
+
const peg$c1519 = "M9+11";
|
|
48500
|
+
const peg$c1520 = peg$literalExpectation("M9+11", false);
|
|
48501
|
+
const peg$c1521 = "ma9#5";
|
|
48502
|
+
const peg$c1522 = peg$literalExpectation("ma9#5", false);
|
|
48503
|
+
const peg$c1523 = "ma9+5";
|
|
48504
|
+
const peg$c1524 = peg$literalExpectation("ma9+5", false);
|
|
48505
|
+
const peg$c1525 = "+9b13";
|
|
48506
|
+
const peg$c1526 = peg$literalExpectation("+9b13", false);
|
|
48507
|
+
const peg$c1527 = "M9-13";
|
|
48508
|
+
const peg$c1528 = peg$literalExpectation("M9-13", false);
|
|
48509
|
+
const peg$c1529 = "ma9b5";
|
|
48510
|
+
const peg$c1530 = peg$literalExpectation("ma9b5", false);
|
|
48511
|
+
const peg$c1531 = "ma9-5";
|
|
48512
|
+
const peg$c1532 = peg$literalExpectation("ma9-5", false);
|
|
48513
|
+
const peg$c1533 = "(#4)";
|
|
48514
|
+
const peg$c1534 = peg$literalExpectation("(#4)", false);
|
|
48515
|
+
const peg$c1535 = "(+4)";
|
|
48516
|
+
const peg$c1536 = peg$literalExpectation("(+4)", false);
|
|
48517
|
+
const peg$c1537 = "(11)";
|
|
48518
|
+
const peg$c1538 = peg$literalExpectation("(11)", false);
|
|
48519
|
+
const peg$c1539 = "(13)";
|
|
48520
|
+
const peg$c1540 = peg$literalExpectation("(13)", false);
|
|
48521
|
+
const peg$c1541 = "add2";
|
|
48522
|
+
const peg$c1542 = peg$literalExpectation("add2", false);
|
|
48523
|
+
const peg$c1543 = "add4";
|
|
48524
|
+
const peg$c1544 = peg$literalExpectation("add4", false);
|
|
48525
|
+
const peg$c1545 = "add6";
|
|
48526
|
+
const peg$c1546 = peg$literalExpectation("add6", false);
|
|
48527
|
+
const peg$c1547 = "add9";
|
|
48528
|
+
const peg$c1548 = peg$literalExpectation("add9", false);
|
|
48529
|
+
const peg$c1549 = "(b5)";
|
|
48530
|
+
const peg$c1550 = peg$literalExpectation("(b5)", false);
|
|
48531
|
+
const peg$c1551 = "(-5)";
|
|
48532
|
+
const peg$c1552 = peg$literalExpectation("(-5)", false);
|
|
48533
|
+
const peg$c1553 = "2(6)";
|
|
48534
|
+
const peg$c1554 = peg$literalExpectation("2(6)", false);
|
|
48535
|
+
const peg$c1555 = "(b6)";
|
|
48536
|
+
const peg$c1556 = peg$literalExpectation("(b6)", false);
|
|
48537
|
+
const peg$c1557 = "unis";
|
|
48538
|
+
const peg$c1558 = peg$literalExpectation("unis", false);
|
|
48539
|
+
const peg$c1559 = "Majj";
|
|
48540
|
+
const peg$c1560 = peg$literalExpectation("Majj", false);
|
|
48541
|
+
const peg$c1561 = "(#5)";
|
|
48542
|
+
const peg$c1562 = peg$literalExpectation("(#5)", false);
|
|
48543
|
+
const peg$c1563 = "(+5)";
|
|
48544
|
+
const peg$c1564 = peg$literalExpectation("(+5)", false);
|
|
48545
|
+
const peg$c1565 = "11#5";
|
|
48546
|
+
const peg$c1566 = peg$literalExpectation("11#5", false);
|
|
48547
|
+
const peg$c1567 = "11+5";
|
|
48548
|
+
const peg$c1568 = peg$literalExpectation("11+5", false);
|
|
48549
|
+
const peg$c1569 = "11#9";
|
|
48550
|
+
const peg$c1570 = peg$literalExpectation("11#9", false);
|
|
48551
|
+
const peg$c1571 = "11+9";
|
|
48552
|
+
const peg$c1572 = peg$literalExpectation("11+9", false);
|
|
48553
|
+
const peg$c1573 = "11b5";
|
|
48554
|
+
const peg$c1574 = peg$literalExpectation("11b5", false);
|
|
48555
|
+
const peg$c1575 = "11-5";
|
|
48556
|
+
const peg$c1576 = peg$literalExpectation("11-5", false);
|
|
48557
|
+
const peg$c1577 = "11b9";
|
|
48558
|
+
const peg$c1578 = peg$literalExpectation("11b9", false);
|
|
48559
|
+
const peg$c1579 = "11-9";
|
|
48560
|
+
const peg$c1580 = peg$literalExpectation("11-9", false);
|
|
48561
|
+
const peg$c1581 = "13#5";
|
|
48562
|
+
const peg$c1582 = peg$literalExpectation("13#5", false);
|
|
48563
|
+
const peg$c1583 = "13+5";
|
|
48564
|
+
const peg$c1584 = peg$literalExpectation("13+5", false);
|
|
48565
|
+
const peg$c1585 = "13#9";
|
|
48566
|
+
const peg$c1586 = peg$literalExpectation("13#9", false);
|
|
48567
|
+
const peg$c1587 = "13+9";
|
|
48568
|
+
const peg$c1588 = peg$literalExpectation("13+9", false);
|
|
48569
|
+
const peg$c1589 = "13b5";
|
|
48570
|
+
const peg$c1590 = peg$literalExpectation("13b5", false);
|
|
48571
|
+
const peg$c1591 = "13-5";
|
|
48572
|
+
const peg$c1592 = peg$literalExpectation("13-5", false);
|
|
48573
|
+
const peg$c1593 = "13b9";
|
|
48574
|
+
const peg$c1594 = peg$literalExpectation("13b9", false);
|
|
48575
|
+
const peg$c1595 = "13-9";
|
|
48576
|
+
const peg$c1596 = peg$literalExpectation("13-9", false);
|
|
48577
|
+
const peg$c1597 = "sus2";
|
|
48578
|
+
const peg$c1598 = peg$literalExpectation("sus2", false);
|
|
48579
|
+
const peg$c1599 = "2(4)";
|
|
48580
|
+
const peg$c1600 = peg$literalExpectation("2(4)", false);
|
|
48581
|
+
const peg$c1601 = "4(2)";
|
|
48582
|
+
const peg$c1602 = peg$literalExpectation("4(2)", false);
|
|
48583
|
+
const peg$c1603 = "6(2)";
|
|
48584
|
+
const peg$c1604 = peg$literalExpectation("6(2)", false);
|
|
48585
|
+
const peg$c1605 = "6(9)";
|
|
48586
|
+
const peg$c1606 = peg$literalExpectation("6(9)", false);
|
|
48587
|
+
const peg$c1607 = "dom7";
|
|
48588
|
+
const peg$c1608 = peg$literalExpectation("dom7", false);
|
|
48589
|
+
const peg$c1609 = "7#11";
|
|
48590
|
+
const peg$c1610 = peg$literalExpectation("7#11", false);
|
|
48591
|
+
const peg$c1611 = "7+11";
|
|
48592
|
+
const peg$c1612 = peg$literalExpectation("7+11", false);
|
|
48593
|
+
const peg$c1613 = "aug7";
|
|
48594
|
+
const peg$c1614 = peg$literalExpectation("aug7", false);
|
|
48595
|
+
const peg$c1615 = "7(6)";
|
|
48596
|
+
const peg$c1616 = peg$literalExpectation("7(6)", false);
|
|
48597
|
+
const peg$c1617 = "7b13";
|
|
48598
|
+
const peg$c1618 = peg$literalExpectation("7b13", false);
|
|
48599
|
+
const peg$c1619 = "7-13";
|
|
48600
|
+
const peg$c1620 = peg$literalExpectation("7-13", false);
|
|
48601
|
+
const peg$c1621 = "7sus";
|
|
48602
|
+
const peg$c1622 = peg$literalExpectation("7sus", false);
|
|
48603
|
+
const peg$c1623 = "dom9";
|
|
48604
|
+
const peg$c1624 = peg$literalExpectation("dom9", false);
|
|
48605
|
+
const peg$c1625 = "9#11";
|
|
48606
|
+
const peg$c1626 = peg$literalExpectation("9#11", false);
|
|
48607
|
+
const peg$c1627 = "9+11";
|
|
48608
|
+
const peg$c1628 = peg$literalExpectation("9+11", false);
|
|
48609
|
+
const peg$c1629 = "aug9";
|
|
48610
|
+
const peg$c1630 = peg$literalExpectation("aug9", false);
|
|
48611
|
+
const peg$c1631 = "9b13";
|
|
48612
|
+
const peg$c1632 = peg$literalExpectation("9b13", false);
|
|
48613
|
+
const peg$c1633 = "9-13";
|
|
48614
|
+
const peg$c1634 = peg$literalExpectation("9-13", false);
|
|
48615
|
+
const peg$c1635 = "9aug";
|
|
48616
|
+
const peg$c1636 = peg$literalExpectation("9aug", false);
|
|
48617
|
+
const peg$c1637 = "9sus";
|
|
48618
|
+
const peg$c1638 = peg$literalExpectation("9sus", false);
|
|
48619
|
+
const peg$c1639 = "dim7";
|
|
48620
|
+
const peg$c1640 = peg$literalExpectation("dim7", false);
|
|
48621
|
+
const peg$c1641 = "m(4)";
|
|
48622
|
+
const peg$c1642 = peg$literalExpectation("m(4)", false);
|
|
48623
|
+
const peg$c1643 = "m(9)";
|
|
48624
|
+
const peg$c1644 = peg$literalExpectation("m(9)", false);
|
|
48625
|
+
const peg$c1645 = "mi11";
|
|
48626
|
+
const peg$c1646 = peg$literalExpectation("mi11", false);
|
|
48627
|
+
const peg$c1647 = "m9+5";
|
|
48628
|
+
const peg$c1648 = peg$literalExpectation("m9+5", false);
|
|
48629
|
+
const peg$c1649 = "-9-5";
|
|
48630
|
+
const peg$c1650 = peg$literalExpectation("-9-5", false);
|
|
48631
|
+
const peg$c1651 = "mi13";
|
|
48632
|
+
const peg$c1652 = peg$literalExpectation("mi13", false);
|
|
48633
|
+
const peg$c1653 = "min2";
|
|
48634
|
+
const peg$c1654 = peg$literalExpectation("min2", false);
|
|
48635
|
+
const peg$c1655 = "min6";
|
|
48636
|
+
const peg$c1656 = peg$literalExpectation("min6", false);
|
|
48637
|
+
const peg$c1657 = "m6M7";
|
|
48638
|
+
const peg$c1658 = peg$literalExpectation("m6M7", false);
|
|
48639
|
+
const peg$c1659 = "m6+7";
|
|
48640
|
+
const peg$c1660 = peg$literalExpectation("m6+7", false);
|
|
48641
|
+
const peg$c1661 = "min7";
|
|
48642
|
+
const peg$c1662 = peg$literalExpectation("min7", false);
|
|
48643
|
+
const peg$c1663 = "m7#5";
|
|
48644
|
+
const peg$c1664 = peg$literalExpectation("m7#5", false);
|
|
48645
|
+
const peg$c1665 = "m7+5";
|
|
48646
|
+
const peg$c1666 = peg$literalExpectation("m7+5", false);
|
|
48647
|
+
const peg$c1667 = "-7#5";
|
|
48648
|
+
const peg$c1668 = peg$literalExpectation("-7#5", false);
|
|
48649
|
+
const peg$c1669 = "m7#9";
|
|
48650
|
+
const peg$c1670 = peg$literalExpectation("m7#9", false);
|
|
48651
|
+
const peg$c1671 = "m7+9";
|
|
48652
|
+
const peg$c1672 = peg$literalExpectation("m7+9", false);
|
|
48653
|
+
const peg$c1673 = "-7#9";
|
|
48654
|
+
const peg$c1674 = peg$literalExpectation("-7#9", false);
|
|
48655
|
+
const peg$c1675 = "m7b5";
|
|
48656
|
+
const peg$c1676 = peg$literalExpectation("m7b5", false);
|
|
48657
|
+
const peg$c1677 = "m7-5";
|
|
48658
|
+
const peg$c1678 = peg$literalExpectation("m7-5", false);
|
|
48659
|
+
const peg$c1679 = "-7b5";
|
|
48660
|
+
const peg$c1680 = peg$literalExpectation("-7b5", false);
|
|
48661
|
+
const peg$c1681 = "m7b9";
|
|
48662
|
+
const peg$c1682 = peg$literalExpectation("m7b9", false);
|
|
48663
|
+
const peg$c1683 = "m7-9";
|
|
48664
|
+
const peg$c1684 = peg$literalExpectation("m7-9", false);
|
|
48665
|
+
const peg$c1685 = "-7b9";
|
|
48666
|
+
const peg$c1686 = peg$literalExpectation("-7b9", false);
|
|
48667
|
+
const peg$c1687 = "min9";
|
|
48668
|
+
const peg$c1688 = peg$literalExpectation("min9", false);
|
|
48669
|
+
const peg$c1689 = "m9#5";
|
|
48670
|
+
const peg$c1690 = peg$literalExpectation("m9#5", false);
|
|
48671
|
+
const peg$c1691 = "-9#5";
|
|
48672
|
+
const peg$c1692 = peg$literalExpectation("-9#5", false);
|
|
48673
|
+
const peg$c1693 = "m9b5";
|
|
48674
|
+
const peg$c1694 = peg$literalExpectation("m9b5", false);
|
|
48675
|
+
const peg$c1695 = "m9-5";
|
|
48676
|
+
const peg$c1696 = peg$literalExpectation("m9-5", false);
|
|
48677
|
+
const peg$c1697 = "-9b5";
|
|
48678
|
+
const peg$c1698 = peg$literalExpectation("-9b5", false);
|
|
48679
|
+
const peg$c1699 = "m9M7";
|
|
48680
|
+
const peg$c1700 = peg$literalExpectation("m9M7", false);
|
|
48681
|
+
const peg$c1701 = "maj9";
|
|
48682
|
+
const peg$c1702 = peg$literalExpectation("maj9", false);
|
|
48683
|
+
const peg$c1703 = "ma11";
|
|
48684
|
+
const peg$c1704 = peg$literalExpectation("ma11", false);
|
|
48685
|
+
const peg$c1705 = "11#7";
|
|
48686
|
+
const peg$c1706 = peg$literalExpectation("11#7", false);
|
|
48687
|
+
const peg$c1707 = "11+7";
|
|
48688
|
+
const peg$c1708 = peg$literalExpectation("11+7", false);
|
|
48689
|
+
const peg$c1709 = "ma13";
|
|
48690
|
+
const peg$c1710 = peg$literalExpectation("ma13", false);
|
|
48691
|
+
const peg$c1711 = "ma69";
|
|
48692
|
+
const peg$c1712 = peg$literalExpectation("ma69", false);
|
|
48693
|
+
const peg$c1713 = "Maj7";
|
|
48694
|
+
const peg$c1714 = peg$literalExpectation("Maj7", false);
|
|
48695
|
+
const peg$c1715 = "maj7";
|
|
48696
|
+
const peg$c1716 = peg$literalExpectation("maj7", false);
|
|
48697
|
+
const peg$c1717 = "+7#5";
|
|
48698
|
+
const peg$c1718 = peg$literalExpectation("+7#5", false);
|
|
48699
|
+
const peg$c1719 = "M7+5";
|
|
48700
|
+
const peg$c1720 = peg$literalExpectation("M7+5", false);
|
|
48701
|
+
const peg$c1721 = "+7#9";
|
|
48702
|
+
const peg$c1722 = peg$literalExpectation("+7#9", false);
|
|
48703
|
+
const peg$c1723 = "M7+9";
|
|
48704
|
+
const peg$c1724 = peg$literalExpectation("M7+9", false);
|
|
48705
|
+
const peg$c1725 = "+7b5";
|
|
48706
|
+
const peg$c1726 = peg$literalExpectation("+7b5", false);
|
|
48707
|
+
const peg$c1727 = "M7-5";
|
|
48708
|
+
const peg$c1728 = peg$literalExpectation("M7-5", false);
|
|
48709
|
+
const peg$c1729 = "+7b9";
|
|
48710
|
+
const peg$c1730 = peg$literalExpectation("+7b9", false);
|
|
48711
|
+
const peg$c1731 = "M7-9";
|
|
48712
|
+
const peg$c1732 = peg$literalExpectation("M7-9", false);
|
|
48713
|
+
const peg$c1733 = "+9#5";
|
|
48714
|
+
const peg$c1734 = peg$literalExpectation("+9#5", false);
|
|
48715
|
+
const peg$c1735 = "M9+5";
|
|
48716
|
+
const peg$c1736 = peg$literalExpectation("M9+5", false);
|
|
48717
|
+
const peg$c1737 = "+9b5";
|
|
48718
|
+
const peg$c1738 = peg$literalExpectation("+9b5", false);
|
|
48719
|
+
const peg$c1739 = "M9-5";
|
|
48720
|
+
const peg$c1740 = peg$literalExpectation("M9-5", false);
|
|
48721
|
+
const peg$c1741 = "sus4";
|
|
48722
|
+
const peg$c1742 = peg$literalExpectation("sus4", false);
|
|
48723
|
+
const peg$c1743 = "(2)";
|
|
48724
|
+
const peg$c1744 = peg$literalExpectation("(2)", false);
|
|
48725
|
+
const peg$c1745 = "(4)";
|
|
48726
|
+
const peg$c1746 = peg$literalExpectation("(4)", false);
|
|
48727
|
+
const peg$c1747 = "(6)";
|
|
48728
|
+
const peg$c1748 = peg$literalExpectation("(6)", false);
|
|
48729
|
+
const peg$c1749 = "(7)";
|
|
48730
|
+
const peg$c1750 = peg$literalExpectation("(7)", false);
|
|
48731
|
+
const peg$c1751 = "(9)";
|
|
48732
|
+
const peg$c1752 = peg$literalExpectation("(9)", false);
|
|
48733
|
+
const peg$c1753 = "maj";
|
|
48734
|
+
const peg$c1754 = peg$literalExpectation("maj", false);
|
|
48735
|
+
const peg$c1755 = "aug";
|
|
48736
|
+
const peg$c1756 = peg$literalExpectation("aug", false);
|
|
48737
|
+
const peg$c1757 = "2+4";
|
|
48738
|
+
const peg$c1758 = peg$literalExpectation("2+4", false);
|
|
48739
|
+
const peg$c1759 = "2#4";
|
|
48740
|
+
const peg$c1760 = peg$literalExpectation("2#4", false);
|
|
48741
|
+
const peg$c1761 = "no3";
|
|
48742
|
+
const peg$c1762 = peg$literalExpectation("no3", false);
|
|
48743
|
+
const peg$c1763 = "7#5";
|
|
48744
|
+
const peg$c1764 = peg$literalExpectation("7#5", false);
|
|
48745
|
+
const peg$c1765 = "7+5";
|
|
48746
|
+
const peg$c1766 = peg$literalExpectation("7+5", false);
|
|
48747
|
+
const peg$c1767 = "7#9";
|
|
48748
|
+
const peg$c1768 = peg$literalExpectation("7#9", false);
|
|
48749
|
+
const peg$c1769 = "7+9";
|
|
48750
|
+
const peg$c1770 = peg$literalExpectation("7+9", false);
|
|
48751
|
+
const peg$c1771 = "7b5";
|
|
48752
|
+
const peg$c1772 = peg$literalExpectation("7b5", false);
|
|
48753
|
+
const peg$c1773 = "7-5";
|
|
48754
|
+
const peg$c1774 = peg$literalExpectation("7-5", false);
|
|
48755
|
+
const peg$c1775 = "7b9";
|
|
48756
|
+
const peg$c1776 = peg$literalExpectation("7b9", false);
|
|
48757
|
+
const peg$c1777 = "7-9";
|
|
48758
|
+
const peg$c1778 = peg$literalExpectation("7-9", false);
|
|
48759
|
+
const peg$c1779 = "9#5";
|
|
48760
|
+
const peg$c1780 = peg$literalExpectation("9#5", false);
|
|
48761
|
+
const peg$c1781 = "9+5";
|
|
48762
|
+
const peg$c1782 = peg$literalExpectation("9+5", false);
|
|
48763
|
+
const peg$c1783 = "9b5";
|
|
48764
|
+
const peg$c1784 = peg$literalExpectation("9b5", false);
|
|
48765
|
+
const peg$c1785 = "9-5";
|
|
48766
|
+
const peg$c1786 = peg$literalExpectation("9-5", false);
|
|
48767
|
+
const peg$c1787 = "dim";
|
|
48768
|
+
const peg$c1788 = peg$literalExpectation("dim", false);
|
|
48769
|
+
const peg$c1789 = "mb5";
|
|
48770
|
+
const peg$c1790 = peg$literalExpectation("mb5", false);
|
|
48771
|
+
const peg$c1791 = "m-5";
|
|
48772
|
+
const peg$c1792 = peg$literalExpectation("m-5", false);
|
|
48773
|
+
const peg$c1793 = "-b5";
|
|
48774
|
+
const peg$c1794 = peg$literalExpectation("-b5", false);
|
|
48775
|
+
const peg$c1795 = "min";
|
|
48776
|
+
const peg$c1796 = peg$literalExpectation("min", false);
|
|
48777
|
+
const peg$c1797 = "mM7";
|
|
48778
|
+
const peg$c1798 = peg$literalExpectation("mM7", false);
|
|
48779
|
+
const peg$c1799 = "m+7";
|
|
48780
|
+
const peg$c1800 = peg$literalExpectation("m+7", false);
|
|
48781
|
+
const peg$c1801 = "mM9";
|
|
48782
|
+
const peg$c1802 = peg$literalExpectation("mM9", false);
|
|
48783
|
+
const peg$c1803 = "m+9";
|
|
48784
|
+
const peg$c1804 = peg$literalExpectation("m+9", false);
|
|
48785
|
+
const peg$c1805 = "m11";
|
|
48786
|
+
const peg$c1806 = peg$literalExpectation("m11", false);
|
|
48787
|
+
const peg$c1807 = "-11";
|
|
48788
|
+
const peg$c1808 = peg$literalExpectation("-11", false);
|
|
48789
|
+
const peg$c1809 = "m13";
|
|
48790
|
+
const peg$c1810 = peg$literalExpectation("m13", false);
|
|
48791
|
+
const peg$c1811 = "-13";
|
|
48792
|
+
const peg$c1812 = peg$literalExpectation("-13", false);
|
|
48793
|
+
const peg$c1813 = "mi2";
|
|
48794
|
+
const peg$c1814 = peg$literalExpectation("mi2", false);
|
|
48795
|
+
const peg$c1815 = "mi6";
|
|
48796
|
+
const peg$c1816 = peg$literalExpectation("mi6", false);
|
|
48797
|
+
const peg$c1817 = "m69";
|
|
48798
|
+
const peg$c1818 = peg$literalExpectation("m69", false);
|
|
48799
|
+
const peg$c1819 = "mi7";
|
|
48800
|
+
const peg$c1820 = peg$literalExpectation("mi7", false);
|
|
48801
|
+
const peg$c1821 = "m74";
|
|
48802
|
+
const peg$c1822 = peg$literalExpectation("m74", false);
|
|
48803
|
+
const peg$c1823 = "mi9";
|
|
48804
|
+
const peg$c1824 = peg$literalExpectation("mi9", false);
|
|
48805
|
+
const peg$c1825 = "ma9";
|
|
48806
|
+
const peg$c1826 = peg$literalExpectation("ma9", false);
|
|
48807
|
+
const peg$c1827 = "+11";
|
|
48808
|
+
const peg$c1828 = peg$literalExpectation("+11", false);
|
|
48809
|
+
const peg$c1829 = "M11";
|
|
48810
|
+
const peg$c1830 = peg$literalExpectation("M11", false);
|
|
48811
|
+
const peg$c1831 = "+13";
|
|
48812
|
+
const peg$c1832 = peg$literalExpectation("+13", false);
|
|
48813
|
+
const peg$c1833 = "M13";
|
|
48814
|
+
const peg$c1834 = peg$literalExpectation("M13", false);
|
|
48815
|
+
const peg$c1835 = "ma6";
|
|
48816
|
+
const peg$c1836 = peg$literalExpectation("ma6", false);
|
|
48817
|
+
const peg$c1837 = "ma7";
|
|
48818
|
+
const peg$c1838 = peg$literalExpectation("ma7", false);
|
|
48819
|
+
const peg$c1839 = "sus";
|
|
48820
|
+
const peg$c1840 = peg$literalExpectation("sus", false);
|
|
48821
|
+
const peg$c1841 = "#4";
|
|
48822
|
+
const peg$c1842 = peg$literalExpectation("#4", false);
|
|
48823
|
+
const peg$c1843 = "+4";
|
|
48824
|
+
const peg$c1844 = peg$literalExpectation("+4", false);
|
|
48825
|
+
const peg$c1845 = "-5";
|
|
48826
|
+
const peg$c1846 = peg$literalExpectation("-5", false);
|
|
48827
|
+
const peg$c1847 = "b5";
|
|
48828
|
+
const peg$c1848 = peg$literalExpectation("b5", false);
|
|
48829
|
+
const peg$c1849 = "ma";
|
|
48830
|
+
const peg$c1850 = peg$literalExpectation("ma", false);
|
|
48831
|
+
const peg$c1851 = "Ma";
|
|
48832
|
+
const peg$c1852 = peg$literalExpectation("Ma", false);
|
|
48833
|
+
const peg$c1853 = "#5";
|
|
48834
|
+
const peg$c1854 = peg$literalExpectation("#5", false);
|
|
48835
|
+
const peg$c1855 = "+5";
|
|
48836
|
+
const peg$c1856 = peg$literalExpectation("+5", false);
|
|
48837
|
+
const peg$c1857 = "11";
|
|
48838
|
+
const peg$c1858 = peg$literalExpectation("11", false);
|
|
48839
|
+
const peg$c1859 = "13";
|
|
48840
|
+
const peg$c1860 = peg$literalExpectation("13", false);
|
|
48841
|
+
const peg$c1861 = "42";
|
|
48842
|
+
const peg$c1862 = peg$literalExpectation("42", false);
|
|
48843
|
+
const peg$c1863 = "69";
|
|
48844
|
+
const peg$c1864 = peg$literalExpectation("69", false);
|
|
48845
|
+
const peg$c1865 = "x7";
|
|
48846
|
+
const peg$c1866 = peg$literalExpectation("x7", false);
|
|
48847
|
+
const peg$c1867 = "x9";
|
|
48848
|
+
const peg$c1868 = peg$literalExpectation("x9", false);
|
|
48849
|
+
const peg$c1869 = "o7";
|
|
48850
|
+
const peg$c1870 = peg$literalExpectation("o7", false);
|
|
48851
|
+
const peg$c1871 = peg$literalExpectation("mi", false);
|
|
48852
|
+
const peg$c1872 = "m2";
|
|
48853
|
+
const peg$c1873 = peg$literalExpectation("m2", false);
|
|
48854
|
+
const peg$c1874 = "m4";
|
|
48855
|
+
const peg$c1875 = peg$literalExpectation("m4", false);
|
|
48856
|
+
const peg$c1876 = "m6";
|
|
48857
|
+
const peg$c1877 = peg$literalExpectation("m6", false);
|
|
48858
|
+
const peg$c1878 = "-6";
|
|
48859
|
+
const peg$c1879 = peg$literalExpectation("-6", false);
|
|
48860
|
+
const peg$c1880 = "m7";
|
|
48861
|
+
const peg$c1881 = peg$literalExpectation("m7", false);
|
|
48862
|
+
const peg$c1882 = "-7";
|
|
48863
|
+
const peg$c1883 = peg$literalExpectation("-7", false);
|
|
48864
|
+
const peg$c1884 = "m9";
|
|
48865
|
+
const peg$c1885 = peg$literalExpectation("m9", false);
|
|
48866
|
+
const peg$c1886 = "-9";
|
|
48867
|
+
const peg$c1887 = peg$literalExpectation("-9", false);
|
|
48868
|
+
const peg$c1888 = "+7";
|
|
48869
|
+
const peg$c1889 = peg$literalExpectation("+7", false);
|
|
48870
|
+
const peg$c1890 = "#7";
|
|
48871
|
+
const peg$c1891 = peg$literalExpectation("#7", false);
|
|
48872
|
+
const peg$c1892 = "M7";
|
|
48873
|
+
const peg$c1893 = peg$literalExpectation("M7", false);
|
|
48874
|
+
const peg$c1894 = "+9";
|
|
48875
|
+
const peg$c1895 = peg$literalExpectation("+9", false);
|
|
48876
|
+
const peg$c1896 = "M9";
|
|
48877
|
+
const peg$c1897 = peg$literalExpectation("M9", false);
|
|
48878
|
+
const peg$c1898 = /^[+\-24-79Mmx]/;
|
|
48879
|
+
const peg$c1899 = peg$classExpectation([
|
|
48878
48880
|
"+",
|
|
48879
48881
|
"-",
|
|
48880
48882
|
"2",
|
|
@@ -48887,15 +48889,15 @@ Or set the song key before changing key:
|
|
|
48887
48889
|
"m",
|
|
48888
48890
|
"x"
|
|
48889
48891
|
], false, false);
|
|
48890
|
-
const peg$
|
|
48891
|
-
const peg$
|
|
48892
|
+
const peg$c1900 = /^[\n\r]/;
|
|
48893
|
+
const peg$c1901 = peg$classExpectation([
|
|
48892
48894
|
"\n",
|
|
48893
48895
|
"\r"
|
|
48894
48896
|
], false, false);
|
|
48895
|
-
const peg$
|
|
48896
|
-
const peg$
|
|
48897
|
-
const peg$
|
|
48898
|
-
const peg$
|
|
48897
|
+
const peg$c1902 = "\n";
|
|
48898
|
+
const peg$c1903 = peg$literalExpectation("\n", false);
|
|
48899
|
+
const peg$c1904 = "\r";
|
|
48900
|
+
const peg$c1905 = peg$literalExpectation("\r", false);
|
|
48899
48901
|
let peg$currPos = 0;
|
|
48900
48902
|
let peg$savedPos = 0;
|
|
48901
48903
|
const peg$posDetailsCache = [
|
|
@@ -56264,20 +56266,20 @@ Or set the song key before changing key:
|
|
|
56264
56266
|
if (peg$silentFails === 0) peg$fail(peg$c1390);
|
|
56265
56267
|
}
|
|
56266
56268
|
if (s0 === peg$FAILED) {
|
|
56267
|
-
if (input.substr(peg$currPos, 5) === peg$
|
|
56268
|
-
s0 = peg$
|
|
56269
|
+
if (input.substr(peg$currPos, 5) === peg$c1391) {
|
|
56270
|
+
s0 = peg$c1391;
|
|
56269
56271
|
peg$currPos += 5;
|
|
56270
56272
|
} else {
|
|
56271
56273
|
s0 = peg$FAILED;
|
|
56272
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56274
|
+
if (peg$silentFails === 0) peg$fail(peg$c1392);
|
|
56273
56275
|
}
|
|
56274
56276
|
if (s0 === peg$FAILED) {
|
|
56275
|
-
if (input.substr(peg$currPos, 5) === peg$
|
|
56276
|
-
s0 = peg$
|
|
56277
|
+
if (input.substr(peg$currPos, 5) === peg$c1389) {
|
|
56278
|
+
s0 = peg$c1389;
|
|
56277
56279
|
peg$currPos += 5;
|
|
56278
56280
|
} else {
|
|
56279
56281
|
s0 = peg$FAILED;
|
|
56280
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56282
|
+
if (peg$silentFails === 0) peg$fail(peg$c1390);
|
|
56281
56283
|
}
|
|
56282
56284
|
if (s0 === peg$FAILED) {
|
|
56283
56285
|
if (input.substr(peg$currPos, 5) === peg$c1393) {
|
|
@@ -56408,12 +56410,12 @@ Or set the song key before changing key:
|
|
|
56408
56410
|
if (peg$silentFails === 0) peg$fail(peg$c1424);
|
|
56409
56411
|
}
|
|
56410
56412
|
if (s0 === peg$FAILED) {
|
|
56411
|
-
if (input.substr(peg$currPos, 5) === peg$
|
|
56412
|
-
s0 = peg$
|
|
56413
|
+
if (input.substr(peg$currPos, 5) === peg$c1425) {
|
|
56414
|
+
s0 = peg$c1425;
|
|
56413
56415
|
peg$currPos += 5;
|
|
56414
56416
|
} else {
|
|
56415
56417
|
s0 = peg$FAILED;
|
|
56416
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
56418
|
+
if (peg$silentFails === 0) peg$fail(peg$c1426);
|
|
56417
56419
|
}
|
|
56418
56420
|
if (s0 === peg$FAILED) {
|
|
56419
56421
|
if (input.substr(peg$currPos, 5) === peg$c1425) {
|
|
@@ -56942,9 +56944,9 @@ Or set the song key before changing key:
|
|
|
56942
56944
|
if (peg$silentFails === 0) peg$fail(peg$c1530);
|
|
56943
56945
|
}
|
|
56944
56946
|
if (s0 === peg$FAILED) {
|
|
56945
|
-
if (input.substr(peg$currPos,
|
|
56947
|
+
if (input.substr(peg$currPos, 5) === peg$c1531) {
|
|
56946
56948
|
s0 = peg$c1531;
|
|
56947
|
-
peg$currPos +=
|
|
56949
|
+
peg$currPos += 5;
|
|
56948
56950
|
} else {
|
|
56949
56951
|
s0 = peg$FAILED;
|
|
56950
56952
|
if (peg$silentFails === 0) peg$fail(peg$c1532);
|
|
@@ -57486,20 +57488,20 @@ Or set the song key before changing key:
|
|
|
57486
57488
|
if (peg$silentFails === 0) peg$fail(peg$c1666);
|
|
57487
57489
|
}
|
|
57488
57490
|
if (s0 === peg$FAILED) {
|
|
57489
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57490
|
-
s0 = peg$
|
|
57491
|
+
if (input.substr(peg$currPos, 4) === peg$c1667) {
|
|
57492
|
+
s0 = peg$c1667;
|
|
57491
57493
|
peg$currPos += 4;
|
|
57492
57494
|
} else {
|
|
57493
57495
|
s0 = peg$FAILED;
|
|
57494
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57496
|
+
if (peg$silentFails === 0) peg$fail(peg$c1668);
|
|
57495
57497
|
}
|
|
57496
57498
|
if (s0 === peg$FAILED) {
|
|
57497
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57498
|
-
s0 = peg$
|
|
57499
|
+
if (input.substr(peg$currPos, 4) === peg$c1665) {
|
|
57500
|
+
s0 = peg$c1665;
|
|
57499
57501
|
peg$currPos += 4;
|
|
57500
57502
|
} else {
|
|
57501
57503
|
s0 = peg$FAILED;
|
|
57502
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57504
|
+
if (peg$silentFails === 0) peg$fail(peg$c1666);
|
|
57503
57505
|
}
|
|
57504
57506
|
if (s0 === peg$FAILED) {
|
|
57505
57507
|
if (input.substr(peg$currPos, 4) === peg$c1669) {
|
|
@@ -57518,20 +57520,20 @@ Or set the song key before changing key:
|
|
|
57518
57520
|
if (peg$silentFails === 0) peg$fail(peg$c1672);
|
|
57519
57521
|
}
|
|
57520
57522
|
if (s0 === peg$FAILED) {
|
|
57521
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57522
|
-
s0 = peg$
|
|
57523
|
+
if (input.substr(peg$currPos, 4) === peg$c1673) {
|
|
57524
|
+
s0 = peg$c1673;
|
|
57523
57525
|
peg$currPos += 4;
|
|
57524
57526
|
} else {
|
|
57525
57527
|
s0 = peg$FAILED;
|
|
57526
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57528
|
+
if (peg$silentFails === 0) peg$fail(peg$c1674);
|
|
57527
57529
|
}
|
|
57528
57530
|
if (s0 === peg$FAILED) {
|
|
57529
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57530
|
-
s0 = peg$
|
|
57531
|
+
if (input.substr(peg$currPos, 4) === peg$c1671) {
|
|
57532
|
+
s0 = peg$c1671;
|
|
57531
57533
|
peg$currPos += 4;
|
|
57532
57534
|
} else {
|
|
57533
57535
|
s0 = peg$FAILED;
|
|
57534
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57536
|
+
if (peg$silentFails === 0) peg$fail(peg$c1672);
|
|
57535
57537
|
}
|
|
57536
57538
|
if (s0 === peg$FAILED) {
|
|
57537
57539
|
if (input.substr(peg$currPos, 4) === peg$c1675) {
|
|
@@ -57550,20 +57552,20 @@ Or set the song key before changing key:
|
|
|
57550
57552
|
if (peg$silentFails === 0) peg$fail(peg$c1678);
|
|
57551
57553
|
}
|
|
57552
57554
|
if (s0 === peg$FAILED) {
|
|
57553
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57554
|
-
s0 = peg$
|
|
57555
|
+
if (input.substr(peg$currPos, 4) === peg$c1679) {
|
|
57556
|
+
s0 = peg$c1679;
|
|
57555
57557
|
peg$currPos += 4;
|
|
57556
57558
|
} else {
|
|
57557
57559
|
s0 = peg$FAILED;
|
|
57558
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57560
|
+
if (peg$silentFails === 0) peg$fail(peg$c1680);
|
|
57559
57561
|
}
|
|
57560
57562
|
if (s0 === peg$FAILED) {
|
|
57561
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57562
|
-
s0 = peg$
|
|
57563
|
+
if (input.substr(peg$currPos, 4) === peg$c1677) {
|
|
57564
|
+
s0 = peg$c1677;
|
|
57563
57565
|
peg$currPos += 4;
|
|
57564
57566
|
} else {
|
|
57565
57567
|
s0 = peg$FAILED;
|
|
57566
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57568
|
+
if (peg$silentFails === 0) peg$fail(peg$c1678);
|
|
57567
57569
|
}
|
|
57568
57570
|
if (s0 === peg$FAILED) {
|
|
57569
57571
|
if (input.substr(peg$currPos, 4) === peg$c1681) {
|
|
@@ -57582,20 +57584,20 @@ Or set the song key before changing key:
|
|
|
57582
57584
|
if (peg$silentFails === 0) peg$fail(peg$c1684);
|
|
57583
57585
|
}
|
|
57584
57586
|
if (s0 === peg$FAILED) {
|
|
57585
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57586
|
-
s0 = peg$
|
|
57587
|
+
if (input.substr(peg$currPos, 4) === peg$c1685) {
|
|
57588
|
+
s0 = peg$c1685;
|
|
57587
57589
|
peg$currPos += 4;
|
|
57588
57590
|
} else {
|
|
57589
57591
|
s0 = peg$FAILED;
|
|
57590
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57592
|
+
if (peg$silentFails === 0) peg$fail(peg$c1686);
|
|
57591
57593
|
}
|
|
57592
57594
|
if (s0 === peg$FAILED) {
|
|
57593
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57594
|
-
s0 = peg$
|
|
57595
|
+
if (input.substr(peg$currPos, 4) === peg$c1683) {
|
|
57596
|
+
s0 = peg$c1683;
|
|
57595
57597
|
peg$currPos += 4;
|
|
57596
57598
|
} else {
|
|
57597
57599
|
s0 = peg$FAILED;
|
|
57598
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57600
|
+
if (peg$silentFails === 0) peg$fail(peg$c1684);
|
|
57599
57601
|
}
|
|
57600
57602
|
if (s0 === peg$FAILED) {
|
|
57601
57603
|
if (input.substr(peg$currPos, 4) === peg$c1687) {
|
|
@@ -57708,36 +57710,36 @@ Or set the song key before changing key:
|
|
|
57708
57710
|
}
|
|
57709
57711
|
function peg$parseChordSuffix8() {
|
|
57710
57712
|
let s0;
|
|
57711
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57712
|
-
s0 = peg$
|
|
57713
|
+
if (input.substr(peg$currPos, 4) === peg$c1689) {
|
|
57714
|
+
s0 = peg$c1689;
|
|
57713
57715
|
peg$currPos += 4;
|
|
57714
57716
|
} else {
|
|
57715
57717
|
s0 = peg$FAILED;
|
|
57716
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57718
|
+
if (peg$silentFails === 0) peg$fail(peg$c1690);
|
|
57717
57719
|
}
|
|
57718
57720
|
if (s0 === peg$FAILED) {
|
|
57719
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57720
|
-
s0 = peg$
|
|
57721
|
+
if (input.substr(peg$currPos, 4) === peg$c1647) {
|
|
57722
|
+
s0 = peg$c1647;
|
|
57721
57723
|
peg$currPos += 4;
|
|
57722
57724
|
} else {
|
|
57723
57725
|
s0 = peg$FAILED;
|
|
57724
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57726
|
+
if (peg$silentFails === 0) peg$fail(peg$c1648);
|
|
57725
57727
|
}
|
|
57726
57728
|
if (s0 === peg$FAILED) {
|
|
57727
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57728
|
-
s0 = peg$
|
|
57729
|
+
if (input.substr(peg$currPos, 4) === peg$c1691) {
|
|
57730
|
+
s0 = peg$c1691;
|
|
57729
57731
|
peg$currPos += 4;
|
|
57730
57732
|
} else {
|
|
57731
57733
|
s0 = peg$FAILED;
|
|
57732
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57734
|
+
if (peg$silentFails === 0) peg$fail(peg$c1692);
|
|
57733
57735
|
}
|
|
57734
57736
|
if (s0 === peg$FAILED) {
|
|
57735
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57736
|
-
s0 = peg$
|
|
57737
|
+
if (input.substr(peg$currPos, 4) === peg$c1647) {
|
|
57738
|
+
s0 = peg$c1647;
|
|
57737
57739
|
peg$currPos += 4;
|
|
57738
57740
|
} else {
|
|
57739
57741
|
s0 = peg$FAILED;
|
|
57740
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57742
|
+
if (peg$silentFails === 0) peg$fail(peg$c1648);
|
|
57741
57743
|
}
|
|
57742
57744
|
if (s0 === peg$FAILED) {
|
|
57743
57745
|
if (input.substr(peg$currPos, 4) === peg$c1693) {
|
|
@@ -57756,20 +57758,20 @@ Or set the song key before changing key:
|
|
|
57756
57758
|
if (peg$silentFails === 0) peg$fail(peg$c1696);
|
|
57757
57759
|
}
|
|
57758
57760
|
if (s0 === peg$FAILED) {
|
|
57759
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57760
|
-
s0 = peg$
|
|
57761
|
+
if (input.substr(peg$currPos, 4) === peg$c1697) {
|
|
57762
|
+
s0 = peg$c1697;
|
|
57761
57763
|
peg$currPos += 4;
|
|
57762
57764
|
} else {
|
|
57763
57765
|
s0 = peg$FAILED;
|
|
57764
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57766
|
+
if (peg$silentFails === 0) peg$fail(peg$c1698);
|
|
57765
57767
|
}
|
|
57766
57768
|
if (s0 === peg$FAILED) {
|
|
57767
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57768
|
-
s0 = peg$
|
|
57769
|
+
if (input.substr(peg$currPos, 4) === peg$c1649) {
|
|
57770
|
+
s0 = peg$c1649;
|
|
57769
57771
|
peg$currPos += 4;
|
|
57770
57772
|
} else {
|
|
57771
57773
|
s0 = peg$FAILED;
|
|
57772
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57774
|
+
if (peg$silentFails === 0) peg$fail(peg$c1650);
|
|
57773
57775
|
}
|
|
57774
57776
|
if (s0 === peg$FAILED) {
|
|
57775
57777
|
if (input.substr(peg$currPos, 4) === peg$c1699) {
|
|
@@ -57804,28 +57806,28 @@ Or set the song key before changing key:
|
|
|
57804
57806
|
if (peg$silentFails === 0) peg$fail(peg$c1706);
|
|
57805
57807
|
}
|
|
57806
57808
|
if (s0 === peg$FAILED) {
|
|
57807
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57808
|
-
s0 = peg$
|
|
57809
|
+
if (input.substr(peg$currPos, 4) === peg$c1707) {
|
|
57810
|
+
s0 = peg$c1707;
|
|
57809
57811
|
peg$currPos += 4;
|
|
57810
57812
|
} else {
|
|
57811
57813
|
s0 = peg$FAILED;
|
|
57812
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57814
|
+
if (peg$silentFails === 0) peg$fail(peg$c1708);
|
|
57813
57815
|
}
|
|
57814
57816
|
if (s0 === peg$FAILED) {
|
|
57815
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57816
|
-
s0 = peg$
|
|
57817
|
+
if (input.substr(peg$currPos, 4) === peg$c1703) {
|
|
57818
|
+
s0 = peg$c1703;
|
|
57817
57819
|
peg$currPos += 4;
|
|
57818
57820
|
} else {
|
|
57819
57821
|
s0 = peg$FAILED;
|
|
57820
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57822
|
+
if (peg$silentFails === 0) peg$fail(peg$c1704);
|
|
57821
57823
|
}
|
|
57822
57824
|
if (s0 === peg$FAILED) {
|
|
57823
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57824
|
-
s0 = peg$
|
|
57825
|
+
if (input.substr(peg$currPos, 4) === peg$c1709) {
|
|
57826
|
+
s0 = peg$c1709;
|
|
57825
57827
|
peg$currPos += 4;
|
|
57826
57828
|
} else {
|
|
57827
57829
|
s0 = peg$FAILED;
|
|
57828
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57830
|
+
if (peg$silentFails === 0) peg$fail(peg$c1710);
|
|
57829
57831
|
}
|
|
57830
57832
|
if (s0 === peg$FAILED) {
|
|
57831
57833
|
if (input.substr(peg$currPos, 4) === peg$c1709) {
|
|
@@ -57916,20 +57918,20 @@ Or set the song key before changing key:
|
|
|
57916
57918
|
if (peg$silentFails === 0) peg$fail(peg$c1730);
|
|
57917
57919
|
}
|
|
57918
57920
|
if (s0 === peg$FAILED) {
|
|
57919
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57920
|
-
s0 = peg$
|
|
57921
|
+
if (input.substr(peg$currPos, 4) === peg$c1731) {
|
|
57922
|
+
s0 = peg$c1731;
|
|
57921
57923
|
peg$currPos += 4;
|
|
57922
57924
|
} else {
|
|
57923
57925
|
s0 = peg$FAILED;
|
|
57924
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57926
|
+
if (peg$silentFails === 0) peg$fail(peg$c1732);
|
|
57925
57927
|
}
|
|
57926
57928
|
if (s0 === peg$FAILED) {
|
|
57927
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
57928
|
-
s0 = peg$
|
|
57929
|
+
if (input.substr(peg$currPos, 4) === peg$c1701) {
|
|
57930
|
+
s0 = peg$c1701;
|
|
57929
57931
|
peg$currPos += 4;
|
|
57930
57932
|
} else {
|
|
57931
57933
|
s0 = peg$FAILED;
|
|
57932
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
57934
|
+
if (peg$silentFails === 0) peg$fail(peg$c1702);
|
|
57933
57935
|
}
|
|
57934
57936
|
if (s0 === peg$FAILED) {
|
|
57935
57937
|
if (input.substr(peg$currPos, 4) === peg$c1733) {
|
|
@@ -57964,9 +57966,9 @@ Or set the song key before changing key:
|
|
|
57964
57966
|
if (peg$silentFails === 0) peg$fail(peg$c1740);
|
|
57965
57967
|
}
|
|
57966
57968
|
if (s0 === peg$FAILED) {
|
|
57967
|
-
if (input.substr(peg$currPos,
|
|
57969
|
+
if (input.substr(peg$currPos, 4) === peg$c1741) {
|
|
57968
57970
|
s0 = peg$c1741;
|
|
57969
|
-
peg$currPos +=
|
|
57971
|
+
peg$currPos += 4;
|
|
57970
57972
|
} else {
|
|
57971
57973
|
s0 = peg$FAILED;
|
|
57972
57974
|
if (peg$silentFails === 0) peg$fail(peg$c1742);
|
|
@@ -58348,33 +58350,33 @@ Or set the song key before changing key:
|
|
|
58348
58350
|
if (peg$silentFails === 0) peg$fail(peg$c1836);
|
|
58349
58351
|
}
|
|
58350
58352
|
if (s0 === peg$FAILED) {
|
|
58351
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
58352
|
-
s0 = peg$
|
|
58353
|
+
if (input.substr(peg$currPos, 3) === peg$c1837) {
|
|
58354
|
+
s0 = peg$c1837;
|
|
58353
58355
|
peg$currPos += 3;
|
|
58354
58356
|
} else {
|
|
58355
58357
|
s0 = peg$FAILED;
|
|
58356
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58358
|
+
if (peg$silentFails === 0) peg$fail(peg$c1838);
|
|
58357
58359
|
}
|
|
58358
58360
|
if (s0 === peg$FAILED) {
|
|
58359
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
58360
|
-
s0 = peg$
|
|
58361
|
+
if (input.substr(peg$currPos, 3) === peg$c1825) {
|
|
58362
|
+
s0 = peg$c1825;
|
|
58361
58363
|
peg$currPos += 3;
|
|
58362
58364
|
} else {
|
|
58363
58365
|
s0 = peg$FAILED;
|
|
58364
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58366
|
+
if (peg$silentFails === 0) peg$fail(peg$c1826);
|
|
58365
58367
|
}
|
|
58366
58368
|
if (s0 === peg$FAILED) {
|
|
58367
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
58368
|
-
s0 = peg$
|
|
58369
|
+
if (input.substr(peg$currPos, 3) === peg$c1825) {
|
|
58370
|
+
s0 = peg$c1825;
|
|
58369
58371
|
peg$currPos += 3;
|
|
58370
58372
|
} else {
|
|
58371
58373
|
s0 = peg$FAILED;
|
|
58372
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58374
|
+
if (peg$silentFails === 0) peg$fail(peg$c1826);
|
|
58373
58375
|
}
|
|
58374
58376
|
if (s0 === peg$FAILED) {
|
|
58375
|
-
if (input.substr(peg$currPos,
|
|
58377
|
+
if (input.substr(peg$currPos, 3) === peg$c1839) {
|
|
58376
58378
|
s0 = peg$c1839;
|
|
58377
|
-
peg$currPos +=
|
|
58379
|
+
peg$currPos += 3;
|
|
58378
58380
|
} else {
|
|
58379
58381
|
s0 = peg$FAILED;
|
|
58380
58382
|
if (peg$silentFails === 0) peg$fail(peg$c1840);
|
|
@@ -58452,12 +58454,12 @@ Or set the song key before changing key:
|
|
|
58452
58454
|
if (peg$silentFails === 0) peg$fail(peg$c1858);
|
|
58453
58455
|
}
|
|
58454
58456
|
if (s0 === peg$FAILED) {
|
|
58455
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
58456
|
-
s0 = peg$
|
|
58457
|
+
if (input.substr(peg$currPos, 2) === peg$c1859) {
|
|
58458
|
+
s0 = peg$c1859;
|
|
58457
58459
|
peg$currPos += 2;
|
|
58458
58460
|
} else {
|
|
58459
58461
|
s0 = peg$FAILED;
|
|
58460
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58462
|
+
if (peg$silentFails === 0) peg$fail(peg$c1860);
|
|
58461
58463
|
}
|
|
58462
58464
|
if (s0 === peg$FAILED) {
|
|
58463
58465
|
if (input.substr(peg$currPos, 2) === peg$c1859) {
|
|
@@ -58500,12 +58502,12 @@ Or set the song key before changing key:
|
|
|
58500
58502
|
if (peg$silentFails === 0) peg$fail(peg$c1868);
|
|
58501
58503
|
}
|
|
58502
58504
|
if (s0 === peg$FAILED) {
|
|
58503
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
58504
|
-
s0 = peg$
|
|
58505
|
+
if (input.substr(peg$currPos, 2) === peg$c1869) {
|
|
58506
|
+
s0 = peg$c1869;
|
|
58505
58507
|
peg$currPos += 2;
|
|
58506
58508
|
} else {
|
|
58507
58509
|
s0 = peg$FAILED;
|
|
58508
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58510
|
+
if (peg$silentFails === 0) peg$fail(peg$c1870);
|
|
58509
58511
|
}
|
|
58510
58512
|
}
|
|
58511
58513
|
}
|
|
@@ -58610,8 +58612,8 @@ Or set the song key before changing key:
|
|
|
58610
58612
|
}
|
|
58611
58613
|
function peg$parseChordSuffix9() {
|
|
58612
58614
|
let s0;
|
|
58613
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
58614
|
-
s0 = peg$
|
|
58615
|
+
if (input.substr(peg$currPos, 2) === peg$c82) {
|
|
58616
|
+
s0 = peg$c82;
|
|
58615
58617
|
peg$currPos += 2;
|
|
58616
58618
|
} else {
|
|
58617
58619
|
s0 = peg$FAILED;
|
|
@@ -58714,13 +58716,22 @@ Or set the song key before changing key:
|
|
|
58714
58716
|
if (peg$silentFails === 0) peg$fail(peg$c1895);
|
|
58715
58717
|
}
|
|
58716
58718
|
if (s0 === peg$FAILED) {
|
|
58717
|
-
if (
|
|
58718
|
-
s0 =
|
|
58719
|
-
peg$currPos
|
|
58719
|
+
if (input.substr(peg$currPos, 2) === peg$c1896) {
|
|
58720
|
+
s0 = peg$c1896;
|
|
58721
|
+
peg$currPos += 2;
|
|
58720
58722
|
} else {
|
|
58721
58723
|
s0 = peg$FAILED;
|
|
58722
58724
|
if (peg$silentFails === 0) peg$fail(peg$c1897);
|
|
58723
58725
|
}
|
|
58726
|
+
if (s0 === peg$FAILED) {
|
|
58727
|
+
if (peg$c1898.test(input.charAt(peg$currPos))) {
|
|
58728
|
+
s0 = input.charAt(peg$currPos);
|
|
58729
|
+
peg$currPos++;
|
|
58730
|
+
} else {
|
|
58731
|
+
s0 = peg$FAILED;
|
|
58732
|
+
if (peg$silentFails === 0) peg$fail(peg$c1899);
|
|
58733
|
+
}
|
|
58734
|
+
}
|
|
58724
58735
|
}
|
|
58725
58736
|
}
|
|
58726
58737
|
}
|
|
@@ -58738,12 +58749,12 @@ Or set the song key before changing key:
|
|
|
58738
58749
|
}
|
|
58739
58750
|
function peg$parseNewLine() {
|
|
58740
58751
|
let s0;
|
|
58741
|
-
if (peg$
|
|
58752
|
+
if (peg$c1900.test(input.charAt(peg$currPos))) {
|
|
58742
58753
|
s0 = input.charAt(peg$currPos);
|
|
58743
58754
|
peg$currPos++;
|
|
58744
58755
|
} else {
|
|
58745
58756
|
s0 = peg$FAILED;
|
|
58746
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58757
|
+
if (peg$silentFails === 0) peg$fail(peg$c1901);
|
|
58747
58758
|
}
|
|
58748
58759
|
if (s0 === peg$FAILED) s0 = peg$parseCarriageReturnLineFeed();
|
|
58749
58760
|
return s0;
|
|
@@ -58773,22 +58784,22 @@ Or set the song key before changing key:
|
|
|
58773
58784
|
function peg$parseLineFeed() {
|
|
58774
58785
|
let s0;
|
|
58775
58786
|
if (input.charCodeAt(peg$currPos) === 10) {
|
|
58776
|
-
s0 = peg$
|
|
58787
|
+
s0 = peg$c1902;
|
|
58777
58788
|
peg$currPos++;
|
|
58778
58789
|
} else {
|
|
58779
58790
|
s0 = peg$FAILED;
|
|
58780
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58791
|
+
if (peg$silentFails === 0) peg$fail(peg$c1903);
|
|
58781
58792
|
}
|
|
58782
58793
|
return s0;
|
|
58783
58794
|
}
|
|
58784
58795
|
function peg$parseCarriageReturn() {
|
|
58785
58796
|
let s0;
|
|
58786
58797
|
if (input.charCodeAt(peg$currPos) === 13) {
|
|
58787
|
-
s0 = peg$
|
|
58798
|
+
s0 = peg$c1904;
|
|
58788
58799
|
peg$currPos++;
|
|
58789
58800
|
} else {
|
|
58790
58801
|
s0 = peg$FAILED;
|
|
58791
|
-
if (peg$silentFails === 0) peg$fail(peg$
|
|
58802
|
+
if (peg$silentFails === 0) peg$fail(peg$c1905);
|
|
58792
58803
|
}
|
|
58793
58804
|
return s0;
|
|
58794
58805
|
}
|
|
@@ -69982,7 +69993,7 @@ AjwCRQJ5AAAAAAABAAAAANpTmfAAAAAA0e+yRgAAAADR77JG
|
|
|
69982
69993
|
}
|
|
69983
69994
|
};
|
|
69984
69995
|
var $a5a21ced491ea51f$export$2e2bcd8739ae039 = $a5a21ced491ea51f$var$UltimateGuitarParser;
|
|
69985
|
-
var $ae92e002ce14f11a$export$2e2bcd8739ae039 = "14.5.
|
|
69996
|
+
var $ae92e002ce14f11a$export$2e2bcd8739ae039 = "14.5.1";
|
|
69986
69997
|
var $a3816b486f741c00$exports = {};
|
|
69987
69998
|
var $892913528e7f60f9$export$2e2bcd8739ae039 = {
|
|
69988
69999
|
CHORUS: $dce48cb70c4120bb$export$8db6c706fc9142b2,
|
|
@@ -70076,7 +70087,7 @@ html2canvas/dist/html2canvas.js:
|
|
|
70076
70087
|
***************************************************************************** *)
|
|
70077
70088
|
|
|
70078
70089
|
dompurify/dist/purify.es.mjs:
|
|
70079
|
-
(*! @license DOMPurify 3.
|
|
70090
|
+
(*! @license DOMPurify 3.4.0 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.0/LICENSE *)
|
|
70080
70091
|
|
|
70081
70092
|
svg-pathdata/lib/SVGPathData.module.js:
|
|
70082
70093
|
(*! *****************************************************************************
|