diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..39afd3e2 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,92 @@ +{ + "extends": [ + "eslint:recommended", + "prettier", + "plugin:n/recommended", + "plugin:unicorn/recommended" + ], + "env": { + "node": true, + "es6": true + }, + "rules": { + "eqeqeq": [2, "smart"], + "no-caller": 2, + "dot-notation": 2, + "no-var": 2, + "prefer-const": 2, + "prefer-arrow-callback": [2, { "allowNamedFunctions": true }], + "arrow-body-style": [2, "as-needed"], + "object-shorthand": 2, + "prefer-template": 2, + "one-var": [2, "never"], + "prefer-destructuring": [2, { "object": true }], + "capitalized-comments": 2, + "multiline-comment-style": [2, "starred-block"], + "spaced-comment": 2, + "yoda": [2, "never"], + "curly": [2, "multi-line"], + "no-else-return": 2, + + "unicorn/prefer-module": 0, + "unicorn/filename-case": 0, + "unicorn/no-null": 0, + "unicorn/prefer-code-point": 0, + "unicorn/prefer-string-slice": 0, + "unicorn/prefer-add-event-listener": 0, + "unicorn/prefer-at": 0, + "unicorn/prefer-string-replace-all": 0 + }, + "overrides": [ + { + "files": "*.ts", + "extends": [ + "plugin:@typescript-eslint/eslint-recommended", + "plugin:@typescript-eslint/recommended", + "prettier" + ], + "parserOptions": { + "sourceType": "module", + "project": "./tsconfig.eslint.json" + }, + "rules": { + "curly": [2, "multi-line"], + + "@typescript-eslint/prefer-for-of": 0, + "@typescript-eslint/member-ordering": 0, + "@typescript-eslint/explicit-function-return-type": 0, + "@typescript-eslint/no-unused-vars": 0, + "@typescript-eslint/no-use-before-define": [ + 2, + { "functions": false } + ], + "@typescript-eslint/consistent-type-definitions": [ + 2, + "interface" + ], + "@typescript-eslint/prefer-function-type": 2, + "@typescript-eslint/no-unnecessary-type-arguments": 2, + "@typescript-eslint/prefer-string-starts-ends-with": 2, + "@typescript-eslint/prefer-readonly": 2, + "@typescript-eslint/prefer-includes": 2, + "@typescript-eslint/no-unnecessary-condition": 2, + "@typescript-eslint/switch-exhaustiveness-check": 2, + "@typescript-eslint/prefer-nullish-coalescing": 2, + "@typescript-eslint/consistent-type-imports": [ + 2, + { "fixStyle": "inline-type-imports" } + ], + "@typescript-eslint/consistent-type-exports": 2, + + "n/no-missing-import": 0, + "n/no-unsupported-features/es-syntax": 0 + } + }, + { + "files": "*.spec.ts", + "rules": { + "n/no-unsupported-features/node-builtins": 0 + } + } + ] +} diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..58c38d50 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +github: [fb55] +tidelift: npm/css-what diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..dc8bd2c6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: npm + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 10 + versioning-strategy: increase + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: daily diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 00000000..23a2d66b --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,31 @@ +name: "CodeQL" + +on: + push: + branches: [master] + pull_request: + # The branches below must be a subset of the branches above + branches: [master] + schedule: + - cron: "0 0 * * 0" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: "javascript" + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml new file mode 100644 index 00000000..891a3a4e --- /dev/null +++ b/.github/workflows/dependabot-automerge.yml @@ -0,0 +1,28 @@ +# Based on https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request +name: Dependabot auto-merge +on: pull_request_target + +permissions: + pull-requests: write + contents: write + +jobs: + dependabot: + runs-on: ubuntu-latest + if: ${{ github.actor == 'dependabot[bot]' }} + steps: + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2.4.0 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + - name: Enable auto-merge for Dependabot PRs + # Automatically merge semver-patch and semver-minor PRs + if: "${{ steps.metadata.outputs.update-type == + 'version-update:semver-minor' || + steps.metadata.outputs.update-type == + 'version-update:semver-patch' }}" + run: gh pr merge --auto --squash "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/nodejs-test.yml b/.github/workflows/nodejs-test.yml new file mode 100644 index 00000000..56d90dfb --- /dev/null +++ b/.github/workflows/nodejs-test.yml @@ -0,0 +1,70 @@ +name: Node.js CI + +on: + push: + branches-ignore: + - "dependabot/**" + pull_request: + +env: + CI: true + FORCE_COLOR: 2 + NODE_COV: lts/* # The Node.js version to run coveralls on + +permissions: + contents: read # to fetch code (actions/checkout) + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: npm + - run: npm ci + - run: npm run lint + + test: + permissions: + contents: read # to fetch code (actions/checkout) + checks: write # to create new checks (coverallsapp/github-action) + + name: Node ${{ matrix.node }} + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + node: + - 16 + - 18 + - 20 + - 22 + - lts/* + + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - name: Use Node.js ${{ matrix.node }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + cache: npm + - run: npm ci + - run: npm run build --if-present + + - name: Run tests + run: npm run test:vi + if: matrix.node != env.NODE_COV + + - name: Run tests with coverage + run: npm run test:vi -- --coverage + if: matrix.node == env.NODE_COV + + - name: Run Coveralls + uses: coverallsapp/github-action@v2.3.6 + if: matrix.node == env.NODE_COV + continue-on-error: true + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..95a03eac --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +node_modules/ +coverage/ +dist/ +.tshy +.tshy-build/ diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..f4174523 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +node_modules/ +coverage/ +lib/ diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0eb346bd..00000000 --- a/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -sudo: false -language: node_js -node_js: - - 8 - - 10 diff --git a/index.js b/index.js deleted file mode 100644 index 428c2239..00000000 --- a/index.js +++ /dev/null @@ -1,274 +0,0 @@ -"use strict"; - -module.exports = parse; - -var re_name = /^(?:\\.|[\w\-\u00c0-\uFFFF])+/, - re_escape = /\\([\da-f]{1,6}\s?|(\s)|.)/ig, - //modified version of https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L87 - re_attr = /^\s*((?:\\.|[\w\u00c0-\uFFFF\-])+)\s*(?:(\S?)=\s*(?:(['"])([^]*?)\3|(#?(?:\\.|[\w\u00c0-\uFFFF\-])*)|)|)\s*(i)?\]/; - -var actionTypes = { - __proto__: null, - "undefined": "exists", - "": "equals", - "~": "element", - "^": "start", - "$": "end", - "*": "any", - "!": "not", - "|": "hyphen" -}; - -var simpleSelectors = { - __proto__: null, - ">": "child", - "<": "parent", - "~": "sibling", - "+": "adjacent" -}; - -var attribSelectors = { - __proto__: null, - "#": ["id", "equals"], - ".": ["class", "element"] -}; - -//pseudos, whose data-property is parsed as well -var unpackPseudos = { - __proto__: null, - "has": true, - "not": true, - "matches": true -}; - -var stripQuotesFromPseudos = { - __proto__: null, - "contains": true, - "icontains": true -}; - -var quotes = { - __proto__: null, - "\"": true, - "'": true -}; - -//unescape function taken from https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L139 -function funescape( _, escaped, escapedWhitespace ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - // Support: Firefox - // Workaround erroneous numeric interpretation of +"0x" - return high !== high || escapedWhitespace ? - escaped : - // BMP codepoint - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); -} - -function unescapeCSS(str){ - return str.replace(re_escape, funescape); -} - -function isWhitespace(c){ - return c === " " || c === "\n" || c === "\t" || c === "\f" || c === "\r"; -} - -function parse(selector, options){ - var subselects = []; - - selector = parseSelector(subselects, selector + "", options); - - if(selector !== ""){ - throw new SyntaxError("Unmatched selector: " + selector); - } - - return subselects; -} - -function parseSelector(subselects, selector, options){ - var tokens = [], - sawWS = false, - data, firstChar, name, quot; - - function getName(){ - var sub = selector.match(re_name)[0]; - selector = selector.substr(sub.length); - return unescapeCSS(sub); - } - - function stripWhitespace(start){ - while(isWhitespace(selector.charAt(start))) start++; - selector = selector.substr(start); - } - - function isEscaped(pos) { - var slashCount = 0; - - while (selector.charAt(--pos) === "\\") slashCount++; - return (slashCount & 1) === 1; - } - - stripWhitespace(0); - - while(selector !== ""){ - firstChar = selector.charAt(0); - - if(isWhitespace(firstChar)){ - sawWS = true; - stripWhitespace(1); - } else if(firstChar in simpleSelectors){ - tokens.push({type: simpleSelectors[firstChar]}); - sawWS = false; - - stripWhitespace(1); - } else if(firstChar === ","){ - if(tokens.length === 0){ - throw new SyntaxError("empty sub-selector"); - } - subselects.push(tokens); - tokens = []; - sawWS = false; - stripWhitespace(1); - } else { - if(sawWS){ - if(tokens.length > 0){ - tokens.push({type: "descendant"}); - } - sawWS = false; - } - - if(firstChar === "*"){ - selector = selector.substr(1); - tokens.push({type: "universal"}); - } else if(firstChar in attribSelectors){ - selector = selector.substr(1); - tokens.push({ - type: "attribute", - name: attribSelectors[firstChar][0], - action: attribSelectors[firstChar][1], - value: getName(), - ignoreCase: false - }); - } else if(firstChar === "["){ - selector = selector.substr(1); - data = selector.match(re_attr); - if(!data){ - throw new SyntaxError("Malformed attribute selector: " + selector); - } - selector = selector.substr(data[0].length); - name = unescapeCSS(data[1]); - - if( - !options || ( - "lowerCaseAttributeNames" in options ? - options.lowerCaseAttributeNames : - !options.xmlMode - ) - ){ - name = name.toLowerCase(); - } - - tokens.push({ - type: "attribute", - name: name, - action: actionTypes[data[2]], - value: unescapeCSS(data[4] || data[5] || ""), - ignoreCase: !!data[6] - }); - - } else if(firstChar === ":"){ - if(selector.charAt(1) === ":"){ - selector = selector.substr(2); - tokens.push({type: "pseudo-element", name: getName().toLowerCase()}); - continue; - } - - selector = selector.substr(1); - - name = getName().toLowerCase(); - data = null; - - if(selector.charAt(0) === "("){ - if(name in unpackPseudos){ - quot = selector.charAt(1); - var quoted = quot in quotes; - - selector = selector.substr(quoted + 1); - - data = []; - selector = parseSelector(data, selector, options); - - if(quoted){ - if(selector.charAt(0) !== quot){ - throw new SyntaxError("unmatched quotes in :" + name); - } else { - selector = selector.substr(1); - } - } - - if(selector.charAt(0) !== ")"){ - throw new SyntaxError("missing closing parenthesis in :" + name + " " + selector); - } - - selector = selector.substr(1); - } else { - var pos = 1, counter = 1; - - for(; counter > 0 && pos < selector.length; pos++){ - if(selector.charAt(pos) === "(" && !isEscaped(pos)) counter++; - else if(selector.charAt(pos) === ")" && !isEscaped(pos)) counter--; - } - - if(counter){ - throw new SyntaxError("parenthesis not matched"); - } - - data = selector.substr(1, pos - 2); - selector = selector.substr(pos); - - if(name in stripQuotesFromPseudos){ - quot = data.charAt(0); - - if(quot === data.slice(-1) && quot in quotes){ - data = data.slice(1, -1); - } - - data = unescapeCSS(data); - } - } - } - - tokens.push({type: "pseudo", name: name, data: data}); - } else if(re_name.test(selector)){ - name = getName(); - - if(!options || ("lowerCaseTags" in options ? options.lowerCaseTags : !options.xmlMode)){ - name = name.toLowerCase(); - } - - tokens.push({type: "tag", name: name}); - } else { - if(tokens.length && tokens[tokens.length - 1].type === "descendant"){ - tokens.pop(); - } - addToken(subselects, tokens); - return selector; - } - } - } - - addToken(subselects, tokens); - - return selector; -} - -function addToken(subselects, tokens){ - if(subselects.length > 0 && tokens.length === 0){ - throw new SyntaxError("empty sub-selector"); - } - - subselects.push(tokens); -} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..d2ea350a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,7872 @@ +{ + "name": "css-what", + "version": "6.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "css-what", + "version": "6.1.0", + "license": "BSD-2-Clause", + "devDependencies": { + "@types/node": "^22.15.18", + "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/parser": "^7.18.0", + "@vitest/coverage-v8": "^2.1.8", + "eslint": "^8.57.1", + "eslint-config-prettier": "^10.1.5", + "eslint-plugin-n": "^17.18.0", + "eslint-plugin-unicorn": "^55.0.0", + "prettier": "^3.5.3", + "tshy": "^3.0.2", + "typescript": "^5.8.3", + "vitest": "^2.0.2" + }, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.1", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.1.tgz", + "integrity": "sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.26.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", + "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", + "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "dev": true + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz", + "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz", + "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz", + "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz", + "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz", + "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz", + "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz", + "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz", + "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz", + "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz", + "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz", + "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz", + "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz", + "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz", + "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz", + "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz", + "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz", + "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz", + "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "node_modules/@types/node": { + "version": "22.15.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.18.tgz", + "integrity": "sha512-v1DKRfUdyW+jJhZNEI1PYy29S2YRxMV5AOO/x/SjKmW0acCIOqmbj6Haf9eHAhsPmrhlHSxEhv/1WszcLWV4cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz", + "integrity": "sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/type-utils": "7.18.0", + "@typescript-eslint/utils": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^7.0.0", + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.18.0.tgz", + "integrity": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz", + "integrity": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz", + "integrity": "sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "7.18.0", + "@typescript-eslint/utils": "7.18.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz", + "integrity": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz", + "integrity": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz", + "integrity": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@vitest/coverage-v8": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-2.1.8.tgz", + "integrity": "sha512-2Y7BPlKH18mAZYAW1tYByudlCYrQyl5RGvnnDYJKW5tCiO5qg3KSAy3XAxcxKz900a0ZXxWtKrMuZLe3lKBpJw==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.3.0", + "@bcoe/v8-coverage": "^0.2.3", + "debug": "^4.3.7", + "istanbul-lib-coverage": "^3.2.2", + "istanbul-lib-report": "^3.0.1", + "istanbul-lib-source-maps": "^5.0.6", + "istanbul-reports": "^3.1.7", + "magic-string": "^0.30.12", + "magicast": "^0.3.5", + "std-env": "^3.8.0", + "test-exclude": "^7.0.1", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@vitest/browser": "2.1.8", + "vitest": "2.1.8" + }, + "peerDependenciesMeta": { + "@vitest/browser": { + "optional": true + } + } + }, + "node_modules/@vitest/expect": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.8.tgz", + "integrity": "sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==", + "dev": true, + "dependencies": { + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.8.tgz", + "integrity": "sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==", + "dev": true, + "dependencies": { + "@vitest/spy": "2.1.8", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/pretty-format": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.8.tgz", + "integrity": "sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==", + "dev": true, + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.8.tgz", + "integrity": "sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==", + "dev": true, + "dependencies": { + "@vitest/utils": "2.1.8", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.8.tgz", + "integrity": "sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==", + "dev": true, + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.8.tgz", + "integrity": "sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==", + "dev": true, + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.8.tgz", + "integrity": "sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==", + "dev": true, + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/acorn": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", + "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", + "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001629", + "electron-to-chromium": "^1.4.796", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.16" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001636", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", + "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz", + "integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==", + "dev": true, + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true, + "engines": { + "node": ">= 16" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/ci-info": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", + "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/clean-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", + "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/clean-regexp/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.4.810", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.810.tgz", + "integrity": "sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-compat-utils": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz", + "integrity": "sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==", + "dev": true, + "dependencies": { + "semver": "^7.5.4" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/eslint-config-prettier": { + "version": "10.1.5", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.5.tgz", + "integrity": "sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "funding": { + "url": "https://opencollective.com/eslint-config-prettier" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-es-x": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz", + "integrity": "sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==", + "dev": true, + "funding": [ + "https://github.com/sponsors/ota-meshi", + "https://opencollective.com/eslint" + ], + "dependencies": { + "@eslint-community/eslint-utils": "^4.1.2", + "@eslint-community/regexpp": "^4.11.0", + "eslint-compat-utils": "^0.5.1" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": ">=8" + } + }, + "node_modules/eslint-plugin-n": { + "version": "17.18.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-17.18.0.tgz", + "integrity": "sha512-hvZ/HusueqTJ7VDLoCpjN0hx4N4+jHIWTXD4TMLHy9F23XkDagR9v+xQWRWR57yY55GPF8NnD4ox9iGTxirY8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.5.0", + "enhanced-resolve": "^5.17.1", + "eslint-plugin-es-x": "^7.8.0", + "get-tsconfig": "^4.8.1", + "globals": "^15.11.0", + "ignore": "^5.3.2", + "minimatch": "^9.0.5", + "semver": "^7.6.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": ">=8.23.0" + } + }, + "node_modules/eslint-plugin-n/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/eslint-plugin-n/node_modules/globals": { + "version": "15.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.11.0.tgz", + "integrity": "sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-plugin-n/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/eslint-plugin-unicorn": { + "version": "55.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-55.0.0.tgz", + "integrity": "sha512-n3AKiVpY2/uDcGrS3+QsYDkjPfaOrNrsfQxU9nt5nitd9KuvVXrfAvgCO9DYPSfap+Gqjw9EOrXIsBp5tlHZjA==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.5", + "@eslint-community/eslint-utils": "^4.4.0", + "ci-info": "^4.0.0", + "clean-regexp": "^1.0.0", + "core-js-compat": "^3.37.0", + "esquery": "^1.5.0", + "globals": "^15.7.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.1", + "jsesc": "^3.0.2", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.27", + "regjsparser": "^0.10.0", + "semver": "^7.6.1", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=18.18" + }, + "funding": { + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" + }, + "peerDependencies": { + "eslint": ">=8.56.0" + } + }, + "node_modules/eslint-plugin-unicorn/node_modules/globals": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.8.0.tgz", + "integrity": "sha512-VZAJ4cewHTExBWDHR6yptdIBlx9YSSZuwojj9Nt5mBRXQzrKakDsVKQ1J63sklLvzAJm0X5+RpO4i3Y2hcOnFw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", + "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + }, + "node_modules/foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/get-tsconfig": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.1.tgz", + "integrity": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==", + "dev": true, + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true, + "license": "ISC" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "license": "MIT", + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", + "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.23", + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", + "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/loupe": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.2.tgz", + "integrity": "sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz", + "integrity": "sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==", + "dev": true, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/magic-string": { + "version": "0.30.12", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz", + "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/magicast": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz", + "integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.25.4", + "@babel/types": "^7.25.4", + "source-map-js": "^1.2.0" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true, + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "dev": true + }, + "node_modules/pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true, + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/polite-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/polite-json/-/polite-json-5.0.0.tgz", + "integrity": "sha512-OLS/0XeUAcE8a2fdwemNja+udKgXNnY6yKVIXqAD2zVRx1KvY6Ato/rZ2vdzbxqYwPW0u6SCNC/bAMPNzpzxbw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true, + "license": "MIT", + "bin": { + "regexp-tree": "bin/regexp-tree" + } + }, + "node_modules/regjsparser": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.10.0.tgz", + "integrity": "sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-import": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-import/-/resolve-import-2.0.0.tgz", + "integrity": "sha512-jpKjLibLuc8D1XEV2+7zb0aqN7I8d12u89g/v6IsgCzdVlccMQJq4TKkPw5fbhHdxhm7nbVtN+KvOTnjFf+nEA==", + "dev": true, + "dependencies": { + "glob": "^11.0.0", + "walk-up-path": "^4.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/resolve-import/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/resolve-import/node_modules/glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/resolve-import/node_modules/jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/resolve-import/node_modules/minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/resolve-import/node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz", + "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.28.0", + "@rollup/rollup-android-arm64": "4.28.0", + "@rollup/rollup-darwin-arm64": "4.28.0", + "@rollup/rollup-darwin-x64": "4.28.0", + "@rollup/rollup-freebsd-arm64": "4.28.0", + "@rollup/rollup-freebsd-x64": "4.28.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.28.0", + "@rollup/rollup-linux-arm-musleabihf": "4.28.0", + "@rollup/rollup-linux-arm64-gnu": "4.28.0", + "@rollup/rollup-linux-arm64-musl": "4.28.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0", + "@rollup/rollup-linux-riscv64-gnu": "4.28.0", + "@rollup/rollup-linux-s390x-gnu": "4.28.0", + "@rollup/rollup-linux-x64-gnu": "4.28.0", + "@rollup/rollup-linux-x64-musl": "4.28.0", + "@rollup/rollup-win32-arm64-msvc": "4.28.0", + "@rollup/rollup-win32-ia32-msvc": "4.28.0", + "@rollup/rollup-win32-x64-msvc": "4.28.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true, + "license": "CC-BY-3.0" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", + "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true + }, + "node_modules/std-env": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", + "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sync-content": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/sync-content/-/sync-content-2.0.1.tgz", + "integrity": "sha512-NI1mo514yFhr8pV/5Etvgh+pSBUIpoAKoiBIUwALVlQQNAwb40bTw8hhPFaip/dvv0GhpHVOq0vq8iY02ppLTg==", + "dev": true, + "dependencies": { + "glob": "^11.0.0", + "mkdirp": "^3.0.1", + "path-scurry": "^2.0.0", + "rimraf": "^6.0.0", + "tshy": "^3.0.0" + }, + "bin": { + "sync-content": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sync-content/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sync-content/node_modules/glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sync-content/node_modules/jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/sync-content/node_modules/minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sync-content/node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sync-content/node_modules/rimraf": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", + "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", + "dev": true, + "dependencies": { + "glob": "^11.0.0", + "package-json-from-dist": "^1.0.0" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/test-exclude": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-7.0.1.tgz", + "integrity": "sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^10.4.1", + "minimatch": "^9.0.4" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true + }, + "node_modules/tinyexec": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", + "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", + "dev": true + }, + "node_modules/tinypool": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz", + "integrity": "sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==", + "dev": true, + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", + "dev": true, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "dev": true, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tshy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tshy/-/tshy-3.0.2.tgz", + "integrity": "sha512-8GkWnAfmNXxl8iDTZ1o2H4jdaj9H7HeDKkr5qd0ZhQBCNA41D3xqTyg2Ycs51VCfmjJ5e+0v9AUmD6ylAI9Bgw==", + "dev": true, + "dependencies": { + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "foreground-child": "^3.1.1", + "minimatch": "^10.0.0", + "mkdirp": "^3.0.1", + "polite-json": "^5.0.0", + "resolve-import": "^2.0.0", + "rimraf": "^6.0.0", + "sync-content": "^2.0.1", + "typescript": "^5.5.3", + "walk-up-path": "^4.0.0" + }, + "bin": { + "tshy": "dist/esm/index.js" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/tshy/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/tshy/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/tshy/node_modules/glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/tshy/node_modules/jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/tshy/node_modules/minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/tshy/node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/tshy/node_modules/rimraf": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", + "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", + "dev": true, + "dependencies": { + "glob": "^11.0.0", + "package-json-from-dist": "^1.0.0" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/update-browserslist-db": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", + "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vite": { + "version": "5.4.19", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.19.tgz", + "integrity": "sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-node": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.8.tgz", + "integrity": "sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==", + "dev": true, + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vitest": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.8.tgz", + "integrity": "sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==", + "dev": true, + "dependencies": { + "@vitest/expect": "2.1.8", + "@vitest/mocker": "2.1.8", + "@vitest/pretty-format": "^2.1.8", + "@vitest/runner": "2.1.8", + "@vitest/snapshot": "2.1.8", + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.8", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.8", + "@vitest/ui": "2.1.8", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/walk-up-path": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-4.0.0.tgz", + "integrity": "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==", + "dev": true, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + } + }, + "@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true + }, + "@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.26.1", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.1.tgz", + "integrity": "sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==", + "dev": true, + "requires": { + "@babel/types": "^7.26.0" + } + }, + "@babel/types": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", + "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "dev": true, + "optional": true + }, + "@eslint-community/eslint-utils": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", + "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.4.3" + } + }, + "@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + } + }, + "@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-android-arm-eabi": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz", + "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-android-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz", + "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz", + "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz", + "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz", + "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz", + "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz", + "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-musleabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz", + "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz", + "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz", + "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz", + "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-riscv64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz", + "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-s390x-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz", + "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz", + "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz", + "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-arm64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz", + "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-ia32-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz", + "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-x64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz", + "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==", + "dev": true, + "optional": true + }, + "@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "@types/node": { + "version": "22.15.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.18.tgz", + "integrity": "sha512-v1DKRfUdyW+jJhZNEI1PYy29S2YRxMV5AOO/x/SjKmW0acCIOqmbj6Haf9eHAhsPmrhlHSxEhv/1WszcLWV4cg==", + "dev": true, + "requires": { + "undici-types": "~6.21.0" + } + }, + "@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz", + "integrity": "sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/type-utils": "7.18.0", + "@typescript-eslint/utils": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^1.3.0" + } + }, + "@typescript-eslint/parser": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.18.0.tgz", + "integrity": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz", + "integrity": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz", + "integrity": "sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "7.18.0", + "@typescript-eslint/utils": "7.18.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + } + }, + "@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz", + "integrity": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@typescript-eslint/utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz", + "integrity": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz", + "integrity": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "7.18.0", + "eslint-visitor-keys": "^3.4.3" + } + }, + "@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "@vitest/coverage-v8": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-2.1.8.tgz", + "integrity": "sha512-2Y7BPlKH18mAZYAW1tYByudlCYrQyl5RGvnnDYJKW5tCiO5qg3KSAy3XAxcxKz900a0ZXxWtKrMuZLe3lKBpJw==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.3.0", + "@bcoe/v8-coverage": "^0.2.3", + "debug": "^4.3.7", + "istanbul-lib-coverage": "^3.2.2", + "istanbul-lib-report": "^3.0.1", + "istanbul-lib-source-maps": "^5.0.6", + "istanbul-reports": "^3.1.7", + "magic-string": "^0.30.12", + "magicast": "^0.3.5", + "std-env": "^3.8.0", + "test-exclude": "^7.0.1", + "tinyrainbow": "^1.2.0" + } + }, + "@vitest/expect": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.8.tgz", + "integrity": "sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==", + "dev": true, + "requires": { + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + } + }, + "@vitest/mocker": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.8.tgz", + "integrity": "sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==", + "dev": true, + "requires": { + "@vitest/spy": "2.1.8", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + } + }, + "@vitest/pretty-format": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.8.tgz", + "integrity": "sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==", + "dev": true, + "requires": { + "tinyrainbow": "^1.2.0" + } + }, + "@vitest/runner": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.8.tgz", + "integrity": "sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==", + "dev": true, + "requires": { + "@vitest/utils": "2.1.8", + "pathe": "^1.1.2" + } + }, + "@vitest/snapshot": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.8.tgz", + "integrity": "sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==", + "dev": true, + "requires": { + "@vitest/pretty-format": "2.1.8", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + } + }, + "@vitest/spy": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.8.tgz", + "integrity": "sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==", + "dev": true, + "requires": { + "tinyspy": "^3.0.2" + } + }, + "@vitest/utils": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.8.tgz", + "integrity": "sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==", + "dev": true, + "requires": { + "@vitest/pretty-format": "2.1.8", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + } + }, + "acorn": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", + "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "browserslist": { + "version": "4.23.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", + "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001629", + "electron-to-chromium": "^1.4.796", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.16" + } + }, + "builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true + }, + "cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001636", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", + "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", + "dev": true + }, + "chai": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz", + "integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==", + "dev": true, + "requires": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "check-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "ci-info": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", + "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "dev": true + }, + "clean-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", + "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "dev": true, + "requires": { + "browserslist": "^4.23.0" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "requires": { + "ms": "^2.1.3" + } + }, + "deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.810", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.810.tgz", + "integrity": "sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "dev": true + }, + "esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + } + } + }, + "eslint-compat-utils": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz", + "integrity": "sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==", + "dev": true, + "requires": { + "semver": "^7.5.4" + } + }, + "eslint-config-prettier": { + "version": "10.1.5", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.5.tgz", + "integrity": "sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==", + "dev": true, + "requires": {} + }, + "eslint-plugin-es-x": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz", + "integrity": "sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.1.2", + "@eslint-community/regexpp": "^4.11.0", + "eslint-compat-utils": "^0.5.1" + } + }, + "eslint-plugin-n": { + "version": "17.18.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-17.18.0.tgz", + "integrity": "sha512-hvZ/HusueqTJ7VDLoCpjN0hx4N4+jHIWTXD4TMLHy9F23XkDagR9v+xQWRWR57yY55GPF8NnD4ox9iGTxirY8A==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.5.0", + "enhanced-resolve": "^5.17.1", + "eslint-plugin-es-x": "^7.8.0", + "get-tsconfig": "^4.8.1", + "globals": "^15.11.0", + "ignore": "^5.3.2", + "minimatch": "^9.0.5", + "semver": "^7.6.3" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "globals": { + "version": "15.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.11.0.tgz", + "integrity": "sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==", + "dev": true + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "eslint-plugin-unicorn": { + "version": "55.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-55.0.0.tgz", + "integrity": "sha512-n3AKiVpY2/uDcGrS3+QsYDkjPfaOrNrsfQxU9nt5nitd9KuvVXrfAvgCO9DYPSfap+Gqjw9EOrXIsBp5tlHZjA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.24.5", + "@eslint-community/eslint-utils": "^4.4.0", + "ci-info": "^4.0.0", + "clean-regexp": "^1.0.0", + "core-js-compat": "^3.37.0", + "esquery": "^1.5.0", + "globals": "^15.7.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.1", + "jsesc": "^3.0.2", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.27", + "regjsparser": "^0.10.0", + "semver": "^7.6.1", + "strip-indent": "^3.0.0" + }, + "dependencies": { + "globals": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.8.0.tgz", + "integrity": "sha512-VZAJ4cewHTExBWDHR6yptdIBlx9YSSZuwojj9Nt5mBRXQzrKakDsVKQ1J63sklLvzAJm0X5+RpO4i3Y2hcOnFw==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0" + } + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "expect-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", + "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + }, + "foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "get-tsconfig": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.1.tgz", + "integrity": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==", + "dev": true, + "requires": { + "resolve-pkg-maps": "^1.0.0" + } + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "requires": { + "builtin-modules": "^3.3.0" + } + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true + }, + "istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", + "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.23", + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0" + } + }, + "istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jackspeak": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", + "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "loupe": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.2.tgz", + "integrity": "sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==", + "dev": true + }, + "lru-cache": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz", + "integrity": "sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==", + "dev": true + }, + "magic-string": { + "version": "0.30.12", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz", + "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", + "dev": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "magicast": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz", + "integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==", + "dev": true, + "requires": { + "@babel/parser": "^7.25.4", + "@babel/types": "^7.25.4", + "source-map-js": "^1.2.0" + } + }, + "make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "requires": { + "semver": "^7.5.3" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true + }, + "mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "dev": true + } + } + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "dev": true + }, + "pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true + }, + "polite-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/polite-json/-/polite-json-5.0.0.tgz", + "integrity": "sha512-OLS/0XeUAcE8a2fdwemNja+udKgXNnY6yKVIXqAD2zVRx1KvY6Ato/rZ2vdzbxqYwPW0u6SCNC/bAMPNzpzxbw==", + "dev": true + }, + "postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, + "requires": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prettier": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true + }, + "regjsparser": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.10.0.tgz", + "integrity": "sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + } + } + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-import": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-import/-/resolve-import-2.0.0.tgz", + "integrity": "sha512-jpKjLibLuc8D1XEV2+7zb0aqN7I8d12u89g/v6IsgCzdVlccMQJq4TKkPw5fbhHdxhm7nbVtN+KvOTnjFf+nEA==", + "dev": true, + "requires": { + "glob": "^11.0.0", + "walk-up-path": "^4.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + } + }, + "jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "requires": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + } + } + } + }, + "resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz", + "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==", + "dev": true, + "requires": { + "@rollup/rollup-android-arm-eabi": "4.28.0", + "@rollup/rollup-android-arm64": "4.28.0", + "@rollup/rollup-darwin-arm64": "4.28.0", + "@rollup/rollup-darwin-x64": "4.28.0", + "@rollup/rollup-freebsd-arm64": "4.28.0", + "@rollup/rollup-freebsd-x64": "4.28.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.28.0", + "@rollup/rollup-linux-arm-musleabihf": "4.28.0", + "@rollup/rollup-linux-arm64-gnu": "4.28.0", + "@rollup/rollup-linux-arm64-musl": "4.28.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0", + "@rollup/rollup-linux-riscv64-gnu": "4.28.0", + "@rollup/rollup-linux-s390x-gnu": "4.28.0", + "@rollup/rollup-linux-x64-gnu": "4.28.0", + "@rollup/rollup-linux-x64-musl": "4.28.0", + "@rollup/rollup-win32-arm64-msvc": "4.28.0", + "@rollup/rollup-win32-ia32-msvc": "4.28.0", + "@rollup/rollup-win32-x64-msvc": "4.28.0", + "@types/estree": "1.0.6", + "fsevents": "~2.3.2" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", + "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", + "dev": true + }, + "stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true + }, + "std-env": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", + "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "sync-content": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/sync-content/-/sync-content-2.0.1.tgz", + "integrity": "sha512-NI1mo514yFhr8pV/5Etvgh+pSBUIpoAKoiBIUwALVlQQNAwb40bTw8hhPFaip/dvv0GhpHVOq0vq8iY02ppLTg==", + "dev": true, + "requires": { + "glob": "^11.0.0", + "mkdirp": "^3.0.1", + "path-scurry": "^2.0.0", + "rimraf": "^6.0.0", + "tshy": "^3.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + } + }, + "jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "requires": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + } + }, + "rimraf": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", + "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", + "dev": true, + "requires": { + "glob": "^11.0.0", + "package-json-from-dist": "^1.0.0" + } + } + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + }, + "test-exclude": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-7.0.1.tgz", + "integrity": "sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^10.4.1", + "minimatch": "^9.0.4" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true + }, + "tinyexec": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", + "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", + "dev": true + }, + "tinypool": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz", + "integrity": "sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==", + "dev": true + }, + "tinyrainbow": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", + "dev": true + }, + "tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "requires": {} + }, + "tshy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tshy/-/tshy-3.0.2.tgz", + "integrity": "sha512-8GkWnAfmNXxl8iDTZ1o2H4jdaj9H7HeDKkr5qd0ZhQBCNA41D3xqTyg2Ycs51VCfmjJ5e+0v9AUmD6ylAI9Bgw==", + "dev": true, + "requires": { + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "foreground-child": "^3.1.1", + "minimatch": "^10.0.0", + "mkdirp": "^3.0.1", + "polite-json": "^5.0.0", + "resolve-import": "^2.0.0", + "rimraf": "^6.0.0", + "sync-content": "^2.0.1", + "typescript": "^5.5.3", + "walk-up-path": "^4.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + } + }, + "jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "requires": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + } + }, + "rimraf": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", + "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", + "dev": true, + "requires": { + "glob": "^11.0.0", + "package-json-from-dist": "^1.0.0" + } + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + }, + "typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true + }, + "undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", + "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "dev": true, + "requires": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vite": { + "version": "5.4.19", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.19.tgz", + "integrity": "sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==", + "dev": true, + "requires": { + "esbuild": "^0.21.3", + "fsevents": "~2.3.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + } + }, + "vite-node": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.8.tgz", + "integrity": "sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==", + "dev": true, + "requires": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + } + }, + "vitest": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.8.tgz", + "integrity": "sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==", + "dev": true, + "requires": { + "@vitest/expect": "2.1.8", + "@vitest/mocker": "2.1.8", + "@vitest/pretty-format": "^2.1.8", + "@vitest/runner": "2.1.8", + "@vitest/snapshot": "2.1.8", + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.8", + "why-is-node-running": "^2.3.0" + } + }, + "walk-up-path": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-4.0.0.tgz", + "integrity": "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "requires": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + } + }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/package.json b/package.json index 8448be5f..4f36aff9 100644 --- a/package.json +++ b/package.json @@ -1,44 +1,80 @@ { - "author": "Felix Böhm (http://feedic.com)", - "name": "css-what", - "description": "a CSS selector parser", - "version": "2.1.1", - "repository": { - "url": "https://github.com/fb55/css-what" - }, - "main": "./index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "node tests/test.js && jshint *.js" - }, - "dependencies": {}, - "devDependencies": { - "jshint": "2" - }, - "optionalDependencies": {}, - "engines": { - "node": "*" - }, - "license": "BSD-2-Clause", - "jshintConfig": { - "eqeqeq": true, - "freeze": true, - "latedef": "nofunc", - "noarg": true, - "nonbsp": true, - "quotmark": "double", - "undef": true, - "unused": true, - "trailing": true, - "eqnull": true, - "proto": true, - "smarttabs": true, - "node": true, - "globals": { - "describe": true, - "it": true + "name": "css-what", + "version": "6.1.0", + "description": "a CSS selector parser", + "repository": { + "type": "git", + "url": "https://github.com/fb55/css-what" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + }, + "license": "BSD-2-Clause", + "author": "Felix Böhm (http://feedic.com)", + "sideEffects": false, + "type": "module", + "exports": { + "./package.json": "./package.json", + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + } + }, + "main": "./dist/commonjs/index.js", + "module": "./dist/esm/index.js", + "types": "./dist/commonjs/index.d.ts", + "files": [ + "lib/**/*" + ], + "scripts": { + "format": "npm run format:es && npm run format:prettier", + "format:es": "npm run lint:es -- --fix", + "format:prettier": "npm run prettier -- --write", + "lint": "npm run lint:tsc && npm run lint:es && npm run lint:prettier", + "lint:es": "eslint src", + "lint:prettier": "npm run prettier -- --check", + "lint:tsc": "tsc --noEmit", + "prepublishOnly": "tshy", + "prettier": "prettier '**/*.{ts,md,json,yml}'", + "test": "npm run test:vi && npm run lint", + "test:vi": "vitest run" + }, + "prettier": { + "tabWidth": 4 + }, + "devDependencies": { + "@types/node": "^22.15.18", + "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/parser": "^7.18.0", + "@vitest/coverage-v8": "^2.1.8", + "eslint": "^8.57.1", + "eslint-config-prettier": "^10.1.5", + "eslint-plugin-n": "^17.18.0", + "eslint-plugin-unicorn": "^55.0.0", + "prettier": "^3.5.3", + "tshy": "^3.0.2", + "typescript": "^5.8.3", + "vitest": "^2.0.2" + }, + "engines": { + "node": ">= 6" + }, + "tshy": { + "exclude": [ + "**/*.spec.ts", + "**/__fixtures__/*", + "**/__tests__/*", + "**/__snapshots__/*" + ], + "exports": { + "./package.json": "./package.json", + ".": "./src/index.ts" + } } - } } diff --git a/readme.md b/readme.md index ececd104..c211b359 100644 --- a/readme.md +++ b/readme.md @@ -1,46 +1,69 @@ -# css-what [![Build Status](https://secure.travis-ci.org/fb55/css-what.svg?branch=master)](http://travis-ci.org/fb55/css-what) +# css-what -a CSS selector parser +[![Node.js CI](https://github.com/fb55/css-what/actions/workflows/nodejs-test.yml/badge.svg)](https://github.com/fb55/css-what/actions/workflows/nodejs-test.yml) +[![Coverage](https://img.shields.io/coveralls/github/fb55/css-what/master)](https://coveralls.io/github/fb55/css-what?branch=master) + +A CSS selector parser. ## Example ```js -require('css-what')('foo[bar]:baz') - -~> [ [ { type: 'tag', name: 'foo' }, - { type: 'attribute', - name: 'bar', - action: 'exists', - value: '', - ignoreCase: false }, - { type: 'pseudo', - name: 'baz', - data: null } ] ] +import * as CSSwhat from "css-what"; + +CSSwhat.parse("foo[bar]:baz") + +~> [ + [ + { type: "tag", name: "foo" }, + { + type: "attribute", + name: "bar", + action: "exists", + value: "", + ignoreCase: null + }, + { type: "pseudo", name: "baz", data: null } + ] +] ``` ## API -__`CSSwhat(selector, options)` - Parses `str`, with the passed `options`.__ +**`CSSwhat.parse(selector)` - Parses `selector`.** The function returns a two-dimensional array. The first array represents selectors separated by commas (eg. `sub1, sub2`), the second contains the relevant tokens for that selector. Possible token types are: -name | attributes | example | output ----- | ---------- | ------- | ------ -`tag`| `name` | `div` | `{ type: 'tag', name: 'div' }` -`universal`| - | `*` | `{ type: 'universal' }` -`pseudo`| `name`, `data`|`:name(data)`| `{ type: 'pseudo', name: 'name', data: 'data' }` -`pseudo`| `name`, `data`|`:name`| `{ type: 'pseudo', name: 'name', data: null }` -`attribute`|`name`, `action`, `value`, `ignoreCase`|`[attr]`|`{ type: 'attribute', name: 'attr', action: 'exists', value: '', ignoreCase: false }` -`attribute`|`name`, `action`, `value`, `ignoreCase`|`[attr=val]`|`{ type: 'attribute', name: 'attr', action: 'equals', value: 'val', ignoreCase: false }` -`attribute`|`name`, `action`, `value`, `ignoreCase`|`[attr^=val]`|`{ type: 'attribute', name: 'attr', action: 'start', value: 'val', ignoreCase: false }` -`attribute`|`name`, `action`, `value`, `ignoreCase`|`[attr$=val]`|`{ type: 'attribute', name: 'attr', action: 'end', value: 'val', ignoreCase: false }` - -//TODO complete list - -__Options:__ +| name | properties | example | output | +| ------------------- | --------------------------------------- | ------------- | ---------------------------------------------------------------------------------------- | +| `tag` | `name` | `div` | `{ type: 'tag', name: 'div' }` | +| `universal` | - | `*` | `{ type: 'universal' }` | +| `pseudo` | `name`, `data` | `:name(data)` | `{ type: 'pseudo', name: 'name', data: 'data' }` | +| `pseudo` | `name`, `data` | `:name` | `{ type: 'pseudo', name: 'name', data: null }` | +| `pseudo-element` | `name` | `::name` | `{ type: 'pseudo-element', name: 'name' }` | +| `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr]` | `{ type: 'attribute', name: 'attr', action: 'exists', value: '', ignoreCase: false }` | +| `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr=val]` | `{ type: 'attribute', name: 'attr', action: 'equals', value: 'val', ignoreCase: false }` | +| `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr^=val]` | `{ type: 'attribute', name: 'attr', action: 'start', value: 'val', ignoreCase: false }` | +| `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr$=val]` | `{ type: 'attribute', name: 'attr', action: 'end', value: 'val', ignoreCase: false }` | +| `child` | - | `>` | `{ type: 'child' }` | +| `parent` | - | `<` | `{ type: 'parent' }` | +| `sibling` | - | `~` | `{ type: 'sibling' }` | +| `adjacent` | - | `+` | `{ type: 'adjacent' }` | +| `descendant` | - | | `{ type: 'descendant' }` | +| `column-combinator` | - | `\|\|` | `{ type: 'column-combinator' }` | -- `xmlMode`: When enabled, tag names will be case-sensitive (meaning they won't be lowercased). +**`CSSwhat.stringify(selector)` - Turns `selector` back into a string.** --- License: BSD-2-Clause + +## Security contact information + +To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). +Tidelift will coordinate the fix and disclosure. + +## `css-what` for enterprise + +Available as part of the Tidelift Subscription + +The maintainers of `css-what` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-css-what?utm_source=npm-css-what&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) diff --git a/src/__fixtures__/out.json b/src/__fixtures__/out.json new file mode 100644 index 00000000..7bd1957c --- /dev/null +++ b/src/__fixtures__/out.json @@ -0,0 +1,17296 @@ +{ + "": [], + "\t": [], + "\t#qunit-fixture p": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "\n#qunit-fixture p": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "\f#qunit-fixture p": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "\r#qunit-fixture p": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + " ": [], + " #qunit-fixture p": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + " a ": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + " p ": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "#__sizzle__": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "__sizzle__", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#ap :nth-last-of-type(0n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "0n+3" + } + ] + ], + "#ap :nth-last-of-type(2n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "2n" + } + ] + ], + "#ap :nth-last-of-type(2n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "2n+1" + } + ] + ], + "#ap :nth-last-of-type(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "3" + } + ] + ], + "#ap :nth-last-of-type(even)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "even" + } + ] + ], + "#ap :nth-last-of-type(n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "n" + } + ] + ], + "#ap :nth-last-of-type(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "odd" + } + ] + ], + "#ap :nth-of-type(0n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "0n+3" + } + ] + ], + "#ap :nth-of-type(2n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "2n" + } + ] + ], + "#ap :nth-of-type(2n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "2n+1" + } + ] + ], + "#ap :nth-of-type(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "3" + } + ] + ], + "#ap :nth-of-type(even)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "even" + } + ] + ], + "#ap :nth-of-type(n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "n" + } + ] + ], + "#ap :nth-of-type(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "odd" + } + ] + ], + "#ap a[hreflang!='en']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "hreflang", + "action": "not", + "value": "en", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#ap:has(*), #ap:has(*)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ], + "#asdfasdf #foobar": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "asdfasdf", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foobar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#attr-child-boosh": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attr-child-boosh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#attributes a[href=\"#aname\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "equals", + "value": "#aname", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test$=foo]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "end", + "value": "foo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test*=hree]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "any", + "value": "hree", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test=\"two-foo\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "equals", + "value": "two-foo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test='two-foo']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "equals", + "value": "two-foo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test=two-foo]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "equals", + "value": "two-foo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test^=two]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "start", + "value": "two", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test|=\"two-foo\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "hyphen", + "value": "two-foo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test|=two]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "hyphen", + "value": "two", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[test~=three]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "element", + "value": "three", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#attributes div[unique-test]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attributes", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "unique-test", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#backslash\\\\foo": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "backslash\\foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#blargh": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "blargh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#body": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "body", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#boosh": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#boosh #booshTest": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#boosh *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#boosh .a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#boosh div": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "#boosh div div": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "#boosh div,#boosh span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#boosh div.a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#boosh div[test=fg]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "equals", + "value": "fg", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#boosh div[test]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "test", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#boosh span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#boosh,#boosh": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#boosh,.apples,#boosh": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + } + ], + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "apples", + "namespace": null, + "ignoreCase": "quirks" + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#boosh>.a>#booshTest": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#booshTest": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#direct-descend > .direct-descend": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#direct-descend > .direct-descend > .lvl2": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "lvl2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#dupContainer span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "dupContainer", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#dupL1": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "dupL1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#dupL2": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "dupL2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#emem": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "emem", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#first ~ div": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "first", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "#firstUL > *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "firstUL", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#firstp #foobar": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "firstp", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foobar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#firstp #simon1": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "firstp", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "simon1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#fixtures": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "fixtures", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#fixtures a *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "fixtures", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#fixtures h1": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "fixtures", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "h1", + "namespace": null + } + ] + ], + "#foo": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#foo > *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#foo a:not(.blog)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#foo a:not(.blog.link)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "link", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#foo a:not(.link)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "link", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#foo\\:bar": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo:bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#foo\\:bar span:not(:input)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo:bar", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "input", + "data": null + } + ] + ] + } + ] + ], + "#form": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#form #first": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "first", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#form :checkbox": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "checkbox", + "data": null + } + ] + ], + "#form :checkbox:checked": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "checkbox", + "data": null + }, + { + "type": "pseudo", + "name": "checked", + "data": null + } + ] + ], + "#form :input": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "input", + "data": null + } + ] + ], + "#form :radio": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "radio", + "data": null + } + ] + ], + "#form :radio:checked": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "radio", + "data": null + }, + { + "type": "pseudo", + "name": "checked", + "data": null + } + ] + ], + "#form :radio:checked, #form :checkbox:checked": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "radio", + "data": null + }, + { + "type": "pseudo", + "name": "checked", + "data": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "checkbox", + "data": null + }, + { + "type": "pseudo", + "name": "checked", + "data": null + } + ] + ], + "#form :text": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "text", + "data": null + } + ] + ], + "#form > #option1a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "option1a", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#form > #radio1": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "radio1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#form [for=action]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "for", + "action": "equals", + "value": "action", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#form input[type='radio'], #form input[type=\"hidden\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "radio", + "namespace": null, + "ignoreCase": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "hidden", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#form input[type='radio'], #form input[type='hidden']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "radio", + "namespace": null, + "ignoreCase": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "hidden", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#form input[type='radio'], #form input[type=hidden]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "radio", + "namespace": null, + "ignoreCase": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "hidden", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#form input[type=search]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "search", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#form input[type=text]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "text", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#form option:checked": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "checked", + "data": null + } + ] + ], + "#form option:not(:contains(Nothing),#option1b,:selected)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "contains", + "data": "Nothing" + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "option1b", + "namespace": null, + "ignoreCase": "quirks" + } + ], + [ + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ] + } + ] + ], + "#form option:not(:not(:selected))[id^='option3']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ] + } + ] + ] + }, + { + "type": "attribute", + "name": "id", + "action": "start", + "value": "option3", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#form option:selected": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ], + "#form select:has(option:first-child:contains('o'))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "select", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "o" + } + ] + ] + } + ] + ], + "#form select:not(.select1):contains(Nothing) > option:not(option)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "select", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + }, + { + "type": "pseudo", + "name": "contains", + "data": "Nothing" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "option", + "namespace": null + } + ] + ] + } + ] + ], + "#form select:not([multiple])": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "select", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "multiple", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "#form select:not([name='select1'])": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "select", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "#form select:not([name=select1])": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "select", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "#grandfather > div:not(#uncle) #son": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "grandfather", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "uncle", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "son", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#groups ~ a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "groups", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#hidden1:enabled": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hidden1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "enabled", + "data": null + } + ] + ], + "#hsoob": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#hsoob #spanny": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "spanny", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#hsoob .a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#hsoob > div > .h": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "h", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#hsoob div": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "#hsoob div div": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "#hsoob div.a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#hsoob span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "hsoob", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#idTest": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "idTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#item_1": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#item_3": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_3", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#length ~ input": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "length", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "input", + "namespace": null + } + ] + ], + "#lengthtest": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "lengthtest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#level1 *:first-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#level1 *:last-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "#level1 *:only-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "only-child", + "data": null + } + ] + ], + "#level1 *[id$=\"_1\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "end", + "value": "_1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#level1 *[id$=_1]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "end", + "value": "_1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#level1 *[id*=\"2\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "any", + "value": "2", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#level1 *[id^=\"level2_\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "start", + "value": "level2_", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#level1 *[id^=level2_]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "start", + "value": "level2_", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#level1 > span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level1 div:last-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "#level1 span:first-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#level1:first-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#level1:only-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "only-child", + "data": null + } + ] + ], + "#level1>*:first-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#level1>*:last-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "#level1>*:only-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "only-child", + "data": null + } + ] + ], + "#level1>div:first-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#level1>div:last-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "#level1>span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level1>span:last-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "#level2_1 + *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#level2_1 + span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level2_1 > *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#level2_1 ~ *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#level2_1 ~ span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level2_1+span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level2_2 + span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level2_2 :only-child:not(:first-child)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "only-child", + "data": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ] + } + ] + ], + "#level2_2 :only-child:not(:last-child)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "only-child", + "data": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ] + } + ] + ], + "#level2_2 ~ span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level3_1 + *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#level3_1 + em": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "em", + "namespace": null + } + ] + ], + "#level3_1 + span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#level3_1 ~ #level3_2": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#level3_1 ~ em": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "em", + "namespace": null + } + ] + ], + "#level3_1:empty": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "empty", + "data": null + } + ] + ], + "#level3_2 + *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#level3_2 ~ *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#link_2.internal": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "link_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#link_2.internal.highlight": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "link_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "highlight", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#link_2.internal.nonexistent": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "link_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "nonexistent", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#list > li:nth-child(-n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "list", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "-n+2" + } + ] + ], + "#list > li:nth-child(n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "list", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "n+2" + } + ] + ], + "#list li:not(#item_1):not(#item_3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "list", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_3", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#list>li": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "list", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + "#listWithTabIndex": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "listWithTabIndex", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#liveHandlerOrder ~ div em:contains('1')": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "liveHandlerOrder", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "1" + } + ] + ], + "#lonelyBoosh": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "lonelyBoosh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#lonelyHsoob": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "lonelyHsoob", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#moretests script[src]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "moretests", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "script", + "namespace": null + }, + { + "type": "attribute", + "name": "src", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#name\\+value": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "name+value", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#nonexistent:has(*), #ap:has(*)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "nonexistent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "ap", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ], + "#oooo": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "oooo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#order-matters .order-matters": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "order-matters", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "order-matters", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#p *:nth-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3" + } + ] + ], + "#p a:first-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-of-type", + "data": null + } + ] + ], + "#p a:last-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-of-type", + "data": null + } + ] + ], + "#p a:not(:first-of-type)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "first-of-type", + "data": null + } + ] + ] + } + ] + ], + "#p a:not(:last-of-type)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "last-of-type", + "data": null + } + ] + ] + } + ] + ], + "#p a:not(:nth-last-of-type(1))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "1" + } + ] + ] + } + ] + ], + "#p a:not(:nth-of-type(1))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "nth-of-type", + "data": "1" + } + ] + ] + } + ] + ], + "#p a:not([rel$=\"nofollow\"]) > em": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "end", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ] + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "em", + "namespace": null + } + ] + ], + "#p a:not([rel$=\"nofollow\"]) em": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "end", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ] + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "em", + "namespace": null + } + ] + ], + "#p a:not([rel$=\"nofollow\"])>em": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "end", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ] + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "em", + "namespace": null + } + ] + ], + "#p a:not([rel$=nofollow])": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "end", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "#p a:not([rel^=external])": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "start", + "value": "external", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "#p a:not([rel~=nofollow])": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "element", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "#p a:nth-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3" + } + ] + ], + "#p a:nth-last-of-type(1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "1" + } + ] + ], + "#p a:nth-of-type(1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "1" + } + ] + ], + "#p a:nth-of-type(2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "p", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "2" + } + ] + ], + "#pseudos :nth-child(+3n-2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "+3n-2" + } + ] + ], + "#pseudos :nth-child(-n+5)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "-n+5" + } + ] + ], + "#pseudos :nth-child(-n+6)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "-n+6" + } + ] + ], + "#pseudos :nth-child(3n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n" + } + ] + ], + "#pseudos :nth-child(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n+1" + } + ] + ], + "#pseudos :nth-child(3n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n+2" + } + ] + ], + "#pseudos :nth-child(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "odd" + } + ] + ], + "#pseudos :nth-last-child(-n+5)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "-n+5" + } + ] + ], + "#pseudos :nth-last-child(-n+6)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "-n+6" + } + ] + ], + "#pseudos :nth-last-child(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n+1" + } + ] + ], + "#pseudos :nth-last-child(3n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n+2" + } + ] + ], + "#pseudos :nth-last-child(3n-2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n-2" + } + ] + ], + "#pseudos :nth-last-child(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "odd" + } + ] + ], + "#pseudos a:first-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-of-type", + "data": null + } + ] + ], + "#pseudos a:nth-last-of-type(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "3n+1" + } + ] + ], + "#pseudos a:nth-of-type(1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "1" + } + ] + ], + "#pseudos a:nth-of-type(3n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "3n" + } + ] + ], + "#pseudos a:nth-of-type(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "3n+1" + } + ] + ], + "#pseudos a:nth-of-type(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "odd" + } + ] + ], + "#pseudos a:only-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "only-of-type", + "data": null + } + ] + ], + "#pseudos div:first-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#pseudos div:last-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "#pseudos div:last-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-of-type", + "data": null + } + ] + ], + "#pseudos div:nth-child(2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2" + } + ] + ], + "#pseudos div:nth-child(even)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "even" + } + ] + ], + "#pseudos div:nth-child(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "odd" + } + ] + ], + "#pseudos div:nth-last-child(6)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "6" + } + ] + ], + "#pseudos div:nth-last-child(even)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "even" + } + ] + ], + "#pseudos div:nth-last-child(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "odd" + } + ] + ], + "#pseudos div:nth-last-of-type(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "3n+1" + } + ] + ], + "#pseudos div:nth-last-of-type(5)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "5" + } + ] + ], + "#pseudos div:nth-of-type(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "3n+1" + } + ] + ], + "#pseudos:target": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "pseudos", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "target", + "data": null + } + ] + ], + "#qunit-fixture": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#qunit-fixture *[title]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "title", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture :not(:has(:has(*)))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "#qunit-fixture > :nth-last-of-type(-n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "-n+2" + } + ] + ], + "#qunit-fixture > :nth-of-type(-n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "pseudo", + "name": "nth-of-type", + "data": "-n+2" + } + ] + ], + "#qunit-fixture > :only-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "pseudo", + "name": "only-of-type", + "data": null + } + ] + ], + "#qunit-fixture > p:first-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-of-type", + "data": null + } + ] + ], + "#qunit-fixture > p:last-of-type": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-of-type", + "data": null + } + ] + ], + "#qunit-fixture [title]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "title", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture a + a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#qunit-fixture a + a, code > a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "code", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#qunit-fixture a +a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#qunit-fixture a+ a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#qunit-fixture a+a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#qunit-fixture a:last-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "#qunit-fixture a:only-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "only-child", + "data": null + } + ] + ], + "#qunit-fixture a[ rel = 'bookmark' ]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "rel", + "action": "equals", + "value": "bookmark", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture a[ title ]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "title", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture a[TITLE]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "TITLE", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture a[href='http://www.google.com/']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "equals", + "value": "http://www.google.com/", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture a[rel='bookmark']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "rel", + "action": "equals", + "value": "bookmark", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture a[rel=bookmark]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "rel", + "action": "equals", + "value": "bookmark", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture a[title]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "title", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture div:has(div:has(div:not([id])))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "#qunit-fixture div[id]:not(:has(div, span)):not(:has(*))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ] + } + ] + ] + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ] + } + ] + ], + "#qunit-fixture form#form > *:nth-child(2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2" + } + ] + ], + "#qunit-fixture form#form > :nth-child(2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2" + } + ] + ], + "#qunit-fixture form[id]:not([action$='formaction']):not(:button)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "action", + "action": "end", + "value": "formaction", + "namespace": null, + "ignoreCase": null + } + ] + ] + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "button", + "data": null + } + ] + ] + } + ] + ], + "#qunit-fixture form[id]:not([action='form:action']):not(:button)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "action", + "action": "equals", + "value": "form:action", + "namespace": null, + "ignoreCase": null + } + ] + ] + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "button", + "data": null + } + ] + ] + } + ] + ], + "#qunit-fixture form[id]:not([action='form:action']:button):not(:input)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "action", + "action": "equals", + "value": "form:action", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "button", + "data": null + } + ] + ] + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "input", + "data": null + } + ] + ] + } + ] + ], + "#qunit-fixture li[tabIndex=-1]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "tabIndex", + "action": "equals", + "value": "-1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture option[value=1]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "attribute", + "name": "value", + "action": "equals", + "value": "1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#qunit-fixture p": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "#qunit-fixture p\t": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "#qunit-fixture p\n": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "#qunit-fixture p\f": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "#qunit-fixture p\r": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "#qunit-fixture p ": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "#qunit-fixture p ~ div": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "#qunit-fixture p, #qunit-fixture p a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#qunit-fixture p:FIRST-CHILD": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#qunit-fixture p:first-child": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "#qunit-fixture p:has(:contains(mark)):has(code)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "pseudo", + "name": "contains", + "data": "mark" + } + ] + ] + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "code", + "namespace": null + } + ] + ] + } + ] + ], + "#qunit-fixture p:has(:contains(mark)):has(code):contains(This link)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "pseudo", + "name": "contains", + "data": "mark" + } + ] + ] + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "code", + "namespace": null + } + ] + ] + }, + { + "type": "pseudo", + "name": "contains", + "data": "This link" + } + ] + ], + "#qunit-fixture p:not( a )": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ] + } + ] + ], + "#qunit-fixture p:not( p )": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(#blargh)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "blargh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(.foo)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(:has(a), :nth-child(1))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ] + } + ], + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "1" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(:nth-child(1))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "1" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(:nth-last-child(1))": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "nth-last-child", + "data": "1" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(a)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(a, b)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "b", + "namespace": null + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(a, b, div)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "b", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(div#blargh)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "blargh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(div.foo)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(p#blargh)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "blargh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#qunit-fixture p:not(p.foo)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "#qunit-fixture p:parent": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "parent", + "data": null + } + ] + ], + "#seite1": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "seite1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#select1 *:nth-last-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3" + } + ] + ], + "#select1 :nth-last-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3" + } + ] + ], + "#select1 option:NTH-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3" + } + ] + ], + "#select1 option:NTH-last-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3" + } + ] + ], + "#select1 option:nth-child(+2n + 1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "+2n + 1" + } + ] + ], + "#select1 option:nth-child(-1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "-1" + } + ] + ], + "#select1 option:nth-child(-1n + 3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "-1n + 3" + } + ] + ], + "#select1 option:nth-child(-1n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "-1n+3" + } + ] + ], + "#select1 option:nth-child(-n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "-n+3" + } + ] + ], + "#select1 option:nth-child(1n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "1n" + } + ] + ], + "#select1 option:nth-child(1n+0)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "1n+0" + } + ] + ], + "#select1 option:nth-child(2n + 1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2n + 1" + } + ] + ], + "#select1 option:nth-child(2n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2n" + } + ] + ], + "#select1 option:nth-child(2n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2n+1" + } + ] + ], + "#select1 option:nth-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3" + } + ] + ], + "#select1 option:nth-child(3n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n" + } + ] + ], + "#select1 option:nth-child(3n+0)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n+0" + } + ] + ], + "#select1 option:nth-child(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n+1" + } + ] + ], + "#select1 option:nth-child(3n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n+2" + } + ] + ], + "#select1 option:nth-child(3n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n+3" + } + ] + ], + "#select1 option:nth-child(3n-1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n-1" + } + ] + ], + "#select1 option:nth-child(3n-2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n-2" + } + ] + ], + "#select1 option:nth-child(3n-3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "3n-3" + } + ] + ], + "#select1 option:nth-child(even)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "even" + } + ] + ], + "#select1 option:nth-child(n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "n" + } + ] + ], + "#select1 option:nth-child(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "odd" + } + ] + ], + "#select1 option:nth-last-child(+2n + 1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "+2n + 1" + } + ] + ], + "#select1 option:nth-last-child(-1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "-1" + } + ] + ], + "#select1 option:nth-last-child(-1n + 3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "-1n + 3" + } + ] + ], + "#select1 option:nth-last-child(-1n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "-1n+3" + } + ] + ], + "#select1 option:nth-last-child(-n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "-n+3" + } + ] + ], + "#select1 option:nth-last-child(1n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "1n" + } + ] + ], + "#select1 option:nth-last-child(1n+0)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "1n+0" + } + ] + ], + "#select1 option:nth-last-child(2n + 1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "2n + 1" + } + ] + ], + "#select1 option:nth-last-child(2n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "2n" + } + ] + ], + "#select1 option:nth-last-child(2n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "2n+1" + } + ] + ], + "#select1 option:nth-last-child(3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3" + } + ] + ], + "#select1 option:nth-last-child(3n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n" + } + ] + ], + "#select1 option:nth-last-child(3n+0)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n+0" + } + ] + ], + "#select1 option:nth-last-child(3n+1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n+1" + } + ] + ], + "#select1 option:nth-last-child(3n+2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n+2" + } + ] + ], + "#select1 option:nth-last-child(3n+3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n+3" + } + ] + ], + "#select1 option:nth-last-child(3n-1)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n-1" + } + ] + ], + "#select1 option:nth-last-child(3n-2)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n-2" + } + ] + ], + "#select1 option:nth-last-child(3n-3)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "3n-3" + } + ] + ], + "#select1 option:nth-last-child(even)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "even" + } + ] + ], + "#select1 option:nth-last-child(n)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "n" + } + ] + ], + "#select1 option:nth-last-child(odd)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "odd" + } + ] + ], + "#select1 option:selected": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ], + "#select1 option[value!='']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "attribute", + "name": "value", + "action": "not", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#select1 option[value='']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "attribute", + "name": "value", + "action": "equals", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#select2 option:selected": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ], + "#select2 option[selected='selected']": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "attribute", + "name": "selected", + "action": "equals", + "value": "selected", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#select2 option[selected]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "attribute", + "name": "selected", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#select3 option:selected": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select3", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ], + "#sep": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "sep", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#sibling-selector + .sibling-selector": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#sibling-selector + div.sibling-selector": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#sibling-selector ~ .sibling-selector": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#sibling-selector ~ div.sibling-selector": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling-selector", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#siblingTest > em *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "siblingTest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#siblingTest > em:contains('x') + em ~ span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "siblingTest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "x" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#siblingTest > em:first-child + em ~ span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "siblingTest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#siblingTest em *": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "siblingTest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "#siblingTest em ~ em ~ em ~ span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "siblingTest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#siblingfirst ~ em": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "siblingfirst", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "em", + "namespace": null + } + ] + ], + "#spaced-tokens p em a": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "spaced-tokens", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "#spanny": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "spanny", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#tName1": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tName1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#tName1 span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tName1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#tName1-span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tName1-span", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#tName2": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tName2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#tName2 span": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tName2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "#tName2ID": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tName2ID", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#test\\.foo\\[5\\]bar": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "test.foo[5]bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#tmp_input :button": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tmp_input", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "button", + "data": null + } + ] + ], + "#tmp_input :reset": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tmp_input", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "reset", + "data": null + } + ] + ], + "#tmp_input :submit": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tmp_input", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "submit", + "data": null + } + ] + ], + "#token-four": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "token-four", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#troubleForm": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#troubleForm *:checked": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "checked", + "data": null + } + ] + ], + "#troubleForm *[type=radio]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "radio", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#troubleForm *[type]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#troubleForm > p > *:disabled": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "disabled", + "data": null + } + ] + ], + "#troubleForm [type=radio]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "radio", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#troubleForm [type]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "type", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#troubleForm2 input[name=\"brackets[5][]\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "brackets[5][]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#troubleForm2 input[name=\"brackets[5][]\"]:checked": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "brackets[5][]", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "checked", + "data": null + } + ] + ], + "#troubleForm2 input[name=\"brackets[5][]\"][value=\"2\"]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "troubleForm2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "brackets[5][]", + "namespace": null, + "ignoreCase": null + }, + { + "type": "attribute", + "name": "value", + "action": "equals", + "value": "2", + "namespace": null, + "ignoreCase": null + } + ] + ], + "#types_all": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "types_all", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#uncle": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "uncle", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#台北Táiběi": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "台北Táiběi", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "#台北Táiběi, #台北": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "台北Táiběi", + "namespace": null, + "ignoreCase": "quirks" + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "台北", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "*": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ], + "* :not(*) foo": [ + [ + { + "type": "universal", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "foo", + "namespace": null + } + ] + ], + "* < *": [ + [ + { + "type": "universal", + "namespace": null + }, + { + "type": "parent" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "*, foo": [ + [ + { + "type": "universal", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "foo", + "namespace": null + } + ] + ], + "*,:contains(!)": [ + [ + { + "type": "universal", + "namespace": null + } + ], + [ + { + "type": "pseudo", + "name": "contains", + "data": "!" + } + ] + ], + "*:contains(humans)": [ + [ + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "humans" + } + ] + ], + "*[id]": [ + [ + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "*[name=iframe]": [ + [ + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "iframe", + "namespace": null, + "ignoreCase": null + } + ] + ], + "*[type=checkbox]": [ + [ + { + "type": "universal", + "namespace": null + }, + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "checkbox", + "namespace": null, + "ignoreCase": null + } + ] + ], + ".GROUPS": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "GROUPS", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".a": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".a #booshTest #spanny": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "spanny", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".a #spanny": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "spanny", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".a .d + .sib": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "d", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sib", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".a .d ~ .sib[test=\"f g\"]": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "d", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sib", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "test", + "action": "equals", + "value": "f g", + "namespace": null, + "ignoreCase": null + } + ] + ], + ".a > #booshTest": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".a span": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + ".a.b #booshTest": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "b", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".a>#booshTest": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".blog": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".blog.link": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "link", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".brothers": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".class-with-dashes": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "class-with-dashes", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".component": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "component", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".container div:not(.excluded) div": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "container", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "excluded", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + ".d #oooo #emem": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "d", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "oooo", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "emem", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".d ~ .sib": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "d", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sib", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".d.i #emem": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "d", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "i", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "emem", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".direct-descend > .direct-descend .lvl2": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "lvl2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".direct-descend > .direct-descend > .direct-descend ~ .lvl2": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "lvl2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".direct-descend > .direct-descend div": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "direct-descend", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + ".e": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "e", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".e.hasOwnProperty.toString": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "e", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "hasOwnProperty", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "toString", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".excluded": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "excluded", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".first": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "first", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".foo": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".foo\\:bar": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo:bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".fototab > .thumbnails > a": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "fototab", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "thumbnails", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + ".internal#link_2": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "link_2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".link": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "link", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".nothiddendiv div:first-child": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "nothiddendiv", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + ".null": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "null", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".null div": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "null", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + ".odd:not(div)": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "odd", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ] + } + ] + ], + ".parent .middle + .sibling": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".parent .middle + h2": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "h2", + "namespace": null + } + ] + ], + ".parent .middle + h3": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "h3", + "namespace": null + } + ] + ], + ".parent .middle + h4": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "h4", + "namespace": null + } + ] + ], + ".parent .middle ~ .sibling": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".parent .middle ~ h2": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "h2", + "namespace": null + } + ] + ], + ".parent .middle ~ h3": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "h3", + "namespace": null + } + ] + ], + ".parent .middle ~ h4": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "h4", + "namespace": null + } + ] + ], + ".parent .middle ~ h4.younger": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "middle", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "h4", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "younger", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".parent .oldest + .sibling": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "oldest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".parent .oldest ~ .sibling": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "oldest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".parent .youngest + .sibling": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "youngest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".parent .youngest ~ .sibling": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "parent", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "youngest", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "sibling", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".second": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "second", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".select1": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "select1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".test\\.foo\\[5\\]bar": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "test.foo[5]bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".台北": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".台北Táiběi": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北Táiběi", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".台北Táiběi, .台北": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北Táiběi", + "namespace": null, + "ignoreCase": "quirks" + } + ], + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ".台北Táiběi.台北": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北Táiběi", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + ":Header": [ + [ + { + "type": "pseudo", + "name": "header", + "data": null + } + ] + ], + ":button": [ + [ + { + "type": "pseudo", + "name": "button", + "data": null + } + ] + ], + ":contains(Nothing),#option1b,:selected": [ + [ + { + "type": "pseudo", + "name": "contains", + "data": "Nothing" + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "option1b", + "namespace": null, + "ignoreCase": "quirks" + } + ], + [ + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ], + ":contains(foo)": [ + [ + { + "type": "pseudo", + "name": "contains", + "data": "foo" + } + ] + ], + ":contains(humans)": [ + [ + { + "type": "pseudo", + "name": "contains", + "data": "humans" + } + ] + ], + ":contains(mark)": [ + [ + { + "type": "pseudo", + "name": "contains", + "data": "mark" + } + ] + ], + ":empty": [ + [ + { + "type": "pseudo", + "name": "empty", + "data": null + } + ] + ], + ":first-child": [ + [ + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + ":first-child(n)": [ + [ + { + "type": "pseudo", + "name": "first-child", + "data": "n" + } + ] + ], + ":first-last-child": [ + [ + { + "type": "pseudo", + "name": "first-last-child", + "data": null + } + ] + ], + ":first-of-type": [ + [ + { + "type": "pseudo", + "name": "first-of-type", + "data": null + } + ] + ], + ":has(*)": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ], + ":has(*,:contains(!)),:contains(!)": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ], + [ + { + "type": "pseudo", + "name": "contains", + "data": "!" + } + ] + ] + } + ], + [ + { + "type": "pseudo", + "name": "contains", + "data": "!" + } + ] + ], + ":has(:has(*))": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ] + } + ] + ], + ":has(:nth-child(-1n-1))": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "-1n-1" + } + ] + ] + } + ] + ], + ":has(a),:nth-child(1)": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ] + } + ], + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "1" + } + ] + ], + ":has(div,span)": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ] + } + ] + ], + ":has(option)": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "option", + "namespace": null + } + ] + ] + } + ] + ], + ":header": [ + [ + { + "type": "pseudo", + "name": "header", + "data": null + } + ] + ], + ":humanoid": [ + [ + { + "type": "pseudo", + "name": "humanoid", + "data": null + } + ] + ], + ":image,:input,:submit": [ + [ + { + "type": "pseudo", + "name": "image", + "data": null + } + ], + [ + { + "type": "pseudo", + "name": "input", + "data": null + } + ], + [ + { + "type": "pseudo", + "name": "submit", + "data": null + } + ] + ], + ":input": [ + [ + { + "type": "pseudo", + "name": "input", + "data": null + } + ] + ], + ":input:not(:image,:input,:submit)": [ + [ + { + "type": "pseudo", + "name": "input", + "data": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "image", + "data": null + } + ], + [ + { + "type": "pseudo", + "name": "input", + "data": null + } + ], + [ + { + "type": "pseudo", + "name": "submit", + "data": null + } + ] + ] + } + ] + ], + ":input[data-pos=':first']": [ + [ + { + "type": "pseudo", + "name": "input", + "data": null + }, + { + "type": "attribute", + "name": "data-pos", + "action": "equals", + "value": ":first", + "namespace": null, + "ignoreCase": null + } + ] + ], + ":last-child": [ + [ + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + ":last-child(n)": [ + [ + { + "type": "pseudo", + "name": "last-child", + "data": "n" + } + ] + ], + ":last-last-child": [ + [ + { + "type": "pseudo", + "name": "last-last-child", + "data": null + } + ] + ], + ":last-of-type": [ + [ + { + "type": "pseudo", + "name": "last-of-type", + "data": null + } + ] + ], + ":not(*)": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ], + ":not(:not(*))": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ] + } + ] + ], + ":not(:not(:not(*)))": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + ":not(:nth-child(-1n-1))": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "-1n-1" + } + ] + ] + } + ] + ], + ":not(:selected)": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ] + } + ] + ], + ":not(code)": [ + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "code", + "namespace": null + } + ] + ] + } + ] + ], + ":nth-child": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": null + } + ] + ], + ":nth-child(- 1n)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "- 1n" + } + ] + ], + ":nth-child(-)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "-" + } + ] + ], + ":nth-child(-1 n)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "-1 n" + } + ] + ], + ":nth-child(-1n-1)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "-1n-1" + } + ] + ], + ":nth-child(1)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "1" + } + ] + ], + ":nth-child(2+0)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "2+0" + } + ] + ], + ":nth-child(2n+-0)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "2n+-0" + } + ] + ], + ":nth-child(asdf)": [ + [ + { + "type": "pseudo", + "name": "nth-child", + "data": "asdf" + } + ] + ], + ":nth-last-child(1)": [ + [ + { + "type": "pseudo", + "name": "nth-last-child", + "data": "1" + } + ] + ], + ":nth-last-last-child(1)": [ + [ + { + "type": "pseudo", + "name": "nth-last-last-child", + "data": "1" + } + ] + ], + ":nth-last-of-type(-1)": [ + [ + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "-1" + } + ] + ], + ":nth-last-of-type(1)": [ + [ + { + "type": "pseudo", + "name": "nth-last-of-type", + "data": "1" + } + ] + ], + ":nth-of-type(-1)": [ + [ + { + "type": "pseudo", + "name": "nth-of-type", + "data": "-1" + } + ] + ], + ":nth-of-type(1)": [ + [ + { + "type": "pseudo", + "name": "nth-of-type", + "data": "1" + } + ] + ], + ":only-child(n)": [ + [ + { + "type": "pseudo", + "name": "only-child", + "data": "n" + } + ] + ], + ":only-last-child": [ + [ + { + "type": "pseudo", + "name": "only-last-child", + "data": null + } + ] + ], + ":parent": [ + [ + { + "type": "pseudo", + "name": "parent", + "data": null + } + ] + ], + ":reset": [ + [ + { + "type": "pseudo", + "name": "reset", + "data": null + } + ] + ], + ":root": [ + [ + { + "type": "pseudo", + "name": "root", + "data": null + } + ] + ], + ":selected": [ + [ + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ], + ":submit": [ + [ + { + "type": "pseudo", + "name": "submit", + "data": null + } + ] + ], + ":visble": [ + [ + { + "type": "pseudo", + "name": "visble", + "data": null + } + ] + ], + ">.a>#booshTest": [ + [ + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "a", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "booshTest", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "[action$='formaction']": [ + [ + { + "type": "attribute", + "name": "action", + "action": "end", + "value": "formaction", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[action='form:action']": [ + [ + { + "type": "attribute", + "name": "action", + "action": "equals", + "value": "form:action", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[action='form:action']:button": [ + [ + { + "type": "attribute", + "name": "action", + "action": "equals", + "value": "form:action", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "button", + "data": null + } + ] + ], + "[attr=boosh]": [ + [ + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[attr=foo]": [ + [ + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "foo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[attr]": [ + [ + { + "type": "attribute", + "name": "attr", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[class*=component]": [ + [ + { + "type": "attribute", + "name": "class", + "action": "any", + "value": "component", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[class~=brothers]": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[class~=internal]": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[constructor='foo']": [ + [ + { + "type": "attribute", + "name": "constructor", + "action": "equals", + "value": "foo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[constructor]": [ + [ + { + "type": "attribute", + "name": "constructor", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[foo]": [ + [ + { + "type": "attribute", + "name": "foo", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[foo^=\"bar\"]": [ + [ + { + "type": "attribute", + "name": "foo", + "action": "start", + "value": "bar", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[href=\"#\"]": [ + [ + { + "type": "attribute", + "name": "href", + "action": "equals", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[href]": [ + [ + { + "type": "attribute", + "name": "href", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[ a=b i ]": [ + [ + { + "type": "attribute", + "name": "a", + "action": "equals", + "value": "b", + "namespace": null, + "ignoreCase": true + } + ] + ], + "[id*=option1]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "any", + "value": "option1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[id*=option1][type!=checkbox]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "any", + "value": "option1", + "namespace": null, + "ignoreCase": null + }, + { + "type": "attribute", + "name": "type", + "action": "not", + "value": "checkbox", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[id='select1'] *:not(:last-child), [id='select2'] *:not(:last-child)": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": null + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ] + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "select2", + "namespace": null, + "ignoreCase": null + }, + { + "type": "descendant" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ] + } + ] + ], + "[id=option1a]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "option1a", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[id]": [ + [ + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[multiple]": [ + [ + { + "type": "attribute", + "name": "multiple", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name='id']": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "id", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name='select1']": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name=div]": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "div", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name=example]": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "example", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name=prop2]": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "prop2", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name=select1]": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "select1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name=tName1]": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "tName1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[name=tName2]": [ + [ + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "tName2", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[rel$=\"nofollow\"]": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "end", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[rel$=nofollow]": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "end", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[rel^=external]": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "start", + "value": "external", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[rel~=nofollow]": [ + [ + { + "type": "attribute", + "name": "rel", + "action": "element", + "value": "nofollow", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[test=]": [ + [ + { + "type": "attribute", + "name": "test", + "action": "equals", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[test^='']": [ + [ + { + "type": "attribute", + "name": "test", + "action": "start", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[title]": [ + [ + { + "type": "attribute", + "name": "title", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[type=checkbox]": [ + [ + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "checkbox", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[type=radio]": [ + [ + { + "type": "attribute", + "name": "type", + "action": "equals", + "value": "radio", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[watch='bar']": [ + [ + { + "type": "attribute", + "name": "watch", + "action": "equals", + "value": "bar", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[watch]": [ + [ + { + "type": "attribute", + "name": "watch", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "[xml\\:test]": [ + [ + { + "type": "attribute", + "name": "xml:test", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "a#link_2.internal": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "link_2", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a,b": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "b", + "namespace": null + } + ] + ], + "a,b,div": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "b", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "a,p": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "a,p,b": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "b", + "namespace": null + } + ] + ], + "a.GROUPS + code + a": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "GROUPS", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "code", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "a.blog": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a.blog:not(.link)": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "link", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "a.highlight.internal": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "highlight", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a.highlight.internal.nonexistent": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "highlight", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "nonexistent", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a.internal": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a.internal#link_2": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "link_2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a.internal.highlight": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "highlight", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a.odd": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "odd", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "a:contains(\"(Link)\")": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "(Link)" + } + ] + ], + "a:contains('')": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "" + } + ] + ], + "a:contains('Google Groups (Link)')": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "Google Groups (Link)" + } + ] + ], + "a:contains((Link))": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "(Link)" + } + ] + ], + "a:contains(Google Groups (Link))": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "Google Groups (Link)" + } + ] + ], + "a:contains(Google Groups)": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "Google Groups" + } + ] + ], + "a:contains(Google)": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "Google" + } + ] + ], + "a:not([href=\"#\"])": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "href", + "action": "equals", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "a[class*=blog]:not(:has(*, :contains(!)), :contains(!)), br:contains(]), p:contains(]), :not(:empty):not(:parent)": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "any", + "value": "blog", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ], + [ + { + "type": "pseudo", + "name": "contains", + "data": "!" + } + ] + ] + } + ], + [ + { + "type": "pseudo", + "name": "contains", + "data": "!" + } + ] + ] + } + ], + [ + { + "type": "tag", + "name": "br", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "]" + } + ], + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "]" + } + ], + [ + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "empty", + "data": null + } + ] + ] + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "parent", + "data": null + } + ] + ] + } + ] + ], + "a[class~=\"internal\"]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[class~=external]:not([href=\"#\"])": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "external", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "href", + "action": "equals", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "a[class~=external][href=\"#\"]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "external", + "namespace": null, + "ignoreCase": null + }, + { + "type": "attribute", + "name": "href", + "action": "equals", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[class~=internal]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "internal", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[href $= 'org/']": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "end", + "value": "org/", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[href *= 'google']": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "any", + "value": "google", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[href ^= 'http://www']": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "start", + "value": "http://www", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[href*=#]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "any", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[href=\"#\"]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "equals", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[href]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[rel^=\"external\"]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "rel", + "action": "start", + "value": "external", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[rel^='external']": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "rel", + "action": "start", + "value": "external", + "namespace": null, + "ignoreCase": null + } + ] + ], + "a[rel^=external]": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "rel", + "action": "start", + "value": "external", + "namespace": null, + "ignoreCase": null + } + ] + ], + "body": [ + [ + { + "type": "tag", + "name": "body", + "namespace": null + } + ] + ], + "body div div div": [ + [ + { + "type": "tag", + "name": "body", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "body#body": [ + [ + { + "type": "tag", + "name": "body", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "body", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "body>div div div": [ + [ + { + "type": "tag", + "name": "body", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "cite[title=\"hello world!\"]": [ + [ + { + "type": "tag", + "name": "cite", + "namespace": null + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "hello world!", + "namespace": null, + "ignoreCase": null + } + ] + ], + "code": [ + [ + { + "type": "tag", + "name": "code", + "namespace": null + } + ] + ], + "code > *": [ + [ + { + "type": "tag", + "name": "code", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "component": [ + [ + { + "type": "tag", + "name": "component", + "namespace": null + } + ] + ], + "component#seite1": [ + [ + { + "type": "tag", + "name": "component", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "seite1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "div #foo\\:bar": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo:bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div #test\\.foo\\[5\\]bar": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "test.foo[5]bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div #台北": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "台北", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div .foo\\:bar": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo:bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div .test\\.foo\\[5\\]bar": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "test.foo[5]bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div .tokens[title=\"one two three #%\"]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "tokens", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "one two three #%", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div .tokens[title=\"one two three #%\"] a[href$=foo] div": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "tokens", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "one two three #%", + "namespace": null, + "ignoreCase": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "end", + "value": "foo", + "namespace": null, + "ignoreCase": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "div .tokens[title=\"one two\"]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "tokens", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "one two", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div .tokens[title=\"one\"]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "tokens", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "one", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div .tokens[title='one two three #%'] a": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "tokens", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "one two three #%", + "namespace": null, + "ignoreCase": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "div .台北Táiběi": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北Táiběi", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div > #nonexistent": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "nonexistent", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div > div #tName1": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "tName1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div > span": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "div ~ #level2_3": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level2_3", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div ~ #level3_2": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div#attr-child-boosh[attr=boosh]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attr-child-boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div#attr-test3.found.you[title=\"whatup duders\"]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attr-test3", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "found", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "you", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "whatup duders", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div#blargh": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "blargh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div#fixtures > div a": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "fixtures", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "div#fixtures div ~ a div": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "fixtures", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "div#fixtures p": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "fixtures", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "div#fixtures>div a": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "fixtures", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "div#form": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "form", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div#grandfather > div": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "grandfather", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "div,span": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "div.blah > p > a": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blah", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "div.brothers": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div.brothers + div": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "div.brothers + div.brothers": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div.brothers:not(.brothers)": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "div.foo": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "div.foo > span > a": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "div:has(div:not([id]))": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ] + } + ] + ], + "div:not(.brothers)": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ] + } + ] + ], + "div:not([class~=brothers])": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "div:not([id])": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "attribute", + "name": "id", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ] + } + ] + ], + "div[class$=men]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "end", + "value": "men", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div[class*=\"ers m\"]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "any", + "value": "ers m", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div[class^=bro]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "start", + "value": "bro", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div[class~=brothers]": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": null + } + ] + ], + "div[class~=brothers].brothers": [ + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "brothers", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "dl\tol": [ + [ + { + "type": "tag", + "name": "dl", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "ol", + "namespace": null + } + ] + ], + "dl ol": [ + [ + { + "type": "tag", + "name": "dl", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "ol", + "namespace": null + } + ] + ], + "elem:not(:has(*))": [ + [ + { + "type": "tag", + "name": "elem", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "universal", + "namespace": null + } + ] + ] + } + ] + ] + } + ] + ], + "em[nopass~=\"copyright\"]": [ + [ + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "attribute", + "name": "nopass", + "action": "element", + "value": "copyright", + "namespace": null, + "ignoreCase": null + } + ] + ], + "em[rel~=\"copyright\"]": [ + [ + { + "type": "tag", + "name": "em", + "namespace": null + }, + { + "type": "attribute", + "name": "rel", + "action": "element", + "value": "copyright", + "namespace": null, + "ignoreCase": null + } + ] + ], + "foo_bar": [ + [ + { + "type": "tag", + "name": "foo_bar", + "namespace": null + } + ] + ], + "form": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + } + ] + ], + "form > #foo\\:bar": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "foo:bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "form > #test\\.foo\\[5\\]bar": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "test.foo[5]bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "form > #台北": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "台北", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "form > .foo\\:bar": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo:bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "form > .test\\.foo\\[5\\]bar": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "test.foo[5]bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "form > .台北Táiběi": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "台北Táiběi", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "form label[for]": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "label", + "namespace": null + }, + { + "type": "attribute", + "name": "for", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "form:nth-last-child( 5 )": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": " 5 " + } + ] + ], + "form:nth-last-child(5)": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "5" + } + ] + ], + "form[title*=\"commas,\"], input[value=\"#commaOne,#commaTwo\"]": [ + [ + { + "type": "tag", + "name": "form", + "namespace": null + }, + { + "type": "attribute", + "name": "title", + "action": "any", + "value": "commas,", + "namespace": null, + "ignoreCase": null + } + ], + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "value", + "action": "equals", + "value": "#commaOne,#commaTwo", + "namespace": null, + "ignoreCase": null + } + ] + ], + "h1": [ + [ + { + "type": "tag", + "name": "h1", + "namespace": null + } + ] + ], + "h1 ~ ul": [ + [ + { + "type": "tag", + "name": "h1", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "ul", + "namespace": null + } + ] + ], + "h1[CLASS]": [ + [ + { + "type": "tag", + "name": "h1", + "namespace": null + }, + { + "type": "attribute", + "name": "CLASS", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "h1[class]": [ + [ + { + "type": "tag", + "name": "h1", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "h2\t,\r#qunit-fixture p\n": [ + [ + { + "type": "tag", + "name": "h2", + "namespace": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "h2 , #qunit-fixture p": [ + [ + { + "type": "tag", + "name": "h2", + "namespace": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "h2, #qunit-fixture p": [ + [ + { + "type": "tag", + "name": "h2", + "namespace": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "h2, h1": [ + [ + { + "type": "tag", + "name": "h2", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "h1", + "namespace": null + } + ] + ], + "h2,#qunit-fixture p": [ + [ + { + "type": "tag", + "name": "h2", + "namespace": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "h2,#qunit-fixture p ": [ + [ + { + "type": "tag", + "name": "h2", + "namespace": null + } + ], + [ + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "qunit-fixture", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "html": [ + [ + { + "type": "tag", + "name": "html", + "namespace": null + } + ] + ], + "input": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + } + ] + ], + "input[data-attr='\\01D306A']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "data-attr", + "action": "equals", + "value": "𝌆A", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[data-comma=\"0,1\"]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "data-comma", + "action": "equals", + "value": "0,1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[data-comma='0,1']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "data-comma", + "action": "equals", + "value": "0,1", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[data-pos=':first']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "data-pos", + "action": "equals", + "value": ":first", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[data-pos=\\:first]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "data-pos", + "action": "equals", + "value": ":first", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[id='idTest']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "idTest", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[id=types_all]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "types_all", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name$='[bar]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "end", + "value": "[bar]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name$='bar]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "end", + "value": "bar]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name$='foo[bar]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "end", + "value": "foo[bar]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name*='[bar]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "any", + "value": "[bar]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name*='foo[bar]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "any", + "value": "foo[bar]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name=\"action\"]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "action", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name='action']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "action", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name='foo[bar]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "foo[bar]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name='types[]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "types[]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name=action]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "action", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name=foo\\ bar]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "foo bar", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name=foo\\.baz]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "foo.baz", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name=foo\\[baz\\]]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "foo[baz]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name^='foo[']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "start", + "value": "foo[", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[name^='foo[bar]']": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "start", + "value": "foo[bar]", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[title=\"Don't click me\"]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "title", + "action": "equals", + "value": "Don't click me", + "namespace": null, + "ignoreCase": null + } + ] + ], + "input[value=Test]": [ + [ + { + "type": "tag", + "name": "input", + "namespace": null + }, + { + "type": "attribute", + "name": "value", + "action": "equals", + "value": "Test", + "namespace": null, + "ignoreCase": null + } + ] + ], + "li": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + "li ~ li": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + "li#attr-child-boosh[attr=boosh]": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attr-child-boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": null + } + ] + ], + "li#item_1.first": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "first", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "li#item_1.first.nonexistent": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "first", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "nonexistent", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "li#item_1.nonexistent": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_1", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "nonexistent", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "li#item_3[class]": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "item_3", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "class", + "action": "exists", + "value": "", + "namespace": null, + "ignoreCase": null + } + ] + ], + "li:contains(hello)": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "hello" + } + ] + ], + "li:contains(human)": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "human" + } + ] + ], + "li:contains(humans)": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "humans" + } + ] + ], + "li:not(:first-child)": [ + [ + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ] + } + ] + ], + "meta property thing": [ + [ + { + "type": "tag", + "name": "meta", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "property", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "thing", + "namespace": null + } + ] + ], + "nonexistent": [ + [ + { + "type": "tag", + "name": "nonexistent", + "namespace": null + } + ] + ], + "ol > li[attr=\"boosh\"]:last-child": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "ol li": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + "ol ol li#attr-child-boosh[attr=boosh]": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attr-child-boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": null + } + ] + ], + "ol#list li#attr-child-boosh[attr=boosh]": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "list", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attr-child-boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": null + } + ] + ], + "ol#list>li#attr-child-boosh[attr=boosh]": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "list", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "attr-child-boosh", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "attribute", + "name": "attr", + "action": "equals", + "value": "boosh", + "namespace": null, + "ignoreCase": null + } + ] + ], + "ol:contains(human)": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "human" + } + ] + ], + "ol:contains(humans)": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "humans" + } + ] + ], + "ol:empty": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "pseudo", + "name": "empty", + "data": null + } + ] + ], + "ol>li": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + "ol>li+li": [ + [ + { + "type": "tag", + "name": "ol", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + "option": [ + [ + { + "type": "tag", + "name": "option", + "namespace": null + } + ] + ], + "option:first-child:contains('o')": [ + [ + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "o" + } + ] + ], + "p": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "p + p": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "p .blog": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "p < div": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "parent" + }, + { + "type": "tag", + "name": "div", + "namespace": null + } + ] + ], + "p > * > *": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "p > a": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "p > a.blog": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "blog", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "p >a": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "p a[href*=#]": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "any", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ], + "p a[href^=#]": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "a", + "namespace": null + }, + { + "type": "attribute", + "name": "href", + "action": "start", + "value": "#", + "namespace": null, + "ignoreCase": null + } + ] + ], + "p#blargh": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "blargh", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "p#firstp + p": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "firstp", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "p#strong": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "strong", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "p, div p": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "div", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "p,a": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "p.first > a": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "first", + "namespace": null, + "ignoreCase": "quirks" + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "p.foo": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "p.odd": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "odd", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "p:contains(bar)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "bar" + } + ] + ], + "p:contains(id=\"foo\")[id!=')']": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "id=\"foo\"" + }, + { + "type": "attribute", + "name": "id", + "action": "not", + "value": ")", + "namespace": null, + "ignoreCase": null + } + ] + ], + "p:contains(id=\"foo\")[id!=\\)]": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "contains", + "data": "id=\"foo\"" + }, + { + "type": "attribute", + "name": "id", + "action": "not", + "value": ")", + "namespace": null, + "ignoreCase": null + } + ] + ], + "p:first-child": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "p:has( a )": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ] + } + ] + ], + "p:has(a)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "has", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ] + } + ] + ], + "p:last-child": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "p:not(a,p)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ] + } + ] + ], + "p:not(a,p,b)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "b", + "namespace": null + } + ] + ] + } + ] + ], + "p:not(p)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ] + } + ] + ], + "p:not(p,a)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "not", + "data": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + } + ], + [ + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ] + } + ] + ], + "p:nth-child( 1 )": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": " 1 " + } + ] + ], + "p:nth-child(1)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "1" + } + ] + ], + "p:nth-child(2)": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2" + } + ] + ], + "p> a": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "p>a": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "a", + "namespace": null + } + ] + ], + "p[lang=en] + p": [ + [ + { + "type": "tag", + "name": "p", + "namespace": null + }, + { + "type": "attribute", + "name": "lang", + "action": "equals", + "value": "en", + "namespace": null, + "ignoreCase": null + }, + { + "type": "adjacent" + }, + { + "type": "tag", + "name": "p", + "namespace": null + } + ] + ], + "param": [ + [ + { + "type": "tag", + "name": "param", + "namespace": null + } + ] + ], + "property[name=prop2]": [ + [ + { + "type": "tag", + "name": "property", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "prop2", + "namespace": null, + "ignoreCase": null + } + ] + ], + "select": [ + [ + { + "type": "tag", + "name": "select", + "namespace": null + } + ] + ], + "select[name='select2'] option:selected": [ + [ + { + "type": "tag", + "name": "select", + "namespace": null + }, + { + "type": "attribute", + "name": "name", + "action": "equals", + "value": "select2", + "namespace": null, + "ignoreCase": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "option", + "namespace": null + }, + { + "type": "pseudo", + "name": "selected", + "data": null + } + ] + ], + "soap\\:Envelope": [ + [ + { + "type": "tag", + "name": "soap:Envelope", + "namespace": null + } + ] + ], + "span": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "span > span": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "span span": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "descendant" + }, + { + "type": "tag", + "name": "span", + "namespace": null + } + ] + ], + "span ~ #level3_2": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "sibling" + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "level3_2", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "span#dupL1": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "dupL1", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "span.span_bar": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "span_bar", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "span.span_foo": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "span_foo", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "span.span_wtf": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "span_wtf", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "span:empty > *": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "pseudo", + "name": "empty", + "data": null + }, + { + "type": "child" + }, + { + "type": "universal", + "namespace": null + } + ] + ], + "span:first-child": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "span:nth-child(5)": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "5" + } + ] + ], + "span[lang=中文]": [ + [ + { + "type": "tag", + "name": "span", + "namespace": null + }, + { + "type": "attribute", + "name": "lang", + "action": "equals", + "value": "中文", + "namespace": null, + "ignoreCase": null + } + ] + ], + "strong": [ + [ + { + "type": "tag", + "name": "strong", + "namespace": null + } + ] + ], + "strong#strong": [ + [ + { + "type": "tag", + "name": "strong", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "strong", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "tostring#toString": [ + [ + { + "type": "tag", + "name": "tostring", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "toString", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "ul > li": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + "ul > li:first-child": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "first-child", + "data": null + } + ] + ], + "ul > li:last-child": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "last-child", + "data": null + } + ] + ], + "ul > li:nth-child(1)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "1" + } + ] + ], + "ul > li:nth-child(2n)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2n" + } + ] + ], + "ul > li:nth-child(2n+1)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "2n+1" + } + ] + ], + "ul > li:nth-child(even)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "even" + } + ] + ], + "ul > li:nth-child(n)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "n" + } + ] + ], + "ul > li:nth-child(n-128)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "n-128" + } + ] + ], + "ul > li:nth-child(odd)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-child", + "data": "odd" + } + ] + ], + "ul > li:nth-last-child(1)": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + }, + { + "type": "pseudo", + "name": "nth-last-child", + "data": "1" + } + ] + ], + "ul#first": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "attribute", + "name": "id", + "action": "equals", + "value": "first", + "namespace": null, + "ignoreCase": "quirks" + } + ] + ], + "ul:empty": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "pseudo", + "name": "empty", + "data": null + } + ] + ], + "ul>li": [ + [ + { + "type": "tag", + "name": "ul", + "namespace": null + }, + { + "type": "child" + }, + { + "type": "tag", + "name": "li", + "namespace": null + } + ] + ], + ".before\\:h-\\[calc\\(100\\%-28px\\)\\]::before": [ + [ + { + "type": "attribute", + "name": "class", + "action": "element", + "value": "before:h-[calc(100%-28px)]", + "namespace": null, + "ignoreCase": "quirks" + }, + { "type": "pseudo-element", "name": "before", "data": null } + ] + ] +} diff --git a/src/__fixtures__/tests.ts b/src/__fixtures__/tests.ts new file mode 100644 index 00000000..52bcb0f0 --- /dev/null +++ b/src/__fixtures__/tests.ts @@ -0,0 +1,1028 @@ +import { + type Selector, + SelectorType, + AttributeAction, + IgnoreCaseMode, +} from "../types.js"; + +export const tests: [ + selector: string, + expected: Selector[][], + message: string, +][] = [ + // Tag names + [ + "div", + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + ], + ], + "simple tag", + ], + [ + "*", + [ + [ + { + type: SelectorType.Universal, + namespace: null, + }, + ], + ], + "universal", + ], + + // Traversal + [ + "div div", + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + { + type: SelectorType.Descendant, + }, + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + ], + ], + "descendant", + ], + [ + "div\t \n \tdiv", + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + { + type: SelectorType.Descendant, + }, + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + ], + ], + "descendant /w whitespace", + ], + [ + "div + div", + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + { + type: SelectorType.Adjacent, + }, + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + ], + ], + "adjacent", + ], + [ + "div ~ div", + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + { + type: SelectorType.Sibling, + }, + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + ], + ], + "sibling", + ], + [ + "p < div", + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "p", + }, + { + type: SelectorType.Parent, + }, + { + type: SelectorType.Tag, + namespace: null, + name: "div", + }, + ], + ], + "parent", + ], + + // Escaped whitespace + [ + String.raw`#\ > a `, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "id", + ignoreCase: IgnoreCaseMode.QuirksMode, + value: " ", + }, + { + type: SelectorType.Child, + }, + { + type: SelectorType.Tag, + namespace: null, + name: "a", + }, + ], + ], + "Space between escaped space and combinator", + ], + [ + String.raw`.\ `, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "class", + action: AttributeAction.Element, + ignoreCase: IgnoreCaseMode.QuirksMode, + value: " ", + }, + ], + ], + "Space after escaped space", + ], + [ + ".m™²³", + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "class", + action: AttributeAction.Element, + ignoreCase: IgnoreCaseMode.QuirksMode, + value: "m™²³", + }, + ], + ], + "Special charecters in selector", + ], + [ + String.raw`\61 `, + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "a", + }, + ], + ], + "Numeric escape with space (BMP)", + ], + [ + String.raw`\1d306\01d306`, + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "\uD834\uDF06\uD834\uDF06", + }, + ], + ], + "Numeric escape (outside BMP)", + ], + [ + String.raw`#\26 B`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "id", + ignoreCase: IgnoreCaseMode.QuirksMode, + value: "&B", + }, + ], + ], + "id selector with escape sequence", + ], + + // Attributes + [ + '[name^="foo["]', + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "name", + ignoreCase: IgnoreCaseMode.Unknown, + action: AttributeAction.Start, + value: "foo[", + }, + ], + ], + "quoted attribute", + ], + [ + '[name^="foo[bar]"]', + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "name", + ignoreCase: IgnoreCaseMode.Unknown, + action: AttributeAction.Start, + value: "foo[bar]", + }, + ], + ], + "quoted attribute", + ], + [ + '[name$="[bar]"]', + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "name", + ignoreCase: IgnoreCaseMode.Unknown, + action: AttributeAction.End, + value: "[bar]", + }, + ], + ], + "quoted attribute", + ], + [ + '[href *= "google"]', + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "href", + ignoreCase: IgnoreCaseMode.Unknown, + action: AttributeAction.Any, + value: "google", + }, + ], + ], + "quoted attribute with spaces", + ], + [ + '[value="\nsome text\n"]', + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "value", + ignoreCase: IgnoreCaseMode.Unknown, + action: AttributeAction.Equals, + value: "\nsome text\n", + }, + ], + ], + "quoted attribute with internal newline", + ], + [ + String.raw`[name=foo\.baz]`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "name", + ignoreCase: IgnoreCaseMode.Unknown, + action: AttributeAction.Equals, + value: "foo.baz", + }, + ], + ], + "attribute with escaped dot", + ], + [ + String.raw`[name=foo\[bar\]]`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "name", + ignoreCase: IgnoreCaseMode.Unknown, + action: AttributeAction.Equals, + value: "foo[bar]", + }, + ], + ], + "attribute with escaped square brackets", + ], + [ + String.raw`[xml\:test]`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "xml:test", + action: AttributeAction.Exists, + value: "", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "escaped attribute", + ], + [ + "[name='foo ~ < > , bar' i]", + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + name: "name", + action: AttributeAction.Equals, + value: "foo ~ < > , bar", + ignoreCase: IgnoreCaseMode.IgnoreCase, + }, + ], + ], + "attribute with previously normalized characters", + ], + + // ID starting with a dot + [ + "#.identifier", + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "id", + ignoreCase: IgnoreCaseMode.QuirksMode, + value: ".identifier", + }, + ], + ], + "ID starting with a dot", + ], + + // Pseudo elements + [ + "::foo", + [ + [ + { + type: SelectorType.PseudoElement, + name: "foo", + data: null, + }, + ], + ], + "pseudo-element", + ], + [ + "::foo()", + [ + [ + { + type: SelectorType.PseudoElement, + name: "foo", + data: "", + }, + ], + ], + "pseudo-element", + ], + [ + "::foo(bar())", + [ + [ + { + type: SelectorType.PseudoElement, + name: "foo", + data: "bar()", + }, + ], + ], + "pseudo-element", + ], + + // Pseudo selectors + [ + ":foo", + [ + [ + { + type: SelectorType.Pseudo, + name: "foo", + data: null, + }, + ], + ], + "pseudo selector without any data", + ], + [ + ":bar(baz)", + [ + [ + { + type: SelectorType.Pseudo, + name: "bar", + data: "baz", + }, + ], + ], + "pseudo selector with data", + ], + [ + ':contains("(foo)")', + [ + [ + { + type: SelectorType.Pseudo, + name: "contains", + data: "(foo)", + }, + ], + ], + "pseudo selector with data", + ], + [ + ":where(a)", + [ + [ + { + type: SelectorType.Pseudo, + name: "where", + data: [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "a", + }, + ], + ], + }, + ], + ], + "pseudo selector with data", + ], + [ + String.raw`:contains("(a((foo\\\))))")`, + [ + [ + { + type: SelectorType.Pseudo, + name: "contains", + data: "(a((foo))))", + }, + ], + ], + "pseudo selector with escaped data", + ], + [ + ":icontains('')", + [ + [ + { + type: SelectorType.Pseudo, + name: "icontains", + data: "", + }, + ], + ], + "pseudo selector with quote-stripped data", + ], + [ + ':contains("(foo)")', + [ + [ + { + type: SelectorType.Pseudo, + name: "contains", + data: "(foo)", + }, + ], + ], + "pseudo selector with data", + ], + + // Multiple selectors + [ + "a , b", + [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "a", + }, + ], + [ + { + type: SelectorType.Tag, + namespace: null, + name: "b", + }, + ], + ], + "multiple selectors", + ], + + [ + ":host(h1, p)", + [ + [ + { + type: SelectorType.Pseudo, + name: "host", + data: [ + [ + { + type: SelectorType.Tag, + namespace: null, + name: "h1", + }, + ], + [ + { + type: SelectorType.Tag, + namespace: null, + name: "p", + }, + ], + ], + }, + ], + ], + "pseudo selector with data", + ], + + /* + * Bad attributes (taken from Sizzle) + * https://github.com/jquery/sizzle/blob/af163873d7cdfc57f18b16c04b1915209533f0b1/test/unit/selector.js#L602-L651 + */ + [ + "[id=types_all]", + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "id", + ignoreCase: IgnoreCaseMode.Unknown, + value: "types_all", + }, + ], + ], + "Underscores don't need escaping", + ], + [ + String.raw`[name=foo\ bar]`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "name", + value: "foo bar", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Escaped space", + ], + [ + String.raw`[name=foo\.baz]`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "name", + value: "foo.baz", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Escaped dot", + ], + [ + String.raw`[name=foo\[baz\]]`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "name", + value: "foo[baz]", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Escaped brackets", + ], + [ + String.raw`[data-attr='foo_baz\']']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "foo_baz']", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Escaped quote + right bracket", + ], + [ + String.raw`[data-attr='\'']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "'", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Quoted quote", + ], + [ + String.raw`[data-attr='\\']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "\\", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Quoted backslash", + ], + [ + String.raw`[data-attr='\\\'']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: String.raw`\'`, + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Quoted backslash quote", + ], + [ + String.raw`[data-attr='\\\\']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "\\\\", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Quoted backslash backslash", + ], + [ + String.raw`[data-attr='\5C\\']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "\\\\", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Quoted backslash backslash (numeric escape)", + ], + [ + String.raw`[data-attr='\5C \\']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "\\\\", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Quoted backslash backslash (numeric escape with trailing space)", + ], + [ + "[data-attr='\\5C\t\\\\']", + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "\\\\", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Quoted backslash backslash (numeric escape with trailing tab)", + ], + [ + String.raw`[data-attr='\04e00']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "\u4E00", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Long numeric escape (BMP)", + ], + [ + String.raw`[data-attr='\01D306A']`, + [ + [ + { + type: SelectorType.Attribute, + namespace: null, + action: AttributeAction.Equals, + name: "data-attr", + value: "\uD834\uDF06A", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Long numeric escape (non-BMP)", + ], + [ + "fOo[baR]", + [ + [ + { + name: "fOo", + type: SelectorType.Tag, + namespace: null, + }, + { + action: AttributeAction.Exists, + name: "baR", + type: SelectorType.Attribute, + namespace: null, + value: "", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "Mixed case tag and attribute name", + ], + + // Namespaces + [ + "foo|bar", + [ + [ + { + name: "bar", + type: SelectorType.Tag, + namespace: "foo", + }, + ], + ], + "basic tag namespace", + ], + [ + "*|bar", + [ + [ + { + name: "bar", + type: SelectorType.Tag, + namespace: "*", + }, + ], + ], + "star tag namespace", + ], + [ + "|bar", + [ + [ + { + name: "bar", + type: SelectorType.Tag, + namespace: "", + }, + ], + ], + "without namespace", + ], + [ + "*|*", + [ + [ + { + type: SelectorType.Universal, + namespace: "*", + }, + ], + ], + "universal with namespace", + ], + [ + "[foo|bar]", + [ + [ + { + action: AttributeAction.Exists, + name: "bar", + type: SelectorType.Attribute, + namespace: "foo", + value: "", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "basic attribute namespace, existential", + ], + [ + "[|bar]", + [ + [ + { + action: AttributeAction.Exists, + name: "bar", + type: SelectorType.Attribute, + namespace: null, + value: "", + ignoreCase: IgnoreCaseMode.Unknown, + }, + ], + ], + "without namespace, existential", + ], + [ + "[foo|bar='baz' i]", + [ + [ + { + action: AttributeAction.Equals, + ignoreCase: IgnoreCaseMode.IgnoreCase, + name: "bar", + type: SelectorType.Attribute, + namespace: "foo", + value: "baz", + }, + ], + ], + "basic attribute namespace, equality", + ], + [ + "[*|bar='baz' i]", + [ + [ + { + action: AttributeAction.Equals, + ignoreCase: IgnoreCaseMode.IgnoreCase, + name: "bar", + type: SelectorType.Attribute, + namespace: "*", + value: "baz", + }, + ], + ], + "star attribute namespace", + ], + [ + "[type='a' S]", + [ + [ + { + action: AttributeAction.Equals, + ignoreCase: IgnoreCaseMode.CaseSensitive, + name: "type", + type: SelectorType.Attribute, + value: "a", + namespace: null, + }, + ], + ], + "case-sensitive attribute selector", + ], + [ + "foo || bar", + [ + [ + { + name: "foo", + namespace: null, + type: SelectorType.Tag, + }, + { + type: SelectorType.ColumnCombinator, + }, + { + name: "bar", + namespace: null, + type: SelectorType.Tag, + }, + ], + ], + "column combinator", + ], + [ + "foo||bar", + [ + [ + { + name: "foo", + namespace: null, + type: SelectorType.Tag, + }, + { + type: SelectorType.ColumnCombinator, + }, + { + name: "bar", + namespace: null, + type: SelectorType.Tag, + }, + ], + ], + "column combinator without whitespace", + ], +]; diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 00000000..8424e07d --- /dev/null +++ b/src/index.ts @@ -0,0 +1,3 @@ +export * from "./types.js"; +export { isTraversal, parse } from "./parse.js"; +export { stringify } from "./stringify.js"; diff --git a/src/parse.spec.ts b/src/parse.spec.ts new file mode 100644 index 00000000..93c9404d --- /dev/null +++ b/src/parse.spec.ts @@ -0,0 +1,69 @@ +import { readFileSync } from "node:fs"; +import { describe, it, expect } from "vitest"; +import { parse } from "./parse.js"; +import { tests } from "./__fixtures__/tests.js"; + +const broken = [ + "[", + "(", + "{", + "()", + "<>", + "{}", + ",", + ",a", + "a,", + "[id=012345678901234567890123456789", + "input[name=foo b]", + "input[name!foo]", + "input[name|]", + "input[name=']", + "input[name=foo[baz]]", + ':has("p")', + ":has(p", + ":foo(p()", + "#", + "##foo", + "/*", +]; + +describe("Parse", () => { + describe("Own tests", () => { + for (const [selector, expected, message] of tests) { + it(message, () => expect(parse(selector)).toStrictEqual(expected)); + } + }); + + describe("Collected selectors (qwery, sizzle, nwmatcher)", () => { + const out = JSON.parse( + readFileSync(`${__dirname}/__fixtures__/out.json`, "utf8"), + ); + for (const s of Object.keys(out)) { + it(s, () => { + expect(parse(s)).toStrictEqual(out[s]); + }); + } + }); + + describe("Broken selectors", () => { + for (const selector of broken) { + it(`should not parse — ${selector}`, () => { + expect(() => parse(selector)).toThrow(Error); + }); + } + }); + + it("should ignore comments", () => { + expect(parse("/* comment1 */ /**/ foo /*comment2*/")).toEqual([ + [{ name: "foo", namespace: null, type: "tag" }], + ]); + + expect(() => parse("/*/")).toThrowError("Comment was not terminated"); + }); + + it("should support legacy pseudo-elements with single colon", () => { + expect(parse(":before")).toEqual([ + [{ name: "before", data: null, type: "pseudo-element" }], + ]); + }); +}); diff --git a/src/parse.ts b/src/parse.ts new file mode 100644 index 00000000..808ebc24 --- /dev/null +++ b/src/parse.ts @@ -0,0 +1,634 @@ +import { + type Selector, + SelectorType, + type AttributeSelector, + type Traversal, + AttributeAction, + type TraversalType, + type DataType, +} from "./types.js"; + +const reName = /^[^#\\]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\u00B0-\uFFFF-])+/; +const reEscape = /\\([\da-f]{1,6}\s?|(\s)|.)/gi; + +const enum CharCode { + LeftParenthesis = 40, + RightParenthesis = 41, + LeftSquareBracket = 91, + RightSquareBracket = 93, + Comma = 44, + Period = 46, + Colon = 58, + SingleQuote = 39, + DoubleQuote = 34, + Plus = 43, + Tilde = 126, + QuestionMark = 63, + ExclamationMark = 33, + Slash = 47, + Equal = 61, + Dollar = 36, + Pipe = 124, + Circumflex = 94, + Asterisk = 42, + GreaterThan = 62, + LessThan = 60, + Hash = 35, + LowerI = 105, + LowerS = 115, + BackSlash = 92, + + // Whitespace + Space = 32, + Tab = 9, + NewLine = 10, + FormFeed = 12, + CarriageReturn = 13, +} + +const actionTypes = new Map([ + [CharCode.Tilde, AttributeAction.Element], + [CharCode.Circumflex, AttributeAction.Start], + [CharCode.Dollar, AttributeAction.End], + [CharCode.Asterisk, AttributeAction.Any], + [CharCode.ExclamationMark, AttributeAction.Not], + [CharCode.Pipe, AttributeAction.Hyphen], +]); + +// Pseudos, whose data property is parsed as well. +const unpackPseudos = new Set([ + "has", + "not", + "matches", + "is", + "where", + "host", + "host-context", +]); + +/** + * Pseudo elements defined in CSS Level 1 and CSS Level 2 can be written with + * a single colon; eg. :before will turn into ::before. + * + * @see {@link https://www.w3.org/TR/2018/WD-selectors-4-20181121/#pseudo-element-syntax} + */ +const pseudosToPseudoElements = new Set([ + "before", + "after", + "first-line", + "first-letter", +]); + +/** + * Checks whether a specific selector is a traversal. + * This is useful eg. in swapping the order of elements that + * are not traversals. + * + * @param selector Selector to check. + */ +export function isTraversal(selector: Selector): selector is Traversal { + switch (selector.type) { + case SelectorType.Adjacent: + case SelectorType.Child: + case SelectorType.Descendant: + case SelectorType.Parent: + case SelectorType.Sibling: + case SelectorType.ColumnCombinator: { + return true; + } + default: { + return false; + } + } +} + +const stripQuotesFromPseudos = new Set(["contains", "icontains"]); + +// Unescape function taken from https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L152 +function funescape(_: string, escaped: string, escapedWhitespace?: string) { + const high = Number.parseInt(escaped, 16) - 0x1_00_00; + + // NaN means non-codepoint + return high !== high || escapedWhitespace + ? escaped + : high < 0 + ? // BMP codepoint + String.fromCharCode(high + 0x1_00_00) + : // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( + (high >> 10) | 0xd8_00, + (high & 0x3_ff) | 0xdc_00, + ); +} + +function unescapeCSS(cssString: string) { + return cssString.replace(reEscape, funescape); +} + +function isQuote(c: number): boolean { + return c === CharCode.SingleQuote || c === CharCode.DoubleQuote; +} + +function isWhitespace(c: number): boolean { + return ( + c === CharCode.Space || + c === CharCode.Tab || + c === CharCode.NewLine || + c === CharCode.FormFeed || + c === CharCode.CarriageReturn + ); +} + +/** + * Parses `selector`. + * + * @param selector Selector to parse. + * @returns Returns a two-dimensional array. + * The first dimension represents selectors separated by commas (eg. `sub1, sub2`), + * the second contains the relevant tokens for that selector. + */ +export function parse(selector: string): Selector[][] { + const subselects: Selector[][] = []; + + const endIndex = parseSelector(subselects, `${selector}`, 0); + + if (endIndex < selector.length) { + throw new Error(`Unmatched selector: ${selector.slice(endIndex)}`); + } + + return subselects; +} + +function parseSelector( + subselects: Selector[][], + selector: string, + selectorIndex: number, +): number { + let tokens: Selector[] = []; + + function getName(offset: number): string { + const match = selector.slice(selectorIndex + offset).match(reName); + + if (!match) { + throw new Error( + `Expected name, found ${selector.slice(selectorIndex)}`, + ); + } + + const [name] = match; + selectorIndex += offset + name.length; + return unescapeCSS(name); + } + + function stripWhitespace(offset: number) { + selectorIndex += offset; + + while ( + selectorIndex < selector.length && + isWhitespace(selector.charCodeAt(selectorIndex)) + ) { + selectorIndex++; + } + } + + function readValueWithParenthesis(): string { + selectorIndex += 1; + const start = selectorIndex; + + for ( + let counter = 1; + selectorIndex < selector.length; + selectorIndex++ + ) { + switch (selector.charCodeAt(selectorIndex)) { + case CharCode.BackSlash: { + // Skip next character + selectorIndex += 1; + break; + } + case CharCode.LeftParenthesis: { + counter += 1; + break; + } + case CharCode.RightParenthesis: { + counter -= 1; + + if (counter === 0) { + return unescapeCSS( + selector.slice(start, selectorIndex++), + ); + } + + break; + } + } + } + + throw new Error("Parenthesis not matched"); + } + + function ensureNotTraversal() { + if (tokens.length > 0 && isTraversal(tokens[tokens.length - 1])) { + throw new Error("Did not expect successive traversals."); + } + } + + function addTraversal(type: TraversalType) { + if ( + tokens.length > 0 && + tokens[tokens.length - 1].type === SelectorType.Descendant + ) { + tokens[tokens.length - 1].type = type; + return; + } + + ensureNotTraversal(); + + tokens.push({ type }); + } + + function addSpecialAttribute(name: string, action: AttributeAction) { + tokens.push({ + type: SelectorType.Attribute, + name, + action, + value: getName(1), + namespace: null, + ignoreCase: "quirks", + }); + } + + /** + * We have finished parsing the current part of the selector. + * + * Remove descendant tokens at the end if they exist, + * and return the last index, so that parsing can be + * picked up from here. + */ + function finalizeSubselector() { + if ( + tokens.length > 0 && + tokens[tokens.length - 1].type === SelectorType.Descendant + ) { + tokens.pop(); + } + + if (tokens.length === 0) { + throw new Error("Empty sub-selector"); + } + + subselects.push(tokens); + } + + stripWhitespace(0); + + if (selector.length === selectorIndex) { + return selectorIndex; + } + + loop: while (selectorIndex < selector.length) { + const firstChar = selector.charCodeAt(selectorIndex); + + switch (firstChar) { + // Whitespace + case CharCode.Space: + case CharCode.Tab: + case CharCode.NewLine: + case CharCode.FormFeed: + case CharCode.CarriageReturn: { + if ( + tokens.length === 0 || + tokens[0].type !== SelectorType.Descendant + ) { + ensureNotTraversal(); + tokens.push({ type: SelectorType.Descendant }); + } + + stripWhitespace(1); + break; + } + // Traversals + case CharCode.GreaterThan: { + addTraversal(SelectorType.Child); + stripWhitespace(1); + break; + } + case CharCode.LessThan: { + addTraversal(SelectorType.Parent); + stripWhitespace(1); + break; + } + case CharCode.Tilde: { + addTraversal(SelectorType.Sibling); + stripWhitespace(1); + break; + } + case CharCode.Plus: { + addTraversal(SelectorType.Adjacent); + stripWhitespace(1); + break; + } + // Special attribute selectors: .class, #id + case CharCode.Period: { + addSpecialAttribute("class", AttributeAction.Element); + break; + } + case CharCode.Hash: { + addSpecialAttribute("id", AttributeAction.Equals); + break; + } + case CharCode.LeftSquareBracket: { + stripWhitespace(1); + + // Determine attribute name and namespace + + let name: string; + let namespace: string | null = null; + + if (selector.charCodeAt(selectorIndex) === CharCode.Pipe) { + // Equivalent to no namespace + name = getName(1); + } else if (selector.startsWith("*|", selectorIndex)) { + namespace = "*"; + name = getName(2); + } else { + name = getName(0); + + if ( + selector.charCodeAt(selectorIndex) === CharCode.Pipe && + selector.charCodeAt(selectorIndex + 1) !== + CharCode.Equal + ) { + namespace = name; + name = getName(1); + } + } + + stripWhitespace(0); + + // Determine comparison operation + + let action: AttributeAction = AttributeAction.Exists; + const possibleAction = actionTypes.get( + selector.charCodeAt(selectorIndex), + ); + + if (possibleAction) { + action = possibleAction; + + if ( + selector.charCodeAt(selectorIndex + 1) !== + CharCode.Equal + ) { + throw new Error("Expected `=`"); + } + + stripWhitespace(2); + } else if ( + selector.charCodeAt(selectorIndex) === CharCode.Equal + ) { + action = AttributeAction.Equals; + stripWhitespace(1); + } + + // Determine value + + let value = ""; + let ignoreCase: boolean | null = null; + + if (action !== "exists") { + if (isQuote(selector.charCodeAt(selectorIndex))) { + const quote = selector.charCodeAt(selectorIndex); + selectorIndex += 1; + const sectionStart = selectorIndex; + while ( + selectorIndex < selector.length && + selector.charCodeAt(selectorIndex) !== quote + ) { + selectorIndex += + // Skip next character if it is escaped + selector.charCodeAt(selectorIndex) === + CharCode.BackSlash + ? 2 + : 1; + } + + if (selector.charCodeAt(selectorIndex) !== quote) { + throw new Error("Attribute value didn't end"); + } + + value = unescapeCSS( + selector.slice(sectionStart, selectorIndex), + ); + selectorIndex += 1; + } else { + const valueStart = selectorIndex; + + while ( + selectorIndex < selector.length && + !isWhitespace(selector.charCodeAt(selectorIndex)) && + selector.charCodeAt(selectorIndex) !== + CharCode.RightSquareBracket + ) { + selectorIndex += + // Skip next character if it is escaped + selector.charCodeAt(selectorIndex) === + CharCode.BackSlash + ? 2 + : 1; + } + + value = unescapeCSS( + selector.slice(valueStart, selectorIndex), + ); + } + + stripWhitespace(0); + + // See if we have a force ignore flag + switch (selector.charCodeAt(selectorIndex) | 0x20) { + // If the forceIgnore flag is set (either `i` or `s`), use that value + case CharCode.LowerI: { + ignoreCase = true; + stripWhitespace(1); + break; + } + case CharCode.LowerS: { + ignoreCase = false; + stripWhitespace(1); + break; + } + } + } + + if ( + selector.charCodeAt(selectorIndex) !== + CharCode.RightSquareBracket + ) { + throw new Error("Attribute selector didn't terminate"); + } + + selectorIndex += 1; + + const attributeSelector: AttributeSelector = { + type: SelectorType.Attribute, + name, + action, + value, + namespace, + ignoreCase, + }; + + tokens.push(attributeSelector); + break; + } + case CharCode.Colon: { + if (selector.charCodeAt(selectorIndex + 1) === CharCode.Colon) { + tokens.push({ + type: SelectorType.PseudoElement, + name: getName(2).toLowerCase(), + data: + selector.charCodeAt(selectorIndex) === + CharCode.LeftParenthesis + ? readValueWithParenthesis() + : null, + }); + break; + } + + const name = getName(1).toLowerCase(); + + if (pseudosToPseudoElements.has(name)) { + tokens.push({ + type: SelectorType.PseudoElement, + name, + data: null, + }); + break; + } + + let data: DataType = null; + + if ( + selector.charCodeAt(selectorIndex) === + CharCode.LeftParenthesis + ) { + if (unpackPseudos.has(name)) { + if (isQuote(selector.charCodeAt(selectorIndex + 1))) { + throw new Error( + `Pseudo-selector ${name} cannot be quoted`, + ); + } + + data = []; + selectorIndex = parseSelector( + data, + selector, + selectorIndex + 1, + ); + + if ( + selector.charCodeAt(selectorIndex) !== + CharCode.RightParenthesis + ) { + throw new Error( + `Missing closing parenthesis in :${name} (${selector})`, + ); + } + + selectorIndex += 1; + } else { + data = readValueWithParenthesis(); + + if (stripQuotesFromPseudos.has(name)) { + const quot = data.charCodeAt(0); + + if ( + quot === data.charCodeAt(data.length - 1) && + isQuote(quot) + ) { + data = data.slice(1, -1); + } + } + + data = unescapeCSS(data); + } + } + + tokens.push({ type: SelectorType.Pseudo, name, data }); + break; + } + case CharCode.Comma: { + finalizeSubselector(); + tokens = []; + stripWhitespace(1); + break; + } + default: { + if (selector.startsWith("/*", selectorIndex)) { + const endIndex = selector.indexOf("*/", selectorIndex + 2); + + if (endIndex < 0) { + throw new Error("Comment was not terminated"); + } + + selectorIndex = endIndex + 2; + + // Remove leading whitespace + if (tokens.length === 0) { + stripWhitespace(0); + } + + break; + } + + let namespace = null; + let name: string; + + if (firstChar === CharCode.Asterisk) { + selectorIndex += 1; + name = "*"; + } else if (firstChar === CharCode.Pipe) { + name = ""; + + if ( + selector.charCodeAt(selectorIndex + 1) === CharCode.Pipe + ) { + addTraversal(SelectorType.ColumnCombinator); + stripWhitespace(2); + break; + } + } else if (reName.test(selector.slice(selectorIndex))) { + name = getName(0); + } else { + break loop; + } + + if ( + selector.charCodeAt(selectorIndex) === CharCode.Pipe && + selector.charCodeAt(selectorIndex + 1) !== CharCode.Pipe + ) { + namespace = name; + if ( + selector.charCodeAt(selectorIndex + 1) === + CharCode.Asterisk + ) { + name = "*"; + selectorIndex += 2; + } else { + name = getName(1); + } + } + + tokens.push( + name === "*" + ? { type: SelectorType.Universal, namespace } + : { type: SelectorType.Tag, name, namespace }, + ); + } + } + } + + finalizeSubselector(); + return selectorIndex; +} diff --git a/src/stringify.spec.ts b/src/stringify.spec.ts new file mode 100644 index 00000000..3a7ce38b --- /dev/null +++ b/src/stringify.spec.ts @@ -0,0 +1,23 @@ +import { readFileSync } from "node:fs"; +import { describe, it, expect } from "vitest"; +import { parse, stringify } from "./index.js"; +import { tests } from "./__fixtures__/tests.js"; + +describe("Stringify & re-parse", () => { + describe("Own tests", () => { + for (const [selector, expected, message] of tests) { + it(`${message} (${selector})`, () => { + expect(parse(stringify(expected))).toStrictEqual(expected); + }); + } + }); + + it("Collected Selectors (qwery, sizzle, nwmatcher)", () => { + const out = JSON.parse( + readFileSync(`${__dirname}/__fixtures__/out.json`, "utf8"), + ); + for (const s of Object.keys(out)) { + expect(parse(stringify(out[s]))).toStrictEqual(out[s]); + } + }); +}); diff --git a/src/stringify.ts b/src/stringify.ts new file mode 100644 index 00000000..216d070a --- /dev/null +++ b/src/stringify.ts @@ -0,0 +1,204 @@ +import { type Selector, SelectorType, AttributeAction } from "./types.js"; + +const attribValueChars = ["\\", '"']; +const pseudoValueChars = [...attribValueChars, "(", ")"]; + +const charsToEscapeInAttributeValue = new Set( + attribValueChars.map((c) => c.charCodeAt(0)), +); +const charsToEscapeInPseudoValue = new Set( + pseudoValueChars.map((c) => c.charCodeAt(0)), +); +const charsToEscapeInName = new Set( + [ + ...pseudoValueChars, + "~", + "^", + "$", + "*", + "+", + "!", + "|", + ":", + "[", + "]", + " ", + ".", + "%", + ].map((c) => c.charCodeAt(0)), +); + +/** + * Turns `selector` back into a string. + * + * @param selector Selector to stringify. + */ +export function stringify(selector: Selector[][]): string { + return selector + .map((token) => + token + .map((token, index, array) => + stringifyToken(token, index, array), + ) + .join(""), + ) + .join(", "); +} + +function stringifyToken( + token: Selector, + index: number, + array: Selector[], +): string { + switch (token.type) { + // Simple types + case SelectorType.Child: { + return index === 0 ? "> " : " > "; + } + case SelectorType.Parent: { + return index === 0 ? "< " : " < "; + } + case SelectorType.Sibling: { + return index === 0 ? "~ " : " ~ "; + } + case SelectorType.Adjacent: { + return index === 0 ? "+ " : " + "; + } + case SelectorType.Descendant: { + return " "; + } + case SelectorType.ColumnCombinator: { + return index === 0 ? "|| " : " || "; + } + case SelectorType.Universal: { + // Return an empty string if the selector isn't needed. + return token.namespace === "*" && + index + 1 < array.length && + "name" in array[index + 1] + ? "" + : `${getNamespace(token.namespace)}*`; + } + + case SelectorType.Tag: { + return getNamespacedName(token); + } + + case SelectorType.PseudoElement: { + return `::${escapeName(token.name, charsToEscapeInName)}${ + token.data === null + ? "" + : `(${escapeName(token.data, charsToEscapeInPseudoValue)})` + }`; + } + + case SelectorType.Pseudo: { + return `:${escapeName(token.name, charsToEscapeInName)}${ + token.data === null + ? "" + : `(${ + typeof token.data === "string" + ? escapeName( + token.data, + charsToEscapeInPseudoValue, + ) + : stringify(token.data) + })` + }`; + } + + case SelectorType.Attribute: { + if ( + token.name === "id" && + token.action === AttributeAction.Equals && + token.ignoreCase === "quirks" && + !token.namespace + ) { + return `#${escapeName(token.value, charsToEscapeInName)}`; + } + if ( + token.name === "class" && + token.action === AttributeAction.Element && + token.ignoreCase === "quirks" && + !token.namespace + ) { + return `.${escapeName(token.value, charsToEscapeInName)}`; + } + + const name = getNamespacedName(token); + + if (token.action === AttributeAction.Exists) { + return `[${name}]`; + } + + return `[${name}${getActionValue(token.action)}="${escapeName( + token.value, + charsToEscapeInAttributeValue, + )}"${ + token.ignoreCase === null ? "" : token.ignoreCase ? " i" : " s" + }]`; + } + } +} + +function getActionValue(action: AttributeAction): string { + switch (action) { + case AttributeAction.Equals: { + return ""; + } + case AttributeAction.Element: { + return "~"; + } + case AttributeAction.Start: { + return "^"; + } + case AttributeAction.End: { + return "$"; + } + case AttributeAction.Any: { + return "*"; + } + case AttributeAction.Not: { + return "!"; + } + case AttributeAction.Hyphen: { + return "|"; + } + default: { + throw new Error("Shouldn't be here"); + } + } +} + +function getNamespacedName(token: { + name: string; + namespace: string | null; +}): string { + return `${getNamespace(token.namespace)}${escapeName( + token.name, + charsToEscapeInName, + )}`; +} + +function getNamespace(namespace: string | null): string { + return namespace === null + ? "" + : `${ + namespace === "*" + ? "*" + : escapeName(namespace, charsToEscapeInName) + }|`; +} + +function escapeName(name: string, charsToEscape: Set): string { + let lastIndex = 0; + let escapedName = ""; + + for (let index = 0; index < name.length; index++) { + if (charsToEscape.has(name.charCodeAt(index))) { + escapedName += `${name.slice(lastIndex, index)}\\${name.charAt(index)}`; + lastIndex = index + 1; + } + } + + return escapedName.length > 0 ? escapedName + name.slice(lastIndex) : name; +} diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 00000000..e838e037 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,94 @@ +export type Selector = + | PseudoSelector + | PseudoElement + | AttributeSelector + | TagSelector + | UniversalSelector + | Traversal; + +export enum SelectorType { + Attribute = "attribute", + Pseudo = "pseudo", + PseudoElement = "pseudo-element", + Tag = "tag", + Universal = "universal", + + // Traversals + Adjacent = "adjacent", + Child = "child", + Descendant = "descendant", + Parent = "parent", + Sibling = "sibling", + ColumnCombinator = "column-combinator", +} + +/** + * Modes for ignore case. + * + * This could be updated to an enum, and the object is + * the current stand-in that will allow code to be updated + * without big changes. + */ +export const IgnoreCaseMode = { + Unknown: null, + QuirksMode: "quirks", + IgnoreCase: true, + CaseSensitive: false, +} as const; + +export interface AttributeSelector { + type: SelectorType.Attribute; + name: string; + action: AttributeAction; + value: string; + ignoreCase: "quirks" | boolean | null; + namespace: string | null; +} + +export type DataType = Selector[][] | null | string; + +export interface PseudoSelector { + type: SelectorType.Pseudo; + name: string; + data: DataType; +} + +export interface PseudoElement { + type: SelectorType.PseudoElement; + name: string; + data: string | null; +} + +export interface TagSelector { + type: SelectorType.Tag; + name: string; + namespace: string | null; +} + +export interface UniversalSelector { + type: SelectorType.Universal; + namespace: string | null; +} + +export interface Traversal { + type: TraversalType; +} + +export enum AttributeAction { + Any = "any", + Element = "element", + End = "end", + Equals = "equals", + Exists = "exists", + Hyphen = "hyphen", + Not = "not", + Start = "start", +} + +export type TraversalType = + | SelectorType.Adjacent + | SelectorType.Child + | SelectorType.Descendant + | SelectorType.Parent + | SelectorType.Sibling + | SelectorType.ColumnCombinator; diff --git a/src/wpt.spec.ts b/src/wpt.spec.ts new file mode 100644 index 00000000..bf23ebda --- /dev/null +++ b/src/wpt.spec.ts @@ -0,0 +1,185 @@ +/** + * @fileoverview CSS Selector parsing tests from WPT + * @see https://github.com/web-platform-tests/wpt/tree/0bb883967c888261a8372923fd61eb5ad14305b2/css/selectors/parsing + * @license BSD-3-Clause (https://github.com/web-platform-tests/wpt/blob/master/LICENSE.md) + */ + +import { describe, it, expect } from "vitest"; +import { parse, stringify } from "./index.js"; + +function test_valid_selector( + selector: string, + serialized: string | string[] = selector, +) { + const result = stringify(parse(selector)); + if (Array.isArray(serialized)) { + // Should be a part of the array + expect(serialized).toContain(result); + } else { + expect(result).toStrictEqual(serialized); + } +} + +function test_invalid_selector(selector: string) { + expect(() => parse(selector)).toThrow(Error); +} + +describe("Web Platform Tests", () => { + it("Attribute selectors", () => { + // Attribute presence and value selectors + test_valid_selector("[att]"); + test_valid_selector("[att=val]", '[att="val"]'); + test_valid_selector("[att~=val]", '[att~="val"]'); + test_valid_selector("[att|=val]", '[att|="val"]'); + test_valid_selector("h1[title]"); + test_valid_selector("span[class='example']", 'span[class="example"]'); + test_valid_selector("a[hreflang=fr]", 'a[hreflang="fr"]'); + test_valid_selector("a[hreflang|='en']", 'a[hreflang|="en"]'); + + // Substring matching attribute selectors + test_valid_selector("[att^=val]", '[att^="val"]'); + test_valid_selector("[att$=val]", '[att$="val"]'); + test_valid_selector("[att*=val]", '[att*="val"]'); + test_valid_selector('object[type^="image/"]'); + test_valid_selector('a[href$=".html"]'); + test_valid_selector('p[title*="hello"]'); + + // From Attribute selectors and namespaces examples in spec: + test_valid_selector("[*|att]"); + test_valid_selector("[|att]", "[att]"); + }); + + it("Child combinators", () => { + test_valid_selector("body > p"); + test_valid_selector("div ol>li p", "div ol > li p"); + }); + + it("Class selectors", () => { + test_valid_selector("*.pastoral", ["*.pastoral", ".pastoral"]); + test_valid_selector(".pastoral", ["*.pastoral", ".pastoral"]); + test_valid_selector("h1.pastoral"); + test_valid_selector("p.pastoral.marine"); + }); + + it("Descendant combinator", () => { + test_valid_selector("h1 em"); + test_valid_selector("div * p"); + test_valid_selector("div p *[href]", ["div p *[href]", "div p [href]"]); + }); + + it(":focus-visible pseudo-class", () => { + test_valid_selector(":focus-visible"); + test_valid_selector("a:focus-visible"); + test_valid_selector(":focus:not(:focus-visible)"); + }); + + it("The relational pseudo-class", () => { + test_valid_selector(":has(a)"); + test_valid_selector(":has(#a)"); + test_valid_selector(":has(.a)"); + test_valid_selector(":has([a])"); + test_valid_selector(':has([a="b"])'); + test_valid_selector(':has([a|="b"])'); + test_valid_selector(":has(:hover)"); + test_valid_selector("*:has(.a)", ["*:has(.a)", ":has(.a)"]); + test_valid_selector(".a:has(.b)"); + test_valid_selector(".a:has(> .b)"); + test_valid_selector(".a:has(~ .b)"); + test_valid_selector(".a:has(+ .b)"); + test_valid_selector(".a:has(.b) .c"); + test_valid_selector(".a .b:has(.c)"); + test_valid_selector(".a .b:has(.c .d)"); + test_valid_selector(".a .b:has(.c .d) .e"); + test_valid_selector(".a:has(.b:has(.c))"); + test_valid_selector(".a:has(.b:is(.c .d))"); + test_valid_selector(".a:has(.b:is(.c:has(.d) .e))"); + test_valid_selector(".a:is(.b:has(.c) .d)"); + test_valid_selector(".a:not(:has(.b))"); + test_valid_selector(".a:has(:not(.b))"); + test_valid_selector(".a:has(.b):has(.c)"); + test_valid_selector("*|*:has(*)", ":has(*)"); + test_valid_selector(":has(*|*)"); + test_invalid_selector(".a:has()"); + }); + + it("ID selectors", () => { + test_valid_selector("h1#chapter1"); + test_valid_selector("#chapter1"); + test_valid_selector("*#z98y", ["*#z98y", "#z98y"]); + }); + + it("The Matches-Any Pseudo-class: ':is()'", () => { + test_valid_selector( + ":is(ul,ol,.list) > [hidden]", + ":is(ul, ol, .list) > [hidden]", + ); + test_valid_selector(":is(:hover,:focus)", ":is(:hover, :focus)"); + test_valid_selector("a:is(:not(:hover))"); + + test_valid_selector(":is(#a)"); + test_valid_selector(".a.b ~ :is(.c.d ~ .e.f)"); + test_valid_selector(".a.b ~ .c.d:is(span.e + .f, .g.h > .i.j .k)"); + }); + + it("The negation pseudo-class", () => { + test_valid_selector("button:not([disabled])"); + test_valid_selector("*:not(foo)", ["*:not(foo)", ":not(foo)"]); + test_valid_selector(":not(:link):not(:visited)"); + test_valid_selector("*|*:not(*)", ":not(*)"); + test_valid_selector(":not(:hover)"); + test_valid_selector(":not(*|*)"); + test_valid_selector("foo:not(bar)"); + test_valid_selector(":not(:not(foo))"); + test_valid_selector(":not(.a .b)"); + test_valid_selector(":not(.a + .b)"); + test_valid_selector(":not(.a .b ~ c)"); + test_valid_selector(":not(span.a, div.b)"); + test_valid_selector(":not(.a .b ~ c, .d .e)"); + test_valid_selector(":not(:host)"); + test_valid_selector(":not(:host(.a))"); + test_valid_selector(":host(:not(.a))"); + test_valid_selector(":not(:host(:not(.a)))"); + test_valid_selector( + ":not([disabled][selected])", + ":not([disabled][selected])", + ); + test_valid_selector( + ":not([disabled],[selected])", + ":not([disabled], [selected])", + ); + + test_invalid_selector(":not()"); + test_invalid_selector(":not(:not())"); + }); + + it("Sibling combinators", () => { + test_valid_selector("math + p"); + test_valid_selector("h1.opener + h2"); + test_valid_selector("h1 ~ pre"); + }); + + it("Universal selector", () => { + test_valid_selector("*"); + test_valid_selector("div :first-child", [ + "div *:first-child", + "div :first-child", + ]); + test_valid_selector("div *:first-child", [ + "div *:first-child", + "div :first-child", + ]); + }); + + it("The Specificity-adjustment Pseudo-class: ':where()'", () => { + test_valid_selector( + ":where(ul,ol,.list) > [hidden]", + ":where(ul, ol, .list) > [hidden]", + ); + test_valid_selector(":where(:hover,:focus)", ":where(:hover, :focus)"); + test_valid_selector("a:where(:not(:hover))"); + + test_valid_selector(":where(#a)"); + test_valid_selector(".a.b ~ :where(.c.d ~ .e.f)"); + test_valid_selector(".a.b ~ .c.d:where(span.e + .f, .g.h > .i.j .k)"); + }); +}); diff --git a/stringify.js b/stringify.js deleted file mode 100644 index dff0db69..00000000 --- a/stringify.js +++ /dev/null @@ -1,55 +0,0 @@ -var actionTypes = { - "equals": "", - "element": "~", - "start": "^", - "end": "$", - "any": "*", - "not": "!", - "hyphen": "|" -}; - -var simpleSelectors = { - __proto__: null, - child: " > ", - parent: " < ", - sibling: " ~ ", - adjacent: " + ", - descendant: " ", - universal: "*" -}; - -module.exports = stringify; - -function stringify(token){ - return token.map(stringifySubselector).join(", "); -} - -function stringifySubselector(token){ - return token.map(stringifyToken).join(""); -} - -function stringifyToken(token){ - if(token.type in simpleSelectors) return simpleSelectors[token.type]; - - if(token.type === "tag") return escapeName(token.name); - - if(token.type === "attribute"){ - if(token.action === "exists") return "[" + escapeName(token.name) + "]"; - if(token.name === "id" && token.action === "equals" && !token.ignoreCase) return "#" + escapeName(token.value); - if(token.name === "class" && token.action === "element" && !token.ignoreCase) return "." + escapeName(token.value); - return "[" + - escapeName(token.name) + actionTypes[token.action] + "='" + - escapeName(token.value) + "'" + (token.ignoreCase ? "i" : "") + "]"; - } - - if(token.type === "pseudo"){ - if(token.data === null) return ":" + escapeName(token.name); - if(typeof token.data === "string") return ":" + escapeName(token.name) + "(" + token.data + ")"; - return ":" + escapeName(token.name) + "(" + stringify(token.data) + ")"; - } -} - -function escapeName(str){ - //TODO - return str; -} diff --git a/tests/out.json b/tests/out.json deleted file mode 100644 index 1f187999..00000000 --- a/tests/out.json +++ /dev/null @@ -1,15740 +0,0 @@ -{ - "": [ - [] - ], - "\t": [ - [] - ], - "\t#qunit-fixture p": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "\n#qunit-fixture p": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "\f#qunit-fixture p": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "\r#qunit-fixture p": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - " ": [ - [] - ], - " #qunit-fixture p": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - " a ": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ], - " p ": [ - [ - { - "type": "tag", - "name": "p" - } - ] - ], - "#__sizzle__": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "__sizzle__", - "ignoreCase": false - } - ] - ], - "#ap :nth-last-of-type(0n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "0n+3" - } - ] - ], - "#ap :nth-last-of-type(2n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "2n" - } - ] - ], - "#ap :nth-last-of-type(2n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "2n+1" - } - ] - ], - "#ap :nth-last-of-type(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "3" - } - ] - ], - "#ap :nth-last-of-type(even)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "even" - } - ] - ], - "#ap :nth-last-of-type(n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "n" - } - ] - ], - "#ap :nth-last-of-type(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "odd" - } - ] - ], - "#ap :nth-of-type(0n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "0n+3" - } - ] - ], - "#ap :nth-of-type(2n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "2n" - } - ] - ], - "#ap :nth-of-type(2n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "2n+1" - } - ] - ], - "#ap :nth-of-type(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "3" - } - ] - ], - "#ap :nth-of-type(even)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "even" - } - ] - ], - "#ap :nth-of-type(n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "n" - } - ] - ], - "#ap :nth-of-type(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "odd" - } - ] - ], - "#ap a[hreflang!='en']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "hreflang", - "action": "not", - "value": "en", - "ignoreCase": false - } - ] - ], - "#ap:has(*), #ap:has(*)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ], - "#asdfasdf #foobar": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "asdfasdf", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foobar", - "ignoreCase": false - } - ] - ], - "#attr-child-boosh": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attr-child-boosh", - "ignoreCase": false - } - ] - ], - "#attributes a[href=\"#aname\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "equals", - "value": "#aname", - "ignoreCase": false - } - ] - ], - "#attributes div[test$=foo]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "end", - "value": "foo", - "ignoreCase": false - } - ] - ], - "#attributes div[test*=hree]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "any", - "value": "hree", - "ignoreCase": false - } - ] - ], - "#attributes div[test=\"two-foo\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "equals", - "value": "two-foo", - "ignoreCase": false - } - ] - ], - "#attributes div[test='two-foo']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "equals", - "value": "two-foo", - "ignoreCase": false - } - ] - ], - "#attributes div[test=two-foo]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "equals", - "value": "two-foo", - "ignoreCase": false - } - ] - ], - "#attributes div[test^=two]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "start", - "value": "two", - "ignoreCase": false - } - ] - ], - "#attributes div[test|=\"two-foo\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "hyphen", - "value": "two-foo", - "ignoreCase": false - } - ] - ], - "#attributes div[test|=two]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "hyphen", - "value": "two", - "ignoreCase": false - } - ] - ], - "#attributes div[test~=three]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "element", - "value": "three", - "ignoreCase": false - } - ] - ], - "#attributes div[unique-test]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attributes", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "unique-test", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#backslash\\\\foo": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "backslash\\foo", - "ignoreCase": false - } - ] - ], - "#blargh": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "blargh", - "ignoreCase": false - } - ] - ], - "#body": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "body", - "ignoreCase": false - } - ] - ], - "#boosh": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "#boosh #booshTest": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - } - ] - ], - "#boosh *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - } - ] - ], - "#boosh .a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - } - ] - ], - "#boosh div": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "#boosh div div": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "#boosh div,#boosh span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#boosh div.a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - } - ] - ], - "#boosh div[test=fg]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "equals", - "value": "fg", - "ignoreCase": false - } - ] - ], - "#boosh div[test]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "test", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#boosh span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#boosh,#boosh": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "#boosh,.apples,#boosh": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "apples", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "#boosh>.a>#booshTest": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - } - ] - ], - "#booshTest": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - } - ] - ], - "#direct-descend > .direct-descend": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - } - ] - ], - "#direct-descend > .direct-descend > .lvl2": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "lvl2", - "ignoreCase": false - } - ] - ], - "#dupContainer span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "dupContainer", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#dupL1": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "dupL1", - "ignoreCase": false - } - ] - ], - "#dupL2": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "dupL2", - "ignoreCase": false - } - ] - ], - "#emem": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "emem", - "ignoreCase": false - } - ] - ], - "#first ~ div": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "first", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "#firstUL > *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "firstUL", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "universal" - } - ] - ], - "#firstp #foobar": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "firstp", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foobar", - "ignoreCase": false - } - ] - ], - "#firstp #simon1": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "firstp", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "simon1", - "ignoreCase": false - } - ] - ], - "#fixtures": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "fixtures", - "ignoreCase": false - } - ] - ], - "#fixtures a *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "fixtures", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "descendant" - }, - { - "type": "universal" - } - ] - ], - "#fixtures h1": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "fixtures", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "h1" - } - ] - ], - "#foo": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo", - "ignoreCase": false - } - ] - ], - "#foo > *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "universal" - } - ] - ], - "#foo a:not(.blog)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#foo a:not(.blog.link)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "link", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#foo a:not(.link)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "link", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#foo\\:bar": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo:bar", - "ignoreCase": false - } - ] - ], - "#foo\\:bar span:not(:input)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo:bar", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "input", - "data": null - } - ] - ] - } - ] - ], - "#form": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - } - ] - ], - "#form #first": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "first", - "ignoreCase": false - } - ] - ], - "#form :checkbox": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "checkbox", - "data": null - } - ] - ], - "#form :checkbox:checked": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "checkbox", - "data": null - }, - { - "type": "pseudo", - "name": "checked", - "data": null - } - ] - ], - "#form :input": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "input", - "data": null - } - ] - ], - "#form :radio": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "radio", - "data": null - } - ] - ], - "#form :radio:checked": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "radio", - "data": null - }, - { - "type": "pseudo", - "name": "checked", - "data": null - } - ] - ], - "#form :radio:checked, #form :checkbox:checked": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "radio", - "data": null - }, - { - "type": "pseudo", - "name": "checked", - "data": null - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "checkbox", - "data": null - }, - { - "type": "pseudo", - "name": "checked", - "data": null - } - ] - ], - "#form :text": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "text", - "data": null - } - ] - ], - "#form > #option1a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "option1a", - "ignoreCase": false - } - ] - ], - "#form > #radio1": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "radio1", - "ignoreCase": false - } - ] - ], - "#form [for=action]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "for", - "action": "equals", - "value": "action", - "ignoreCase": false - } - ] - ], - "#form input[type='radio'], #form input[type=\"hidden\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "radio", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "hidden", - "ignoreCase": false - } - ] - ], - "#form input[type='radio'], #form input[type='hidden']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "radio", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "hidden", - "ignoreCase": false - } - ] - ], - "#form input[type='radio'], #form input[type=hidden]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "radio", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "hidden", - "ignoreCase": false - } - ] - ], - "#form input[type=search]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "search", - "ignoreCase": false - } - ] - ], - "#form input[type=text]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "text", - "ignoreCase": false - } - ] - ], - "#form option:checked": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "checked", - "data": null - } - ] - ], - "#form option:not(:contains(Nothing),#option1b,:selected)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "Nothing" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "option1b", - "ignoreCase": false - } - ], - [ - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ] - } - ] - ], - "#form option:not(:not(:selected))[id^='option3']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ] - } - ] - ] - }, - { - "type": "attribute", - "name": "id", - "action": "start", - "value": "option3", - "ignoreCase": false - } - ] - ], - "#form option:selected": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ], - "#form select:has(option:first-child:contains('o'))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "select" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - }, - { - "type": "pseudo", - "name": "contains", - "data": "o" - } - ] - ] - } - ] - ], - "#form select:not(.select1):contains(Nothing) > option:not(option)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "select" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "select1", - "ignoreCase": false - } - ] - ] - }, - { - "type": "pseudo", - "name": "contains", - "data": "Nothing" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "option" - } - ] - ] - } - ] - ], - "#form select:not([multiple])": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "select" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "multiple", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#form select:not([name='select1'])": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "select" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "select1", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#form select:not([name=select1])": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "select" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "select1", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#grandfather > div:not(#uncle) #son": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "grandfather", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "uncle", - "ignoreCase": false - } - ] - ] - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "son", - "ignoreCase": false - } - ] - ], - "#groups ~ a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "groups", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#hidden1:enabled": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hidden1", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "enabled", - "data": null - } - ] - ], - "#hsoob": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - } - ] - ], - "#hsoob #spanny": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "spanny", - "ignoreCase": false - } - ] - ], - "#hsoob .a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - } - ] - ], - "#hsoob > div > .h": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "h", - "ignoreCase": false - } - ] - ], - "#hsoob div": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "#hsoob div div": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "#hsoob div.a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - } - ] - ], - "#hsoob span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "hsoob", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#idTest": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "idTest", - "ignoreCase": false - } - ] - ], - "#item_1": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_1", - "ignoreCase": false - } - ] - ], - "#item_3": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_3", - "ignoreCase": false - } - ] - ], - "#length ~ input": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "length", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "input" - } - ] - ], - "#lengthtest": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "lengthtest", - "ignoreCase": false - } - ] - ], - "#level1 *:first-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#level1 *:last-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "#level1 *:only-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "only-child", - "data": null - } - ] - ], - "#level1 *[id$=\"_1\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "id", - "action": "end", - "value": "_1", - "ignoreCase": false - } - ] - ], - "#level1 *[id$=_1]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "id", - "action": "end", - "value": "_1", - "ignoreCase": false - } - ] - ], - "#level1 *[id*=\"2\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "id", - "action": "any", - "value": "2", - "ignoreCase": false - } - ] - ], - "#level1 *[id^=\"level2_\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "id", - "action": "start", - "value": "level2_", - "ignoreCase": false - } - ] - ], - "#level1 *[id^=level2_]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "id", - "action": "start", - "value": "level2_", - "ignoreCase": false - } - ] - ], - "#level1 > span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level1 div:last-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "#level1 span:first-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#level1:first-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#level1:only-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "only-child", - "data": null - } - ] - ], - "#level1>*:first-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#level1>*:last-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "#level1>*:only-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "only-child", - "data": null - } - ] - ], - "#level1>div:first-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#level1>div:last-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "#level1>span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level1>span:last-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "span" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "#level2_1 + *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_1", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "universal" - } - ] - ], - "#level2_1 + span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_1", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level2_1 > *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_1", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "universal" - } - ] - ], - "#level2_1 ~ *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_1", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "universal" - } - ] - ], - "#level2_1 ~ span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_1", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level2_1+span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_1", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level2_2 + span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_2", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level2_2 :only-child:not(:first-child)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "only-child", - "data": null - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ] - } - ] - ], - "#level2_2 :only-child:not(:last-child)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "only-child", - "data": null - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ] - } - ] - ], - "#level2_2 ~ span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_2", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level3_1 + *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_1", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "universal" - } - ] - ], - "#level3_1 + em": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_1", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "em" - } - ] - ], - "#level3_1 + span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_1", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#level3_1 ~ #level3_2": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_1", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_2", - "ignoreCase": false - } - ] - ], - "#level3_1 ~ em": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_1", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "em" - } - ] - ], - "#level3_1:empty": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_1", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "empty", - "data": null - } - ] - ], - "#level3_2 + *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_2", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "universal" - } - ] - ], - "#level3_2 ~ *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_2", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "universal" - } - ] - ], - "#link_2.internal": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "link_2", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - } - ] - ], - "#link_2.internal.highlight": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "link_2", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "highlight", - "ignoreCase": false - } - ] - ], - "#link_2.internal.nonexistent": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "link_2", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "nonexistent", - "ignoreCase": false - } - ] - ], - "#list > li:nth-child(-n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "list", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "-n+2" - } - ] - ], - "#list > li:nth-child(n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "list", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "n+2" - } - ] - ], - "#list li:not(#item_1):not(#item_3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "list", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_1", - "ignoreCase": false - } - ] - ] - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_3", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#list>li": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "list", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - } - ] - ], - "#listWithTabIndex": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "listWithTabIndex", - "ignoreCase": false - } - ] - ], - "#liveHandlerOrder ~ div em:contains('1')": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "liveHandlerOrder", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "pseudo", - "name": "contains", - "data": "1" - } - ] - ], - "#lonelyBoosh": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "lonelyBoosh", - "ignoreCase": false - } - ] - ], - "#lonelyHsoob": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "lonelyHsoob", - "ignoreCase": false - } - ] - ], - "#moretests script[src]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "moretests", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "script" - }, - { - "type": "attribute", - "name": "src", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#name\\+value": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "name+value", - "ignoreCase": false - } - ] - ], - "#nonexistent:has(*), #ap:has(*)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "nonexistent", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "ap", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ], - "#oooo": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "oooo", - "ignoreCase": false - } - ] - ], - "#order-matters .order-matters": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "order-matters", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "order-matters", - "ignoreCase": false - } - ] - ], - "#p *:nth-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3" - } - ] - ], - "#p a:first-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "first-of-type", - "data": null - } - ] - ], - "#p a:last-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "last-of-type", - "data": null - } - ] - ], - "#p a:not(:first-of-type)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "first-of-type", - "data": null - } - ] - ] - } - ] - ], - "#p a:not(:last-of-type)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "last-of-type", - "data": null - } - ] - ] - } - ] - ], - "#p a:not(:nth-last-of-type(1))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "1" - } - ] - ] - } - ] - ], - "#p a:not(:nth-of-type(1))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "nth-of-type", - "data": "1" - } - ] - ] - } - ] - ], - "#p a:not([rel$=\"nofollow\"]) > em": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "end", - "value": "nofollow", - "ignoreCase": false - } - ] - ] - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "em" - } - ] - ], - "#p a:not([rel$=\"nofollow\"]) em": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "end", - "value": "nofollow", - "ignoreCase": false - } - ] - ] - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "em" - } - ] - ], - "#p a:not([rel$=\"nofollow\"])>em": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "end", - "value": "nofollow", - "ignoreCase": false - } - ] - ] - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "em" - } - ] - ], - "#p a:not([rel$=nofollow])": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "end", - "value": "nofollow", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#p a:not([rel^=external])": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "start", - "value": "external", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#p a:not([rel~=nofollow])": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "element", - "value": "nofollow", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#p a:nth-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3" - } - ] - ], - "#p a:nth-last-of-type(1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "1" - } - ] - ], - "#p a:nth-of-type(1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "1" - } - ] - ], - "#p a:nth-of-type(2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "p", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "2" - } - ] - ], - "#pseudos :nth-child(+3n-2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "+3n-2" - } - ] - ], - "#pseudos :nth-child(-n+5)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "-n+5" - } - ] - ], - "#pseudos :nth-child(-n+6)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "-n+6" - } - ] - ], - "#pseudos :nth-child(3n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n" - } - ] - ], - "#pseudos :nth-child(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n+1" - } - ] - ], - "#pseudos :nth-child(3n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n+2" - } - ] - ], - "#pseudos :nth-child(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "odd" - } - ] - ], - "#pseudos :nth-last-child(-n+5)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "-n+5" - } - ] - ], - "#pseudos :nth-last-child(-n+6)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "-n+6" - } - ] - ], - "#pseudos :nth-last-child(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n+1" - } - ] - ], - "#pseudos :nth-last-child(3n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n+2" - } - ] - ], - "#pseudos :nth-last-child(3n-2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n-2" - } - ] - ], - "#pseudos :nth-last-child(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "odd" - } - ] - ], - "#pseudos a:first-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "first-of-type", - "data": null - } - ] - ], - "#pseudos a:nth-last-of-type(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "3n+1" - } - ] - ], - "#pseudos a:nth-of-type(1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "1" - } - ] - ], - "#pseudos a:nth-of-type(3n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "3n" - } - ] - ], - "#pseudos a:nth-of-type(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "3n+1" - } - ] - ], - "#pseudos a:nth-of-type(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "odd" - } - ] - ], - "#pseudos a:only-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "only-of-type", - "data": null - } - ] - ], - "#pseudos div:first-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#pseudos div:last-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "#pseudos div:last-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "last-of-type", - "data": null - } - ] - ], - "#pseudos div:nth-child(2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2" - } - ] - ], - "#pseudos div:nth-child(even)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "even" - } - ] - ], - "#pseudos div:nth-child(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "odd" - } - ] - ], - "#pseudos div:nth-last-child(6)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "6" - } - ] - ], - "#pseudos div:nth-last-child(even)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "even" - } - ] - ], - "#pseudos div:nth-last-child(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "odd" - } - ] - ], - "#pseudos div:nth-last-of-type(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "3n+1" - } - ] - ], - "#pseudos div:nth-last-of-type(5)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "5" - } - ] - ], - "#pseudos div:nth-of-type(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "3n+1" - } - ] - ], - "#pseudos:target": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "pseudos", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "target", - "data": null - } - ] - ], - "#qunit-fixture": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - } - ] - ], - "#qunit-fixture *[title]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "title", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#qunit-fixture :not(:has(:has(*)))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ] - } - ] - ] - } - ] - ], - "#qunit-fixture > :nth-last-of-type(-n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "-n+2" - } - ] - ], - "#qunit-fixture > :nth-of-type(-n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "pseudo", - "name": "nth-of-type", - "data": "-n+2" - } - ] - ], - "#qunit-fixture > :only-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "pseudo", - "name": "only-of-type", - "data": null - } - ] - ], - "#qunit-fixture > p:first-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "first-of-type", - "data": null - } - ] - ], - "#qunit-fixture > p:last-of-type": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "last-of-type", - "data": null - } - ] - ], - "#qunit-fixture [title]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "title", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#qunit-fixture a + a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#qunit-fixture a + a, code > a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "code" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#qunit-fixture a +a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#qunit-fixture a+ a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#qunit-fixture a+a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#qunit-fixture a:last-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "#qunit-fixture a:only-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "only-child", - "data": null - } - ] - ], - "#qunit-fixture a[ rel = 'bookmark' ]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "rel", - "action": "equals", - "value": "bookmark", - "ignoreCase": false - } - ] - ], - "#qunit-fixture a[ title ]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "title", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#qunit-fixture a[TITLE]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "title", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#qunit-fixture a[href='http://www.google.com/']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "equals", - "value": "http://www.google.com/", - "ignoreCase": false - } - ] - ], - "#qunit-fixture a[rel='bookmark']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "rel", - "action": "equals", - "value": "bookmark", - "ignoreCase": false - } - ] - ], - "#qunit-fixture a[rel=bookmark]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "rel", - "action": "equals", - "value": "bookmark", - "ignoreCase": false - } - ] - ], - "#qunit-fixture a[title]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "title", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#qunit-fixture div:has(div:has(div:not([id])))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ] - } - ] - ] - } - ] - ] - } - ] - ], - "#qunit-fixture div[id]:not(:has(div, span)):not(:has(*))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "div" - } - ], - [ - { - "type": "tag", - "name": "span" - } - ] - ] - } - ] - ] - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ] - } - ] - ], - "#qunit-fixture form#form > *:nth-child(2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "form" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2" - } - ] - ], - "#qunit-fixture form#form > :nth-child(2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "form" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2" - } - ] - ], - "#qunit-fixture form[id]:not([action$='formaction']):not(:button)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "form" - }, - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "action", - "action": "end", - "value": "formaction", - "ignoreCase": false - } - ] - ] - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "button", - "data": null - } - ] - ] - } - ] - ], - "#qunit-fixture form[id]:not([action='form:action']):not(:button)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "form" - }, - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "action", - "action": "equals", - "value": "form:action", - "ignoreCase": false - } - ] - ] - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "button", - "data": null - } - ] - ] - } - ] - ], - "#qunit-fixture form[id]:not([action='form:action']:button):not(:input)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "form" - }, - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "action", - "action": "equals", - "value": "form:action", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "button", - "data": null - } - ] - ] - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "input", - "data": null - } - ] - ] - } - ] - ], - "#qunit-fixture li[tabIndex=-1]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "tabindex", - "action": "equals", - "value": "-1", - "ignoreCase": false - } - ] - ], - "#qunit-fixture option[value=1]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "attribute", - "name": "value", - "action": "equals", - "value": "1", - "ignoreCase": false - } - ] - ], - "#qunit-fixture p": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "#qunit-fixture p\t": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "#qunit-fixture p\n": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "#qunit-fixture p\f": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "#qunit-fixture p\r": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "#qunit-fixture p ": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "#qunit-fixture p ~ div": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "#qunit-fixture p, #qunit-fixture p a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#qunit-fixture p:FIRST-CHILD": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#qunit-fixture p:first-child": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "#qunit-fixture p:has(:contains(mark)):has(code)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "mark" - } - ] - ] - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "code" - } - ] - ] - } - ] - ], - "#qunit-fixture p:has(:contains(mark)):has(code):contains(This link)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "mark" - } - ] - ] - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "code" - } - ] - ] - }, - { - "type": "pseudo", - "name": "contains", - "data": "This link" - } - ] - ], - "#qunit-fixture p:not( a )": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not( p )": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "p" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(#blargh)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "blargh", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(.foo)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(:has(a), :nth-child(1))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ] - } - ], - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "1" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(:nth-child(1))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "1" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(:nth-last-child(1))": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "nth-last-child", - "data": "1" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(a)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(a, b)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "b" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(a, b, div)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "b" - } - ], - [ - { - "type": "tag", - "name": "div" - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(div#blargh)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "blargh", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(div.foo)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(p#blargh)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "blargh", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#qunit-fixture p:not(p.foo)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo", - "ignoreCase": false - } - ] - ] - } - ] - ], - "#qunit-fixture p:parent": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "parent", - "data": null - } - ] - ], - "#seite1": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "seite1", - "ignoreCase": false - } - ] - ], - "#select1 *:nth-last-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3" - } - ] - ], - "#select1 :nth-last-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3" - } - ] - ], - "#select1 option:NTH-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3" - } - ] - ], - "#select1 option:NTH-last-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3" - } - ] - ], - "#select1 option:nth-child(+2n + 1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "+2n + 1" - } - ] - ], - "#select1 option:nth-child(-1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "-1" - } - ] - ], - "#select1 option:nth-child(-1n + 3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "-1n + 3" - } - ] - ], - "#select1 option:nth-child(-1n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "-1n+3" - } - ] - ], - "#select1 option:nth-child(-n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "-n+3" - } - ] - ], - "#select1 option:nth-child(1n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "1n" - } - ] - ], - "#select1 option:nth-child(1n+0)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "1n+0" - } - ] - ], - "#select1 option:nth-child(2n + 1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2n + 1" - } - ] - ], - "#select1 option:nth-child(2n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2n" - } - ] - ], - "#select1 option:nth-child(2n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2n+1" - } - ] - ], - "#select1 option:nth-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3" - } - ] - ], - "#select1 option:nth-child(3n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n" - } - ] - ], - "#select1 option:nth-child(3n+0)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n+0" - } - ] - ], - "#select1 option:nth-child(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n+1" - } - ] - ], - "#select1 option:nth-child(3n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n+2" - } - ] - ], - "#select1 option:nth-child(3n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n+3" - } - ] - ], - "#select1 option:nth-child(3n-1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n-1" - } - ] - ], - "#select1 option:nth-child(3n-2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n-2" - } - ] - ], - "#select1 option:nth-child(3n-3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "3n-3" - } - ] - ], - "#select1 option:nth-child(even)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "even" - } - ] - ], - "#select1 option:nth-child(n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "n" - } - ] - ], - "#select1 option:nth-child(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "odd" - } - ] - ], - "#select1 option:nth-last-child(+2n + 1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "+2n + 1" - } - ] - ], - "#select1 option:nth-last-child(-1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "-1" - } - ] - ], - "#select1 option:nth-last-child(-1n + 3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "-1n + 3" - } - ] - ], - "#select1 option:nth-last-child(-1n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "-1n+3" - } - ] - ], - "#select1 option:nth-last-child(-n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "-n+3" - } - ] - ], - "#select1 option:nth-last-child(1n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "1n" - } - ] - ], - "#select1 option:nth-last-child(1n+0)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "1n+0" - } - ] - ], - "#select1 option:nth-last-child(2n + 1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "2n + 1" - } - ] - ], - "#select1 option:nth-last-child(2n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "2n" - } - ] - ], - "#select1 option:nth-last-child(2n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "2n+1" - } - ] - ], - "#select1 option:nth-last-child(3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3" - } - ] - ], - "#select1 option:nth-last-child(3n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n" - } - ] - ], - "#select1 option:nth-last-child(3n+0)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n+0" - } - ] - ], - "#select1 option:nth-last-child(3n+1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n+1" - } - ] - ], - "#select1 option:nth-last-child(3n+2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n+2" - } - ] - ], - "#select1 option:nth-last-child(3n+3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n+3" - } - ] - ], - "#select1 option:nth-last-child(3n-1)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n-1" - } - ] - ], - "#select1 option:nth-last-child(3n-2)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n-2" - } - ] - ], - "#select1 option:nth-last-child(3n-3)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "3n-3" - } - ] - ], - "#select1 option:nth-last-child(even)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "even" - } - ] - ], - "#select1 option:nth-last-child(n)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "n" - } - ] - ], - "#select1 option:nth-last-child(odd)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "odd" - } - ] - ], - "#select1 option:selected": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ], - "#select1 option[value!='']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "attribute", - "name": "value", - "action": "not", - "value": "", - "ignoreCase": false - } - ] - ], - "#select1 option[value='']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "attribute", - "name": "value", - "action": "equals", - "value": "", - "ignoreCase": false - } - ] - ], - "#select2 option:selected": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ], - "#select2 option[selected='selected']": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "attribute", - "name": "selected", - "action": "equals", - "value": "selected", - "ignoreCase": false - } - ] - ], - "#select2 option[selected]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "attribute", - "name": "selected", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#select3 option:selected": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select3", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ], - "#sep": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "sep", - "ignoreCase": false - } - ] - ], - "#sibling-selector + .sibling-selector": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "sibling-selector", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling-selector", - "ignoreCase": false - } - ] - ], - "#sibling-selector + div.sibling-selector": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "sibling-selector", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling-selector", - "ignoreCase": false - } - ] - ], - "#sibling-selector ~ .sibling-selector": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "sibling-selector", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling-selector", - "ignoreCase": false - } - ] - ], - "#sibling-selector ~ div.sibling-selector": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "sibling-selector", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling-selector", - "ignoreCase": false - } - ] - ], - "#siblingTest > em *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "siblingTest", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "descendant" - }, - { - "type": "universal" - } - ] - ], - "#siblingTest > em:contains('x') + em ~ span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "siblingTest", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "pseudo", - "name": "contains", - "data": "x" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#siblingTest > em:first-child + em ~ span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "siblingTest", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#siblingTest em *": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "siblingTest", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "descendant" - }, - { - "type": "universal" - } - ] - ], - "#siblingTest em ~ em ~ em ~ span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "siblingTest", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#siblingfirst ~ em": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "siblingfirst", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "em" - } - ] - ], - "#spaced-tokens p em a": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "spaced-tokens", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "em" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "#spanny": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "spanny", - "ignoreCase": false - } - ] - ], - "#tName1": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tName1", - "ignoreCase": false - } - ] - ], - "#tName1 span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tName1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#tName1-span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tName1-span", - "ignoreCase": false - } - ] - ], - "#tName2": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tName2", - "ignoreCase": false - } - ] - ], - "#tName2 span": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tName2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "#tName2ID": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tName2ID", - "ignoreCase": false - } - ] - ], - "#test\\.foo\\[5\\]bar": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "test.foo[5]bar", - "ignoreCase": false - } - ] - ], - "#tmp_input :button": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tmp_input", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "button", - "data": null - } - ] - ], - "#tmp_input :reset": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tmp_input", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "reset", - "data": null - } - ] - ], - "#tmp_input :submit": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tmp_input", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "submit", - "data": null - } - ] - ], - "#token-four": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "token-four", - "ignoreCase": false - } - ] - ], - "#troubleForm": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm", - "ignoreCase": false - } - ] - ], - "#troubleForm *:checked": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "checked", - "data": null - } - ] - ], - "#troubleForm *[type=radio]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "radio", - "ignoreCase": false - } - ] - ], - "#troubleForm *[type]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "attribute", - "name": "type", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#troubleForm > p > *:disabled": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "disabled", - "data": null - } - ] - ], - "#troubleForm [type=radio]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "radio", - "ignoreCase": false - } - ] - ], - "#troubleForm [type]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "type", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "#troubleForm2 input[name=\"brackets[5][]\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "brackets[5][]", - "ignoreCase": false - } - ] - ], - "#troubleForm2 input[name=\"brackets[5][]\"]:checked": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "brackets[5][]", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "checked", - "data": null - } - ] - ], - "#troubleForm2 input[name=\"brackets[5][]\"][value=\"2\"]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "troubleForm2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "brackets[5][]", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "value", - "action": "equals", - "value": "2", - "ignoreCase": false - } - ] - ], - "#types_all": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "types_all", - "ignoreCase": false - } - ] - ], - "#uncle": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "uncle", - "ignoreCase": false - } - ] - ], - "#台北Táiběi": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "台北Táiběi", - "ignoreCase": false - } - ] - ], - "#台北Táiběi, #台北": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "台北Táiběi", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "台北", - "ignoreCase": false - } - ] - ], - "*": [ - [ - { - "type": "universal" - } - ] - ], - "* :not(*) foo": [ - [ - { - "type": "universal" - }, - { - "type": "descendant" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "universal" - } - ] - ] - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "foo" - } - ] - ], - "* < *": [ - [ - { - "type": "universal" - }, - { - "type": "parent" - }, - { - "type": "universal" - } - ] - ], - "*, foo": [ - [ - { - "type": "universal" - } - ], - [ - { - "type": "tag", - "name": "foo" - } - ] - ], - "*,:contains(!)": [ - [ - { - "type": "universal" - } - ], - [ - { - "type": "pseudo", - "name": "contains", - "data": "!" - } - ] - ], - "*:contains(humans)": [ - [ - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "contains", - "data": "humans" - } - ] - ], - "*[id]": [ - [ - { - "type": "universal" - }, - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "*[name=iframe]": [ - [ - { - "type": "universal" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "iframe", - "ignoreCase": false - } - ] - ], - "*[type=checkbox]": [ - [ - { - "type": "universal" - }, - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "checkbox", - "ignoreCase": false - } - ] - ], - ".GROUPS": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "GROUPS", - "ignoreCase": false - } - ] - ], - ".a": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - } - ] - ], - ".a #booshTest #spanny": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "spanny", - "ignoreCase": false - } - ] - ], - ".a #spanny": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "spanny", - "ignoreCase": false - } - ] - ], - ".a .d + .sib": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "d", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sib", - "ignoreCase": false - } - ] - ], - ".a .d ~ .sib[test=\"f g\"]": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "d", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sib", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "test", - "action": "equals", - "value": "f g", - "ignoreCase": false - } - ] - ], - ".a > #booshTest": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - } - ] - ], - ".a span": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - ".a.b #booshTest": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "b", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - } - ] - ], - ".a>#booshTest": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - } - ] - ], - ".blog": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - } - ] - ], - ".blog.link": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "link", - "ignoreCase": false - } - ] - ], - ".brothers": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ], - ".class-with-dashes": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "class-with-dashes", - "ignoreCase": false - } - ] - ], - ".component": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "component", - "ignoreCase": false - } - ] - ], - ".container div:not(.excluded) div": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "container", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "excluded", - "ignoreCase": false - } - ] - ] - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - ".d #oooo #emem": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "d", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "oooo", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "emem", - "ignoreCase": false - } - ] - ], - ".d ~ .sib": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "d", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sib", - "ignoreCase": false - } - ] - ], - ".d.i #emem": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "d", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "i", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "emem", - "ignoreCase": false - } - ] - ], - ".direct-descend > .direct-descend .lvl2": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "lvl2", - "ignoreCase": false - } - ] - ], - ".direct-descend > .direct-descend > .direct-descend ~ .lvl2": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "lvl2", - "ignoreCase": false - } - ] - ], - ".direct-descend > .direct-descend div": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "direct-descend", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - ".e": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "e", - "ignoreCase": false - } - ] - ], - ".e.hasOwnProperty.toString": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "e", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "hasOwnProperty", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "toString", - "ignoreCase": false - } - ] - ], - ".excluded": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "excluded", - "ignoreCase": false - } - ] - ], - ".first": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "first", - "ignoreCase": false - } - ] - ], - ".foo": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo", - "ignoreCase": false - } - ] - ], - ".foo\\:bar": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo:bar", - "ignoreCase": false - } - ] - ], - ".fototab > .thumbnails > a": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "fototab", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "thumbnails", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - ".internal#link_2": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "link_2", - "ignoreCase": false - } - ] - ], - ".link": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "link", - "ignoreCase": false - } - ] - ], - ".nothiddendiv div:first-child": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "nothiddendiv", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - ".null": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "null", - "ignoreCase": false - } - ] - ], - ".null div": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "null", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - ".odd:not(div)": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "odd", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "div" - } - ] - ] - } - ] - ], - ".parent .middle + .sibling": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling", - "ignoreCase": false - } - ] - ], - ".parent .middle + h2": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "h2" - } - ] - ], - ".parent .middle + h3": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "h3" - } - ] - ], - ".parent .middle + h4": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "h4" - } - ] - ], - ".parent .middle ~ .sibling": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling", - "ignoreCase": false - } - ] - ], - ".parent .middle ~ h2": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "h2" - } - ] - ], - ".parent .middle ~ h3": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "h3" - } - ] - ], - ".parent .middle ~ h4": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "h4" - } - ] - ], - ".parent .middle ~ h4.younger": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "middle", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "h4" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "younger", - "ignoreCase": false - } - ] - ], - ".parent .oldest + .sibling": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "oldest", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling", - "ignoreCase": false - } - ] - ], - ".parent .oldest ~ .sibling": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "oldest", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling", - "ignoreCase": false - } - ] - ], - ".parent .youngest + .sibling": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "youngest", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling", - "ignoreCase": false - } - ] - ], - ".parent .youngest ~ .sibling": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "parent", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "youngest", - "ignoreCase": false - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "sibling", - "ignoreCase": false - } - ] - ], - ".second": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "second", - "ignoreCase": false - } - ] - ], - ".select1": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "select1", - "ignoreCase": false - } - ] - ], - ".test\\.foo\\[5\\]bar": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "test.foo[5]bar", - "ignoreCase": false - } - ] - ], - ".台北": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北", - "ignoreCase": false - } - ] - ], - ".台北Táiběi": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北Táiběi", - "ignoreCase": false - } - ] - ], - ".台北Táiběi, .台北": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北Táiběi", - "ignoreCase": false - } - ], - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北", - "ignoreCase": false - } - ] - ], - ".台北Táiběi.台北": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北Táiběi", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北", - "ignoreCase": false - } - ] - ], - ":Header": [ - [ - { - "type": "pseudo", - "name": "header", - "data": null - } - ] - ], - ":button": [ - [ - { - "type": "pseudo", - "name": "button", - "data": null - } - ] - ], - ":contains(Nothing),#option1b,:selected": [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "Nothing" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "option1b", - "ignoreCase": false - } - ], - [ - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ], - ":contains(foo)": [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "foo" - } - ] - ], - ":contains(humans)": [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "humans" - } - ] - ], - ":contains(mark)": [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "mark" - } - ] - ], - ":empty": [ - [ - { - "type": "pseudo", - "name": "empty", - "data": null - } - ] - ], - ":first-child": [ - [ - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - ":first-child(n)": [ - [ - { - "type": "pseudo", - "name": "first-child", - "data": "n" - } - ] - ], - ":first-last-child": [ - [ - { - "type": "pseudo", - "name": "first-last-child", - "data": null - } - ] - ], - ":first-of-type": [ - [ - { - "type": "pseudo", - "name": "first-of-type", - "data": null - } - ] - ], - ":has(*)": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ], - ":has(*,:contains(!)),:contains(!)": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ], - [ - { - "type": "pseudo", - "name": "contains", - "data": "!" - } - ] - ] - } - ], - [ - { - "type": "pseudo", - "name": "contains", - "data": "!" - } - ] - ], - ":has(:has(*))": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ] - } - ] - ], - ":has(:nth-child(-1n-1))": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "-1n-1" - } - ] - ] - } - ] - ], - ":has(a),:nth-child(1)": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ] - } - ], - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "1" - } - ] - ], - ":has(div,span)": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "div" - } - ], - [ - { - "type": "tag", - "name": "span" - } - ] - ] - } - ] - ], - ":has(option)": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "option" - } - ] - ] - } - ] - ], - ":header": [ - [ - { - "type": "pseudo", - "name": "header", - "data": null - } - ] - ], - ":humanoid": [ - [ - { - "type": "pseudo", - "name": "humanoid", - "data": null - } - ] - ], - ":image,:input,:submit": [ - [ - { - "type": "pseudo", - "name": "image", - "data": null - } - ], - [ - { - "type": "pseudo", - "name": "input", - "data": null - } - ], - [ - { - "type": "pseudo", - "name": "submit", - "data": null - } - ] - ], - ":input": [ - [ - { - "type": "pseudo", - "name": "input", - "data": null - } - ] - ], - ":input:not(:image,:input,:submit)": [ - [ - { - "type": "pseudo", - "name": "input", - "data": null - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "image", - "data": null - } - ], - [ - { - "type": "pseudo", - "name": "input", - "data": null - } - ], - [ - { - "type": "pseudo", - "name": "submit", - "data": null - } - ] - ] - } - ] - ], - ":input[data-pos=':first']": [ - [ - { - "type": "pseudo", - "name": "input", - "data": null - }, - { - "type": "attribute", - "name": "data-pos", - "action": "equals", - "value": ":first", - "ignoreCase": false - } - ] - ], - ":last-child": [ - [ - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - ":last-child(n)": [ - [ - { - "type": "pseudo", - "name": "last-child", - "data": "n" - } - ] - ], - ":last-last-child": [ - [ - { - "type": "pseudo", - "name": "last-last-child", - "data": null - } - ] - ], - ":last-of-type": [ - [ - { - "type": "pseudo", - "name": "last-of-type", - "data": null - } - ] - ], - ":not(*)": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ], - ":not(:not(*))": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ] - } - ] - ], - ":not(:not(:not(*)))": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ] - } - ] - ] - } - ] - ], - ":not(:nth-child(-1n-1))": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "-1n-1" - } - ] - ] - } - ] - ], - ":not(:selected)": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ] - } - ] - ], - ":not(code)": [ - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "code" - } - ] - ] - } - ] - ], - ":nth-child": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": null - } - ] - ], - ":nth-child(- 1n)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "- 1n" - } - ] - ], - ":nth-child(-)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "-" - } - ] - ], - ":nth-child(-1 n)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "-1 n" - } - ] - ], - ":nth-child(-1n-1)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "-1n-1" - } - ] - ], - ":nth-child(1)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "1" - } - ] - ], - ":nth-child(2+0)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "2+0" - } - ] - ], - ":nth-child(2n+-0)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "2n+-0" - } - ] - ], - ":nth-child(asdf)": [ - [ - { - "type": "pseudo", - "name": "nth-child", - "data": "asdf" - } - ] - ], - ":nth-last-child(1)": [ - [ - { - "type": "pseudo", - "name": "nth-last-child", - "data": "1" - } - ] - ], - ":nth-last-last-child(1)": [ - [ - { - "type": "pseudo", - "name": "nth-last-last-child", - "data": "1" - } - ] - ], - ":nth-last-of-type(-1)": [ - [ - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "-1" - } - ] - ], - ":nth-last-of-type(1)": [ - [ - { - "type": "pseudo", - "name": "nth-last-of-type", - "data": "1" - } - ] - ], - ":nth-of-type(-1)": [ - [ - { - "type": "pseudo", - "name": "nth-of-type", - "data": "-1" - } - ] - ], - ":nth-of-type(1)": [ - [ - { - "type": "pseudo", - "name": "nth-of-type", - "data": "1" - } - ] - ], - ":only-child(n)": [ - [ - { - "type": "pseudo", - "name": "only-child", - "data": "n" - } - ] - ], - ":only-last-child": [ - [ - { - "type": "pseudo", - "name": "only-last-child", - "data": null - } - ] - ], - ":parent": [ - [ - { - "type": "pseudo", - "name": "parent", - "data": null - } - ] - ], - ":reset": [ - [ - { - "type": "pseudo", - "name": "reset", - "data": null - } - ] - ], - ":root": [ - [ - { - "type": "pseudo", - "name": "root", - "data": null - } - ] - ], - ":selected": [ - [ - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ], - ":submit": [ - [ - { - "type": "pseudo", - "name": "submit", - "data": null - } - ] - ], - ":visble": [ - [ - { - "type": "pseudo", - "name": "visble", - "data": null - } - ] - ], - ">.a>#booshTest": [ - [ - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "a", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "booshTest", - "ignoreCase": false - } - ] - ], - "[action$='formaction']": [ - [ - { - "type": "attribute", - "name": "action", - "action": "end", - "value": "formaction", - "ignoreCase": false - } - ] - ], - "[action='form:action']": [ - [ - { - "type": "attribute", - "name": "action", - "action": "equals", - "value": "form:action", - "ignoreCase": false - } - ] - ], - "[action='form:action']:button": [ - [ - { - "type": "attribute", - "name": "action", - "action": "equals", - "value": "form:action", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "button", - "data": null - } - ] - ], - "[attr=boosh]": [ - [ - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "[attr=foo]": [ - [ - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "foo", - "ignoreCase": false - } - ] - ], - "[attr]": [ - [ - { - "type": "attribute", - "name": "attr", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[class*=component]": [ - [ - { - "type": "attribute", - "name": "class", - "action": "any", - "value": "component", - "ignoreCase": false - } - ] - ], - "[class~=brothers]": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ], - "[class~=internal]": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - } - ] - ], - "[constructor='foo']": [ - [ - { - "type": "attribute", - "name": "constructor", - "action": "equals", - "value": "foo", - "ignoreCase": false - } - ] - ], - "[constructor]": [ - [ - { - "type": "attribute", - "name": "constructor", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[foo]": [ - [ - { - "type": "attribute", - "name": "foo", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[foo^=\"bar\"]": [ - [ - { - "type": "attribute", - "name": "foo", - "action": "start", - "value": "bar", - "ignoreCase": false - } - ] - ], - "[href=\"#\"]": [ - [ - { - "type": "attribute", - "name": "href", - "action": "equals", - "value": "#", - "ignoreCase": false - } - ] - ], - "[href]": [ - [ - { - "type": "attribute", - "name": "href", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[id*=option1]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "any", - "value": "option1", - "ignoreCase": false - } - ] - ], - "[id*=option1][type!=checkbox]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "any", - "value": "option1", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "type", - "action": "not", - "value": "checkbox", - "ignoreCase": false - } - ] - ], - "[id='select1'] *:not(:last-child), [id='select2'] *:not(:last-child)": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select1", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ] - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "select2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "universal" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ] - } - ] - ], - "[id=option1a]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "option1a", - "ignoreCase": false - } - ] - ], - "[id]": [ - [ - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[multiple]": [ - [ - { - "type": "attribute", - "name": "multiple", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[name='id']": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "id", - "ignoreCase": false - } - ] - ], - "[name='select1']": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "select1", - "ignoreCase": false - } - ] - ], - "[name=div]": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "div", - "ignoreCase": false - } - ] - ], - "[name=example]": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "example", - "ignoreCase": false - } - ] - ], - "[name=prop2]": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "prop2", - "ignoreCase": false - } - ] - ], - "[name=select1]": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "select1", - "ignoreCase": false - } - ] - ], - "[name=tName1]": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "tName1", - "ignoreCase": false - } - ] - ], - "[name=tName2]": [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "tName2", - "ignoreCase": false - } - ] - ], - "[rel$=\"nofollow\"]": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "end", - "value": "nofollow", - "ignoreCase": false - } - ] - ], - "[rel$=nofollow]": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "end", - "value": "nofollow", - "ignoreCase": false - } - ] - ], - "[rel^=external]": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "start", - "value": "external", - "ignoreCase": false - } - ] - ], - "[rel~=nofollow]": [ - [ - { - "type": "attribute", - "name": "rel", - "action": "element", - "value": "nofollow", - "ignoreCase": false - } - ] - ], - "[test=]": [ - [ - { - "type": "attribute", - "name": "test", - "action": "equals", - "value": "", - "ignoreCase": false - } - ] - ], - "[test^='']": [ - [ - { - "type": "attribute", - "name": "test", - "action": "start", - "value": "", - "ignoreCase": false - } - ] - ], - "[title]": [ - [ - { - "type": "attribute", - "name": "title", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[type=checkbox]": [ - [ - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "checkbox", - "ignoreCase": false - } - ] - ], - "[type=radio]": [ - [ - { - "type": "attribute", - "name": "type", - "action": "equals", - "value": "radio", - "ignoreCase": false - } - ] - ], - "[watch='bar']": [ - [ - { - "type": "attribute", - "name": "watch", - "action": "equals", - "value": "bar", - "ignoreCase": false - } - ] - ], - "[watch]": [ - [ - { - "type": "attribute", - "name": "watch", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "[xml\\:test]": [ - [ - { - "type": "attribute", - "name": "xml:test", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "a": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ], - "a#link_2.internal": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "link_2", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - } - ] - ], - "a,b": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "b" - } - ] - ], - "a,b,div": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "b" - } - ], - [ - { - "type": "tag", - "name": "div" - } - ] - ], - "a,p": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "p" - } - ] - ], - "a,p,b": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "p" - } - ], - [ - { - "type": "tag", - "name": "b" - } - ] - ], - "a.GROUPS + code + a": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "GROUPS", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "code" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "a.blog": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - } - ] - ], - "a.blog:not(.link)": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "link", - "ignoreCase": false - } - ] - ] - } - ] - ], - "a.highlight.internal": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "highlight", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - } - ] - ], - "a.highlight.internal.nonexistent": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "highlight", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "nonexistent", - "ignoreCase": false - } - ] - ], - "a.internal": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - } - ] - ], - "a.internal#link_2": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "link_2", - "ignoreCase": false - } - ] - ], - "a.internal.highlight": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "highlight", - "ignoreCase": false - } - ] - ], - "a.odd": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "odd", - "ignoreCase": false - } - ] - ], - "a:contains(\"(Link)\")": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "contains", - "data": "(Link)" - } - ] - ], - "a:contains('')": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "contains", - "data": "" - } - ] - ], - "a:contains('Google Groups (Link)')": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "contains", - "data": "Google Groups (Link)" - } - ] - ], - "a:contains((Link))": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "contains", - "data": "(Link)" - } - ] - ], - "a:contains(Google Groups (Link))": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "contains", - "data": "Google Groups (Link)" - } - ] - ], - "a:contains(Google Groups)": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "contains", - "data": "Google Groups" - } - ] - ], - "a:contains(Google)": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "contains", - "data": "Google" - } - ] - ], - "a:not([href=\"#\"])": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "href", - "action": "equals", - "value": "#", - "ignoreCase": false - } - ] - ] - } - ] - ], - "a[class*=blog]:not(:has(*, :contains(!)), :contains(!)), br:contains(]), p:contains(]), :not(:empty):not(:parent)": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "any", - "value": "blog", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ], - [ - { - "type": "pseudo", - "name": "contains", - "data": "!" - } - ] - ] - } - ], - [ - { - "type": "pseudo", - "name": "contains", - "data": "!" - } - ] - ] - } - ], - [ - { - "type": "tag", - "name": "br" - }, - { - "type": "pseudo", - "name": "contains", - "data": "]" - } - ], - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "contains", - "data": "]" - } - ], - [ - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "empty", - "data": null - } - ] - ] - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "parent", - "data": null - } - ] - ] - } - ] - ], - "a[class~=\"internal\"]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - } - ] - ], - "a[class~=external]:not([href=\"#\"])": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "external", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "href", - "action": "equals", - "value": "#", - "ignoreCase": false - } - ] - ] - } - ] - ], - "a[class~=external][href=\"#\"]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "external", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "href", - "action": "equals", - "value": "#", - "ignoreCase": false - } - ] - ], - "a[class~=internal]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "internal", - "ignoreCase": false - } - ] - ], - "a[href $= 'org/']": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "end", - "value": "org/", - "ignoreCase": false - } - ] - ], - "a[href *= 'google']": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "any", - "value": "google", - "ignoreCase": false - } - ] - ], - "a[href ^= 'http://www']": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "start", - "value": "http://www", - "ignoreCase": false - } - ] - ], - "a[href*=#]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "any", - "value": "#", - "ignoreCase": false - } - ] - ], - "a[href=\"#\"]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "equals", - "value": "#", - "ignoreCase": false - } - ] - ], - "a[href]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "a[rel^=\"external\"]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "rel", - "action": "start", - "value": "external", - "ignoreCase": false - } - ] - ], - "a[rel^='external']": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "rel", - "action": "start", - "value": "external", - "ignoreCase": false - } - ] - ], - "a[rel^=external]": [ - [ - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "rel", - "action": "start", - "value": "external", - "ignoreCase": false - } - ] - ], - "body": [ - [ - { - "type": "tag", - "name": "body" - } - ] - ], - "body div div div": [ - [ - { - "type": "tag", - "name": "body" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "body#body": [ - [ - { - "type": "tag", - "name": "body" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "body", - "ignoreCase": false - } - ] - ], - "body>div div div": [ - [ - { - "type": "tag", - "name": "body" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "cite[title=\"hello world!\"]": [ - [ - { - "type": "tag", - "name": "cite" - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "hello world!", - "ignoreCase": false - } - ] - ], - "code": [ - [ - { - "type": "tag", - "name": "code" - } - ] - ], - "code > *": [ - [ - { - "type": "tag", - "name": "code" - }, - { - "type": "child" - }, - { - "type": "universal" - } - ] - ], - "component": [ - [ - { - "type": "tag", - "name": "component" - } - ] - ], - "component#seite1": [ - [ - { - "type": "tag", - "name": "component" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "seite1", - "ignoreCase": false - } - ] - ], - "div": [ - [ - { - "type": "tag", - "name": "div" - } - ] - ], - "div #foo\\:bar": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo:bar", - "ignoreCase": false - } - ] - ], - "div #test\\.foo\\[5\\]bar": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "test.foo[5]bar", - "ignoreCase": false - } - ] - ], - "div #台北": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "台北", - "ignoreCase": false - } - ] - ], - "div .foo\\:bar": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo:bar", - "ignoreCase": false - } - ] - ], - "div .test\\.foo\\[5\\]bar": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "test.foo[5]bar", - "ignoreCase": false - } - ] - ], - "div .tokens[title=\"one two three #%\"]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "tokens", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "one two three #%", - "ignoreCase": false - } - ] - ], - "div .tokens[title=\"one two three #%\"] a[href$=foo] div": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "tokens", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "one two three #%", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "end", - "value": "foo", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "div .tokens[title=\"one two\"]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "tokens", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "one two", - "ignoreCase": false - } - ] - ], - "div .tokens[title=\"one\"]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "tokens", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "one", - "ignoreCase": false - } - ] - ], - "div .tokens[title='one two three #%'] a": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "tokens", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "one two three #%", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "div .台北Táiběi": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北Táiběi", - "ignoreCase": false - } - ] - ], - "div > #nonexistent": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "nonexistent", - "ignoreCase": false - } - ] - ], - "div > div #tName1": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "tName1", - "ignoreCase": false - } - ] - ], - "div > span": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "div ~ #level2_3": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level2_3", - "ignoreCase": false - } - ] - ], - "div ~ #level3_2": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_2", - "ignoreCase": false - } - ] - ], - "div#attr-child-boosh[attr=boosh]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attr-child-boosh", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "div#attr-test3.found.you[title=\"whatup duders\"]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attr-test3", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "found", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "you", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "whatup duders", - "ignoreCase": false - } - ] - ], - "div#blargh": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "blargh", - "ignoreCase": false - } - ] - ], - "div#fixtures > div a": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "fixtures", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "div#fixtures div ~ a div": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "fixtures", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "div#fixtures p": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "fixtures", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "div#fixtures>div a": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "fixtures", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "div#form": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "form", - "ignoreCase": false - } - ] - ], - "div#grandfather > div": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "grandfather", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "div,span": [ - [ - { - "type": "tag", - "name": "div" - } - ], - [ - { - "type": "tag", - "name": "span" - } - ] - ], - "div.blah > p > a": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blah", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "div.brothers": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ], - "div.brothers + div": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "div.brothers + div.brothers": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ], - "div.brothers:not(.brothers)": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ] - } - ] - ], - "div.foo": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo", - "ignoreCase": false - } - ] - ], - "div.foo > span > a": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "span" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "div:has(div:not([id]))": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ] - } - ] - ] - } - ] - ], - "div:not(.brothers)": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ] - } - ] - ], - "div:not([class~=brothers])": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ] - } - ] - ], - "div:not([id])": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "attribute", - "name": "id", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ] - } - ] - ], - "div[class$=men]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "end", - "value": "men", - "ignoreCase": false - } - ] - ], - "div[class*=\"ers m\"]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "any", - "value": "ers m", - "ignoreCase": false - } - ] - ], - "div[class^=bro]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "start", - "value": "bro", - "ignoreCase": false - } - ] - ], - "div[class~=brothers]": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ], - "div[class~=brothers].brothers": [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "brothers", - "ignoreCase": false - } - ] - ], - "dl\tol": [ - [ - { - "type": "tag", - "name": "dl" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "ol" - } - ] - ], - "dl ol": [ - [ - { - "type": "tag", - "name": "dl" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "ol" - } - ] - ], - "elem:not(:has(*))": [ - [ - { - "type": "tag", - "name": "elem" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "universal" - } - ] - ] - } - ] - ] - } - ] - ], - "em[nopass~=\"copyright\"]": [ - [ - { - "type": "tag", - "name": "em" - }, - { - "type": "attribute", - "name": "nopass", - "action": "element", - "value": "copyright", - "ignoreCase": false - } - ] - ], - "em[rel~=\"copyright\"]": [ - [ - { - "type": "tag", - "name": "em" - }, - { - "type": "attribute", - "name": "rel", - "action": "element", - "value": "copyright", - "ignoreCase": false - } - ] - ], - "foo_bar": [ - [ - { - "type": "tag", - "name": "foo_bar" - } - ] - ], - "form": [ - [ - { - "type": "tag", - "name": "form" - } - ] - ], - "form > #foo\\:bar": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "foo:bar", - "ignoreCase": false - } - ] - ], - "form > #test\\.foo\\[5\\]bar": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "test.foo[5]bar", - "ignoreCase": false - } - ] - ], - "form > #台北": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "台北", - "ignoreCase": false - } - ] - ], - "form > .foo\\:bar": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo:bar", - "ignoreCase": false - } - ] - ], - "form > .test\\.foo\\[5\\]bar": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "test.foo[5]bar", - "ignoreCase": false - } - ] - ], - "form > .台北Táiběi": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "child" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "台北Táiběi", - "ignoreCase": false - } - ] - ], - "form label[for]": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "label" - }, - { - "type": "attribute", - "name": "for", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "form:nth-last-child( 5 )": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": " 5 " - } - ] - ], - "form:nth-last-child(5)": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "5" - } - ] - ], - "form[title*=\"commas,\"], input[value=\"#commaOne,#commaTwo\"]": [ - [ - { - "type": "tag", - "name": "form" - }, - { - "type": "attribute", - "name": "title", - "action": "any", - "value": "commas,", - "ignoreCase": false - } - ], - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "value", - "action": "equals", - "value": "#commaOne,#commaTwo", - "ignoreCase": false - } - ] - ], - "h1": [ - [ - { - "type": "tag", - "name": "h1" - } - ] - ], - "h1 ~ ul": [ - [ - { - "type": "tag", - "name": "h1" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "ul" - } - ] - ], - "h1[CLASS]": [ - [ - { - "type": "tag", - "name": "h1" - }, - { - "type": "attribute", - "name": "class", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "h1[class]": [ - [ - { - "type": "tag", - "name": "h1" - }, - { - "type": "attribute", - "name": "class", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "h2\t,\r#qunit-fixture p\n": [ - [ - { - "type": "tag", - "name": "h2" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "h2 , #qunit-fixture p": [ - [ - { - "type": "tag", - "name": "h2" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "h2, #qunit-fixture p": [ - [ - { - "type": "tag", - "name": "h2" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "h2, h1": [ - [ - { - "type": "tag", - "name": "h2" - } - ], - [ - { - "type": "tag", - "name": "h1" - } - ] - ], - "h2,#qunit-fixture p": [ - [ - { - "type": "tag", - "name": "h2" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "h2,#qunit-fixture p ": [ - [ - { - "type": "tag", - "name": "h2" - } - ], - [ - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "qunit-fixture", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "html": [ - [ - { - "type": "tag", - "name": "html" - } - ] - ], - "input": [ - [ - { - "type": "tag", - "name": "input" - } - ] - ], - "input[data-attr='\\01D306A']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "data-attr", - "action": "equals", - "value": "𝌆A", - "ignoreCase": false - } - ] - ], - "input[data-comma=\"0,1\"]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "data-comma", - "action": "equals", - "value": "0,1", - "ignoreCase": false - } - ] - ], - "input[data-comma='0,1']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "data-comma", - "action": "equals", - "value": "0,1", - "ignoreCase": false - } - ] - ], - "input[data-pos=':first']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "data-pos", - "action": "equals", - "value": ":first", - "ignoreCase": false - } - ] - ], - "input[data-pos=\\:first]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "data-pos", - "action": "equals", - "value": ":first", - "ignoreCase": false - } - ] - ], - "input[id='idTest']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "idTest", - "ignoreCase": false - } - ] - ], - "input[id=types_all]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "types_all", - "ignoreCase": false - } - ] - ], - "input[name$='[bar]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "end", - "value": "[bar]", - "ignoreCase": false - } - ] - ], - "input[name$='bar]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "end", - "value": "bar]", - "ignoreCase": false - } - ] - ], - "input[name$='foo[bar]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "end", - "value": "foo[bar]", - "ignoreCase": false - } - ] - ], - "input[name*='[bar]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "any", - "value": "[bar]", - "ignoreCase": false - } - ] - ], - "input[name*='foo[bar]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "any", - "value": "foo[bar]", - "ignoreCase": false - } - ] - ], - "input[name=\"action\"]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "action", - "ignoreCase": false - } - ] - ], - "input[name='action']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "action", - "ignoreCase": false - } - ] - ], - "input[name='foo[bar]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "foo[bar]", - "ignoreCase": false - } - ] - ], - "input[name='types[]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "types[]", - "ignoreCase": false - } - ] - ], - "input[name=action]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "action", - "ignoreCase": false - } - ] - ], - "input[name=foo\\ bar]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "foo bar", - "ignoreCase": false - } - ] - ], - "input[name=foo\\.baz]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "foo.baz", - "ignoreCase": false - } - ] - ], - "input[name=foo\\[baz\\]]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "foo[baz]", - "ignoreCase": false - } - ] - ], - "input[name^='foo[']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "start", - "value": "foo[", - "ignoreCase": false - } - ] - ], - "input[name^='foo[bar]']": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "name", - "action": "start", - "value": "foo[bar]", - "ignoreCase": false - } - ] - ], - "input[title=\"Don't click me\"]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "title", - "action": "equals", - "value": "Don't click me", - "ignoreCase": false - } - ] - ], - "input[value=Test]": [ - [ - { - "type": "tag", - "name": "input" - }, - { - "type": "attribute", - "name": "value", - "action": "equals", - "value": "Test", - "ignoreCase": false - } - ] - ], - "li": [ - [ - { - "type": "tag", - "name": "li" - } - ] - ], - "li ~ li": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "li" - } - ] - ], - "li#attr-child-boosh[attr=boosh]": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attr-child-boosh", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "li#item_1.first": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_1", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "first", - "ignoreCase": false - } - ] - ], - "li#item_1.first.nonexistent": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_1", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "first", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "nonexistent", - "ignoreCase": false - } - ] - ], - "li#item_1.nonexistent": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_1", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "nonexistent", - "ignoreCase": false - } - ] - ], - "li#item_3[class]": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "item_3", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "class", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "li:contains(hello)": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "contains", - "data": "hello" - } - ] - ], - "li:contains(human)": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "contains", - "data": "human" - } - ] - ], - "li:contains(humans)": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "contains", - "data": "humans" - } - ] - ], - "li:not(:first-child)": [ - [ - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ] - } - ] - ], - "meta property thing": [ - [ - { - "type": "tag", - "name": "meta" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "property" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "thing" - } - ] - ], - "nonexistent": [ - [ - { - "type": "tag", - "name": "nonexistent" - } - ] - ], - "ol > li[attr=\"boosh\"]:last-child": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "boosh", - "ignoreCase": false - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "ol li": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "li" - } - ] - ], - "ol ol li#attr-child-boosh[attr=boosh]": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "ol" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attr-child-boosh", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "ol#list li#attr-child-boosh[attr=boosh]": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "list", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attr-child-boosh", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "ol#list>li#attr-child-boosh[attr=boosh]": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "list", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "attr-child-boosh", - "ignoreCase": false - }, - { - "type": "attribute", - "name": "attr", - "action": "equals", - "value": "boosh", - "ignoreCase": false - } - ] - ], - "ol:contains(human)": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "pseudo", - "name": "contains", - "data": "human" - } - ] - ], - "ol:contains(humans)": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "pseudo", - "name": "contains", - "data": "humans" - } - ] - ], - "ol:empty": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "pseudo", - "name": "empty", - "data": null - } - ] - ], - "ol>li": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - } - ] - ], - "ol>li+li": [ - [ - { - "type": "tag", - "name": "ol" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "li" - } - ] - ], - "option": [ - [ - { - "type": "tag", - "name": "option" - } - ] - ], - "option:first-child:contains('o')": [ - [ - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - }, - { - "type": "pseudo", - "name": "contains", - "data": "o" - } - ] - ], - "p": [ - [ - { - "type": "tag", - "name": "p" - } - ] - ], - "p + p": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "p .blog": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "descendant" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - } - ] - ], - "p < div": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "parent" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "p > * > *": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "universal" - }, - { - "type": "child" - }, - { - "type": "universal" - } - ] - ], - "p > a": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "p > a.blog": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "blog", - "ignoreCase": false - } - ] - ], - "p >a": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "p a[href*=#]": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "any", - "value": "#", - "ignoreCase": false - } - ] - ], - "p a[href^=#]": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "a" - }, - { - "type": "attribute", - "name": "href", - "action": "start", - "value": "#", - "ignoreCase": false - } - ] - ], - "p#blargh": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "blargh", - "ignoreCase": false - } - ] - ], - "p#firstp + p": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "firstp", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "p#strong": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "strong", - "ignoreCase": false - } - ] - ], - "p, div p": [ - [ - { - "type": "tag", - "name": "p" - } - ], - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "p,a": [ - [ - { - "type": "tag", - "name": "p" - } - ], - [ - { - "type": "tag", - "name": "a" - } - ] - ], - "p.first > a": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "first", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "p.foo": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "foo", - "ignoreCase": false - } - ] - ], - "p.odd": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "odd", - "ignoreCase": false - } - ] - ], - "p:contains(bar)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "contains", - "data": "bar" - } - ] - ], - "p:contains(id=\"foo\")[id!=')']": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "contains", - "data": "id=\"foo\"" - }, - { - "type": "attribute", - "name": "id", - "action": "not", - "value": ")", - "ignoreCase": false - } - ] - ], - "p:contains(id=\"foo\")[id!=\\)]": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "contains", - "data": "id=\"foo\"" - }, - { - "type": "attribute", - "name": "id", - "action": "not", - "value": ")", - "ignoreCase": false - } - ] - ], - "p:first-child": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "p:has( a )": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ] - } - ] - ], - "p:has(a)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "has", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ] - ] - } - ] - ], - "p:last-child": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "p:not(a,p)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "p" - } - ] - ] - } - ] - ], - "p:not(a,p,b)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "p" - } - ], - [ - { - "type": "tag", - "name": "b" - } - ] - ] - } - ] - ], - "p:not(p)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "p" - } - ] - ] - } - ] - ], - "p:not(p,a)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "not", - "data": [ - [ - { - "type": "tag", - "name": "p" - } - ], - [ - { - "type": "tag", - "name": "a" - } - ] - ] - } - ] - ], - "p:nth-child( 1 )": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": " 1 " - } - ] - ], - "p:nth-child(1)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "1" - } - ] - ], - "p:nth-child(2)": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2" - } - ] - ], - "p> a": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "p>a": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "p[lang=en] + p": [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "attribute", - "name": "lang", - "action": "equals", - "value": "en", - "ignoreCase": false - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "p" - } - ] - ], - "param": [ - [ - { - "type": "tag", - "name": "param" - } - ] - ], - "property[name=prop2]": [ - [ - { - "type": "tag", - "name": "property" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "prop2", - "ignoreCase": false - } - ] - ], - "select": [ - [ - { - "type": "tag", - "name": "select" - } - ] - ], - "select[name='select2'] option:selected": [ - [ - { - "type": "tag", - "name": "select" - }, - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "select2", - "ignoreCase": false - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "option" - }, - { - "type": "pseudo", - "name": "selected", - "data": null - } - ] - ], - "soap\\:Envelope": [ - [ - { - "type": "tag", - "name": "soap:envelope" - } - ] - ], - "span": [ - [ - { - "type": "tag", - "name": "span" - } - ] - ], - "span > span": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "span span": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "span" - } - ] - ], - "span ~ #level3_2": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "sibling" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "level3_2", - "ignoreCase": false - } - ] - ], - "span#dupL1": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "dupL1", - "ignoreCase": false - } - ] - ], - "span.span_bar": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "span_bar", - "ignoreCase": false - } - ] - ], - "span.span_foo": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "span_foo", - "ignoreCase": false - } - ] - ], - "span.span_wtf": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "attribute", - "name": "class", - "action": "element", - "value": "span_wtf", - "ignoreCase": false - } - ] - ], - "span:empty > *": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "pseudo", - "name": "empty", - "data": null - }, - { - "type": "child" - }, - { - "type": "universal" - } - ] - ], - "span:first-child": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "span:nth-child(5)": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "5" - } - ] - ], - "span[lang=中文]": [ - [ - { - "type": "tag", - "name": "span" - }, - { - "type": "attribute", - "name": "lang", - "action": "equals", - "value": "中文", - "ignoreCase": false - } - ] - ], - "strong": [ - [ - { - "type": "tag", - "name": "strong" - } - ] - ], - "strong#strong": [ - [ - { - "type": "tag", - "name": "strong" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "strong", - "ignoreCase": false - } - ] - ], - "tostring#toString": [ - [ - { - "type": "tag", - "name": "tostring" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "toString", - "ignoreCase": false - } - ] - ], - "ul > li": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - } - ] - ], - "ul > li:first-child": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "first-child", - "data": null - } - ] - ], - "ul > li:last-child": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "last-child", - "data": null - } - ] - ], - "ul > li:nth-child(1)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "1" - } - ] - ], - "ul > li:nth-child(2n)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2n" - } - ] - ], - "ul > li:nth-child(2n+1)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "2n+1" - } - ] - ], - "ul > li:nth-child(even)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "even" - } - ] - ], - "ul > li:nth-child(n)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "n" - } - ] - ], - "ul > li:nth-child(n-128)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "n-128" - } - ] - ], - "ul > li:nth-child(odd)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-child", - "data": "odd" - } - ] - ], - "ul > li:nth-last-child(1)": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - }, - { - "type": "pseudo", - "name": "nth-last-child", - "data": "1" - } - ] - ], - "ul#first": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "attribute", - "name": "id", - "action": "equals", - "value": "first", - "ignoreCase": false - } - ] - ], - "ul:empty": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "pseudo", - "name": "empty", - "data": null - } - ] - ], - "ul>li": [ - [ - { - "type": "tag", - "name": "ul" - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "li" - } - ] - ] -} \ No newline at end of file diff --git a/tests/test.js b/tests/test.js deleted file mode 100644 index ddc03d6f..00000000 --- a/tests/test.js +++ /dev/null @@ -1,433 +0,0 @@ -var assert = require("assert"), - parse = require("../"); - -var tests = [ - //tag names - [ - "div", - [ - [ - { - "type": "tag", - "name": "div" - } - ] - ], - "simple tag" - ], - [ - "*", - [ - [ - { - "type": "universal" - } - ] - ], - "universal" - ], - - //traversal - [ - "div div", - [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "descendant" - ], - [ - "div\t \n \tdiv", - [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "descendant" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "descendant /w whitespace" - ], - [ - "div + div", - [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "adjacent" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "adjacent" - ], - [ - "div ~ div", - [ - [ - { - "type": "tag", - "name": "div" - }, - { - "type": "sibling" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "sibling" - ], - [ - "p < div", - [ - [ - { - "type": "tag", - "name": "p" - }, - { - "type": "parent" - }, - { - "type": "tag", - "name": "div" - } - ] - ], - "parent" - ], - - - //Escaped whitespace - [ - "#\\ > a ", - [ - [ - { - "type": "attribute", - "action": "equals", - "name": "id", - "value": " ", - "ignoreCase": false - }, - { - "type": "child" - }, - { - "type": "tag", - "name": "a" - } - ] - ], - "Space between escaped space and combinator" - ], - [ - ".\\ ", - [ - [ - { - "type": "attribute", - "name": "class", - "action": "element", - "value": " ", - "ignoreCase": false - } - ] - ], - "Space after escaped space" - ], - [ - "\\61 ", - [ - [ - { - "type": "tag", - "name": "a" - } - ] - ], - "Numeric escape with space (BMP)" - ], - [ - "\\1d306\\01d306", - [ - [ - { - "type": "tag", - "name": "\uD834\uDF06\uD834\uDF06" - } - ] - ], - "Numeric escape (outside BMP)" - ], - - - //attributes - [ - "[name^=\"foo[\"]", - [ - [ - { - "type": "attribute", - "name": "name", - "action": "start", - "value": "foo[", - "ignoreCase": false - } - ] - ], - "quoted attribute" - ], - [ - "[name^=\"foo[bar]\"]", - [ - [ - { - "type": "attribute", - "name": "name", - "action": "start", - "value": "foo[bar]", - "ignoreCase": false - } - ] - ], - "quoted attribute" - ], - [ - "[name$=\"[bar]\"]", - [ - [ - { - "type": "attribute", - "name": "name", - "action": "end", - "value": "[bar]", - "ignoreCase": false - } - ] - ], - "quoted attribute" - ], - [ - "[href *= \"google\"]", - [ - [ - { - "type": "attribute", - "name": "href", - "action": "any", - "value": "google", - "ignoreCase": false - } - ] - ], - "quoted attribute with spaces" - ], - [ - "[value=\"\nsome text\n\"]", - [ - [ - { - "type": "attribute", - "name": "value", - "action": "equals", - "value": "\nsome text\n", - "ignoreCase": false - } - ] - ], - "quoted attribute with internal newline" - ], - [ - "[name=foo\\.baz]", - [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "foo.baz", - "ignoreCase": false - } - ] - ], - "attribute with escaped dot" - ], - [ - "[name=foo\\[bar\\]]", - [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "foo[bar]", - "ignoreCase": false - } - ] - ], - "attribute with escaped square brackets" - ], - [ - "[xml\\:test]", - [ - [ - { - "type": "attribute", - "name": "xml:test", - "action": "exists", - "value": "", - "ignoreCase": false - } - ] - ], - "escaped attribute" - ], - [ - "[name='foo ~ < > , bar' i]", - [ - [ - { - "type": "attribute", - "name": "name", - "action": "equals", - "value": "foo ~ < > , bar", - "ignoreCase": true - } - ] - ], - "attribute with previously normalized characters" - ], - - - - //pseudo selectors - [ - ":foo", - [ - [ - { - "type": "pseudo", - "name": "foo", - "data": null - } - ] - ], - "pseudo selector without any data" - ], - [ - ":bar(baz)", - [ - [ - { - "type": "pseudo", - "name": "bar", - "data": "baz" - } - ] - ], - "pseudo selector with data" - ], - [ - ":contains(\"(foo)\")", - [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "(foo)" - } - ] - ], - "pseudo selector with data" - ], - [ - ":icontains('')", - [ - [ - { - "type": "pseudo", - "name": "icontains", - "data": "" - } - ] - ], - "pseudo selector with quote-stripped data" - ], - [ - ":contains(\"(foo)\")", - [ - [ - { - "type": "pseudo", - "name": "contains", - "data": "(foo)" - } - ] - ], - "pseudo selector with data" - ], - - //multiple selectors - [ - "a , b", - [ - [ - { - "type": "tag", - "name": "a" - } - ], - [ - { - "type": "tag", - "name": "b" - } - ] - ], - "multiple selectors" - ] -]; - -tests.forEach(function(arr, i){ - arr[0] = parse(arr[0]); - assert.deepEqual.apply(null, arr); - console.log("\t%d: '%s' passed", i + 1, arr[2]); -}); - -console.log("\nCollected selectors (qwery, sizzle, nwmatcher)..."); - -var out = require("./out.json"); - -Object.keys(out).forEach(function(s){ - assert.deepEqual(parse(s), out[s], s); -}); - -console.log("Passed!"); diff --git a/tsconfig.es.json b/tsconfig.es.json new file mode 100644 index 00000000..8b7628c2 --- /dev/null +++ b/tsconfig.es.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "target": "ES2019", + "module": "es2015", + "outDir": "lib/es", + "moduleResolution": "node" + } +} diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json new file mode 100644 index 00000000..84f16131 --- /dev/null +++ b/tsconfig.eslint.json @@ -0,0 +1,5 @@ +{ + "extends": "./tsconfig.json", + "include": ["src"], + "exclude": [] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..5212144a --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + /* Basic Options */ + "target": "ES2019" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, + "module": "Node16" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, + // "lib": [], /* Specify library files to be included in the compilation. */ + "declaration": true /* Generates corresponding '.d.ts' file. */, + "declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */, + // "sourceMap": true, /* Generates corresponding '.map' file. */ + "outDir": "dist/esm" /* Redirect output structure to the directory. */, + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + + /* Strict Type-Checking Options */ + "strict": true /* Enable all strict type-checking options. */, + + /* Additional Checks */ + "isolatedDeclarations": true, + "isolatedModules": true, + "noUnusedLocals": true /* Report errors on unused locals. */, + "noUnusedParameters": true /* Report errors on unused parameters. */, + "noImplicitReturns": true /* Report error when not all code paths in function return a value. */, + "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */, + + /* Module Resolution Options */ + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + } +}