@markuplint/html-spec 2.4.0 → 2.6.0

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/index.json CHANGED
@@ -175,8 +175,6 @@
175
175
  "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter",
176
176
  "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject",
177
177
  "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g",
178
- "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch",
179
- "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath",
180
178
  "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image",
181
179
  "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line",
182
180
  "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient",
@@ -270,7 +268,9 @@
270
268
  },
271
269
  "hidden": {
272
270
  "ref": "https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden",
273
- "type": "Boolean"
271
+ "type": {
272
+ "enum": ["", "hidden", "until-found"]
273
+ }
274
274
  },
275
275
  "inert": {
276
276
  "ref": "https://html.spec.whatwg.org/multipage/interaction.html#the-inert-attribute",
@@ -410,6 +410,10 @@
410
410
  "ref": "https://w3c.github.io/uievents/#beforeinput",
411
411
  "type": "FunctionBody"
412
412
  },
413
+ "onbeforematch": {
414
+ "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onbeforematch",
415
+ "type": "FunctionBody"
416
+ },
413
417
  "onblur": {
414
418
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onabort",
415
419
  "type": "FunctionBody"
@@ -835,6 +839,15 @@
835
839
  "anonymous": [""]
836
840
  }
837
841
  }
842
+ },
843
+ "fetchpriority": {
844
+ "ref": "https://wicg.github.io/priority-hints/#solution",
845
+ "type": {
846
+ "enum": ["high", "low", "auto"],
847
+ "invalidValueDefault": "auto",
848
+ "missingValueDefault": "auto"
849
+ },
850
+ "experimental": true
838
851
  }
839
852
  },
840
853
  "#HTMLEmbededAndMediaContentAttrs": {
@@ -1313,7 +1326,7 @@
1313
1326
  },
1314
1327
  "r": {
1315
1328
  "ref": "https://svgwg.org/svg2-draft/geometry.html#RProperty",
1316
- "type": "<svg-length>",
1329
+ "type": ["<svg-length>", "<percentage>"],
1317
1330
  "defaultValue": "0",
1318
1331
  "animatable": true
1319
1332
  },
@@ -10579,7 +10592,7 @@
10579
10592
  "deprecated": true
10580
10593
  },
10581
10594
  "download": {
10582
- "description": "Prompts the user to save the linked URL instead of navigating to it. Can be used with or without a value: Without a value, the browser will suggest a filename/extension, generated from various sources: The Content-Disposition HTTP header The final segment in the URL path The media type (from the Content-Type header, the start of a data: URL, or Blob.type for a blob: URL) Defining a value suggests it as the filename. / and \\ characters are converted to underscores (_). Filesystems may forbid other characters in filenames, so browsers will adjust the suggested name if necessary. Note: download only works for same-origin URLs, or the blob: and data: schemes. If the Content-Disposition header has different information from the download attribute, resulting behavior may differ: If the header specifies a filename, it takes priority over a filename specified in the download attribute. If the header specifies a disposition of inline, Chrome, and Firefox 82 and later, prioritize the attribute and treat it as a download. Firefox versions before 82 prioritize the header and will display the content inline."
10595
+ "description": "Causes the browser to treat the linked URL as a download. Can be used with or without a value: Without a value, the browser will suggest a filename/extension, generated from various sources: The Content-Disposition HTTP header The final segment in the URL path The media type (from the Content-Type header, the start of a data: URL, or Blob.type for a blob: URL) Defining a value suggests it as the filename. / and \\ characters are converted to underscores (_). Filesystems may forbid other characters in filenames, so browsers will adjust the suggested name if necessary. Note: download only works for same-origin URLs, or the blob: and data: schemes. How browsers treat downloads varies by browser, user settings, and other factors. The user may be prompted before a download starts, or the file may be saved automatically, or it may open automatically, either in an external application or in the browser itself. If the Content-Disposition header has different information from the download attribute, resulting behavior may differ: If the header specifies a filename, it takes priority over a filename specified in the download attribute. If the header specifies a disposition of inline, Chrome and Firefox prioritize the attribute and treat it as a download. Old Firefox versions (before 82) prioritize the header and will display the content inline."
10583
10596
  },
10584
10597
  "href": {
10585
10598
  "description": "The URL that the hyperlink points to. Links are not restricted to HTTP-based URLs — they can use any URL scheme supported by browsers: Sections of a page with fragment URLs Pieces of media files with media fragments Telephone numbers with tel: URLs Email addresses with mailto: URLs While web browsers may not support other URL schemes, web sites can with registerProtocolHandler()"
@@ -11319,8 +11332,8 @@
11319
11332
  "roles": false
11320
11333
  },
11321
11334
  "implicitRole": {
11322
- "summary": "document",
11323
- "role": "document"
11335
+ "summary": "generic",
11336
+ "role": "generic"
11324
11337
  },
11325
11338
  "omittion": false,
11326
11339
  "globalAttrs": {
@@ -11331,27 +11344,27 @@
11331
11344
  },
11332
11345
  "attributes": {
11333
11346
  "alink": {
11334
- "description": "Color of text for hyperlinks when selected. This method is non-conforming, use CSS color property in conjunction with the :active pseudo-class instead.",
11347
+ "description": "Color of text for hyperlinks when selected. Do not use this attribute! Use the CSS color property in conjunction with the :active pseudo-class instead.",
11335
11348
  "deprecated": true
11336
11349
  },
11337
11350
  "background": {
11338
- "description": "URI of a image to use as a background. This method is non-conforming, use CSS background property on the element instead.",
11351
+ "description": "URI of a image to use as a background. Do not use this attribute! Use the CSS background property on the element instead.",
11339
11352
  "deprecated": true
11340
11353
  },
11341
11354
  "bgcolor": {
11342
- "description": "Background color for the document. This method is non-conforming, use CSS background-color property on the element instead.",
11355
+ "description": "Background color for the document. Do not use this attribute! Use the CSS background-color property on the element instead.",
11343
11356
  "deprecated": true
11344
11357
  },
11345
11358
  "bottommargin": {
11346
- "description": "The margin of the bottom of the body. This method is non-conforming, use CSS margin-bottom property on the element instead.",
11359
+ "description": "The margin of the bottom of the body. Do not use this attribute! Use the CSS margin-bottom property on the element instead.",
11347
11360
  "deprecated": true
11348
11361
  },
11349
11362
  "leftmargin": {
11350
- "description": "The margin of the left of the body. This method is non-conforming, use CSS margin-left property on the element instead.",
11363
+ "description": "The margin of the left of the body. Do not use this attribute! Use the CSS margin-left property on the element instead.",
11351
11364
  "deprecated": true
11352
11365
  },
11353
11366
  "link": {
11354
- "description": "Color of text for unvisited hypertext links. This method is non-conforming, use CSS color property in conjunction with the :link pseudo-class instead.",
11367
+ "description": "Color of text for unvisited hypertext links. Do not use this attribute! Use the CSS color property in conjunction with the :link pseudo-class instead.",
11355
11368
  "deprecated": true
11356
11369
  },
11357
11370
  "onafterprint": {
@@ -11440,19 +11453,19 @@
11440
11453
  "type": "FunctionBody"
11441
11454
  },
11442
11455
  "rightmargin": {
11443
- "description": "The margin of the right of the body. This method is non-conforming, use CSS margin-right property on the element instead.",
11456
+ "description": "The margin of the right of the body. Do not use this attribute! Use the CSS margin-right property on the element instead.",
11444
11457
  "deprecated": true
11445
11458
  },
11446
11459
  "text": {
11447
- "description": "Foreground color of text. This method is non-conforming, use CSS color property on the element instead.",
11460
+ "description": "Foreground color of text. Do not use this attribute! Use CSS color property on the element instead.",
11448
11461
  "deprecated": true
11449
11462
  },
11450
11463
  "topmargin": {
11451
- "description": "The margin of the top of the body. This method is non-conforming, use CSS margin-top property on the element instead.",
11464
+ "description": "The margin of the top of the body. Do not use this attribute! Use the CSS margin-top property on the element instead.",
11452
11465
  "deprecated": true
11453
11466
  },
11454
11467
  "vlink": {
11455
- "description": "Color of text for visited hypertext links. This method is non-conforming, use CSS color property in conjunction with the :visited pseudo-class instead.",
11468
+ "description": "Color of text for visited hypertext links. Do not use this attribute! Use the CSS color property in conjunction with the :visited pseudo-class instead.",
11456
11469
  "deprecated": true
11457
11470
  }
11458
11471
  }
@@ -11492,7 +11505,7 @@
11492
11505
  {
11493
11506
  "name": "button",
11494
11507
  "cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button",
11495
- "description": "The <button> HTML element represents a clickable button, used to submit forms or anywhere in a document for accessible, standard button functionality.",
11508
+ "description": "The <button> HTML element is an interactive element activated by a user with a mouse, keyboard, finger, voice command, or other assistive technology. Once activated, it then performs a programmable action, such as submitting a form or opening a dialog.",
11496
11509
  "categories": ["#flow", "#phrasing", "#interactive", "#palpable"],
11497
11510
  "permittedStructures": {
11498
11511
  "summary": "Phrasing content but there must be no Interactive content",
@@ -13154,8 +13167,8 @@
13154
13167
  "roles": false
13155
13168
  },
13156
13169
  "implicitRole": {
13157
- "summary": "No corresponding role",
13158
- "role": false
13170
+ "summary": "document",
13171
+ "role": "document"
13159
13172
  },
13160
13173
  "omittion": false,
13161
13174
  "globalAttrs": {
@@ -13238,7 +13251,7 @@
13238
13251
  "#GlobalEventAttrs": true,
13239
13252
  "#HTMLEmbededAndMediaContentAttrs": ["src", "height", "width"],
13240
13253
  "#HTMLGlobalAttrs": true,
13241
- "#HTMLLinkAndFetchingAttrs": ["referrerpolicy", "loading"]
13254
+ "#HTMLLinkAndFetchingAttrs": ["referrerpolicy", "loading", "fetchpriority"]
13242
13255
  },
13243
13256
  "attributes": {
13244
13257
  "align": {
@@ -13260,6 +13273,9 @@
13260
13273
  "description": "A Content Security Policy enforced for the embedded resource. See HTMLIFrameElement.csp for details.",
13261
13274
  "experimental": true
13262
13275
  },
13276
+ "fetchpriority": {
13277
+ "description": "Provides a hint of the relative priority to use when fetching the iframe document. Allowed values: high Signals a high-priority fetch relative to other iframe documents. low Signals a low-priority fetch relative to other iframe documents. auto Default: Signals automatic determination of fetch priority relative to other iframe documents."
13278
+ },
13263
13279
  "frameborder": {
13264
13280
  "description": "The value 1 (the default) draws a border around this frame. The value 0 removes the border around this frame, but you should instead use the CSS property border to control <iframe> borders.",
13265
13281
  "deprecated": true
@@ -13390,7 +13406,7 @@
13390
13406
  "conditions": [
13391
13407
  {
13392
13408
  "condition": "[alt=\"\"]",
13393
- "roles": ["none", "presentation"]
13409
+ "roles": false
13394
13410
  },
13395
13411
  {
13396
13412
  "condition": ":not([alt])",
@@ -13399,12 +13415,12 @@
13399
13415
  ]
13400
13416
  },
13401
13417
  "implicitRole": {
13402
- "summary": "with non-empty alt attribute or no alt attribute: img with empty alt attribute: no corresponding role",
13418
+ "summary": "with non-empty alt attribute or no alt attribute: img with empty alt attribute: presentation",
13403
13419
  "role": "img",
13404
13420
  "conditions": [
13405
13421
  {
13406
13422
  "condition": "[alt=\"\"]",
13407
- "role": false
13423
+ "role": "presentation"
13408
13424
  }
13409
13425
  ]
13410
13426
  },
@@ -13415,7 +13431,7 @@
13415
13431
  "#GlobalEventAttrs": true,
13416
13432
  "#HTMLEmbededAndMediaContentAttrs": ["src", "height", "srcset", "sizes", "width"],
13417
13433
  "#HTMLGlobalAttrs": true,
13418
- "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "loading"]
13434
+ "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "loading", "fetchpriority"]
13419
13435
  },
13420
13436
  "attributes": {
13421
13437
  "align": {
@@ -13441,6 +13457,9 @@
13441
13457
  "missingValueDefault": "auto"
13442
13458
  }
13443
13459
  },
13460
+ "fetchpriority": {
13461
+ "description": "Provides a hint of the relative priority to use when fetching the image. Allowed values: high Signals a high-priority fetch relative to other images. low Signals a low-priority fetch relative to other images. auto Default: Signals automatic determination of fetch priority relative to other images."
13462
+ },
13444
13463
  "height": {
13445
13464
  "description": "The intrinsic height of the image, in pixels. Must be an integer without a unit."
13446
13465
  },
@@ -13619,7 +13638,7 @@
13619
13638
  ]
13620
13639
  },
13621
13640
  "implicitRole": {
13622
- "summary": "type=button: button type=checkbox: checkbox type=email with no list attribute: textbox with list attribute: combobox type=image: button type=number: spinbutton type=radio: radio type=range: slider type=reset: button type=search with no list attribute: searchbox with list attribute: combobox type=submit: button type=tel with no list attribute: textbox with list attribute: combobox type=text with no list attribute: textbox with list attribute: combobox type=url with no list attribute: textbox with list attribute: combobox type=color|date|datetime-local|file|hidden|month|password|time|week: no corresponding role",
13641
+ "summary": "type=button: button type=checkbox: checkbox type=email with no list attribute: textbox with list attribute: combobox type=image: button type=number: spinbutton type=radio: radio type=range: slider type=reset: button type=search with no list attribute: searchbox with list attribute:combobox type=submit: button type=tel with no list attribute: textbox with list attribute: combobox type=text with no list attribute: textbox with list attribute: combobox type=url with no list attribute: textbox with list attribute: combobox type=color|date|datetime-local|file|hidden|month|password|time|week: no corresponding role",
13623
13642
  "role": false,
13624
13643
  "conditions": [
13625
13644
  {
@@ -13780,7 +13799,7 @@
13780
13799
  }
13781
13800
  },
13782
13801
  "autocorrect": {
13783
- "description": "A Safari extension, the autocorrect attribute is a string which indicates whether or not to activate automatic correction while the user is editing this field. Permitted values are: on Enable automatic correction of typos, as well as processing of text substitutions if any are configured. off Disable automatic correction and text substitutions.",
13802
+ "description": "(Safari only). A string which indicates whether or not to activate automatic correction while the user is editing this field. Permitted values are: on Enable automatic correction of typos, as well as processing of text substitutions if any are configured. off Disable automatic correction and text substitutions.",
13784
13803
  "nonStandard": true
13785
13804
  },
13786
13805
  "autofocus": {
@@ -14408,7 +14427,8 @@
14408
14427
  "type",
14409
14428
  "referrerpolicy",
14410
14429
  "integrity",
14411
- "media"
14430
+ "media",
14431
+ "fetchpriority"
14412
14432
  ]
14413
14433
  },
14414
14434
  "attributes": {
@@ -14469,6 +14489,9 @@
14469
14489
  "ref": "https://html.spec.whatwg.org/multipage/semantics.html#attr-link-disabled",
14470
14490
  "type": "Boolean"
14471
14491
  },
14492
+ "fetchpriority": {
14493
+ "description": "Provides a hint of the relative priority to use when fetching a preloaded resource. Allowed values: high Signals a high-priority fetch relative to other resources of the same type. low Signals a low-priority fetch relative to other resources of the same type. auto Default: Signals automatic determination of fetch priority relative to other resources of the same type."
14494
+ },
14472
14495
  "href": {
14473
14496
  "description": "This attribute specifies the URL of the linked resource. A URL can be absolute or relative."
14474
14497
  },
