@axe-core/watcher 4.3.0-next.4c93fc4c → 4.3.0-next.5359ed21
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/EXTENSION-LICENSES-3RD-PARTY.md +3 -425
- package/dist/Controller.js +50 -3
- package/dist/Controller.js.map +1 -1
- package/dist/cypress/cypress.js +4 -1
- package/dist/cypress/cypress.js.map +1 -1
- package/dist/utils/saveScreenshotsLocally.js +5 -1
- package/dist/utils/saveScreenshotsLocally.js.map +1 -1
- package/dist/utils/screenshotFilename.d.ts +8 -0
- package/dist/utils/screenshotFilename.js +18 -0
- package/dist/utils/screenshotFilename.js.map +1 -0
- package/dist/utils/sync-fetch-worker.mjs +65 -1
- package/dist/utils/sync-fetch.d.ts +32 -0
- package/dist/utils/sync-fetch.js +29 -11
- package/dist/utils/sync-fetch.js.map +1 -1
- package/dist/utils/writeVariables.d.ts +4 -1
- package/dist/utils/writeVariables.js +2 -1
- package/dist/utils/writeVariables.js.map +1 -1
- package/extension/axe-versions/axe-core@4.12.0/axe.min.js +12 -0
- package/extension/axe-versions/axe-core@4.12.0/gather-internals.js +219 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/README.md +9 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/_template.json +1147 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/da.json +799 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/de.json +1127 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/el.json +1069 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/es.json +790 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/eu.json +789 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/fr.json +994 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/he.json +1017 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/it.json +1108 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/ja.json +1128 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/ko.json +1003 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/nb.json +799 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/nl.json +48 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/pl.json +1109 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/pt_BR.json +970 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/pt_PT.json +1123 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/ru.json +1127 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/zh_CN.json +1116 -0
- package/extension/axe-versions/axe-core@4.12.0/locales/zh_TW.json +1108 -0
- package/extension/axe-versions/axe-core@4.12.1/axe.min.js +12 -0
- package/extension/axe-versions/axe-core@4.12.1/gather-internals.js +219 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/README.md +9 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/_template.json +1147 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/da.json +799 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/de.json +1127 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/el.json +1069 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/es.json +790 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/eu.json +789 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/fr.json +994 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/he.json +1017 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/it.json +1108 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/ja.json +1128 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/ko.json +1003 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/nb.json +799 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/nl.json +48 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/pl.json +1109 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/pt_BR.json +970 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/pt_PT.json +1123 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/ru.json +1127 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/zh_CN.json +1116 -0
- package/extension/axe-versions/axe-core@4.12.1/locales/zh_TW.json +1108 -0
- package/extension/axe-versions-mapper.js +3 -0
- package/extension/axe.js +1 -1
- package/extension/axe.js.LICENSE.txt +1 -1
- package/extension/background.js +1 -0
- package/extension/background.js.LICENSE.txt +1 -0
- package/extension/content.js +1 -1
- package/extension/gather-internals.js +1 -0
- package/extension/manifest.json +5 -1
- package/package.json +78 -20
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function a1_0x1b66(){const _0x6c5026=['Unknown\x20ac','Invalid\x20ax','gKXts','MAIN','2298564SWhndQ','qCyxS','string','result','SsztT','hrkOy','XKYfP','/gather-in','rfPWf','KlNRE','executeScr','zBQtF','\x20context','gekSW','esult','Service\x20wo','number','2334490cibSBE','ZxqCP','IObcW','gIgDR','HMAZP','591608GyDoDq','ZOnID','Missing\x20ta','QuBTP','vACWX','scripting','JCcMZ','SsHlo','urned\x20unde','urned\x20no\x20r','OsTcj','XDjsB','yvEzY','1862008kHTlep','11824136XfoFgQ','kTQkp','hxHJh','frameId','r:backgrou','test','pxUhS','edjiL','gather-int','CoEOs','addListene','ernals.js','YkcId','erty','__esModule','TYpgi','ipt','object','mtOgI','zRNAy','SWAHN','ernals\x20fai','__importDe','eVersionPa','eHrae','rPsrW','default','COUxY','onMessage','tIMOy','essage','Hesvl','kkuDU','xAqAX','axeVersion','ktfQK','OdeSS','206706BcQURK','tab','action','catch','CJpWx','VhocF','runtime','alized','160033zrSWlj','MKbPm','ggnuo','DPLhB','gtdIr','SBocv','9mJMASE','ixJiy','XgRsw','then','WHAGw','YUaVy','ntDfF','Received\x20m','BWJlx','bHEhd','ioBNo','49rRrWZV','VpfSw','isArray','exports','zJlDE','WpzgW','length','call','TVQaB','PMNFB','wjKkI','xTmIx','fined\x20resu','axe-watche','Path','defineProp','rker\x20initi','now','LXBPY','OMXMR','hnIBU','fault','tion','message','YVUHU','led','ernals','KsrKq','ternals.js','rIawU','TQhvW','ernals\x20ret','b\x20or\x20frame'];a1_0x1b66=function(){return _0x6c5026;};return a1_0x1b66();}function a1_0x1aaa(_0x4f06d3,_0x22c4c1){_0x4f06d3=_0x4f06d3-(-0x4a2+0x1a91+-0x7*0x2fb);const _0x488085=a1_0x1b66();let _0x666651=_0x488085[_0x4f06d3];return _0x666651;}(function(_0x11c756,_0x2cbbd1){const _0x2b4b35=a1_0x1aaa,_0x5ed55f=_0x11c756();while(!![]){try{const _0xbadf=parseInt(_0x2b4b35(0x125))/(0xb*-0x191+-0xc65+0x1*0x1da1)+-parseInt(_0x2b4b35(0x17e))/(-0x11f8+-0x253f+0xd3*0x43)+-parseInt(_0x2b4b35(0x15b))/(0x1d*0x79+-0x224b+0x1499)+-parseInt(_0x2b4b35(0x171))/(-0x85d*0x2+0x2442+-0x4e1*0x4)+parseInt(_0x2b4b35(0x16c))/(-0x1*0x1877+0xc07*0x3+-0xb99)+parseInt(_0x2b4b35(0x11d))/(0x1052+-0x13f1+0x3a5)*(parseInt(_0x2b4b35(0x136))/(0x29*-0x8d+0x119*-0x1d+-0x4f3*-0xb))+-parseInt(_0x2b4b35(0x17f))/(0x2545+0x79+-0x6*0x649)*(-parseInt(_0x2b4b35(0x12b))/(-0x1*0x3a4+-0x2271+-0x11*-0x23e));if(_0xbadf===_0x2cbbd1)break;else _0x5ed55f['push'](_0x5ed55f['shift']());}catch(_0x4a66fa){_0x5ed55f['push'](_0x5ed55f['shift']());}}}(a1_0x1b66,0x39507+-0x9cb79+0xb9*0x132d),((()=>{const _0x155624=a1_0x1aaa,_0x4321b5={'BWJlx':function(_0x59fcb2,_0x1700c3){return _0x59fcb2===_0x1700c3;},'YkcId':function(_0x2b9c6b,_0x3d003d){return _0x2b9c6b(_0x3d003d);},'ioBNo':_0x155624(0x187)+_0x155624(0x155)+_0x155624(0x17a)+_0x155624(0x169),'WHAGw':function(_0x520ce4,_0x5884f2){return _0x520ce4!==_0x5884f2;},'PMNFB':_0x155624(0x187)+_0x155624(0x155)+_0x155624(0x179)+_0x155624(0x142)+'lt','xAqAX':function(_0x53fd51,_0xcf12cd){return _0x53fd51 instanceof _0xcf12cd;},'KlNRE':_0x155624(0x187)+_0x155624(0x194)+_0x155624(0x14f),'CoEOs':function(_0x57cf10,_0x33270c){return _0x57cf10!=_0x33270c;},'rIawU':_0x155624(0x190),'VhocF':function(_0xccf286,_0x3f984d){return _0xccf286 in _0x3f984d;},'hrkOy':_0x155624(0x11f),'ZxqCP':function(_0x36a815,_0x16049f,_0x4d1d9e){return _0x36a815(_0x16049f,_0x4d1d9e);},'hxHJh':_0x155624(0x132)+_0x155624(0x116),'kkuDU':function(_0xafecdf,_0x56fccd){return _0xafecdf===_0x56fccd;},'tIMOy':_0x155624(0x187)+_0x155624(0x150),'OsTcj':_0x155624(0x16b),'zBQtF':_0x155624(0x173)+_0x155624(0x156)+_0x155624(0x167),'KsrKq':function(_0x4b7e18,_0x66cec7){return _0x4b7e18===_0x66cec7;},'JCcMZ':function(_0x306bf2,_0x5f4e9c){return _0x306bf2==_0x5f4e9c;},'DPLhB':_0x155624(0x15d),'TYpgi':_0x155624(0x158)+_0x155624(0x196)+'th','SWAHN':function(_0x451ea2,_0x4def00){return _0x451ea2||_0x4def00;},'vACWX':_0x155624(0x187)+_0x155624(0x18a),'SsztT':_0x155624(0x15a),'gtdIr':function(_0x2c8bd8,_0x1d08f0,_0x3d92f3){return _0x2c8bd8(_0x1d08f0,_0x3d92f3);},'eHrae':_0x155624(0x157)+_0x155624(0x14c),'TVQaB':_0x155624(0x18d),'CJpWx':function(_0x5c9702,_0x57f815){return _0x5c9702(_0x57f815);},'gekSW':function(_0xe6d9cd,_0xde0e90){return _0xe6d9cd(_0xde0e90);},'mtOgI':function(_0x225297,_0x4ec686){return _0x225297(_0x4ec686);},'ktfQK':_0x155624(0x143)+_0x155624(0x183)+'nd','SsHlo':function(_0x5e6bf2,_0x3a11c5){return _0x5e6bf2(_0x3a11c5);},'gIgDR':_0x155624(0x16a)+_0x155624(0x146)+_0x155624(0x124)};var _0x1f1ddf={0x16be(_0x15c5df,_0x52609e,_0x1ddf6e){'use strict';const _0xa52880=_0x155624,_0x400add={'OdeSS':function(_0x4d12e1,_0x5cde72){const _0x4cfbe3=a1_0x1aaa;return _0x4321b5[_0x4cfbe3(0x133)](_0x4d12e1,_0x5cde72);},'IObcW':function(_0x105fc6,_0x208bf2){const _0x473c37=a1_0x1aaa;return _0x4321b5[_0x473c37(0x18b)](_0x105fc6,_0x208bf2);},'pxUhS':_0x4321b5[_0xa52880(0x135)],'XKYfP':function(_0xc573aa,_0x38a591){const _0x10a28a=_0xa52880;return _0x4321b5[_0x10a28a(0x12f)](_0xc573aa,_0x38a591);},'ZOnID':_0x4321b5[_0xa52880(0x13f)],'yvEzY':function(_0x292ff7,_0x35b786){const _0x3037ae=_0xa52880;return _0x4321b5[_0x3037ae(0x119)](_0x292ff7,_0x35b786);},'Hesvl':_0x4321b5[_0xa52880(0x164)],'rfPWf':function(_0x4f2491,_0x50de94){const _0x3d762a=_0xa52880;return _0x4321b5[_0x3d762a(0x18b)](_0x4f2491,_0x50de94);},'VpfSw':function(_0x2a916e,_0x34ab5a){const _0x428f45=_0xa52880;return _0x4321b5[_0x428f45(0x188)](_0x2a916e,_0x34ab5a);},'qCyxS':_0x4321b5[_0xa52880(0x153)],'SBocv':function(_0x13c556,_0x31b9c8){const _0x23d1f9=_0xa52880;return _0x4321b5[_0x23d1f9(0x122)](_0x13c556,_0x31b9c8);},'edjiL':_0x4321b5[_0xa52880(0x160)],'XDjsB':function(_0x29a9f8,_0xd603ff,_0x19700d){const _0x3701d1=_0xa52880;return _0x4321b5[_0x3701d1(0x16d)](_0x29a9f8,_0xd603ff,_0x19700d);},'MKbPm':_0x4321b5[_0xa52880(0x181)],'YVUHU':function(_0x32e45e,_0x580e59){const _0x5b2fd8=_0xa52880;return _0x4321b5[_0x5b2fd8(0x118)](_0x32e45e,_0x580e59);},'gKXts':_0x4321b5[_0xa52880(0x115)],'rPsrW':_0x4321b5[_0xa52880(0x17b)],'TQhvW':function(_0x2c7add,_0x1622e0){const _0x5239c6=_0xa52880;return _0x4321b5[_0x5239c6(0x188)](_0x2c7add,_0x1622e0);},'wjKkI':_0x4321b5[_0xa52880(0x166)],'zRNAy':function(_0x1c1bff,_0x4d9585){const _0x124118=_0xa52880;return _0x4321b5[_0x124118(0x151)](_0x1c1bff,_0x4d9585);},'YUaVy':function(_0x43a969,_0x4b5e90){const _0x24b3a3=_0xa52880;return _0x4321b5[_0x24b3a3(0x177)](_0x43a969,_0x4b5e90);},'ntDfF':_0x4321b5[_0xa52880(0x128)],'LXBPY':_0x4321b5[_0xa52880(0x18e)],'HMAZP':function(_0x17c13e,_0x2b4f49){const _0x30c956=_0xa52880;return _0x4321b5[_0x30c956(0x193)](_0x17c13e,_0x2b4f49);},'xTmIx':_0x4321b5[_0xa52880(0x175)],'hnIBU':_0x4321b5[_0xa52880(0x15f)],'COUxY':function(_0x269493,_0x561a4e,_0xe48b86){const _0x5dfcbb=_0xa52880;return _0x4321b5[_0x5dfcbb(0x129)](_0x269493,_0x561a4e,_0xe48b86);},'OMXMR':_0x4321b5[_0xa52880(0x197)]};var _0x53b439=this&&this[_0xa52880(0x195)+_0xa52880(0x14b)]||function(_0x5995ad){const _0x38a79b=_0xa52880;return _0x5995ad&&_0x5995ad[_0x38a79b(0x18d)]?_0x5995ad:{'default':_0x5995ad};};Object[_0xa52880(0x145)+_0xa52880(0x18c)](_0x52609e,_0x4321b5[_0xa52880(0x13e)],{'value':!(0x1*-0x611+0xb54+0x3*-0x1c1)}),_0x4321b5[_0xa52880(0x121)](_0x1ddf6e,0x25f2+0x15b*0x8+0x1*-0x2921);const _0x5a9033=(0x1675*0x1+0x211e+-0x3793,_0x4321b5[_0xa52880(0x168)](_0x53b439,_0x4321b5[_0xa52880(0x191)](_0x1ddf6e,0x8af+-0x543+0x12d5))[_0xa52880(0x112)])(_0x4321b5[_0xa52880(0x11b)]);chrome[_0xa52880(0x123)][_0xa52880(0x114)][_0xa52880(0x189)+'r']((_0x473d64,_0x3a896b,_0x42b15c)=>{const _0x506a93=_0xa52880,_0x2987ad={'zJlDE':function(_0x4af3cd,_0x50b36e){const _0x16f6d8=a1_0x1aaa;return _0x400add[_0x16f6d8(0x11c)](_0x4af3cd,_0x50b36e);},'WpzgW':function(_0xa7b102,_0x3e433f){const _0x1dc33d=a1_0x1aaa;return _0x400add[_0x1dc33d(0x16e)](_0xa7b102,_0x3e433f);},'bHEhd':_0x400add[_0x506a93(0x185)],'kTQkp':function(_0x2bc72d,_0x5296b3){const _0x27909b=_0x506a93;return _0x400add[_0x27909b(0x161)](_0x2bc72d,_0x5296b3);},'ggnuo':_0x400add[_0x506a93(0x172)],'QuBTP':function(_0x559096,_0x5f5802){const _0x28cc7b=_0x506a93;return _0x400add[_0x28cc7b(0x17d)](_0x559096,_0x5f5802);},'ixJiy':_0x400add[_0x506a93(0x117)],'XgRsw':function(_0x48e2af,_0x32160d){const _0xca1eb1=_0x506a93;return _0x400add[_0xca1eb1(0x163)](_0x48e2af,_0x32160d);}};if(!_0x473d64||_0x400add[_0x506a93(0x137)](_0x400add[_0x506a93(0x15c)],typeof _0x473d64)||!_0x400add[_0x506a93(0x12a)](_0x400add[_0x506a93(0x186)],_0x473d64))return!(-0x216c+0x1657+0x102*0xb);if(_0x400add[_0x506a93(0x17c)](_0x5a9033,_0x400add[_0x506a93(0x126)],{'action':_0x473d64[_0x506a93(0x11f)],'tabId':_0x3a896b[_0x506a93(0x11e)]?.['id']}),_0x400add[_0x506a93(0x14e)](_0x400add[_0x506a93(0x159)],_0x473d64[_0x506a93(0x11f)])){const _0x12e174=_0x3a896b[_0x506a93(0x11e)]?.['id'],_0x461b4b=_0x3a896b[_0x506a93(0x182)];if(_0x400add[_0x506a93(0x137)](_0x400add[_0x506a93(0x198)],typeof _0x12e174)||_0x400add[_0x506a93(0x154)](_0x400add[_0x506a93(0x198)],typeof _0x461b4b))return _0x400add[_0x506a93(0x163)](_0x42b15c,{'ok':!(-0x1*-0x1741+0x2a0+-0x24*0xb8),'error':_0x400add[_0x506a93(0x140)]}),!(0x1bc5*0x1+-0x21*-0x72+0x2a76*-0x1);const _0x592275=_0x473d64[_0x506a93(0x11a)+_0x506a93(0x144)];if(!(_0x400add[_0x506a93(0x192)](void(0x1*0x1d93+-0x233d+0x5aa),_0x592275)||_0x400add[_0x506a93(0x192)]('',_0x592275)||_0x400add[_0x506a93(0x130)](_0x400add[_0x506a93(0x131)],typeof _0x592275)&&/^axe-versions\/axe-core@[\w.-]+$/[_0x506a93(0x184)](_0x592275)))return _0x400add[_0x506a93(0x163)](_0x42b15c,{'ok':!(0x4a4*0x8+0x9cb+-0x5*0x962),'error':_0x400add[_0x506a93(0x148)]}),!(0x6*-0x107+0x1cac+-0x1681);const _0x1d081a=_0x400add[_0x506a93(0x170)](_0x592275,''),_0x32afb0=_0x1d081a?_0x1d081a+(_0x506a93(0x162)+_0x506a93(0x152)):_0x400add[_0x506a93(0x141)];return chrome[_0x506a93(0x176)][_0x506a93(0x165)+_0x506a93(0x18f)]({'target':{'tabId':_0x12e174,'frameIds':[_0x461b4b]},'files':[_0x32afb0],'world':_0x400add[_0x506a93(0x14a)]})[_0x506a93(0x12e)](_0x58e57f=>{const _0xa0d3fb=_0x506a93;if(!Array[_0xa0d3fb(0x138)](_0x58e57f)||_0x2987ad[_0xa0d3fb(0x13a)](0x59c+-0x4f*0x59+-0x1*-0x15db,_0x58e57f[_0xa0d3fb(0x13c)]))return void _0x2987ad[_0xa0d3fb(0x13b)](_0x42b15c,{'ok':!(0x2058+0x15*-0xa3+-0x12f8),'error':_0x2987ad[_0xa0d3fb(0x134)]});const _0x1e9a5b=_0x58e57f[0x9*0xac+0x1*-0x827+0x7*0x4d]?.[_0xa0d3fb(0x15e)];_0x2987ad[_0xa0d3fb(0x13b)](_0x42b15c,_0x2987ad[_0xa0d3fb(0x180)](void(-0x7ab*-0x2+-0x88*-0x3f+-0x30ce),_0x1e9a5b)?{'ok':!(-0x1b13+-0xaa2+0x25b5*0x1),'data':_0x1e9a5b}:{'ok':!(-0x5*0x583+0x1031+0xb5f),'error':_0x2987ad[_0xa0d3fb(0x127)]});})[_0x506a93(0x120)](_0xe3091d=>{const _0x38bc5c=_0x506a93,_0x246b24=_0x2987ad[_0x38bc5c(0x174)](_0xe3091d,Error)?_0xe3091d[_0x38bc5c(0x14d)]:_0x2987ad[_0x38bc5c(0x12c)];_0x2987ad[_0x38bc5c(0x12d)](_0x42b15c,{'ok':!(0x7c8+0x5b1+-0xd78),'error':_0x246b24});}),!(0x19*0xc1+-0x625*-0x3+0x4*-0x952);}return _0x400add[_0x506a93(0x113)](_0x5a9033,_0x400add[_0x506a93(0x149)],_0x473d64[_0x506a93(0x11f)]),!(-0xbfd+0x767+0xeb*0x5);}),_0x4321b5[_0xa52880(0x178)](_0x5a9033,_0x4321b5[_0xa52880(0x16f)]);},0x1641(_0x5c3a6b,_0x2c9513){'use strict';const _0x5d6b2d=_0x155624;Object[_0x5d6b2d(0x145)+_0x5d6b2d(0x18c)](_0x2c9513,_0x4321b5[_0x5d6b2d(0x13e)],{'value':!(-0x4*-0x3af+0x5e*-0x4+-0xd44)}),_0x2c9513[_0x5d6b2d(0x112)]=_0x516f38=>(Date[_0x5d6b2d(0x147)](),(_0x2f7ffe,_0x44292a)=>{});},0x7a9(){}},_0x2d3e40={};!function _0x3a84d5(_0x5bbdfd){const _0x3d15cf=_0x155624;var _0x26cdfd=_0x2d3e40[_0x5bbdfd];if(_0x4321b5[_0x3d15cf(0x12f)](void(0xf*0x1a+-0x243e+0x22b8),_0x26cdfd))return _0x26cdfd[_0x3d15cf(0x139)];var _0x622f26=_0x2d3e40[_0x5bbdfd]={'exports':{}};return _0x1f1ddf[_0x5bbdfd][_0x3d15cf(0x13d)](_0x622f26[_0x3d15cf(0x139)],_0x622f26,_0x622f26[_0x3d15cf(0x139)],_0x3a84d5),_0x622f26[_0x3d15cf(0x139)];}(-0x97f+0x15d*-0x18+0x40f5);})()));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! Copyright Deque 2021-2026 All Rights Reserved */
|