open-agreements 0.7.6 → 0.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/content/templates/openagreements-due-diligence-request-list/template.docx +0 -0
- package/content/templates/openagreements-due-diligence-request-list/template.md +1 -1
- package/dist/core/fill-pipeline.d.ts.map +1 -1
- package/dist/core/fill-pipeline.js +0 -8
- package/dist/core/fill-pipeline.js.map +1 -1
- package/dist/core/unified-pipeline.d.ts.map +1 -1
- package/dist/core/unified-pipeline.js +4 -6
- package/dist/core/unified-pipeline.js.map +1 -1
- package/gemini-extension.json +1 -1
- package/node_modules/@xmldom/xmldom/CHANGELOG.md +939 -0
- package/node_modules/@xmldom/xmldom/LICENSE +8 -0
- package/node_modules/@xmldom/xmldom/SECURITY.md +50 -0
- package/node_modules/@xmldom/xmldom/index.d.ts +1664 -0
- package/node_modules/@xmldom/xmldom/lib/.eslintrc.yml +3 -0
- package/node_modules/@xmldom/xmldom/lib/conventions.js +429 -0
- package/node_modules/@xmldom/xmldom/lib/dom-parser.js +586 -0
- package/node_modules/@xmldom/xmldom/lib/dom.js +3192 -0
- package/node_modules/@xmldom/xmldom/lib/entities.js +2171 -0
- package/node_modules/@xmldom/xmldom/lib/errors.js +202 -0
- package/node_modules/@xmldom/xmldom/lib/grammar.js +533 -0
- package/node_modules/@xmldom/xmldom/lib/index.js +41 -0
- package/node_modules/@xmldom/xmldom/lib/sax.js +929 -0
- package/node_modules/@xmldom/xmldom/package.json +74 -0
- package/node_modules/@xmldom/xmldom/readme.md +364 -0
- package/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/core-util-is/README.md +3 -0
- package/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/core-util-is/package.json +38 -0
- package/node_modules/immediate/LICENSE.txt +20 -0
- package/node_modules/immediate/README.md +93 -0
- package/node_modules/immediate/dist/immediate.js +75 -0
- package/node_modules/immediate/dist/immediate.min.js +1 -0
- package/node_modules/immediate/lib/browser.js +69 -0
- package/node_modules/immediate/lib/index.js +73 -0
- package/node_modules/immediate/package.json +42 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/isarray/.npmignore +1 -0
- package/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/isarray/Makefile +6 -0
- package/node_modules/isarray/README.md +60 -0
- package/node_modules/isarray/component.json +19 -0
- package/node_modules/isarray/index.js +5 -0
- package/node_modules/isarray/package.json +45 -0
- package/node_modules/isarray/test.js +20 -0
- package/node_modules/jszip/.codeclimate.yml +16 -0
- package/node_modules/jszip/.editorconfig +8 -0
- package/node_modules/jszip/.eslintrc.js +43 -0
- package/node_modules/jszip/.github/workflows/pr.yaml +58 -0
- package/node_modules/jszip/.jekyll-metadata +0 -0
- package/node_modules/jszip/.travis.yml +17 -0
- package/node_modules/jszip/CHANGES.md +204 -0
- package/node_modules/jszip/LICENSE.markdown +651 -0
- package/node_modules/jszip/README.markdown +33 -0
- package/node_modules/jszip/deps.js +37 -0
- package/node_modules/jszip/dist/jszip.js +11577 -0
- package/node_modules/jszip/dist/jszip.min.js +13 -0
- package/node_modules/jszip/graph.svg +601 -0
- package/node_modules/jszip/index.d.ts +330 -0
- package/node_modules/jszip/lib/base64.js +106 -0
- package/node_modules/jszip/lib/compressedObject.js +74 -0
- package/node_modules/jszip/lib/compressions.js +14 -0
- package/node_modules/jszip/lib/crc32.js +77 -0
- package/node_modules/jszip/lib/defaults.js +11 -0
- package/node_modules/jszip/lib/external.js +18 -0
- package/node_modules/jszip/lib/flate.js +85 -0
- package/node_modules/jszip/lib/generate/ZipFileWorker.js +539 -0
- package/node_modules/jszip/lib/generate/index.js +57 -0
- package/node_modules/jszip/lib/index.js +55 -0
- package/node_modules/jszip/lib/license_header.js +11 -0
- package/node_modules/jszip/lib/load.js +88 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
- package/node_modules/jszip/lib/nodejsUtils.js +57 -0
- package/node_modules/jszip/lib/object.js +384 -0
- package/node_modules/jszip/lib/readable-stream-browser.js +10 -0
- package/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
- package/node_modules/jszip/lib/reader/DataReader.js +116 -0
- package/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
- package/node_modules/jszip/lib/reader/StringReader.js +38 -0
- package/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
- package/node_modules/jszip/lib/reader/readerFor.js +28 -0
- package/node_modules/jszip/lib/signature.js +7 -0
- package/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
- package/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
- package/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
- package/node_modules/jszip/lib/stream/DataWorker.js +116 -0
- package/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
- package/node_modules/jszip/lib/stream/StreamHelper.js +214 -0
- package/node_modules/jszip/lib/support.js +38 -0
- package/node_modules/jszip/lib/utf8.js +275 -0
- package/node_modules/jszip/lib/utils.js +501 -0
- package/node_modules/jszip/lib/zipEntries.js +261 -0
- package/node_modules/jszip/lib/zipEntry.js +293 -0
- package/node_modules/jszip/lib/zipObject.js +133 -0
- package/node_modules/jszip/package.json +67 -0
- package/node_modules/jszip/sponsors.md +21 -0
- package/node_modules/jszip/tsconfig.json +101 -0
- package/node_modules/jszip/vendor/FileSaver.js +247 -0
- package/node_modules/lie/README.md +62 -0
- package/node_modules/lie/dist/lie.js +350 -0
- package/node_modules/lie/dist/lie.min.js +1 -0
- package/node_modules/lie/dist/lie.polyfill.js +358 -0
- package/node_modules/lie/dist/lie.polyfill.min.js +1 -0
- package/node_modules/lie/lib/browser.js +273 -0
- package/node_modules/lie/lib/index.js +298 -0
- package/node_modules/lie/license.md +7 -0
- package/node_modules/lie/lie.d.ts +244 -0
- package/node_modules/lie/package.json +69 -0
- package/node_modules/lie/polyfill.js +4 -0
- package/node_modules/pako/LICENSE +21 -0
- package/node_modules/pako/README.md +191 -0
- package/node_modules/pako/dist/pako.js +6818 -0
- package/node_modules/pako/dist/pako.min.js +1 -0
- package/node_modules/pako/dist/pako_deflate.js +3997 -0
- package/node_modules/pako/dist/pako_deflate.min.js +1 -0
- package/node_modules/pako/dist/pako_inflate.js +3300 -0
- package/node_modules/pako/dist/pako_inflate.min.js +1 -0
- package/node_modules/pako/index.js +14 -0
- package/node_modules/pako/lib/deflate.js +400 -0
- package/node_modules/pako/lib/inflate.js +423 -0
- package/node_modules/pako/lib/utils/common.js +105 -0
- package/node_modules/pako/lib/utils/strings.js +187 -0
- package/node_modules/pako/lib/zlib/README +59 -0
- package/node_modules/pako/lib/zlib/adler32.js +51 -0
- package/node_modules/pako/lib/zlib/constants.js +68 -0
- package/node_modules/pako/lib/zlib/crc32.js +59 -0
- package/node_modules/pako/lib/zlib/deflate.js +1874 -0
- package/node_modules/pako/lib/zlib/gzheader.js +58 -0
- package/node_modules/pako/lib/zlib/inffast.js +345 -0
- package/node_modules/pako/lib/zlib/inflate.js +1556 -0
- package/node_modules/pako/lib/zlib/inftrees.js +343 -0
- package/node_modules/pako/lib/zlib/messages.js +32 -0
- package/node_modules/pako/lib/zlib/trees.js +1222 -0
- package/node_modules/pako/lib/zlib/zstream.js +47 -0
- package/node_modules/pako/package.json +44 -0
- package/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/process-nextick-args/package.json +25 -0
- package/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/readable-stream/.travis.yml +34 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +58 -0
- package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +685 -0
- package/node_modules/readable-stream/lib/internal/streams/BufferList.js +78 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +84 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +52 -0
- package/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/setimmediate/LICENSE.txt +20 -0
- package/node_modules/setimmediate/package.json +30 -0
- package/node_modules/setimmediate/setImmediate.js +186 -0
- package/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +31 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/package.json +1 -1
- package/skills/client-email/SKILL.md +8 -6
- package/skills/employment-contract/SKILL.md +23 -6
- package/skills/non-compete-contract-explainer/content/alabama.md +251 -0
- package/skills/non-compete-contract-explainer/content/alaska.md +160 -0
- package/skills/non-compete-contract-explainer/content/american-samoa.md +187 -0
- package/skills/non-compete-contract-explainer/content/arizona.md +293 -0
- package/skills/non-compete-contract-explainer/content/arkansas.md +235 -0
- package/skills/non-compete-contract-explainer/content/california.md +270 -0
- package/skills/non-compete-contract-explainer/content/cnmi.md +168 -0
- package/skills/non-compete-contract-explainer/content/colorado.md +277 -0
- package/skills/non-compete-contract-explainer/content/connecticut.md +220 -0
- package/skills/non-compete-contract-explainer/content/delaware.md +222 -0
- package/skills/non-compete-contract-explainer/content/district-of-columbia.md +263 -0
- package/skills/non-compete-contract-explainer/content/florida.md +267 -0
- package/skills/non-compete-contract-explainer/content/georgia.md +323 -0
- package/skills/non-compete-contract-explainer/content/guam.md +180 -0
- package/skills/non-compete-contract-explainer/content/hawaii.md +236 -0
- package/skills/non-compete-contract-explainer/content/idaho.md +258 -0
- package/skills/non-compete-contract-explainer/content/illinois.md +266 -0
- package/skills/non-compete-contract-explainer/content/india.md +269 -0
- package/skills/non-compete-contract-explainer/content/indiana.md +253 -0
- package/skills/non-compete-contract-explainer/content/iowa.md +232 -0
- package/skills/non-compete-contract-explainer/content/kansas.md +227 -0
- package/skills/non-compete-contract-explainer/content/kentucky.md +201 -0
- package/skills/non-compete-contract-explainer/content/louisiana.md +272 -0
- package/skills/non-compete-contract-explainer/content/maine.md +178 -0
- package/skills/non-compete-contract-explainer/content/maryland.md +244 -0
- package/skills/non-compete-contract-explainer/content/massachusetts.md +272 -0
- package/skills/non-compete-contract-explainer/content/michigan.md +222 -0
- package/skills/non-compete-contract-explainer/content/minnesota.md +171 -0
- package/skills/non-compete-contract-explainer/content/mississippi.md +237 -0
- package/skills/non-compete-contract-explainer/content/missouri.md +219 -0
- package/skills/non-compete-contract-explainer/content/montana.md +202 -0
- package/skills/non-compete-contract-explainer/content/nebraska.md +206 -0
- package/skills/non-compete-contract-explainer/content/nevada.md +278 -0
- package/skills/non-compete-contract-explainer/content/new-hampshire.md +233 -0
- package/skills/non-compete-contract-explainer/content/new-jersey.md +277 -0
- package/skills/non-compete-contract-explainer/content/new-mexico.md +244 -0
- package/skills/non-compete-contract-explainer/content/new-york.md +226 -0
- package/skills/non-compete-contract-explainer/content/north-carolina.md +346 -0
- package/skills/non-compete-contract-explainer/content/north-dakota.md +187 -0
- package/skills/non-compete-contract-explainer/content/ohio.md +207 -0
- package/skills/non-compete-contract-explainer/content/oklahoma.md +196 -0
- package/skills/non-compete-contract-explainer/content/oregon.md +359 -0
- package/skills/non-compete-contract-explainer/content/pennsylvania.md +254 -0
- package/skills/non-compete-contract-explainer/content/philippines.md +211 -0
- package/skills/non-compete-contract-explainer/content/puerto-rico.md +163 -0
- package/skills/non-compete-contract-explainer/content/rhode-island.md +171 -0
- package/skills/non-compete-contract-explainer/content/singapore.md +229 -0
- package/skills/non-compete-contract-explainer/content/south-carolina.md +226 -0
- package/skills/non-compete-contract-explainer/content/south-dakota.md +222 -0
- package/skills/non-compete-contract-explainer/content/tennessee.md +251 -0
- package/skills/non-compete-contract-explainer/content/texas.md +297 -0
- package/skills/non-compete-contract-explainer/content/us-virgin-islands.md +193 -0
- package/skills/non-compete-contract-explainer/content/utah.md +250 -0
- package/skills/non-compete-contract-explainer/content/vermont.md +193 -0
- package/skills/non-compete-contract-explainer/content/virginia.md +213 -0
- package/skills/non-compete-contract-explainer/content/washington.md +296 -0
- package/skills/non-compete-contract-explainer/content/west-virginia.md +187 -0
- package/skills/non-compete-contract-explainer/content/wisconsin.md +293 -0
- package/skills/non-compete-contract-explainer/content/wyoming.md +55 -45
- package/skills/non-compete-contract-explainer/manifest.json +523 -1
|
@@ -1,10 +1,532 @@
|
|
|
1
1
|
{
|
|
2
2
|
"topic": "non-compete",
|
|
3
3
|
"snapshotAsOf": "2026-06-08",
|
|
4
|
-
"sourceCommit": "
|
|
4
|
+
"sourceCommit": "4a05ef4c7f0031c233548d2ea2d1d176b51e5e37",
|
|
5
5
|
"canonicalBase": "https://openagreements.org/legal/non-compete",
|
|
6
6
|
"license": "CC BY 4.0",
|
|
7
7
|
"jurisdictions": [
|
|
8
|
+
{
|
|
9
|
+
"jurisdiction": "Alabama",
|
|
10
|
+
"slug": "alabama",
|
|
11
|
+
"countryCode": "US",
|
|
12
|
+
"file": "content/alabama.md",
|
|
13
|
+
"lastReviewed": "2026-06-03",
|
|
14
|
+
"snapshotAsOf": "2026-06-08",
|
|
15
|
+
"stale": false
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"jurisdiction": "Alaska",
|
|
19
|
+
"slug": "alaska",
|
|
20
|
+
"countryCode": "US",
|
|
21
|
+
"file": "content/alaska.md",
|
|
22
|
+
"lastReviewed": "2026-06-01",
|
|
23
|
+
"snapshotAsOf": "2026-06-08",
|
|
24
|
+
"stale": false
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"jurisdiction": "American Samoa",
|
|
28
|
+
"slug": "american-samoa",
|
|
29
|
+
"countryCode": "US",
|
|
30
|
+
"file": "content/american-samoa.md",
|
|
31
|
+
"lastReviewed": "2026-06-03",
|
|
32
|
+
"snapshotAsOf": "2026-06-08",
|
|
33
|
+
"stale": false
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"jurisdiction": "Arizona",
|
|
37
|
+
"slug": "arizona",
|
|
38
|
+
"countryCode": "US",
|
|
39
|
+
"file": "content/arizona.md",
|
|
40
|
+
"lastReviewed": "2026-06-03",
|
|
41
|
+
"snapshotAsOf": "2026-06-08",
|
|
42
|
+
"stale": false
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"jurisdiction": "Arkansas",
|
|
46
|
+
"slug": "arkansas",
|
|
47
|
+
"countryCode": "US",
|
|
48
|
+
"file": "content/arkansas.md",
|
|
49
|
+
"lastReviewed": "2026-06-02",
|
|
50
|
+
"snapshotAsOf": "2026-06-08",
|
|
51
|
+
"stale": false
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"jurisdiction": "California",
|
|
55
|
+
"slug": "california",
|
|
56
|
+
"countryCode": "US",
|
|
57
|
+
"file": "content/california.md",
|
|
58
|
+
"lastReviewed": "2026-06-03",
|
|
59
|
+
"snapshotAsOf": "2026-06-08",
|
|
60
|
+
"stale": false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"jurisdiction": "Northern Mariana Islands",
|
|
64
|
+
"slug": "cnmi",
|
|
65
|
+
"countryCode": "US",
|
|
66
|
+
"file": "content/cnmi.md",
|
|
67
|
+
"lastReviewed": "2026-06-03",
|
|
68
|
+
"snapshotAsOf": "2026-06-08",
|
|
69
|
+
"stale": false
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"jurisdiction": "Colorado",
|
|
73
|
+
"slug": "colorado",
|
|
74
|
+
"countryCode": "US",
|
|
75
|
+
"file": "content/colorado.md",
|
|
76
|
+
"lastReviewed": "2026-06-03",
|
|
77
|
+
"snapshotAsOf": "2026-06-08",
|
|
78
|
+
"stale": false
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"jurisdiction": "Connecticut",
|
|
82
|
+
"slug": "connecticut",
|
|
83
|
+
"countryCode": "US",
|
|
84
|
+
"file": "content/connecticut.md",
|
|
85
|
+
"lastReviewed": "2026-06-02",
|
|
86
|
+
"snapshotAsOf": "2026-06-08",
|
|
87
|
+
"stale": false
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"jurisdiction": "Delaware",
|
|
91
|
+
"slug": "delaware",
|
|
92
|
+
"countryCode": "US",
|
|
93
|
+
"file": "content/delaware.md",
|
|
94
|
+
"lastReviewed": "2026-06-02",
|
|
95
|
+
"snapshotAsOf": "2026-06-08",
|
|
96
|
+
"stale": false
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"jurisdiction": "District of Columbia",
|
|
100
|
+
"slug": "district-of-columbia",
|
|
101
|
+
"countryCode": "US",
|
|
102
|
+
"file": "content/district-of-columbia.md",
|
|
103
|
+
"lastReviewed": "2026-06-03",
|
|
104
|
+
"snapshotAsOf": "2026-06-08",
|
|
105
|
+
"stale": false
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"jurisdiction": "Florida",
|
|
109
|
+
"slug": "florida",
|
|
110
|
+
"countryCode": "US",
|
|
111
|
+
"file": "content/florida.md",
|
|
112
|
+
"lastReviewed": "2026-06-03",
|
|
113
|
+
"snapshotAsOf": "2026-06-08",
|
|
114
|
+
"stale": false
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"jurisdiction": "Georgia",
|
|
118
|
+
"slug": "georgia",
|
|
119
|
+
"countryCode": "US",
|
|
120
|
+
"file": "content/georgia.md",
|
|
121
|
+
"lastReviewed": "2026-06-03",
|
|
122
|
+
"snapshotAsOf": "2026-06-08",
|
|
123
|
+
"stale": false
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"jurisdiction": "Guam",
|
|
127
|
+
"slug": "guam",
|
|
128
|
+
"countryCode": "US",
|
|
129
|
+
"file": "content/guam.md",
|
|
130
|
+
"lastReviewed": "2026-06-03",
|
|
131
|
+
"snapshotAsOf": "2026-06-08",
|
|
132
|
+
"stale": false
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"jurisdiction": "Hawaii",
|
|
136
|
+
"slug": "hawaii",
|
|
137
|
+
"countryCode": "US",
|
|
138
|
+
"file": "content/hawaii.md",
|
|
139
|
+
"lastReviewed": "2026-06-02",
|
|
140
|
+
"snapshotAsOf": "2026-06-08",
|
|
141
|
+
"stale": false
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"jurisdiction": "Idaho",
|
|
145
|
+
"slug": "idaho",
|
|
146
|
+
"countryCode": "US",
|
|
147
|
+
"file": "content/idaho.md",
|
|
148
|
+
"lastReviewed": "2026-06-02",
|
|
149
|
+
"snapshotAsOf": "2026-06-08",
|
|
150
|
+
"stale": false
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"jurisdiction": "Illinois",
|
|
154
|
+
"slug": "illinois",
|
|
155
|
+
"countryCode": "US",
|
|
156
|
+
"file": "content/illinois.md",
|
|
157
|
+
"lastReviewed": "2026-06-03",
|
|
158
|
+
"snapshotAsOf": "2026-06-08",
|
|
159
|
+
"stale": false
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"jurisdiction": "India",
|
|
163
|
+
"slug": "india",
|
|
164
|
+
"countryCode": "IN",
|
|
165
|
+
"file": "content/india.md",
|
|
166
|
+
"lastReviewed": "2026-06-03",
|
|
167
|
+
"snapshotAsOf": "2026-06-08",
|
|
168
|
+
"stale": false
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"jurisdiction": "Indiana",
|
|
172
|
+
"slug": "indiana",
|
|
173
|
+
"countryCode": "US",
|
|
174
|
+
"file": "content/indiana.md",
|
|
175
|
+
"lastReviewed": "2026-06-03",
|
|
176
|
+
"snapshotAsOf": "2026-06-08",
|
|
177
|
+
"stale": false
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"jurisdiction": "Iowa",
|
|
181
|
+
"slug": "iowa",
|
|
182
|
+
"countryCode": "US",
|
|
183
|
+
"file": "content/iowa.md",
|
|
184
|
+
"lastReviewed": "2026-06-02",
|
|
185
|
+
"snapshotAsOf": "2026-06-08",
|
|
186
|
+
"stale": false
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"jurisdiction": "Kansas",
|
|
190
|
+
"slug": "kansas",
|
|
191
|
+
"countryCode": "US",
|
|
192
|
+
"file": "content/kansas.md",
|
|
193
|
+
"lastReviewed": "2026-06-02",
|
|
194
|
+
"snapshotAsOf": "2026-06-08",
|
|
195
|
+
"stale": false
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"jurisdiction": "Kentucky",
|
|
199
|
+
"slug": "kentucky",
|
|
200
|
+
"countryCode": "US",
|
|
201
|
+
"file": "content/kentucky.md",
|
|
202
|
+
"lastReviewed": "2026-06-03",
|
|
203
|
+
"snapshotAsOf": "2026-06-08",
|
|
204
|
+
"stale": false
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"jurisdiction": "Louisiana",
|
|
208
|
+
"slug": "louisiana",
|
|
209
|
+
"countryCode": "US",
|
|
210
|
+
"file": "content/louisiana.md",
|
|
211
|
+
"lastReviewed": "2026-06-03",
|
|
212
|
+
"snapshotAsOf": "2026-06-08",
|
|
213
|
+
"stale": false
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"jurisdiction": "Maine",
|
|
217
|
+
"slug": "maine",
|
|
218
|
+
"countryCode": "US",
|
|
219
|
+
"file": "content/maine.md",
|
|
220
|
+
"lastReviewed": "2026-06-02",
|
|
221
|
+
"snapshotAsOf": "2026-06-08",
|
|
222
|
+
"stale": false
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"jurisdiction": "Maryland",
|
|
226
|
+
"slug": "maryland",
|
|
227
|
+
"countryCode": "US",
|
|
228
|
+
"file": "content/maryland.md",
|
|
229
|
+
"lastReviewed": "2026-06-03",
|
|
230
|
+
"snapshotAsOf": "2026-06-08",
|
|
231
|
+
"stale": false
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"jurisdiction": "Massachusetts",
|
|
235
|
+
"slug": "massachusetts",
|
|
236
|
+
"countryCode": "US",
|
|
237
|
+
"file": "content/massachusetts.md",
|
|
238
|
+
"lastReviewed": "2026-06-03",
|
|
239
|
+
"snapshotAsOf": "2026-06-08",
|
|
240
|
+
"stale": false
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"jurisdiction": "Michigan",
|
|
244
|
+
"slug": "michigan",
|
|
245
|
+
"countryCode": "US",
|
|
246
|
+
"file": "content/michigan.md",
|
|
247
|
+
"lastReviewed": "2026-06-03",
|
|
248
|
+
"snapshotAsOf": "2026-06-08",
|
|
249
|
+
"stale": false
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"jurisdiction": "Minnesota",
|
|
253
|
+
"slug": "minnesota",
|
|
254
|
+
"countryCode": "US",
|
|
255
|
+
"file": "content/minnesota.md",
|
|
256
|
+
"lastReviewed": "2026-05-27",
|
|
257
|
+
"snapshotAsOf": "2026-06-08",
|
|
258
|
+
"stale": false
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"jurisdiction": "Mississippi",
|
|
262
|
+
"slug": "mississippi",
|
|
263
|
+
"countryCode": "US",
|
|
264
|
+
"file": "content/mississippi.md",
|
|
265
|
+
"lastReviewed": "2026-06-03",
|
|
266
|
+
"snapshotAsOf": "2026-06-08",
|
|
267
|
+
"stale": false
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"jurisdiction": "Missouri",
|
|
271
|
+
"slug": "missouri",
|
|
272
|
+
"countryCode": "US",
|
|
273
|
+
"file": "content/missouri.md",
|
|
274
|
+
"lastReviewed": "2026-06-03",
|
|
275
|
+
"snapshotAsOf": "2026-06-08",
|
|
276
|
+
"stale": false
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"jurisdiction": "Montana",
|
|
280
|
+
"slug": "montana",
|
|
281
|
+
"countryCode": "US",
|
|
282
|
+
"file": "content/montana.md",
|
|
283
|
+
"lastReviewed": "2026-06-02",
|
|
284
|
+
"snapshotAsOf": "2026-06-08",
|
|
285
|
+
"stale": false
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"jurisdiction": "Nebraska",
|
|
289
|
+
"slug": "nebraska",
|
|
290
|
+
"countryCode": "US",
|
|
291
|
+
"file": "content/nebraska.md",
|
|
292
|
+
"lastReviewed": "2026-06-02",
|
|
293
|
+
"snapshotAsOf": "2026-06-08",
|
|
294
|
+
"stale": false
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"jurisdiction": "Nevada",
|
|
298
|
+
"slug": "nevada",
|
|
299
|
+
"countryCode": "US",
|
|
300
|
+
"file": "content/nevada.md",
|
|
301
|
+
"lastReviewed": "2026-06-02",
|
|
302
|
+
"snapshotAsOf": "2026-06-08",
|
|
303
|
+
"stale": false
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"jurisdiction": "New Hampshire",
|
|
307
|
+
"slug": "new-hampshire",
|
|
308
|
+
"countryCode": "US",
|
|
309
|
+
"file": "content/new-hampshire.md",
|
|
310
|
+
"lastReviewed": "2026-06-02",
|
|
311
|
+
"snapshotAsOf": "2026-06-08",
|
|
312
|
+
"stale": false
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"jurisdiction": "New Jersey",
|
|
316
|
+
"slug": "new-jersey",
|
|
317
|
+
"countryCode": "US",
|
|
318
|
+
"file": "content/new-jersey.md",
|
|
319
|
+
"lastReviewed": "2026-06-03",
|
|
320
|
+
"snapshotAsOf": "2026-06-08",
|
|
321
|
+
"stale": false
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"jurisdiction": "New Mexico",
|
|
325
|
+
"slug": "new-mexico",
|
|
326
|
+
"countryCode": "US",
|
|
327
|
+
"file": "content/new-mexico.md",
|
|
328
|
+
"lastReviewed": "2026-06-03",
|
|
329
|
+
"snapshotAsOf": "2026-06-08",
|
|
330
|
+
"stale": false
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"jurisdiction": "New York",
|
|
334
|
+
"slug": "new-york",
|
|
335
|
+
"countryCode": "US",
|
|
336
|
+
"file": "content/new-york.md",
|
|
337
|
+
"lastReviewed": "2026-06-03",
|
|
338
|
+
"snapshotAsOf": "2026-06-08",
|
|
339
|
+
"stale": false
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"jurisdiction": "North Carolina",
|
|
343
|
+
"slug": "north-carolina",
|
|
344
|
+
"countryCode": "US",
|
|
345
|
+
"file": "content/north-carolina.md",
|
|
346
|
+
"lastReviewed": "2026-06-03",
|
|
347
|
+
"snapshotAsOf": "2026-06-08",
|
|
348
|
+
"stale": false
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"jurisdiction": "North Dakota",
|
|
352
|
+
"slug": "north-dakota",
|
|
353
|
+
"countryCode": "US",
|
|
354
|
+
"file": "content/north-dakota.md",
|
|
355
|
+
"lastReviewed": "2026-06-02",
|
|
356
|
+
"snapshotAsOf": "2026-06-08",
|
|
357
|
+
"stale": false
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"jurisdiction": "Ohio",
|
|
361
|
+
"slug": "ohio",
|
|
362
|
+
"countryCode": "US",
|
|
363
|
+
"file": "content/ohio.md",
|
|
364
|
+
"lastReviewed": "2026-06-03",
|
|
365
|
+
"snapshotAsOf": "2026-06-08",
|
|
366
|
+
"stale": false
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"jurisdiction": "Oklahoma",
|
|
370
|
+
"slug": "oklahoma",
|
|
371
|
+
"countryCode": "US",
|
|
372
|
+
"file": "content/oklahoma.md",
|
|
373
|
+
"lastReviewed": "2026-06-03",
|
|
374
|
+
"snapshotAsOf": "2026-06-08",
|
|
375
|
+
"stale": false
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"jurisdiction": "Oregon",
|
|
379
|
+
"slug": "oregon",
|
|
380
|
+
"countryCode": "US",
|
|
381
|
+
"file": "content/oregon.md",
|
|
382
|
+
"lastReviewed": "2026-06-03",
|
|
383
|
+
"snapshotAsOf": "2026-06-08",
|
|
384
|
+
"stale": false
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"jurisdiction": "Pennsylvania",
|
|
388
|
+
"slug": "pennsylvania",
|
|
389
|
+
"countryCode": "US",
|
|
390
|
+
"file": "content/pennsylvania.md",
|
|
391
|
+
"lastReviewed": "2026-06-03",
|
|
392
|
+
"snapshotAsOf": "2026-06-08",
|
|
393
|
+
"stale": false
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"jurisdiction": "Philippines",
|
|
397
|
+
"slug": "philippines",
|
|
398
|
+
"countryCode": "PH",
|
|
399
|
+
"file": "content/philippines.md",
|
|
400
|
+
"lastReviewed": "2026-06-03",
|
|
401
|
+
"snapshotAsOf": "2026-06-08",
|
|
402
|
+
"stale": false
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"jurisdiction": "Puerto Rico",
|
|
406
|
+
"slug": "puerto-rico",
|
|
407
|
+
"countryCode": "US",
|
|
408
|
+
"file": "content/puerto-rico.md",
|
|
409
|
+
"lastReviewed": "2026-06-02",
|
|
410
|
+
"snapshotAsOf": "2026-06-08",
|
|
411
|
+
"stale": false
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"jurisdiction": "Rhode Island",
|
|
415
|
+
"slug": "rhode-island",
|
|
416
|
+
"countryCode": "US",
|
|
417
|
+
"file": "content/rhode-island.md",
|
|
418
|
+
"lastReviewed": "2026-06-02",
|
|
419
|
+
"snapshotAsOf": "2026-06-08",
|
|
420
|
+
"stale": false
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"jurisdiction": "Singapore",
|
|
424
|
+
"slug": "singapore",
|
|
425
|
+
"countryCode": "SG",
|
|
426
|
+
"file": "content/singapore.md",
|
|
427
|
+
"lastReviewed": "2026-06-03",
|
|
428
|
+
"snapshotAsOf": "2026-06-08",
|
|
429
|
+
"stale": false
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"jurisdiction": "South Carolina",
|
|
433
|
+
"slug": "south-carolina",
|
|
434
|
+
"countryCode": "US",
|
|
435
|
+
"file": "content/south-carolina.md",
|
|
436
|
+
"lastReviewed": "2026-06-03",
|
|
437
|
+
"snapshotAsOf": "2026-06-08",
|
|
438
|
+
"stale": false
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"jurisdiction": "South Dakota",
|
|
442
|
+
"slug": "south-dakota",
|
|
443
|
+
"countryCode": "US",
|
|
444
|
+
"file": "content/south-dakota.md",
|
|
445
|
+
"lastReviewed": "2026-06-02",
|
|
446
|
+
"snapshotAsOf": "2026-06-08",
|
|
447
|
+
"stale": false
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"jurisdiction": "Tennessee",
|
|
451
|
+
"slug": "tennessee",
|
|
452
|
+
"countryCode": "US",
|
|
453
|
+
"file": "content/tennessee.md",
|
|
454
|
+
"lastReviewed": "2026-06-03",
|
|
455
|
+
"snapshotAsOf": "2026-06-08",
|
|
456
|
+
"stale": false
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"jurisdiction": "Texas",
|
|
460
|
+
"slug": "texas",
|
|
461
|
+
"countryCode": "US",
|
|
462
|
+
"file": "content/texas.md",
|
|
463
|
+
"lastReviewed": "2026-06-03",
|
|
464
|
+
"snapshotAsOf": "2026-06-08",
|
|
465
|
+
"stale": false
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"jurisdiction": "U.S. Virgin Islands",
|
|
469
|
+
"slug": "us-virgin-islands",
|
|
470
|
+
"countryCode": "US",
|
|
471
|
+
"file": "content/us-virgin-islands.md",
|
|
472
|
+
"lastReviewed": "2026-06-03",
|
|
473
|
+
"snapshotAsOf": "2026-06-08",
|
|
474
|
+
"stale": false
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"jurisdiction": "Utah",
|
|
478
|
+
"slug": "utah",
|
|
479
|
+
"countryCode": "US",
|
|
480
|
+
"file": "content/utah.md",
|
|
481
|
+
"lastReviewed": "2026-06-02",
|
|
482
|
+
"snapshotAsOf": "2026-06-08",
|
|
483
|
+
"stale": false
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"jurisdiction": "Vermont",
|
|
487
|
+
"slug": "vermont",
|
|
488
|
+
"countryCode": "US",
|
|
489
|
+
"file": "content/vermont.md",
|
|
490
|
+
"lastReviewed": "2026-06-01",
|
|
491
|
+
"snapshotAsOf": "2026-06-08",
|
|
492
|
+
"stale": false
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"jurisdiction": "Virginia",
|
|
496
|
+
"slug": "virginia",
|
|
497
|
+
"countryCode": "US",
|
|
498
|
+
"file": "content/virginia.md",
|
|
499
|
+
"lastReviewed": "2026-06-02",
|
|
500
|
+
"snapshotAsOf": "2026-06-08",
|
|
501
|
+
"stale": false
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"jurisdiction": "Washington",
|
|
505
|
+
"slug": "washington",
|
|
506
|
+
"countryCode": "US",
|
|
507
|
+
"file": "content/washington.md",
|
|
508
|
+
"lastReviewed": "2026-06-03",
|
|
509
|
+
"snapshotAsOf": "2026-06-08",
|
|
510
|
+
"stale": false
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"jurisdiction": "West Virginia",
|
|
514
|
+
"slug": "west-virginia",
|
|
515
|
+
"countryCode": "US",
|
|
516
|
+
"file": "content/west-virginia.md",
|
|
517
|
+
"lastReviewed": "2026-06-02",
|
|
518
|
+
"snapshotAsOf": "2026-06-08",
|
|
519
|
+
"stale": false
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"jurisdiction": "Wisconsin",
|
|
523
|
+
"slug": "wisconsin",
|
|
524
|
+
"countryCode": "US",
|
|
525
|
+
"file": "content/wisconsin.md",
|
|
526
|
+
"lastReviewed": "2026-06-03",
|
|
527
|
+
"snapshotAsOf": "2026-06-08",
|
|
528
|
+
"stale": false
|
|
529
|
+
},
|
|
8
530
|
{
|
|
9
531
|
"jurisdiction": "Wyoming",
|
|
10
532
|
"slug": "wyoming",
|