@@ -14765,7 +14788,7 @@
14765
14788
  {
14766
14789
  "name": "menu",
14767
14790
  "cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu",
14768
- "description": "The <menu> HTML element is a semantic alternative to <ul>. It represents an unordered list of items (represented by <li> elements), each of these represent a link or other command that the user can activate.",
14791
+ "description": "The <menu> HTML element is a semantic alternative to <ul>. It represents an unordered list of items (represented by <li> elements), each of which represents a link or other command that the user can activate.",
14769
14792
  "experimental": true,
14770
14793
  "categories": ["#flow", "#palpable"],
14771
14794
  "permittedStructures": {
@@ -14971,9 +14994,6 @@
14971
14994
  "#HTMLGlobalAttrs": true
14972
14995
  },
14973
14996
  "attributes": {
14974
- "form": {
14975
- "description": "The <form> element to associate the <meter> element with (its form owner). The value of this attribute must be the id of a <form> in the same document. If this attribute is not set, the <meter> is associated with its ancestor <form> element, if any. This attribute is only used if the <meter> element is being used as a form-associated element, such as one displaying a range corresponding to an <input type=\"number\">."
14976
- },
14977
14997
  "high": {
14978
14998
  "ref": "https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-high",
14979
14999
  "type": "Number"
@@ -15199,9 +15219,6 @@
15199
15219
  "summary": "zero or more <param> elements, then transparent.",
15200
15220
  "tag": "object",
15201
15221
  "contents": [
15202
- {
15203
- "zeroOrMore": "param"
15204
- },
15205
15222
  {
15206
15223
  "zeroOrMore": "#transparent"
15207
15224
  }
@@ -15541,8 +15558,8 @@
15541
15558
  "categories": [],
15542
15559
  "permittedStructures": {
15543
15560
  "summary": "None, it is an empty element.",
15544
- "tag": "optgroup",
15545
- "contents": false
15561
+ "tag": "param",
15562
+ "contents": true
15546
15563
  },
15547
15564
  "permittedRoles": {
15548
15565
  "summary": "No role permitted",
@@ -15553,26 +15570,17 @@
15553
15570
  "role": false
15554
15571
  },
15555
15572
  "omittion": false,
15556
- "globalAttrs": {
15557
- "#ARIAAttrs": true,
15558
- "#DocumentElementEventAttrs": true,
15559
- "#GlobalEventAttrs": true,
15560
- "#HTMLGlobalAttrs": true
15561
- },
15573
+ "globalAttrs": {},
15562
15574
  "attributes": {
15563
15575
  "name": {
15564
- "ref": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-param-name",
15565
- "type": "Any",
15566
- "required": true
15576
+ "description": "Name of the parameter."
15567
15577
  },
15568
15578
  "type": {
15569
15579
  "description": "Only used if the valuetype is set to ref. Specifies the MIME type of values found at the URI specified by value.",
15570
15580
  "deprecated": true
15571
15581
  },
15572
15582
  "value": {
15573
- "ref": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-param-value",
15574
- "type": "Any",
15575
- "required": true
15583
+ "description": "Specifies the value of the parameter."
15576
15584
  },
15577
15585
  "valuetype": {
15578
15586
  "description": "Specifies the type of the value attribute. Possible values are: data: Default value. The value is passed to the object's implementation as a string. ref: The value is a URI to a resource where run-time values are stored. object: An ID of another <object> in the same document.",
@@ -15691,7 +15699,7 @@
15691
15699
  {
15692
15700
  "name": "pre",
15693
15701
  "cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre",
15694
- "description": "The <pre> HTML element represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or \"monospaced, font. Whitespace inside this element is displayed as written.",
15702
+ "description": "The <pre> HTML element represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or monospaced, font. Whitespace inside this element is displayed as written.",
15695
15703
  "categories": ["#flow", "#palpable"],
15696
15704
  "permittedStructures": {
15697
15705
  "summary": "Phrasing content.",
@@ -16073,7 +16081,7 @@
16073
16081
  "#DocumentElementEventAttrs": true,
16074
16082
  "#GlobalEventAttrs": true,
16075
16083
  "#HTMLGlobalAttrs": true,
16076
- "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "integrity"]
16084
+ "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "integrity", "fetchpriority"]
16077
16085
  },
16078
16086
  "attributes": {
16079
16087
  "async": {
@@ -16106,6 +16114,9 @@
16106
16114
  "ineffective": ["[type='module' i]", ":not([src])", "[async]"],
16107
16115
  "_TODO_": "The defer attribute affects the element that has the async attribute if it doesn't support the async"
16108
16116
  },
16117
+ "fetchpriority": {
16118
+ "description": "Provides a hint of the relative priority to use when fetching an external script. Allowed values: high Signals a high-priority fetch relative to other external scripts. low Signals a low-priority fetch relative to other external scripts. auto Default: Signals automatic determination of fetch priority relative to other external scripts."
16119
+ },
16109
16120
  "integrity": {
16110
16121
  "ref": "https://html.spec.whatwg.org/multipage/scripting.html#attr-script-integrity",
16111
16122
  "condition": {
@@ -16206,7 +16217,7 @@
16206
16217
  {
16207
16218
  "name": "select",
16208
16219
  "cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select",
16209
- "description": "The <select> HTML element represents a control that provides a menu of options:",
16220
+ "description": "The <select> HTML element represents a control that provides a menu of options.",
16210
16221
  "categories": ["#flow", "#phrasing", "#interactive"],
16211
16222
  "permittedStructures": {
16212
16223
  "summary": "Zero or more <option> or <optgroup> elements.",
@@ -17054,10 +17065,6 @@
17054
17065
  "#HTMLGlobalAttrs": true
17055
17066
  },
17056
17067
  "attributes": {
17057
- "autocapitalize": {
17058
- "description": "This is a non-standard attribute supported by WebKit on iOS (therefore nearly all browsers running on iOS, including Safari, Firefox, and Chrome), which controls whether and how the text value should be automatically capitalized as it is entered/edited by the user. The non-deprecated values are available in iOS 5 and later. Possible values are: none: Completely disables automatic capitalization. sentences: Automatically capitalize the first letter of sentences. words: Automatically capitalize the first letter of words. characters: Automatically capitalize all characters. on: Deprecated since iOS 5. off: Deprecated since iOS 5.",
17059
- "nonStandard": true
17060
- },
17061
17068
  "autocomplete": {
17062
17069
  "description": "This attribute indicates whether the value of the control can be automatically completed by the browser. Possible values are: off: The user must explicitly enter a value into this field for every use, or the document provides its own auto-completion method; the browser does not automatically complete the entry. on: The browser can automatically complete the value based on values that the user has entered during previous uses. If the autocomplete attribute is not specified on a <textarea> element, then the browser uses the autocomplete attribute value of the <textarea> element's form owner. The form owner is either the <form> element that this <textarea> element is a descendant of or the form element whose id is specified by the form attribute of the input element. For more information, see the autocomplete attribute in <form>."
17063
17070
  },
@@ -18459,7 +18466,7 @@
18459
18466
  "description": "The y-axis coordinate of the center of the circle. Value type: <length>|<percentage> ; Default value: 0; Animatable: yes"
18460
18467
  },
18461
18468
  "r": {
18462
- "description": "The radius of the circle. A value lower or equal to zero disables rendering of the circle. Value type: <length> ; Default value: 0; Animatable: yes"
18469
+ "description": "The radius of the circle. A value lower or equal to zero disables rendering of the circle. Value type: <length>|<percentage> ; Default value: 0; Animatable: yes"
18463
18470
  }
18464
18471
  }
18465
18472
  },
@@ -21950,244 +21957,6 @@
21950
21957
  "attributes": {},
21951
21958
  "deprecated": true
21952
21959
  },
21953
- {
21954
- "name": "svg:hatch",
21955
- "namespace": "http://www.w3.org/2000/svg",
21956
- "cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch",
21957
- "categories": [],
21958
- "permittedRoles": {
21959
- "summary": "WIP",
21960
- "roles": []
21961
- },
21962
- "implicitRole": {
21963
- "summary": "WIP",
21964
- "role": false
21965
- },
21966
- "permittedStructures": {
21967
- "summary": "",
21968
- "tag": "hatch",
21969
- "contents": [
21970
- {
21971
- "zeroOrMore": ["#SVGAnimation", "#SVGDescriptive", "svg:hatchpath", "svg:script", "svg:style"]
21972
- }
21973
- ]
21974
- },
21975
- "omittion": false,
21976
- "globalAttrs": {
21977
- "#SVGCoreAttrs": ["id", "lang", "tabindex", "xml:base", "xml:lang", "xml:space", "class", "style"],
21978
- "#GlobalEventAttrs": true,
21979
- "#SVGPresentationAttrs": [
21980
- "alignment-baseline",
21981
- "baseline-shift",
21982
- "clip",
21983
- "clip-path",
21984
- "clip-rule",
21985
- "color",
21986
- "color-interpolation",
21987
- "color-interpolation-filters",
21988
- "color-profile",
21989
- "color-rendering",
21990
- "cursor",
21991
- "direction",
21992
- "display",
21993
- "dominant-baseline",
21994
- "enable-background",
21995
- "fill",
21996
- "fill-opacity",
21997
- "fill-rule",
21998
- "filter",
21999
- "flood-color",
22000
- "flood-opacity",
22001
- "font-family",
22002
- "font-size",
22003
- "font-size-adjust",
22004
- "font-stretch",
22005
- "font-style",
22006
- "font-variant",
22007
- "font-weight",
22008
- "glyph-orientation-horizontal",
22009
- "glyph-orientation-vertical",
22010
- "image-rendering",
22011
- "kerning",
22012
- "letter-spacing",
22013
- "lighting-color",
22014
- "marker-end",
22015
- "marker-mid",
22016
- "marker-start",
22017
- "mask",
22018
- "opacity",
22019
- "overflow",
22020
- "pointer-events",
22021
- "shape-rendering",
22022
- "stop-color",
22023
- "stop-opacity",
22024
- "stroke",
22025
- "stroke-dasharray",
22026
- "stroke-dashoffset",
22027
- "stroke-linecap",
22028
- "stroke-linejoin",
22029
- "stroke-miterlimit",
22030
- "stroke-opacity",
22031
- "stroke-width",
22032
- "text-anchor",
22033
- "text-decoration",
22034
- "text-rendering",
22035
- "transform",
22036
- "transform-origin",
22037
- "unicode-bidi",
22038
- "vector-effect",
22039
- "visibility",
22040
- "word-spacing",
22041
- "writing-mode"
22042
- ]
22043
- },
22044
- "attributes": {
22045
- "x": {
22046
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22047
- "type": "Any",
22048
- "_TODO_": "It's an experimental technology"
22049
- },
22050
- "y": {
22051
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22052
- "type": "Any",
22053
- "_TODO_": "It's an experimental technology"
22054
- },
22055
- "pitch": {
22056
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22057
- "type": "Any",
22058
- "_TODO_": "It's an experimental technology"
22059
- },
22060
- "rotate": {
22061
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22062
- "type": "Any",
22063
- "_TODO_": "It's an experimental technology"
22064
- },
22065
- "hatchUnits": {
22066
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22067
- "type": "Any",
22068
- "_TODO_": "It's an experimental technology"
22069
- },
22070
- "hatchContentUnits": {
22071
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22072
- "type": "Any",
22073
- "_TODO_": "It's an experimental technology"
22074
- },
22075
- "transform": {
22076
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22077
- "type": "Any",
22078
- "_TODO_": "It's an experimental technology"
22079
- },
22080
- "href": {
22081
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
22082
- "type": "Any",
22083
- "_TODO_": "It's an experimental technology"
22084
- }
22085
- }
22086
- },
22087
- {
22088
- "name": "svg:hatchpath",
22089
- "namespace": "http://www.w3.org/2000/svg",
22090
- "cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath",
22091
- "categories": [],
22092
- "permittedRoles": {
22093
- "summary": "WIP",
22094
- "roles": []
22095
- },
22096
- "implicitRole": {
22097
- "summary": "WIP",
22098
- "role": false
22099
- },
22100
- "permittedStructures": {
22101
- "summary": "",
22102
- "tag": "hatch",
22103
- "contents": [
22104
- {
22105
- "zeroOrMore": ["#SVGAnimation", "#SVGDescriptive", "svg:script", "svg:style"]
22106
- }
22107
- ]
22108
- },
22109
- "omittion": false,
22110
- "globalAttrs": {
22111
- "#SVGCoreAttrs": ["id", "lang", "tabindex", "xml:base", "xml:lang", "xml:space", "class", "style"],
22112
- "#GlobalEventAttrs": true,
22113
- "#SVGPresentationAttrs": [
22114
- "alignment-baseline",
22115
- "baseline-shift",
22116
- "clip",
22117
- "clip-path",
22118
- "clip-rule",
22119
- "color",
22120
- "color-interpolation",
22121
- "color-interpolation-filters",
22122
- "color-profile",
22123
- "color-rendering",
22124
- "cursor",
22125
- "direction",
22126
- "display",
22127
- "dominant-baseline",
22128
- "enable-background",
22129
- "fill",
22130
- "fill-opacity",
22131
- "fill-rule",
22132
- "filter",
22133
- "flood-color",
22134
- "flood-opacity",
22135
- "font-family",
22136
- "font-size",
22137
- "font-size-adjust",
22138
- "font-stretch",
22139
- "font-style",
22140
- "font-variant",
22141
- "font-weight",
22142
- "glyph-orientation-horizontal",
22143
- "glyph-orientation-vertical",
22144
- "image-rendering",
22145
- "kerning",
22146
- "letter-spacing",
22147
- "lighting-color",
22148
- "marker-end",
22149
- "marker-mid",
22150
- "marker-start",
22151
- "mask",
22152
- "opacity",
22153
- "overflow",
22154
- "pointer-events",
22155
- "shape-rendering",
22156
- "stop-color",
22157
- "stop-opacity",
22158
- "stroke",
22159
- "stroke-dasharray",
22160
- "stroke-dashoffset",
22161
- "stroke-linecap",
22162
- "stroke-linejoin",
22163
- "stroke-miterlimit",
22164
- "stroke-opacity",
22165
- "stroke-width",
22166
- "text-anchor",
22167
- "text-decoration",
22168
- "text-rendering",
22169
- "transform",
22170
- "transform-origin",
22171
- "unicode-bidi",
22172
- "vector-effect",
22173
- "visibility",
22174
- "word-spacing",
22175
- "writing-mode"
22176
- ]
22177
- },
22178
- "attributes": {
22179
- "d": {
22180
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath#specific_attributes",
22181
- "type": "Any",
22182
- "_TODO_": "It's an experimental technology"
22183
- },
22184
- "offset": {
22185
- "ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath#specific_attributes",
22186
- "type": "Any",
22187
- "_TODO_": "It's an experimental technology"
22188
- }
22189
- }
22190
- },
22191
21960
  {
22192
21961
  "name": "svg:hkern",
22193
21962
  "namespace": "http://www.w3.org/2000/svg",
@@ -24618,7 +24387,7 @@
24618
24387
  },
24619
24388
  "refX": {
24620
24389
  "ref": "https://svgwg.org/svg2-draft/struct.html#SymbolElementRefXAttribute",
24621
- "description": "This attribute determines the x coordinate of the reference point of the symbol. Value type: <length>|<percentage>|left|center|right ; Default value: 0; Animatable: yes",
24390
+ "description": "This attribute determines the x coordinate of the reference point of the symbol. Value type: <length>|<percentage>|left|center|right ; Default value: None; Animatable: yes",
24622
24391
  "type": [
24623
24392
  "<svg-length>",
24624
24393
  "<percentage>",
@@ -24626,12 +24395,11 @@
24626
24395
  {
24627
24396
  "enum": ["left", "center", "right"]
24628
24397
  }
24629
- ],
24630
- "defaultValue": "0"
24398
+ ]
24631
24399
  },
24632
24400
  "refY": {
24633
24401
  "ref": "https://svgwg.org/svg2-draft/struct.html#SymbolElementRefYAttribute",
24634
- "description": "This attribute determines the y coordinate of the reference point of the symbol. Value type: <length>|<percentage>|top|center|bottom ; Default value: 0; Animatable: yes",
24402
+ "description": "This attribute determines the y coordinate of the reference point of the symbol. Value type: <length>|<percentage>|top|center|bottom ; Default value: None; Animatable: yes",
24635
24403
  "type": [
24636
24404
  "<svg-length>",
24637
24405
  "<percentage>",
@@ -24639,8 +24407,7 @@
24639
24407
  {
24640
24408
  "enum": ["top", "center", "bottom"]
24641
24409
  }
24642
- ],
24643
- "defaultValue": "0"
24410
+ ]
24644
24411
  },
24645
24412
  "height": {
24646
24413
  "description": "This attribute determines the height of the symbol. Value type: <length>|<percentage> ; Default value: auto; Animatable: yes"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "2.4.0",
3
+ "version": "2.6.0",
4
4
  "description": "A specification of HTML Living Standard for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -21,12 +21,12 @@
21
21
  "@types/node-fetch": "2",
22
22
  "cheerio": "^1.0.0-rc.10",
23
23
  "cli-progress": "^3.10.0",
24
- "fast-xml-parser": "^4.0.2",
24
+ "fast-xml-parser": "^4.0.7",
25
25
  "jsonschema": "^1.4.0",
26
26
  "node-fetch": "2"
27
27
  },
28
28
  "dependencies": {
29
- "@markuplint/ml-spec": "^2.0.1"
29
+ "@markuplint/ml-spec": "2.1.0"
30
30
  },
31
- "gitHead": "9ea66f99f9c14ee53099c306636b76617f12ad7a"
31
+ "gitHead": "373c916d5ebbba463f5e088696666a383ee96492"
32
32
  }
@@ -3,6 +3,6 @@
3
3
  "roles": false
4
4
  },
5
5
  "implicitRole": {
6
- "role": "document"
6
+ "role": "generic"
7
7
  }
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "roles": false
4
4
  },
5
5
  "implicitRole": {
6
- "role": false
6
+ "role": "document"
7
7
  }
8
8
  }
@@ -19,7 +19,7 @@
19
19
  "conditions": [
20
20
  {
21
21
  "condition": "[alt=\"\"]",
22
- "roles": ["none", "presentation"]
22
+ "roles": false
23
23
  },
24
24
  {
25
25
  "condition": ":not([alt])",
@@ -32,7 +32,7 @@
32
32
  "conditions": [
33
33
  {
34
34
  "condition": "[alt=\"\"]",
35
- "role": false
35
+ "role": "presentation"
36
36
  }
37
37
  ]
38
38
  }
@@ -7,7 +7,7 @@
7
7
  "#DocumentElementEventAttrs": true,
8
8
  "#ARIAAttrs": true,
9
9
  "#HTMLEmbededAndMediaContentAttrs": ["src", "height", "width"],
10
- "#HTMLLinkAndFetchingAttrs": ["referrerpolicy", "loading"]
10
+ "#HTMLLinkAndFetchingAttrs": ["referrerpolicy", "loading", "fetchpriority"]
11
11
  },
12
12
  "attributes": {
13
13
  "src": {
@@ -7,7 +7,7 @@
7
7
  "#DocumentElementEventAttrs": true,
8
8
  "#ARIAAttrs": true,
9
9
  "#HTMLEmbededAndMediaContentAttrs": ["src", "height", "srcset", "sizes", "width"],
10
- "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "loading"]
10
+ "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "loading", "fetchpriority"]
11
11
  },
12
12
  "attributes": {
13
13
  "alt": {
@@ -6,7 +6,16 @@
6
6
  "#GlobalEventAttrs": true,
7
7
  "#DocumentElementEventAttrs": true,
8
8
  "#ARIAAttrs": true,
9
- "#HTMLLinkAndFetchingAttrs": ["crossorigin", "href", "hreflang", "type", "referrerpolicy", "integrity", "media"]
9
+ "#HTMLLinkAndFetchingAttrs": [
10
+ "crossorigin",
11
+ "href",
12
+ "hreflang",
13
+ "type",
14
+ "referrerpolicy",
15
+ "integrity",
16
+ "media",
17
+ "fetchpriority"
18
+ ]
10
19
  },
11
20
  "attributes": {
12
21
  "rel": {
@@ -6,7 +6,7 @@
6
6
  "#GlobalEventAttrs": true,
7
7
  "#DocumentElementEventAttrs": true,
8
8
  "#ARIAAttrs": true,
9
- "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "integrity"]
9
+ "#HTMLLinkAndFetchingAttrs": ["crossorigin", "referrerpolicy", "integrity", "fetchpriority"]
10
10
  },
11
11
  "attributes": {
12
12
  "src": {
@@ -28,8 +28,7 @@
28
28
  {
29
29
  "enum": ["left", "center", "right"]
30
30
  }
31
- ],
32
- "defaultValue": "0"
31
+ ]
33
32
  },
34
33
  "refY": {
35
34
  "ref": "https://svgwg.org/svg2-draft/struct.html#SymbolElementRefYAttribute",
@@ -40,8 +39,7 @@
40
39
  {
41
40
  "enum": ["top", "center", "bottom"]
42
41
  }
43
- ],
44
- "defaultValue": "0"
42
+ ]
45
43
  }
46
44
  }
47
45
  }
@@ -61,7 +61,9 @@
61
61
  },
62
62
  "hidden": {
63
63
  "ref": "https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden",
64
- "type": "Boolean"
64
+ "type": {
65
+ "enum": ["", "hidden", "until-found"]
66
+ }
65
67
  },
66
68
  "inert": {
67
69
  "ref": "https://html.spec.whatwg.org/multipage/interaction.html#the-inert-attribute",
@@ -201,6 +203,10 @@
201
203
  "ref": "https://w3c.github.io/uievents/#beforeinput",
202
204
  "type": "FunctionBody"
203
205
  },
206
+ "onbeforematch": {
207
+ "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onbeforematch",
208
+ "type": "FunctionBody"
209
+ },
204
210
  "onblur": {
205
211
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onabort",
206
212
  "type": "FunctionBody"
@@ -626,6 +632,15 @@
626
632
  "anonymous": [""]
627
633
  }
628
634
  }
635
+ },
636
+ "fetchpriority": {
637
+ "ref": "https://wicg.github.io/priority-hints/#solution",
638
+ "type": {
639
+ "enum": ["high", "low", "auto"],
640
+ "invalidValueDefault": "auto",
641
+ "missingValueDefault": "auto"
642
+ },
643
+ "experimental": true
629
644
  }
630
645
  },
631
646
  "#HTMLEmbededAndMediaContentAttrs": {
@@ -1104,7 +1119,7 @@
1104
1119
  },
1105
1120
  "r": {
1106
1121
  "ref": "https://svgwg.org/svg2-draft/geometry.html#RProperty",
1107
- "type": "<svg-length>",
1122
+ "type": ["<svg-length>", "<percentage>"],
1108
1123
  "defaultValue": "0",
1109
1124
  "animatable": true
1110
1125
  },
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "tag": "object",
3
3
  "contents": [
4
- {
5
- "zeroOrMore": "param"
6
- },
7
4
  {
8
5
  "zeroOrMore": "#transparent"
9
6
  }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../ml-spec/lib/permitted-structres.d.ts","../ml-spec/lib/attributes.d.ts","../ml-spec/lib/types.d.ts","../ml-spec/lib/get-attr-specs.d.ts","../ml-spec/lib/get-spec-by-tag-name.d.ts","../ml-spec/lib/get-spec.d.ts","../ml-spec/lib/get-ns.d.ts","../ml-spec/lib/index.d.ts","./index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/domelementtype/lib/index.d.ts","../../../node_modules/domhandler/lib/node.d.ts","../../../node_modules/domhandler/lib/index.d.ts","../../../node_modules/htmlparser2/lib/tokenizer.d.ts","../../../node_modules/htmlparser2/lib/parser.d.ts","../../../node_modules/htmlparser2/lib/feedhandler.d.ts","../../../node_modules/dom-serializer/lib/index.d.ts","../../../node_modules/domutils/lib/stringify.d.ts","../../../node_modules/domutils/lib/traversal.d.ts","../../../node_modules/domutils/lib/manipulation.d.ts","../../../node_modules/domutils/lib/querying.d.ts","../../../node_modules/domutils/lib/legacy.d.ts","../../../node_modules/domutils/lib/helpers.d.ts","../../../node_modules/domutils/lib/feeds.d.ts","../../../node_modules/domutils/lib/index.d.ts","../../../node_modules/htmlparser2/lib/index.d.ts","../../../node_modules/cheerio/lib/options.d.ts","../../../node_modules/cheerio/lib/types.d.ts","../../../node_modules/cheerio/lib/api/attributes.d.ts","../../../node_modules/cheerio/lib/api/traversing.d.ts","../../../node_modules/cheerio/lib/api/manipulation.d.ts","../../../node_modules/cheerio/lib/api/css.d.ts","../../../node_modules/cheerio/lib/api/forms.d.ts","../../../node_modules/cheerio/lib/cheerio.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/cheerio/lib/static.d.ts","../../../node_modules/cheerio/lib/load.d.ts","../../../node_modules/cheerio/lib/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","./gen/fetch.ts","./gen/utils.ts","./gen/aria.ts","./gen/read-json.ts","./gen/content-models.ts","./gen/get-aria-in-html.ts","./gen/get-attribute.ts","./gen/get-permitted-structures.ts","./gen/global-attrs.ts","./gen/html-elements.ts","./gen/svg.ts","./gen/index.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@apidevtools/json-schema-ref-parser/lib/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/jsonschema/lib/index.d.ts","./src/structure.test.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/bcp-47/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/css-tree/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/webpack/types.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mustache/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/webpack/node_modules/@types/estree/index.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/webpack/types.d.ts","../../../node_modules/http-proxy-middleware/dist/types.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/response-interceptor.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/fix-request-body.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/public.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/index.d.ts","../../../node_modules/http-proxy-middleware/dist/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/codegen/code.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/codegen/scope.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/codegen/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/rules.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/util.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/validate/subschema.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/errors.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/validate/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/validate/datatype.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/format/format.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/errors.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/types/json-schema.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/types/jtd-schema.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/runtime/validation_error.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/ref_error.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/core.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/resolve.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/types/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/ajv.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/webpack-dev-middleware/types/index.d.ts","../../../node_modules/chokidar/types/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2f93dda35dafec68ec217c9ce67f0f4fbbbb030c055ac312641565ad60dd7e26","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"223481752f49a6e25caa5062e5df3f1f1ef5089a72270a105c3221730b8b2a5a","380e198cfc221746696160fd6b160c78342bf34e0eb84b5a93a5917c171bf13f","3db92895097760486e8f813f8820ab68e245a74f0ab16f7a796b0cc4247afeed","bb50b72f9c1020b2aac5e67d0f36e4ae7fb3ab263685f78fb55c297f884a2dfd","5c56c35a916b5199891eecb6295ae91dfacb92cbbca68de4128474ec8bb7acfd","6204b45bbc0cfc06c6781cba9ecf9c8134151e6384f86694491efd4cafbdd416","0f6e1366207419917adb76cb114757b0d027c11aa0bcf9af6652154ac0f4f37a","4d18ee67886c9b16e20e3768a799429ff828fe367a42fe71378c6c8ada59d232","5983be11dccf50796dd69cbe422f9d9c8966090c276ec01c558db4741d394165","12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","cbe4c1c3102db917851a77fe8fce9f00365da63876e4f0822f4bb4bd954f5ef8","0e0f3a2d9caefe0c342aeee2bd99be199dd023763444016204423bd95f626a0e","b6a6edd9ab7e96c06a66c5724a009ef8651a1a3a87bcada2517eeecd6d053309","b675b873d6f067aec865aefb806b20447936fb8e332fa84bb89647c2a3ea9155","d341d39f8b1f377b8a8e15a1fb71ddba23a3b44c761a79a7cc3439bf1c4e81cb","d97b371df0bb35cf998992854ce00b020d3cdb31fd935496fe1e87dccf202565","cd42b85de491c6f45316412509944303b0ce9a4838afda2fc334ef3dea19d946","133cfc5edfa490dd463782a1203094fa25361cbdb3880f8f42947d94ee5fb392","367803d09b357be61538d62e0a9f661d62a7e351df4e464de08c71841f4d8645","3742d984090f0e11aec15575beb7cf6dab0f138417d22f97ed5fd01d3be18c9e","c709d254b0331bbddfc49875d1e108efeb692642999ec3c700411b4c0f350657","a0489458d155fe10da028f69927bca274e91ca25905c6b6ee0d3fc42cc655adb","a3d7e4a8270d1d3f98910e5b13eb2461730bd8b20301e3d03e51273582a68fb4","9ae6c86748316a4bf2c3bd4d03d73ec384bd60a4664a2194b9888e6d19ea387e","253f07c42090b6b2b06c978e2582aecb58abf0a5b02b75e2f03b65c9abb8ddd4","893f33b1a9a62f3c07cf80541f669edc7c25352e96ebd1401254472d088814ba","8c29e94e0392d876fd7370f964c3c5bac02ada82ec64d52aa75a496384e06bc2","2f918830600287eb40d3cac0590f2269f135af5268e0dda627e67a4d49b2b505","4385df868f0f65182d71809a0c043bcb33fa6efe3197e34c33f6ebfc994ee73a","026b4c7fbe0142530022ac03b5003c2f70f3dcbd36f08bdc9e9087abe84057b5","53ab01f003ff47dbe014e61a3a763467c8fe7f36ecb0845ed8e9d74a4675f444","5c55c42a3fa01f81bb3da26f1e5f23fe1f07650c6fb5d0a9bfaa6dae735f9c61","ae96e6cbe3bae4431ce7eb382b181e095fe79c79d56ee7ad088d70f96f36a862","15288d54988a4b0434b6eb58c6c42231afa7d015d19aa9da462264b7b5e30d22","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","5b4764e62abf7c9e42a4546087ef5d3402d01ad5bf41e11baee33f365e0d1579","95bd712328732811f3143259446e2c5e09dba93002b2a28910deefb60224898d","97079b6e56898eedc388a177d3b34c412e750a7ccbd4d677661258854ce10850","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","a402d900a4cbd62bf2549dfff2e0aec088b70ba7d0a416d43ebe5d90cec6823d","ca502cbf214677621b0b66227a4b6ee146a64940f232c2e722ffd475df23b158","8dc64118a34a562c0346ca761fb8c13a4f74d7941cb1eccf76aedd4af0378307","c7b05d5c0f9be94cdbae7b6b18fa508e6093d8cac21713d748e489d62474cdbf","bd4d3a7b7fe4d43b76a7b1a67a9ea800e622e4b9a9e8d0784edac381aec81b01","cf2ed4f3fbd98e7b8d60f021df36594c6f5f097b354e37622245e1c86de920ac","f58b5da2fac4a356dee8ca2a8c9d2c2cacf9e6ae53b81e8709b2132722dbfa45","265c57ff6fb850ea52531ba755ea049044592cc0efe11b9da0885a8ac17d5095","7dc0ad880960611234859332809196e8fc27fe980666e50022316f7225fc44a8","ebeae2bd15480f9a121eae6a489e0dfa27588322ff8aa8f93c62dd00cefdd5f4","cc437ddc77b8b82d8fb0010b185079afa874d8e50fe306cb7bc85a926cd362c1","83758e34ef3f940e50144fd292bd399798abd4855a0a054ee05d8e7f479a4e33","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","6bf066feed9a2020bec7b198c2b36e56545f107c5f2f059ae507f35325ef5ec5","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","49c703393ea91d052d89f9a214bd8836b80fd2d7d06c27eee8e852582f707931","f17c8cfc49fcd741420f0fc2b368fc879b0118d02ba9320ef87f2565d78513c5","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","e2a56bb80f66ac0b6767fd7bb6b337ac3cb9cd4a368b13491e3fd1b5e26d93d6","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07",{"version":"57a1cb6f082fa2df46deaa96fa0063463b3393dd39bd09359dab251db28000b9","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","94998ffb6165ce44d492327169a7f7cb0e1e11a967f068fbda6796029a4a40dd","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","af9abc3144d279b29affb0e6dd842609eca65fb44c712368f6a89bb264b34ef4","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","9fd94af6ff33bb25c014a4cc2dd9ffb54650176666b7831f1c85168784826ad4","4b0011a86baef7b2d7a95ce25e729c96f28c923a06cb0cbf9915135eae784aee","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","56dd85019d2374449708458f4acf4712d4c6f7b19ae597e910bab6ae75bc9e05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","dac991ec2b7f56b1a39f74a65cca109ec9cde62df848c5bd41524030c894e341","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","d64037d2df4c89d6d2113b1aaad4b59259d448dbd8862bc20003d1caef23b1d4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","3054859381b164f72e31f3554b795761db2f4a54208587c55bdd690af83b3bc0","44a9aadd9a9e24c7fab7f5b271c8eb89d0e6af07bbc637adae7f15f1c1b6f70e","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd","9fd94af6ff33bb25c014a4cc2dd9ffb54650176666b7831f1c85168784826ad4","43a4860173cec933ed8380e55f7a4473dd0df38b43e706b492f443cd8612bd87","f90d85d4cb38445499bdb7e7b013e4f64d99d157a6fa0843e998495ceb27b520","2e178a87e7bf03a067cfb1cf5573e7c4899fcbc9f462a0b0c67d238e39b794a4","901becb8779e1089442378fda5623e607ee4588762a32e7692436f1ea81cf848","8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750","f28dffc6bf9bbd8b9dc156aadb74d11de7faabf547eb9f0aebb8cd03e8750a6c","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","44a8d350600656882fd7462774e32e8d13788313ba2e36d2e8d5437ac91b98df","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b8870b5155d11a273c75718a4f19026da49f91c548703858cd3400d06c3bd3b8","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","8d26ae32e5c9c080e44aee4a67e5ef02b5fda0604e6fecbb7b753c537e5282d9","05c4e792dae38912ba333725cdf8c42d242337d006c0d887f4ce5a7787871a95","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","d3d0d11d30c9878ada3356b9c36a2754b8c7b6204a41c86bfb1488c08ce263b0","a6493f1f479637ed89a3ebec03f6dc117e3b1851d7e938ac4c8501396b8639a8","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9d00e3a59eff68fa8c40e89953083eeaad1c5b2580ed7da2304424b249ecb237","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","4430dea494b0ee77bf823d9a7c4850a539e1060d5d865316bb23fb393e4f01d7","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","66e655f7c43558bae6703242cbd6c0551a94d0a97204bd4c4bbf7e77f24d1f85","72f7b32e023814078046c036ed4b7ad92414be0aebb63e805c682e14103ae38a","a89d8e67966d085ff971c9900cfa1abdd9732bab66d9c1914ecc15befdf8623d","7dfd0308261bb91b058eb91802690fe3f09192b263e070a19df4d629df29e265","608eb9d411ac76e93a10e05f8aae92b3a5cefc87594219b737df7c8737ba2bd7","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","93ba4ac36f570c70a12d588e21c10dda9f351fad3e77d416952acddb27bff01d","8750f9dc1e277ffff7446c95571bae61aca0984e8f99e40fc1e8cb7161ae0642","66408d81ba8962282b1a55da34c6bd767105141f54d0ba14dca330efe0c8f552","7481b9d93ca44eb1f689e0b939545ff00dead7bdb9daba401dfb74292d83f831","821e64ddbdfa10fac5f0aed1c1d4e1f275840400caa96357ddfd15d02e5afba1","1154651a6fbc1d60e448b903ec80f256f6771ced212ee1c3e5121168723621db","b0e5214ceeeb82c90f925ae53482d511c4ecabc47d74d49851f5d5d9257893aa","a7e430e32eaefba6b1ebf23a94a4562bfe7051cc83558d33ddc8ff342f3c18e9","2f495fcb913e89c0dace4a79e5bd7214c674ef8a391c8056a77a084eb3c882f9","3c71707988135662b344d59c4f92d2ea37b1f198149b762693db61e30bdaae9a","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[128,155],[128,161],[128],[128,161,162,163,164,165],[128,161,163],[103,128,135,168],[95,128,135],[128,135],[128,172,173,174,175,176,177,178,179,180,181,182,183],[100,128,135],[127,128,135,187],[103,128,135],[128,190],[128,193,194],[128,155,192,193],[100,103,128,135,185,186],[128,169,186,187,197],[101,128,135],[100,101,128,135,157],[100,103,105,108,117,127,128,135],[128,203],[128,204],[128,209,214],[128,217,219,220,221,222,223,224,225,226,227,228,229],[128,217,218,220,221,222,223,224,225,226,227,228,229],[128,218,219,220,221,222,223,224,225,226,227,228,229],[128,217,218,219,221,222,223,224,225,226,227,228,229],[128,217,218,219,220,222,223,224,225,226,227,228,229],[128,217,218,219,220,221,223,224,225,226,227,228,229],[128,217,218,219,220,221,222,224,225,226,227,228,229],[128,217,218,219,220,221,222,223,225,226,227,228,229],[128,217,218,219,220,221,222,223,224,226,227,228,229],[128,217,218,219,220,221,222,223,224,225,227,228,229],[128,217,218,219,220,221,222,223,224,225,226,228,229],[128,217,218,219,220,221,222,223,224,225,226,227,229],[128,217,218,219,220,221,222,223,224,225,226,227,228],[128,230],[128,135,237],[89,103,108,124,128,193,232,234,235,236],[103,127,128,135,140,141],[85,128],[88,128],[89,94,128],[90,100,101,108,117,127,128],[90,91,100,108,128],[92,128],[93,94,101,109,128],[94,117,124,128],[95,97,100,108,128],[96,128],[97,98,128],[99,100,128],[100,128],[100,101,102,117,127,128],[100,101,102,117,128],[103,108,117,127,128],[100,101,103,104,108,117,124,127,128],[103,105,117,124,127,128],[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],[100,106,128],[107,127,128],[97,100,108,117,128],[109,128],[110,128],[88,111,128],[112,126,128,132],[113,128],[114,128],[100,115,128],[115,116,128,130],[100,117,118,119,128],[117,119,128],[117,118,128],[120,128],[121,128],[100,122,123,128],[122,123,128],[94,108,117,124,128],[125,128],[108,126,128],[89,103,114,127,128],[94,128],[117,128,129],[128,130],[128,131],[89,94,100,102,111,117,127,128,130,132],[117,128,133],[128,243],[128,244],[127,128,135],[128,250],[101,128,198],[103,128,135,196],[128,256],[103,105,128,170,188,197,198,237,252,280,328,329],[128,135,261,262,263,264,265,266,267,268,269,270,271],[128,260,261,270],[128,261,270],[128,253,260,261,270],[128,260,261,262,263,264,265,266,267,268,269,271],[128,261],[94,128,260,270],[94,128,135,236,256,257,259,272],[128,332],[63,84,128],[63,78,84,128],[63,77,78,79,80,81,82,83,128],[63,77,78,84,128,136,137],[63,77,78,84,128,135,136,137],[63,76,128],[63,77,128,138],[100,101,128,135,259],[63,128],[62,128],[61,128],[63,68,69,70,71,72,73,74,128],[61,63,128],[63,67,128],[103,117,128,135],[63,65,128],[61,63,64,65,66,75,128],[64,128],[128,278],[128,276,277],[128,275,279],[103,108,127,128,135,198,202],[128,207,210],[128,207,210,211,212],[128,209],[128,206,213],[128,208],[128,234],[128,155,232,233],[128,155,234],[128,285,286,290,317,318,322,324,325],[128,283,284],[128,283],[128,285,325],[128,285,286,322,323,325],[128,325],[128,282,325,326],[128,285,286,324,325],[128,285,286,288,289,324,325],[128,285,286,287,324,325],[128,285,286,290,317,318,319,320,321,324,325],[128,282,285,286,290,322,324],[128,290,325],[128,292,293,294,295,296,297,298,299,300,301,325],[128,315,325],[128,291,302,310,311,312,313,314,316],[128,295,325],[128,303,304,305,306,307,308,309,325],[128,155,281,326],[128,155,327],[101,103,128,135,250,327],[103,108,124,128,232,234,235,236,249],[58,60,128,143,144],[60,128,146],[60,128,139,142,171],[58,60,128,146],[58,60,128,143,144,148,149,150],[58,60,101,110,128,143,145,147,151,152,153],[60,101,110,128],[58,60,128,143,144,149,150],[60,128],[58,128],[58,59,60,110,128,156,158,159],[53,128],[51,52,53,54,55,56,57,128],[51,52,58,128]],"referencedMap":[[156,1],[163,2],[161,3],[166,4],[162,2],[164,5],[165,2],[167,3],[169,6],[170,7],[171,8],[172,3],[173,3],[174,3],[175,3],[176,3],[178,3],[184,9],[177,3],[182,3],[179,3],[180,3],[181,3],[183,3],[139,10],[188,11],[168,12],[189,3],[191,13],[195,14],[192,3],[194,15],[193,3],[187,16],[198,17],[199,18],[158,19],[200,18],[201,3],[202,20],[203,3],[204,21],[205,22],[215,23],[155,3],[216,3],[218,24],[219,25],[217,26],[220,27],[221,28],[222,29],[223,30],[224,31],[225,32],[226,33],[227,34],[228,35],[229,36],[231,37],[196,3],[238,38],[237,39],[157,3],[239,3],[190,3],[240,3],[141,3],[142,40],[85,41],[86,41],[88,42],[89,43],[90,44],[91,45],[92,46],[93,47],[94,48],[95,49],[96,50],[97,51],[98,51],[99,52],[100,53],[101,54],[102,55],[87,3],[134,3],[103,56],[104,57],[105,58],[135,59],[106,60],[107,61],[108,62],[109,63],[110,64],[111,65],[112,66],[113,67],[114,68],[115,69],[116,70],[117,71],[119,72],[118,73],[120,74],[121,75],[122,76],[123,77],[124,78],[125,79],[126,80],[127,81],[128,82],[129,83],[130,84],[131,85],[132,86],[133,87],[241,3],[242,3],[244,88],[243,89],[245,3],[246,3],[186,3],[185,3],[247,3],[248,90],[251,91],[252,92],[197,93],[253,3],[254,3],[255,3],[257,94],[230,3],[258,3],[330,95],[274,39],[272,96],[271,97],[262,98],[263,99],[270,100],[264,99],[265,98],[266,98],[267,98],[268,101],[261,102],[269,97],[260,3],[273,103],[331,3],[332,3],[333,104],[233,3],[259,3],[206,3],[79,105],[82,105],[83,105],[81,106],[80,106],[84,107],[138,108],[137,109],[77,110],[136,111],[78,105],[329,112],[67,113],[61,3],[63,114],[62,115],[74,113],[73,113],[75,116],[72,117],[70,113],[71,113],[68,118],[69,113],[140,119],[66,120],[76,121],[65,122],[64,3],[277,12],[279,123],[278,124],[276,12],[280,125],[275,126],[207,3],[211,127],[213,128],[212,127],[210,129],[214,130],[159,3],[209,131],[208,3],[235,132],[234,133],[232,134],[256,3],[236,3],[60,3],[11,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[33,3],[34,3],[35,3],[36,3],[7,3],[41,3],[37,3],[38,3],[39,3],[40,3],[8,3],[45,3],[42,3],[43,3],[44,3],[46,3],[9,3],[47,3],[48,3],[49,3],[1,3],[10,3],[50,3],[282,3],[326,135],[283,3],[285,136],[284,137],[289,138],[324,139],[321,140],[323,141],[286,140],[287,142],[291,142],[290,143],[288,144],[322,145],[320,140],[325,146],[318,3],[319,3],[292,147],[297,140],[299,140],[294,140],[295,147],[301,140],[302,148],[293,140],[298,140],[300,140],[296,140],[316,149],[315,140],[317,150],[311,140],[313,140],[312,140],[308,140],[314,151],[309,140],[310,152],[303,140],[304,140],[305,140],[306,140],[307,140],[327,153],[281,154],[328,155],[249,3],[250,156],[145,157],[147,158],[143,159],[148,158],[149,160],[150,158],[151,160],[152,161],[154,162],[146,163],[153,164],[144,165],[59,166],[160,167],[52,3],[54,168],[57,3],[55,168],[56,168],[58,169],[51,3],[53,170]],"exportedModulesMap":[[156,1],[163,2],[161,3],[166,4],[162,2],[164,5],[165,2],[167,3],[169,6],[170,7],[171,8],[172,3],[173,3],[174,3],[175,3],[176,3],[178,3],[184,9],[177,3],[182,3],[179,3],[180,3],[181,3],[183,3],[139,10],[188,11],[168,12],[189,3],[191,13],[195,14],[192,3],[194,15],[193,3],[187,16],[198,17],[199,18],[158,19],[200,18],[201,3],[202,20],[203,3],[204,21],[205,22],[215,23],[155,3],[216,3],[218,24],[219,25],[217,26],[220,27],[221,28],[222,29],[223,30],[224,31],[225,32],[226,33],[227,34],[228,35],[229,36],[231,37],[196,3],[238,38],[237,39],[157,3],[239,3],[190,3],[240,3],[141,3],[142,40],[85,41],[86,41],[88,42],[89,43],[90,44],[91,45],[92,46],[93,47],[94,48],[95,49],[96,50],[97,51],[98,51],[99,52],[100,53],[101,54],[102,55],[87,3],[134,3],[103,56],[104,57],[105,58],[135,59],[106,60],[107,61],[108,62],[109,63],[110,64],[111,65],[112,66],[113,67],[114,68],[115,69],[116,70],[117,71],[119,72],[118,73],[120,74],[121,75],[122,76],[123,77],[124,78],[125,79],[126,80],[127,81],[128,82],[129,83],[130,84],[131,85],[132,86],[133,87],[241,3],[242,3],[244,88],[243,89],[245,3],[246,3],[186,3],[185,3],[247,3],[248,90],[251,91],[252,92],[197,93],[253,3],[254,3],[255,3],[257,94],[230,3],[258,3],[330,95],[274,39],[272,96],[271,97],[262,98],[263,99],[270,100],[264,99],[265,98],[266,98],[267,98],[268,101],[261,102],[269,97],[260,3],[273,103],[331,3],[332,3],[333,104],[233,3],[259,3],[206,3],[79,105],[82,105],[83,105],[81,106],[80,106],[84,107],[138,108],[137,109],[77,110],[136,111],[78,105],[329,112],[67,113],[61,3],[63,114],[62,115],[74,113],[73,113],[75,116],[72,117],[70,113],[71,113],[68,118],[69,113],[140,119],[66,120],[76,121],[65,122],[64,3],[277,12],[279,123],[278,124],[276,12],[280,125],[275,126],[207,3],[211,127],[213,128],[212,127],[210,129],[214,130],[159,3],[209,131],[208,3],[235,132],[234,133],[232,134],[256,3],[236,3],[60,3],[11,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[33,3],[34,3],[35,3],[36,3],[7,3],[41,3],[37,3],[38,3],[39,3],[40,3],[8,3],[45,3],[42,3],[43,3],[44,3],[46,3],[9,3],[47,3],[48,3],[49,3],[1,3],[10,3],[50,3],[282,3],[326,135],[283,3],[285,136],[284,137],[289,138],[324,139],[321,140],[323,141],[286,140],[287,142],[291,142],[290,143],[288,144],[322,145],[320,140],[325,146],[318,3],[319,3],[292,147],[297,140],[299,140],[294,140],[295,147],[301,140],[302,148],[293,140],[298,140],[300,140],[296,140],[316,149],[315,140],[317,150],[311,140],[313,140],[312,140],[308,140],[314,151],[309,140],[310,152],[303,140],[304,140],[305,140],[306,140],[307,140],[327,153],[281,154],[328,155],[249,3],[250,156],[145,157],[147,158],[143,159],[148,158],[149,160],[150,158],[151,160],[152,161],[154,162],[146,163],[153,164],[144,165],[59,166],[160,167],[52,3],[54,168],[57,3],[55,168],[56,168],[58,169],[51,3],[53,170]],"semanticDiagnosticsPerFile":[156,163,161,166,162,164,165,167,169,170,171,172,173,174,175,176,178,184,177,182,179,180,181,183,139,188,168,189,191,195,192,194,193,187,198,199,158,200,201,202,203,204,205,215,155,216,218,219,217,220,221,222,223,224,225,226,227,228,229,231,196,238,237,157,239,190,240,141,142,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,87,134,103,104,105,135,106,107,108,109,110,111,112,113,114,115,116,117,119,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,241,242,244,243,245,246,186,185,247,248,251,252,197,253,254,255,257,230,258,330,274,272,271,262,263,270,264,265,266,267,268,261,269,260,273,331,332,333,233,259,206,79,82,83,81,80,84,138,137,77,136,78,329,67,61,63,62,74,73,75,72,70,71,68,69,140,66,76,65,64,277,279,278,276,280,275,207,211,213,212,210,214,159,209,208,235,234,232,256,236,60,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,8,45,42,43,44,46,9,47,48,49,1,10,50,282,326,283,285,284,289,324,321,323,286,287,291,290,288,322,320,325,318,319,292,297,299,294,295,301,302,293,298,300,296,316,315,317,311,313,312,308,314,309,310,303,304,305,306,307,327,281,328,249,250,145,147,143,148,149,150,151,152,154,146,153,144,59,160,52,54,57,55,56,58,51,53]},"version":"4.6.3"}
@@ -1,22 +0,0 @@
1
- {
2
- "tag": "param",
3
- "ref": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-param-element",
4
- "global": {
5
- "#HTMLGlobalAttrs": true,
6
- "#GlobalEventAttrs": true,
7
- "#DocumentElementEventAttrs": true,
8
- "#ARIAAttrs": true
9
- },
10
- "attributes": {
11
- "name": {
12
- "ref": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-param-name",
13
- "type": "Any",
14
- "required": true
15
- },
16
- "value": {
17
- "ref": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-param-value",
18
- "type": "Any",
19
- "required": true
20
- }
21
- }
22
- }
@@ -1,4 +0,0 @@
1
- {
2
- "tag": "optgroup",
3
- "contents": false
4
- }